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