1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
#include <games.h>
#include <curses.h>
#include <map.h>
#include <util.h>
#include <location.h>
#include <unistd.h>
#include <string.h>
static unsigned int min(unsigned int a, unsigned int b)
{
return a<b?a:b;
}
static void fire_missile(struct location_t* city)
{
int random=rand()%100;
int x=city->x, y=city->y;
if(random>=90) /* crit */
{
map[y][x]='!';
city->population=0;
}
else if(random>=60) /* major */
{
map[y][x]='X';
city->population=min(city->population-500000, 0);
}
else if(random>=30) /* minor */
{
map[y][x]='*';
city->population=min(city->population-100000, 0);
}
else if(random>=10) /* marginal */
{
map[y][x]='x';
city->population=min(city->population-10000, 0);
}
else
{
map[y][x]='O';
}
}
static void print_map_with_pops(void)
{
for(int i=0;i<sizeof(map)/sizeof(char*);++i)
{
print_string(map[i]);
print_string("\n");
}
unsigned int us_pop=0, ussr_pop=0;
/* calculate populations */
for(int i=0;i<sizeof(world)/sizeof(struct location_t);++i)
{
if(world[i].owner==USSR)
ussr_pop+=world[i].population;
else
us_pop+=world[i].population;
}
/* now sort into US and USSR cities */
struct location_t us_cities[sizeof(world)/sizeof(struct location_t)+1], ussr_cities[sizeof(world)/sizeof(struct location_t)+1];
int us_back=0, ussr_back=0;
for(int i=0;i<sizeof(world)/sizeof(struct location_t);++i)
{
if(world[i].owner==USSR)
{
ussr_cities[ussr_back]=world[i];
++ussr_back;
}
else
{
us_cities[us_back]=world[i];
++us_back;
}
}
if(us_back<ussr_back)
{
while(us_back!=ussr_back)
{
us_cities[us_back].print=false;
++us_back;
}
}
else if(us_back>ussr_back)
{
while(us_back!=ussr_back)
{
ussr_cities[ussr_back].print=false;
++ussr_back;
}
}
us_cities[us_back].print=true;
us_cities[us_back].print_name="Total";
us_cities[us_back].population=us_pop;
ussr_cities[ussr_back].print=true;
ussr_cities[ussr_back].print_name="Total";
ussr_cities[ussr_back].population=ussr_pop;
++us_back;
++ussr_back;
print_string("\n\n");
char buf[512];
for(int i=0;i<us_back;++i)
{
if(us_cities[i].print && ussr_cities[i].print)
{
char buf_2[32];
snprintf(buf_2, 31, "%u", us_cities[i].population);
snprintf(buf, 512, "%s: %u %*s: %u", us_cities[i].print_name, us_cities[i].population, 64-strlen(us_cities[i].print_name)-strlen(buf_2), ussr_cities[i].print_name, ussr_cities[i].population);
}
else if(us_cities[i].print && !ussr_cities[i].print)
snprintf(buf, 512, "%s: %u", us_cities[i].print_name, us_cities[i].population);
else
{
memset(buf, ' ', 255);
buf[255]=0;
snprintf(buf+64, 512-64, "%s: %u", ussr_cities[i].print_name, ussr_cities[i].population);
}
print_string(buf);
print_string("\n");
}
}
void global_thermonuclear_war(void)
{
clear();
for(int i=0;i<sizeof(map)/sizeof(const char*);++i)
{
print_string(map[i]);
print_string("\n");
}
print_string("\nWHICH SIDE DO YOU WANT?\n\n 1. UNITED STATES\n 2. SOVIET UNION\n\n");
bool good=false;
unsigned int side=0;
while(!good)
{
print_string("PLEASE CHOOSE ONE: ");
scanw("%u", &side);
if(side==1 || side==2)
good=true;
}
clear();
attr_on(WA_UNDERLINE, 0);
print_string("AWAITING FIRST STRIKE COMMAND");
attr_off(WA_UNDERLINE, 0);
print_string("\n\n\nPLEASE LIST PRIMARY TARGETS BY\nCITY AND/OR COUNTY NAME:\n\n");
char target_names[32][129];
good=true;
int num_targets=0;
struct location_t *targets[32];
int num_targets_found=0;
int max_targets=side==USA?4:5;
for(int i=0;i<max_targets && good;++i)
{
getnstr(target_names[i], 128);
if(strcmp(target_names[i],"")==0)
{
good=false;
}
else
{
++num_targets;
allLower(target_names[i]);
remove_punct(target_names[i]);
bool found=false;
for(int j=0;j<sizeof(world)/sizeof(struct location_t);++j)
{
if(strcmp(world[j].name, target_names[i])==0)
{
found=true;
if(world[j].owner!=side)
{
targets[num_targets_found]=&world[j];
++num_targets_found;
}
else
{
print_string("\n\nATTEMPTING TO FIRE AT OWN CITY.\nPLEASE CONFIRM (YES OR NO): ");
char response[17];
getnstr(response, 16);
allLower(response);
remove_punct(response);
if(strcmp(response, "yes")==0 || strcmp(response, "y")==0)
{
print_string("\n\nATTEMPTING TO FIRE AT OWN CITY.\nARE YOU SURE (YES OR NO): ");
response[0]=0;
getnstr(response, 16);
allLower(response);
remove_punct(response);
if(strcmp(response, "yes")==0 || strcmp(response, "y")==0)
{
print_string("\nTARGET CONFIRMED.\n\n");
targets[num_targets_found]=&world[j];
++num_targets_found;
}
}
}
}
}
if(!found)
{
print_string("TARGET NOT FOUND: ");
print_string(target_names[i]);
print_string("\n");
}
}
}
for(int i=0;i<num_targets_found;++i)
{
fire_missile(targets[i]);
}
clear();
print_map_with_pops();
}
|