Rewrite to get ride of FORTRANish galaxy and newstuff arrays. It's
[super-star-trek.git] / reports.c
1 #include "sst.h"
2 #include <math.h>
3 #include <stdlib.h>
4 #include <string.h>
5
6 void attakreport(int curt) 
7 {
8     if (!curt) {
9         if (game.future[FCDBAS] < 1e30) {
10             prout("Starbase in %s is currently under Commander attack.",
11                   cramlc(quadrant, batx, baty));
12             prout("It can hold out until Stardate %d.", 
13                   (int)game.future[FCDBAS]);
14         }
15         if (isatb == 1) {
16             prout("Starbase in %s is under Super-commander attack.",
17                   cramlc(quadrant, game.state.isx, game.state.isy));
18             prout("It can hold out until Stardate %d.", 
19                   (int)game.future[FSCDBAS]);
20         }
21     } else {
22         if (game.future[FCDBAS] < 1e30)
23             proutn("Base in %i - %i attacked by C. Alive until %.1f", batx, baty, game.future[FCDBAS]);
24         if (isatb == 1)
25             proutn("Base in %i - %i attacked by S. Alive until %.1f", game.state.isx, game.state.isy, game.future[FSCDBAS]);
26     }
27     clreol();
28 }
29         
30
31 void report(void) 
32 {
33     char *s1,*s2,*s3;
34
35     chew();
36     s1 = (thawed?"thawed ":"");
37     switch (length) {
38     case 1: s2="short"; break;
39     case 2: s2="medium"; break;
40     case 4: s2="long"; break;
41     default: s2="unknown length"; break;
42     }
43     switch (skill) {
44     case SKILL_NOVICE: s3="novice"; break;
45     case SKILL_FAIR: s3="fair"; break;
46     case SKILL_GOOD: s3="good"; break;
47     case SKILL_EXPERT: s3="expert"; break;
48     case SKILL_EMERITUS: s3="emeritus"; break;
49     default: s3="skilled"; break;
50     }
51     prout("");
52     prout("You %s playing a %s%s %s game.",
53           alldone? "were": "are now", s1, s2, s3);
54     if (skill>SKILL_GOOD && thawed && !alldone) prout("No plaque is allowed.");
55     if (tourn) prout("This is tournament game %d.", tourn);
56     prout("Your secret password is \"%s\"",game.passwd);
57     proutn("%d of %d Klingons have been killed",
58            game.state.killk+game.state.killc+game.state.nsckill, inkling);
59     if (game.state.killc) prout(", including %d Commander%s.", game.state.killc, game.state.killc==1?"":"s");
60     else if (game.state.killk+game.state.nsckill > 0) prout(", but no Commanders.");
61     else prout(".");
62     if (skill > SKILL_FAIR) prout("The Super Commander has %sbeen destroyed.",
63                                   game.state.nscrem?"not ":"");
64     if (game.state.rembase != inbase) {
65         proutn("There ");
66         if (inbase-game.state.rembase==1) proutn("has been 1 base");
67         else {
68             proutn("have been %d bases", inbase-game.state.rembase);
69         }
70         prout(" destroyed, %d remaining.", game.state.rembase);
71     }
72     else prout("There are %d bases.", inbase);
73     if (game.damage[DRADIO] == 0.0 || condit == IHDOCKED || iseenit) {
74         /* Don't report this if not seen and
75            either the radio is dead or not at base! */
76         attakreport(0);
77         iseenit = 1;
78     }
79     if (casual) prout("%d casualt%s suffered so far.",
80                       casual, casual==1? "y" : "ies");
81     if (nhelp) prout("There were %d call%s for help.",
82                      nhelp, nhelp==1 ? "" : "s");
83     if (ship == IHE) {
84         proutn("You have ");
85         if (nprobes) proutn("%d", nprobes);
86         else proutn("no");
87         proutn(" deep space probe");
88         if (nprobes!=1) proutn("s");
89         prout(".");
90     }
91     if ((game.damage[DRADIO] == 0.0 || condit == IHDOCKED)&&
92         game.future[FDSPROB] != 1e30) {
93         if (isarmed) 
94             proutn("An armed deep space probe is in");
95         else
96             proutn("A deep space probe is in");
97         proutn(cramlc(quadrant, probecx, probecy));
98         prout(".");
99     }
100     if (icrystl) {
101         if (cryprob <= .05)
102             prout("Dilithium crystals aboard ship... not yet used.");
103         else {
104             int i=0;
105             double ai = 0.05;
106             while (cryprob > ai) {
107                 ai *= 2.0;
108                 i++;
109             }
110             prout("Dilithium crystals have been used %d time%s.",
111                   i, i==1? "" : "s");
112         }
113     }
114     skip(1);
115 }
116         
117 void lrscan(void) 
118 {
119     int x, y;
120     chew();
121     if (game.damage[DLRSENS] != 0.0) {
122         /* Now allow base's sensors if docked */
123         if (condit != IHDOCKED) {
124             prout("LONG-RANGE SENSORS DAMAGED.");
125             return;
126         }
127         proutn("Starbase's long-range scan");
128     }
129     else {
130         prout("Long-range scan");
131     }
132     for (x = quadx-1; x <= quadx+1; x++) {
133         proutn(" ");
134         for (y = quady-1; y <= quady+1; y++) {
135             if (x == 0 || x > GALSIZE || y == 0 || y > GALSIZE)
136                 proutn("  -1");
137             else {
138                 if (!game.damage[DRADIO])
139                     game.state.galaxy[x][y].charted = TRUE;
140                 game.state.chart[x][y].klingons = game.state.galaxy[x][y].klingons;
141                 game.state.chart[x][y].starbase = game.state.galaxy[x][y].starbase;
142                 game.state.chart[x][y].stars = game.state.galaxy[x][y].stars;
143                 if (game.state.galaxy[x][y].supernova) 
144                     proutn("***");
145                 else
146                     proutn(" %-3d", game.state.chart[x][y].klingons*100 + game.state.chart[x][y].starbase * 10 + game.state.chart[x][y].stars);
147             }
148         }
149         prout(" ");
150     }
151 }
152
153 void dreprt(void) 
154 {
155     int jdam = FALSE, i;
156     chew();
157
158     for (i = 0; i < NDEVICES; i++) {
159         if (game.damage[i] > 0.0) {
160             if (!jdam) {
161                 prout("DEVICE            -REPAIR TIMES-");
162                 prout("                IN FLIGHT   DOCKED");
163                 jdam = TRUE;
164             }
165             prout("  %16s %8.2f  %8.2f", 
166                   device[i],
167                   game.damage[i]+0.05,
168                   docfac*game.damage[i]+0.005);
169         }
170     }
171     if (!jdam) prout("All devices functional.");
172 }
173
174 void rechart(void)
175 /* update the chart in the Enterprise's computer from galaxy data */
176 {
177     int i, j;
178     stdamtim = game.state.date;
179     for (i=1; i <= GALSIZE ; i++)
180         for (j=1; j <= GALSIZE; j++) 
181             if (game.state.galaxy[i][j].charted) {
182                 game.state.chart[i][j].klingons = game.state.galaxy[i][j].klingons;
183                 game.state.chart[i][j].starbase = game.state.galaxy[i][j].starbase;
184                 game.state.chart[i][j].stars = game.state.galaxy[i][j].stars;
185             }
186 }
187
188 void chart(int nn) 
189 {
190     int i,j;
191     char *cp;
192     chew();
193     if (stdamtim != 1e30 && stdamtim != game.state.date && condit == IHDOCKED) {
194         proutn("Spock-  \"I revised the Star Chart from the starbase's records.\"\n\r");
195     }
196     if (nn == 0) proutn("       STAR CHART FOR THE KNOWN GALAXY\n\r");
197     if (stdamtim != 1e30) {
198         if (condit == IHDOCKED) {
199             /* We are docked, so restore chart from base information */
200             rechart();
201         }
202         else if (game.state.date-stdamtim) {
203             prout("(Last surveillance update %d stardates ago).",
204                    (int)(game.state.date-stdamtim));
205         }
206     }
207     else if (game.damage[DRADIO] == 0.0)
208         rechart();
209
210     prout("      1    2    3    4    5    6    7    8");
211     for (i = 1; i <= GALSIZE; i++) {
212         proutn("%d |", i);
213         for (j = 1; j <= GALSIZE; j++) {
214             char buf[4];
215             proutn("  ");
216             if (game.state.galaxy[i][j].supernova)
217                 strcpy(buf, "***");
218             else if (!game.state.galaxy[i][j].charted && game.state.galaxy[i][j].starbase)
219                 strcpy(buf, ".1.");
220             else if (game.state.galaxy[i][j].charted)
221                 sprintf(buf, "%d%d%d", game.state.chart[i][j].klingons, game.state.chart[i][j].starbase, game.state.chart[i][j].stars);
222             else
223                 strcpy(buf, "...");
224             for (cp = buf; cp < buf + sizeof(buf); cp++)
225                 if (*cp == '0')
226                     *cp = '.';
227             proutn(buf);
228         }
229         proutn("  |");
230         if (i<GALSIZE) proutn("\n\r");
231     }
232     prout("");  /* flush output */
233 }
234
235 static void sectscan(int goodScan, int i, int j) 
236 {
237     if (goodScan || (abs(i-sectx)<= 1 && abs(j-secty) <= 1)){
238         if ((game.quad[i][j]==IHMATER0)||(game.quad[i][j]==IHMATER1)||(game.quad[i][j]==IHMATER2)||(game.quad[i][j]==IHE)||(game.quad[i][j]==IHF)){
239             switch (condit) {
240             case IHRED: textcolor(RED); break;
241             case IHGREEN: textcolor(GREEN); break;
242             case IHYELLOW: textcolor(YELLOW); break;
243             case IHDOCKED: textcolor(CYAN); break;
244             case IHDEAD: textcolor(BROWN);
245             }
246             if (game.quad[i][j] != ship) 
247                 highvideo();
248         }
249         if (game.quad[i][j] & DAMAGED) 
250             highvideo();
251         proutn("%c ",game.quad[i][j] & ~DAMAGED);
252         textcolor(DEFAULT);
253     }
254     else
255         proutn("- ");
256 }
257
258 static void status(int req) 
259 {
260     char *cp = NULL;
261     int t, dam = 0;
262     switch (req) {
263     case 1:
264         proutn("Stardate      %.1f, Time Left %.2f", game.state.date, game.state.remtime);
265         break;
266     case 2:
267         if (condit != IHDOCKED) newcnd();
268         switch (condit) {
269         case IHRED: cp = "RED"; break;
270         case IHGREEN: cp = "GREEN"; break;
271         case IHYELLOW: cp = "YELLOW"; break;
272         case IHDOCKED: cp = "DOCKED"; break;
273         case IHDEAD: cp="DEAD"; break;
274         }
275         for (t=0;t<NDEVICES;t++)
276             if (game.damage[t]>0) 
277                 dam++;
278         proutn("Condition     %s, %i DAMAGES", cp, dam);
279         break;
280     case 3:
281         proutn("Position      %d - %d , %d - %d",
282                quadx, quady, sectx, secty);
283         break;
284     case 4:
285         proutn("Life Support  ");
286         if (game.damage[DLIFSUP] != 0.0) {
287             if (condit == IHDOCKED)
288                 proutn("DAMAGED, Base provides");
289             else
290                 proutn("DAMAGED, reserves=%4.2f", lsupres);
291         }
292         else
293             proutn("ACTIVE");
294         break;
295     case 5:
296         proutn("Warp Factor   %.1f", warpfac);
297         break;
298     case 6:
299         proutn("Energy        %.2f", energy);
300         if (icrystl)    /* ESR */
301             proutn(" (have crystals)");
302         break;
303     case 7:
304         proutn("Torpedoes     %d", torps);
305         break;
306     case 8:
307         proutn("Shields       ");
308         if (game.damage[DSHIELD] != 0)
309             proutn("DAMAGED,");
310         else if (shldup)
311             proutn("UP,");
312         else
313             proutn("DOWN,");
314         proutn(" %d%% %.1f units",
315                (int)((100.0*shield)/inshld + 0.5), shield);
316         break;
317     case 9:
318         proutn("Klingons Left %d", game.state.remkl);
319         break;
320     case 10:
321         attakreport(1);
322         break;
323     }
324 }
325                 
326 int srscan(int l) 
327 {
328     static char requests[][3] =
329         {"","da","co","po","ls","wa","en","to","sh","kl","ti"};
330     int leftside=TRUE, rightside=TRUE, i, j, jj, req=0, nn=FALSE;
331     int goodScan=TRUE;
332     switch (l) {
333     case SCAN_FULL: // SRSCAN
334         if (game.damage[DSRSENS] != 0) {
335             /* Allow base's sensors if docked */
336             if (condit != IHDOCKED) {
337                 prout("   S.R. SENSORS DAMAGED!");
338                 goodScan=FALSE;
339             }
340             else
341                 prout("  [Using Base's sensors]");
342         }
343         else proutn("     Short-range scan\n\r");
344         if (goodScan && !game.damage[DRADIO]) { 
345             game.state.chart[quadx][quady].klingons = game.state.galaxy[quadx][quady].klingons;
346             game.state.chart[quadx][quady].starbase = game.state.galaxy[quadx][quady].starbase;
347             game.state.chart[quadx][quady].stars = game.state.galaxy[quadx][quady].stars;
348             game.state.galaxy[quadx][quady].charted = TRUE;
349         }
350         scan();
351         if (isit("chart")) nn = TRUE;
352         if (isit("no")) rightside = FALSE;
353         chew();
354         proutn("    1 2 3 4 5 6 7 8 9 10\n\r");
355         break;
356     case SCAN_REQUEST:
357         while (scan() == IHEOL)
358             proutn("Information desired? ");
359         chew();
360         for (req = 1; req <= sizeof(requests)/sizeof(requests[0]); req++)
361             if (strncmp(citem,requests[req],min(2,strlen(citem)))==0)
362                 break;
363         if (req > sizeof(requests)/sizeof(requests[0])) {
364             prout("UNRECOGNIZED REQUEST. Legal requests are:\n"
365                   "  date, condition, position, lsupport, warpfactor,\n"
366                   "  energy, torpedoes, shields, klingons, time, bases.");
367             return FALSE;
368         }
369         // no break
370     case SCAN_STATUS: // STATUS
371         chew();
372         leftside = FALSE;
373         skip(1);
374         // no break
375     case SCAN_NO_LEFTSIDE: // REQUEST
376         leftside=FALSE;
377         break;
378     }
379     if (condit != IHDOCKED) newcnd();
380     for (i = 1; i <= max(QUADSIZE, sizeof(requests)/sizeof(requests[0])); i++) {
381         jj = (req!=0 ? req : i);
382         if (leftside && i <= QUADSIZE) {
383             proutn("%2d  ", i);
384             for (j = 1; j <= QUADSIZE; j++) {
385                 sectscan(goodScan, i, j);
386             }
387         }
388         if (rightside)
389             status(jj);
390         if (i<sizeof(requests)/sizeof(requests[0])) proutn("\n\r");
391         if (req!=0) return(goodScan);
392     }
393     prout("");
394     if (nn) chart(1);
395     return(goodScan);
396 }
397                         
398                         
399 void eta(void)
400 {
401     int ix1, ix2, iy1, iy2, prompt=FALSE;
402     int wfl;
403     double ttime, twarp, tpower;
404     if (game.damage[DCOMPTR] != 0.0) {
405         prout("COMPUTER DAMAGED, USE A POCKET CALCULATOR.");
406         skip(1);
407         return;
408     }
409     if (scan() != IHREAL) {
410         prompt = TRUE;
411         chew();
412         proutn("Destination quadrant and/or sector? ");
413         if (scan()!=IHREAL) {
414             huh();
415             return;
416         }
417     }
418     iy1 = aaitem +0.5;
419     if (scan() != IHREAL) {
420         huh();
421         return;
422     }
423     ix1 = aaitem + 0.5;
424     if (scan() == IHREAL) {
425         iy2 = aaitem + 0.5;
426         if (scan() != IHREAL) {
427             huh();
428             return;
429         }
430         ix2 = aaitem + 0.5;
431     }
432     else {
433         if (quady>ix1) ix2 = 1;
434         else ix2=QUADSIZE;
435         if (quadx>iy1) iy2 = 1;
436         else iy2=QUADSIZE;
437     }
438
439     if (ix1 > GALSIZE || ix1 < 1 || iy1 > GALSIZE || iy1 < 1 ||
440         ix2 > QUADSIZE || ix2 < 1 || iy2 > QUADSIZE || iy2 < 1) {
441         huh();
442         return;
443     }
444     dist = sqrt(square(iy1-quadx+0.1*(iy2-sectx))+
445                 square(ix1-quady+0.1*(ix2-secty)));
446     wfl = FALSE;
447
448     if (prompt) prout("Answer \"no\" if you don't know the value:");
449     while (TRUE) {
450         chew();
451         proutn("Time or arrival date? ");
452         if (scan()==IHREAL) {
453             ttime = aaitem;
454             if (ttime > game.state.date) ttime -= game.state.date; // Actually a star date
455             if (ttime <= 1e-10 ||
456                 (twarp=(floor(sqrt((10.0*dist)/ttime)*10.0)+1.0)/10.0) > 10) {
457                 prout("We'll never make it, sir.");
458                 chew();
459                 return;
460             }
461             if (twarp < 1.0) twarp = 1.0;
462             break;
463         }
464         chew();
465         proutn("Warp factor? ");
466         if (scan()== IHREAL) {
467             wfl = TRUE;
468             twarp = aaitem;
469             if (twarp<1.0 || twarp > 10.0) {
470                 huh();
471                 return;
472             }
473             break;
474         }
475         prout("Captain, certainly you can give me one of these.");
476     }
477     while (TRUE) {
478         chew();
479         ttime = (10.0*dist)/square(twarp);
480         tpower = dist*twarp*twarp*twarp*(shldup+1);
481         if (tpower >= energy) {
482             prout("Insufficient energy, sir.");
483             if (shldup==0 || tpower > energy*2.0) {
484                 if (!wfl) return;
485                 proutn("New warp factor to try? ");
486                 if (scan() == IHREAL) {
487                     wfl = TRUE;
488                     twarp = aaitem;
489                     if (twarp<1.0 || twarp > 10.0) {
490                         huh();
491                         return;
492                     }
493                     continue;
494                 }
495                 else {
496                     chew();
497                     skip(1);
498                     return;
499                 }
500             }
501             prout("But if you lower your shields,");
502             proutn("remaining");
503             tpower /= 2;
504         }
505         else
506             proutn("Remaining");
507         prout(" energy will be %.2f.", energy-tpower);
508         if (wfl) {
509             prout("And we will arrive at stardate %.2f.",
510                   game.state.date+ttime);
511         }
512         else if (twarp==1.0)
513             prout("Any warp speed is adequate.");
514         else {
515             prout("Minimum warp needed is %.2f,", twarp);
516             prout("and we will arrive at stardate %.2f.",
517                   game.state.date+ttime);
518         }
519         if (game.state.remtime < ttime)
520             prout("Unfortunately, the Federation will be destroyed by then.");
521         if (twarp > 6.0)
522             prout("You'll be taking risks at that speed, Captain");
523         if ((isatb==1 && game.state.isy == ix1 && game.state.isx == iy1 &&
524              game.future[FSCDBAS]< ttime+game.state.date)||
525             (game.future[FCDBAS]<ttime+game.state.date && baty==ix1 && batx == iy1))
526             prout("The starbase there will be destroyed by then.");
527         proutn("New warp factor to try? ");
528         if (scan() == IHREAL) {
529             wfl = TRUE;
530             twarp = aaitem;
531             if (twarp<1.0 || twarp > 10.0) {
532                 huh();
533                 return;
534             }
535         }
536         else {
537             chew();
538             skip(1);
539             return;
540         }
541     }
542                         
543 }