]> git.pond.sub.org Git - empserver/blob - src/lib/subs/show.c
(opt_NEUTRON, buil, denotate, show_nuke_capab, show_nuke_build,
[empserver] / src / lib / subs / show.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  show.c: General show routines
29  * 
30  *  Known contributors to this file:
31  *     Julian Onions, 1988
32  *     Jeff Bailey, 1990
33  *     Steve McClure, 1996
34  */
35
36 /*
37  * general routines that are callable to give info on things.
38  * currently, planes, ships, nukes and bridges. Tanks & regiments one day?
39  *
40  * Added nuke_flags to be consistent. Jeff Bailey 12/15/90
41  *                                    (bailey@mcs.kent.edu)
42  */
43
44 #include <math.h>
45 #include "misc.h"
46 #include "player.h"
47 #include "nuke.h"
48 #include "ship.h"
49 #include "land.h"
50 #include "item.h"
51 #include "plane.h"
52 #include "sect.h"
53 #include "optlist.h"
54 #include "file.h"
55 #include "nat.h"
56 #include "prototypes.h"
57
58 struct look_list {
59     union {
60         struct lchrstr *lp;
61         struct plchrstr *pp;
62         struct mchrstr *mp;
63     } l_u;
64     int tech;
65 } lookup_list[200];             /* Change this if there are ever more than 200 planes, ships
66                                    or land units. */
67 static int lookup_list_cnt = 0;
68
69 static void
70 sort_lookup_list(void)
71 {
72     struct natstr *np = getnatp(player->cnum);
73     struct look_list tmp;
74     int i;
75     int j;
76
77     if (!(np->nat_flags & NF_TECHLISTS))
78         return;
79     for (i = 0; i < lookup_list_cnt; i++) {
80         for (j = i; j < lookup_list_cnt; j++) {
81             if (lookup_list[j].tech < lookup_list[i].tech) {
82                 tmp = lookup_list[j];
83                 lookup_list[j] = lookup_list[i];
84                 lookup_list[i] = tmp;
85             }
86         }
87     }
88 }
89
90 static void
91 make_new_list(int tlev, int type)
92 {
93     struct plchrstr *pp;
94     struct lchrstr *lp;
95     struct mchrstr *mp;
96
97     lookup_list_cnt = 0;
98     if (type == EF_PLANE) {
99         for (pp = plchr; pp->pl_name; pp++) {
100             if (pp->pl_tech > tlev)
101                 continue;
102             lookup_list[lookup_list_cnt].l_u.pp = pp;
103             lookup_list[lookup_list_cnt].tech = pp->pl_tech;
104             lookup_list_cnt++;
105         }
106     } else if (type == EF_SHIP) {
107         for (mp = mchr; mp->m_name; mp++) {
108             if (mp->m_tech > tlev)
109                 continue;
110             lookup_list[lookup_list_cnt].l_u.mp = mp;
111             lookup_list[lookup_list_cnt].tech = mp->m_tech;
112             lookup_list_cnt++;
113         }
114     } else if (type == EF_LAND) {
115         for (lp = lchr; lp->l_name; lp++) {
116             if (lp->l_tech > tlev)
117                 continue;
118             lookup_list[lookup_list_cnt].l_u.lp = lp;
119             lookup_list[lookup_list_cnt].tech = lp->l_tech;
120             lookup_list_cnt++;
121         }
122     } else
123         return;
124
125     sort_lookup_list();
126 }
127
128 static char *
129 lookup(int key, struct symbol *table)
130 {
131     int i;
132
133     for (i = 0; table[i].name; i++)
134         if (key == table[i].value)
135             return table[i].name;
136
137     return NULL;
138 }
139
140 void
141 show_bridge(int tlev)
142 {
143     if (tlev < buil_bt)
144         return;
145     pr("Bridges require %g tech,", buil_bt);
146     if (!opt_NO_HCMS)
147         pr(" %d hcm,", buil_bh);
148     else if (!opt_NO_LCMS)
149         pr(" %d lcm,", buil_bh);
150     pr(" %d workers,\n", 0);
151     pr("%d available workforce, and cost $%g\n",
152        (SCT_BLD_WORK(0, buil_bh) * SCT_MINEFF + 99) / 100,
153        buil_bc);
154 }
155
156 void
157 show_tower(int tlev)
158 {
159     if (tlev < buil_tower_bt)
160         return;
161     pr("Bridge Towers require %g tech,", buil_tower_bt);
162     if (!opt_NO_HCMS)
163         pr(" %d hcm,", buil_tower_bh);
164     else if (!opt_NO_LCMS)
165         pr(" %d lcm,", buil_tower_bh);
166     pr(" %d workers,\n", 0);
167     pr("%d available workforce, and cost $%g\n",
168        (SCT_BLD_WORK(0, buil_tower_bh) * SCT_MINEFF + 99) / 100,
169        buil_tower_bc);
170 }
171
172 void
173 show_nuke_stats(int tlev)
174 {
175     show_nuke_capab(tlev);
176 }
177
178 void
179 show_nuke_build(int tlev)
180 {
181     struct nchrstr *np;
182     int avail;
183
184     if (opt_DRNUKE)
185         pr("%13s lcm hcm  oil  rad avail tech res $\n", "");
186     else
187         pr("%13s lcm hcm  oil  rad avail tech $\n", "");
188
189     for (np = nchr; np->n_name; np++) {
190         avail = NUK_BLD_WORK(np->n_lcm, np->n_hcm, np->n_oil, np->n_rad);
191         if (np->n_tech > tlev)
192             continue;
193         if (opt_DRNUKE)
194             pr("%-13.13s %3d %3d %4d %4d %5d %4d %3d $%6d\n",
195                np->n_name, np->n_lcm, np->n_hcm, np->n_oil,
196                np->n_rad, avail, np->n_tech,
197                (int)(np->n_tech * drnuke_const) + 1, np->n_cost);
198         else
199             pr("%-13.13s %3d %3d %4d %4d %5d %4d $%6d\n",
200                np->n_name, np->n_lcm, np->n_hcm, np->n_oil,
201                np->n_rad, avail, np->n_tech, np->n_cost);
202     }
203 }
204
205 void
206 show_nuke_capab(int tlev)
207 {
208     struct nchrstr *np;
209     int i, j;
210     char *p;
211
212     if (opt_DRNUKE)
213         pr("%13s blst dam lbs tech res $%7s abilities\n", "", "");
214     else
215         pr("%13s blst dam lbs tech $%7s abilities\n", "", "");
216
217     for (np = nchr; np->n_name; np++) {
218         if (np->n_tech > tlev)
219             continue;
220         if (opt_DRNUKE)
221             pr("%-13.13s %4d %3d %3d %4d %3d $%7d ",
222                np->n_name, np->n_blast, np->n_dam,
223                np->n_weight, np->n_tech,
224                (int)(np->n_tech * drnuke_const) + 1, np->n_cost);
225         else                    /* not DRNUKE */
226             pr("%-13.13s %4d %3d %3d %4d $%7d ",
227                np->n_name, np->n_blast, np->n_dam,
228                np->n_weight, np->n_tech, np->n_cost);
229
230         for (i = j = 0; i < 32; i++) {
231             if (!(np->n_flags & bit(i)))
232                 continue;
233             if (NULL != (p = lookup(bit(i), nuke_chr_flags))) {
234                 if (j++ > 0)
235                     pr(" ");
236                 pr(p);
237             }
238         }
239         pr("\n");
240     }
241 }
242
243 void
244 show_ship_build(int tlev)
245 {
246     struct mchrstr *mp;
247     int n;
248
249     pr("%25s lcm hcm avail tech $\n", "");
250     make_new_list(tlev, EF_SHIP);
251     for (n = 0; n < lookup_list_cnt; n++) {
252         mp = (struct mchrstr *)lookup_list[n].l_u.mp;
253         /* Can't show trade ships unless it's turned on */
254         if ((mp->m_flags & M_TRADE) && !opt_TRADESHIPS)
255             continue;
256
257         pr("%-25.25s %3d %3d %5d %4d $%d\n",
258            mp->m_name, mp->m_lcm, mp->m_hcm,
259            SHP_BLD_WORK(mp->m_lcm, mp->m_hcm), mp->m_tech, mp->m_cost);
260     }
261 }
262
263 void
264 show_ship_stats(int tlev)
265 {
266     struct mchrstr *mp;
267     int scount;
268     int techdiff;
269
270     pr("%25s      s  v  s  r  f  l  p", "");
271     pr("  h");
272     pr("  x");
273     if (opt_FUEL)
274         pr("  fuel");
275     pr("\n");
276
277     pr("%25s      p  i  p  n  i  n  l", "");
278     pr("  e");
279     pr("  p");
280     if (opt_FUEL)
281         pr("   c/u");
282     pr("\n");
283
284     pr("%25s def  d  s  y  g  r  d  n", "");
285     pr("  l");
286     pr("  l");
287     if (opt_FUEL)
288         pr("      ");
289     pr("\n");
290
291
292     make_new_list(tlev, EF_SHIP);
293     for (scount = 0; scount < lookup_list_cnt; scount++) {
294         mp = (struct mchrstr *)lookup_list[scount].l_u.mp;
295         /* Can't show trade ships unless it's turned on */
296         if ((mp->m_flags & M_TRADE) && !opt_TRADESHIPS)
297             continue;
298
299         techdiff = (int)(tlev - mp->m_tech);
300         pr("%-25.25s %3d %2d %2d %2d %2d %2d ",
301            mp->m_name,
302            (short)SHP_DEF(mp->m_armor, techdiff),
303            (short)SHP_SPD(mp->m_speed, techdiff),
304            (short)SHP_VIS(mp->m_visib, techdiff),
305            mp->m_vrnge,
306            (short)SHP_RNG(mp->m_frnge, techdiff),
307            (short)SHP_FIR(mp->m_glim, techdiff));
308
309         pr("%2d ", mp->m_nland);
310         pr("%2d ", mp->m_nplanes);
311         pr("%2d ", mp->m_nchoppers);
312         pr("%2d ", mp->m_nxlight);
313         if (opt_FUEL)
314             pr("%3d/%1d ", mp->m_fuelc, mp->m_fuelu);
315         pr("\n");
316     }
317 }
318
319 void
320 show_ship_capab(int tlev)
321 {
322     struct mchrstr *mp;
323     i_type i;
324     int j;
325     int scount;
326     int n;
327     char *p;
328
329     pr("%25s cargos & capabilities\n", "");
330
331     make_new_list(tlev, EF_SHIP);
332     for (scount = 0; scount < lookup_list_cnt; scount++) {
333         mp = (struct mchrstr *)lookup_list[scount].l_u.mp;
334         /* Can't show trade ships unless it's turned on */
335         if ((mp->m_flags & M_TRADE) && !opt_TRADESHIPS)
336             continue;
337
338         pr("%-25.25s ", mp->m_name);
339
340         for (i = I_NONE + 1; i <= I_MAX; ++i)
341             if (mp->m_item[i])
342                 pr(" %d%c", mp->m_item[i], ichr[i].i_mnem);
343         pr(" ");
344         for (j = n = 0; j < 32; j++) {
345             if (!(mp->m_flags & bit(j)))
346                 continue;
347             if (NULL != (p = lookup(bit(j), ship_chr_flags))) {
348                 if (n++ > 0)
349                     pr(" ");
350                 pr(p);
351             }
352         }
353         pr("\n");
354     }
355 }
356
357 void
358 show_plane_stats(int tlev)
359 {
360     struct plchrstr *pp;
361     int pcount;
362
363     pr("%25s acc load att def ran fuel stlth\n", "");
364     make_new_list(tlev, EF_PLANE);
365     for (pcount = 0; pcount < lookup_list_cnt; pcount++) {
366         pp = (struct plchrstr *)lookup_list[pcount].l_u.pp;
367         pr("%-25.25s %3d %4d %3d %3d %3d %4d ",
368            pp->pl_name,
369            (int)PLN_ACC(pp->pl_acc, (int)(tlev - pp->pl_tech)),
370            (int)PLN_LOAD(pp->pl_load, (int)(tlev - pp->pl_tech)),
371            (int)PLN_ATTDEF(pp->pl_att, (int)(tlev - pp->pl_tech)),
372            (int)PLN_ATTDEF(pp->pl_def, (int)(tlev - pp->pl_tech)),
373            (int)PLN_RAN(pp->pl_range, (int)(tlev - pp->pl_tech)),
374            pp->pl_fuel);
375         pr("%4d%% ", pp->pl_stealth);
376         pr("\n");
377     }
378 }
379
380 void
381 show_plane_capab(int tlev)
382 {
383     struct plchrstr *pp;
384     int i;
385     int pcount;
386     int n;
387     char *p;
388
389     pr("%25s capabilities\n", "");
390     make_new_list(tlev, EF_PLANE);
391     for (pcount = 0; pcount < lookup_list_cnt; pcount++) {
392         pp = (struct plchrstr *)lookup_list[pcount].l_u.pp;
393         pr("%-25.25s  ", pp->pl_name);
394
395         for (i = n = 0; i < 32; i++) {
396             if (!(pp->pl_flags & bit(i)))
397                 continue;
398             if (NULL != (p = lookup(bit(i), plane_chr_flags))) {
399                 if (n++ > 0)
400                     pr(" ");
401                 pr(p);
402             }
403         }
404         pr("\n");
405     }
406 }
407
408 void
409 show_plane_build(int tlev)
410 {
411     struct plchrstr *pp;
412     int pcount;
413
414     pr("%25s lcm hcm crew avail tech $\n", "");
415     make_new_list(tlev, EF_PLANE);
416     for (pcount = 0; pcount < lookup_list_cnt; pcount++) {
417         pp = (struct plchrstr *)lookup_list[pcount].l_u.pp;
418         pr("%-25.25s %3d %3d %4d %5d %4d $%d\n",
419            pp->pl_name, pp->pl_lcm,
420            pp->pl_hcm, pp->pl_crew,
421            PLN_BLD_WORK(pp->pl_lcm, pp->pl_hcm), pp->pl_tech, pp->pl_cost);
422     }
423 }
424
425 void
426 show_land_build(int tlev)
427 {
428     struct lchrstr *lp;
429     int n;
430
431     pr("%25s lcm hcm guns avail tech $\n", "");
432     make_new_list(tlev, EF_LAND);
433     for (n = 0; n < lookup_list_cnt; n++) {
434         lp = (struct lchrstr *)lookup_list[n].l_u.lp;
435         if ((lp->l_flags & L_SPY) && !opt_LANDSPIES)
436             continue;
437         pr("%-25.25s %3d %3d %4d %5d %4d $%d\n",
438            lp->l_name, lp->l_lcm,
439            lp->l_hcm,
440            lp->l_gun,
441            LND_BLD_WORK(lp->l_lcm, lp->l_hcm), lp->l_tech, lp->l_cost);
442     }
443 }
444
445 void
446 show_land_capab(int tlev)
447 {
448     struct lchrstr *lcp;
449     int lcount;
450     i_type i;
451     int j, n;
452     char *p;
453
454     pr("%25s capabilities\n", "");
455
456     make_new_list(tlev, EF_LAND);
457     for (lcount = 0; lcount < lookup_list_cnt; lcount++) {
458         lcp = (struct lchrstr *)lookup_list[lcount].l_u.lp;
459         if ((lcp->l_flags & L_SPY) && !opt_LANDSPIES)
460             continue;
461
462         pr("%-25s ", lcp->l_name);
463
464         for (i = I_NONE + 1; i <= I_MAX; ++i)
465             if (lcp->l_item[i])
466                 pr(" %d%c", lcp->l_item[i], ichr[i].i_mnem);
467         pr(" ");
468         for (j = n = 0; j < 32; j++) {
469             if (!(lcp->l_flags & bit(j)))
470                 continue;
471             if (NULL != (p = lookup(bit(j), land_chr_flags))) {
472                 if (n++ > 0)
473                     pr(" ");
474                 pr(p);
475             }
476         }
477         pr("\n");
478     }
479 }
480
481 void
482 show_land_stats(int tlev)
483 {
484     struct lchrstr *lcp;
485     int lcount;
486     int ourtlev;
487
488     pr("%25s              s  v  s  r  r  a  f  a  a        x  l\n", "");
489     pr("%25s              p  i  p  a  n  c  i  m  a  f  f  p  n\n", "");
490     pr("%25s att def vul  d  s  y  d  g  c  r  m  f  c  u  l  d\n", "");
491
492     make_new_list(tlev, EF_LAND);
493     for (lcount = 0; lcount < lookup_list_cnt; lcount++) {
494         lcp = (struct lchrstr *)lookup_list[lcount].l_u.lp;
495         if ((lcp->l_flags & L_SPY) && !opt_LANDSPIES)
496             continue;
497
498         ourtlev = (int)(tlev - lcp->l_tech);
499         pr("%-25s %1.1f %1.1f %3d ",
500            lcp->l_name, (float)LND_ATTDEF(lcp->l_att, ourtlev),
501            (float)LND_ATTDEF(lcp->l_def, ourtlev),
502            (int)LND_VUL(lcp->l_vul, ourtlev));
503         pr("%2d %2d %2d %2d ",
504            (int)LND_SPD(lcp->l_spd, ourtlev),
505            (int)LND_VIS(lcp->l_vis, ourtlev),
506            (int)LND_SPY(lcp->l_spy, ourtlev),
507            (int)LND_RAD(lcp->l_rad, ourtlev));
508         pr("%2d %2d %2d %2d %2d ",
509            (int)LND_FRG(lcp->l_frg, ourtlev),
510            (int)LND_ACC(lcp->l_acc, ourtlev),
511            (int)LND_DAM(lcp->l_dam, ourtlev),
512            (int)LND_AMM(lcp->l_ammo, lcp->l_dam, ourtlev),
513            (int)LND_AAF(lcp->l_aaf, ourtlev));
514         pr("%2d %2d %2d %2d ",
515            (int)LND_FC(lcp->l_fuelc, ourtlev),
516            (int)LND_FU(lcp->l_fuelu, ourtlev),
517            (int)LND_XPL(lcp->l_nxlight, ourtlev),
518            (int)LND_MXL(lcp->l_mxland, ourtlev));
519
520         pr("\n");
521     }
522 }
523
524 void
525 show_sect_build(int foo)
526 {
527     int x, first = 1;
528
529     for (x = 0; x <= SCT_MAXDEF; x++) {
530         if (dchr[x].d_mnem == 0)
531             continue;
532         if (dchr[x].d_cost < 0)
533             continue;
534         if ((dchr[x].d_cost > 0) || (dchr[x].d_build != 1) ||
535             (dchr[x].d_lcms > 0) || (dchr[x].d_hcms > 0)) {
536             if (first) {
537                 pr("sector type    cost to des    cost for 1%% eff   lcms for 1%%    hcms for 1%%\n");
538                 first = 0;
539             }
540             pr("%-14c %-14d %-17d %-14d %d\n",
541                dchr[x].d_mnem, dchr[x].d_cost, dchr[x].d_build,
542                dchr[x].d_lcms, dchr[x].d_hcms);
543         }
544     }
545     pr("\n");
546     pr("Infrastructure building - adding 1 point of efficiency costs:\n");
547     pr("       type          lcms    hcms    mobility    $$$$\n");
548     for (x = 0; intrchr[x].in_name; x++) {
549         pr("%-20s %4d    %4d    %8d    %4d\n", intrchr[x].in_name,
550            intrchr[x].in_lcms, intrchr[x].in_hcms,
551            intrchr[x].in_mcost, intrchr[x].in_dcost);
552     }
553 }
554
555 void
556 show_sect_stats(int foo)
557 {
558     int x, first = 1;
559     struct natstr *natp;
560
561     natp = getnatp(player->cnum);
562     for (x = 0; x <= SCT_MAXDEF; x++) {
563         if (dchr[x].d_mnem == 0)
564             continue;
565         if (first) {
566             pr("                        base     max   max   --  packing bonus  --   max\n");
567             pr("  sector type           mcost    off   def   mil  uw civ bar other   pop\n");
568             first = 0;
569         }
570         pr("%c %-23s %3d  %5.2f %5.2f   %3d %3d %3d %3d %5d %5d\n",
571            dchr[x].d_mnem, dchr[x].d_name,
572            dchr[x].d_mcst, dchr[x].d_ostr,
573            dchr[x].d_dstr,
574            ichr[I_MILIT].i_pkg[dchr[x].d_pkg],
575            ichr[I_UW].i_pkg[dchr[x].d_pkg],
576            ichr[I_CIVIL].i_pkg[dchr[x].d_pkg],
577            ichr[I_BAR].i_pkg[dchr[x].d_pkg],
578            ichr[I_LCM].i_pkg[dchr[x].d_pkg],
579            max_population(natp->nat_level[NAT_RLEV], x, 100));
580     }
581 }
582
583 void
584 show_sect_capab(int foo)
585 {
586     int x, first = 1, i, j;
587     char *tmpstr;
588
589     for (x = 0; x <= SCT_MAXDEF; x++) {
590         if ((dchr[x].d_mnem == 0) || (dchr[x].d_prd == 0))
591             continue;
592         if (first) {
593             pr("                                                 --- level ---          reso \n");
594             pr("  sector type             product use1 use2 use3 level min lag eff%% $$$ dep c\n");
595             first = 0;
596         }
597
598         j = dchr[x].d_prd;
599
600         pr("%c %-23s %-7s ", dchr[x].d_mnem, dchr[x].d_name,
601            pchr[j].p_sname);
602         (void)CANT_HAPPEN(MAXPRCON > 3); /* output has only three columns */
603         for (i = 0; i < 3; i++) {
604             if (i < MAXPRCON
605                 && pchr[j].p_camt[i]
606                 && pchr[j].p_ctype[i] > I_NONE
607                 && pchr[j].p_ctype[i] <= I_MAX) {
608                 pr("%2d %c ", pchr[j].p_camt[i],
609                    ichr[pchr[j].p_ctype[i]].i_name[0]);
610             } else {
611                 pr("     ");
612             }
613         }
614         switch (pchr[j].p_nlndx) {
615         case NAT_TLEV:
616             tmpstr = "tech";
617             break;
618         case NAT_ELEV:
619             tmpstr = "edu";
620             break;
621         case NAT_RLEV:
622             tmpstr = "res";
623             break;
624         case NAT_HLEV:
625             tmpstr = "hap";
626             break;
627         default:
628             tmpstr = " ";
629             break;
630         }
631         pr("%-5s %3d %3d %4d %3d %3d %c",
632            tmpstr,
633            pchr[j].p_nlmin,
634            pchr[j].p_nllag,
635            pchr[j].p_effic, pchr[j].p_cost, pchr[j].p_nrdep,
636            pchr[j].p_type != I_NONE ? ichr[pchr[j].p_type].i_mnem : ' ');
637
638         pr("\n");
639     }
640 }