]> git.pond.sub.org Git - empserver/blob - src/lib/subs/show.c
Indented with src/scripts/indent-emp.
[empserver] / src / lib / subs / show.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 "misc.h"
45 #include "player.h"
46 #include "nuke.h"
47 #include "var.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 double sqrt(double);
59 double logx(double, double);
60
61 /*
62  * This cruft really belongs in the empglb.c file.
63  * Yuck.
64  */
65
66 struct lookup {
67     int key;
68     s_char *value;
69 };
70
71 struct lookup ship_flags[] = {
72     {M_FOOD, "fish"},
73     {M_TORP, "torp"},
74     {M_DCH, "dchrg"},
75     {M_FLY, "plane"},
76     {M_MSL, "miss"},
77     {M_OIL, "oil"},
78     {M_SONAR, "sonar"},
79     {M_MINE, "mine"},
80     {M_SWEEP, "sweep"},
81     {M_SUB, "sub"},
82     {M_SPY, "spy"},
83     {M_LAND, "land"},
84     {M_SUBT, "sub-torp"},
85     {M_TRADE, "trade"},
86     {M_SEMILAND, "semi-land"},
87     {M_OILER, "oiler"},
88     {M_SUPPLY, "supply"},
89     {M_ANTIMISSILE, "anti-missile"},
90     {0, 0}
91 };
92
93 struct lookup land_flags[] = {
94     {L_XLIGHT, "xlight"},
95     {L_ENGINEER, "engineer"},
96     {L_SUPPLY, "supply"},
97     {L_SECURITY, "security"},
98     {L_LIGHT, "light"},
99     {L_MARINE, "marine"},
100     {L_RECON, "recon"},
101     {L_RADAR, "radar"},
102     {L_ASSAULT, "assault"},
103     {L_FLAK, "flak"},
104     {L_SPY, "spy"},
105     {L_TRAIN, "train"},
106     {L_HEAVY, "heavy"},
107     {0, 0}
108 };
109
110
111 struct lookup plane_flags[] = {
112     {P_T, "tactical"},
113     {P_B, "bomber"},
114     {P_F, "intercept"},
115     {P_C, "cargo"},
116     {P_V, "VTOL"},
117     {P_M, "missile"},
118     {P_L, "light"},
119     {P_S, "spy"},
120     {P_I, "image"},
121     {P_O, "satellite"},
122     {P_X, "stealth"},
123     {P_N, "SDI"},
124     {P_H, "half-stealth"},
125     {P_E, "x-light"},
126     {P_K, "helo"},
127     {P_A, "ASW"},
128     {P_P, "para"},
129     {P_ESC, "escort"},
130     {P_MINE, "mine"},
131     {P_SWEEP, "sweep"},
132     {P_MAR, "marine"},
133     {0, 0}
134 };
135
136 struct lookup nuke_flags[] = {
137     {N_NEUT, "neutron"},
138     {0, 0}
139 };
140
141 struct look_list {
142     union {
143         struct lchrstr *lp;
144         struct plchrstr *pp;
145         struct mchrstr *mp;
146         int value;
147     } l_u;
148     int tech;
149 } lookup_list[200];             /* Change this if there are ever more than 200 planes, ships
150                                    or land units. */
151 static int lookup_list_cnt = 0;
152
153 void
154 sort_lookup_list(void)
155 {
156     struct natstr *np = getnatp(player->cnum);
157     struct look_list tmp;
158     int i;
159     int j;
160
161     if (!(np->nat_flags & NF_TECHLISTS))
162         return;
163     for (i = 0; i < lookup_list_cnt; i++) {
164         for (j = i; j < lookup_list_cnt; j++) {
165             if (lookup_list[j].tech < lookup_list[i].tech) {
166                 tmp = lookup_list[j];
167                 lookup_list[j] = lookup_list[i];
168                 lookup_list[i] = tmp;
169             }
170         }
171     }
172 }
173
174 static
175     void
176 make_new_list(int tlev, int type)
177 {
178     struct plchrstr *pp;
179     struct lchrstr *lp;
180     struct mchrstr *mp;
181     int count;
182
183     lookup_list_cnt = 0;
184     if (type == EF_PLANE) {
185         for (pp = plchr, count = 0; count < pln_maxno; count++, pp++) {
186             if (pp->pl_tech > tlev)
187                 continue;
188             if (pp->pl_name == 0 || pp->pl_name[0] == '\0')
189                 continue;
190             lookup_list[lookup_list_cnt].l_u.pp = pp;
191             lookup_list[lookup_list_cnt].tech = pp->pl_tech;
192             lookup_list_cnt++;
193         }
194     } else if (type == EF_SHIP) {
195         for (mp = mchr, count = 0; count < shp_maxno; count++, mp++) {
196             if (mp->m_tech > tlev)
197                 continue;
198             if (mp->m_name == 0 || mp->m_name[0] == '\0')
199                 continue;
200             lookup_list[lookup_list_cnt].l_u.mp = mp;
201             lookup_list[lookup_list_cnt].tech = mp->m_tech;
202             lookup_list_cnt++;
203         }
204     } else if (type == EF_LAND) {
205         for (lp = lchr, count = 0; count < lnd_maxno; count++, lp++) {
206             if (lp->l_tech > tlev)
207                 continue;
208             if (lp->l_name == 0 || lp->l_name[0] == '\0')
209                 continue;
210             lookup_list[lookup_list_cnt].l_u.lp = lp;
211             lookup_list[lookup_list_cnt].tech = lp->l_tech;
212             lookup_list_cnt++;
213         }
214     } else
215         return;
216
217     sort_lookup_list();
218 }
219
220 static
221 s_char *
222 lookup(int key, struct lookup *table)
223 {
224     int match;
225
226     if ((match = intmatch(key, &table->key, sizeof(*table))) < 0)
227         return 0;
228     return table[match].value;
229 }
230
231 void
232 show_bridge(int tlev)
233 {
234     extern double buil_bt, buil_bc;
235     extern int buil_bh;
236
237     if (tlev < buil_bt)
238         return;
239     pr("Bridges require %g tech,", buil_bt);
240     if (!opt_NO_HCMS)
241         pr(" %d hcm,", buil_bh);
242     else if (!opt_NO_LCMS)
243         pr(" %d lcm,", buil_bh);
244     pr(" %d workers,\n", buil_bh * 2);
245     pr("%d available workforce, and cost $%g\n",
246        1 + (buil_bh * 40 / 100), buil_bc);
247 }
248
249 void
250 show_tower(int tlev)
251 {
252     extern double buil_tower_bt, buil_tower_bc;
253     extern int buil_tower_bh;
254
255     if (tlev < buil_tower_bt)
256         return;
257     pr("Bridge Towers require %g tech,", buil_tower_bt);
258     if (!opt_NO_HCMS)
259         pr(" %d hcm,", buil_tower_bh);
260     else if (!opt_NO_LCMS)
261         pr(" %d lcm,", buil_tower_bh);
262     pr(" %d workers,\n", buil_tower_bh * 2);
263     pr("%d available workforce, and cost $%g\n",
264        1 + (buil_tower_bh * 40 / 100), buil_tower_bc);
265 }
266
267 void
268 show_nuke_stats(int tlev)
269 {
270     show_nuke_capab(tlev);
271 }
272
273 void
274 show_nuke_build(int tlev)
275 {
276     register struct nchrstr *np;
277     register int n;
278     register int avail;
279     extern float drnuke_const;
280
281     if (opt_DRNUKE)
282         pr("%13s lcm hcm  oil  rad avail tech res $\n", "");
283     else
284         pr("%13s lcm hcm  oil  rad avail tech $\n", "");
285
286     if (opt_NONUKES)
287         return;
288     for (np = nchr, n = 0; n < N_MAXNUKE; np++, n++) {
289         avail =
290             (4 + np->n_rad + np->n_oil + np->n_lcm + np->n_hcm * 2) / 5;
291         if (np->n_tech > tlev)
292             continue;
293         if (np->n_name == 0 || np->n_name[0] == '\0')
294             continue;
295         if (opt_NEUTRON == 0 && (np->n_flags & N_NEUT))
296             continue;
297         if (opt_DRNUKE)
298             pr("%-13.13s %3d %3d %4d %4d %5d %4d %3d $%6d\n",
299                np->n_name, np->n_lcm, np->n_hcm, np->n_oil,
300                np->n_rad, avail, np->n_tech,
301                (int)(np->n_tech * drnuke_const) + 1, np->n_cost);
302         else                    /* not DRNUKE */
303             pr("%-13.13s %3d %3d %4d %4d %5d %4d $%6d\n",
304                np->n_name, np->n_lcm, np->n_hcm, np->n_oil,
305                np->n_rad, avail, np->n_tech, np->n_cost);
306     }
307 }
308
309 void
310 show_nuke_capab(int tlev)
311 {
312     register struct nchrstr *np;
313     register int i, j, n;
314     s_char *p;
315     extern float drnuke_const;
316
317     if (opt_DRNUKE)
318         pr("%13s blst dam lbs tech res $%7s abilities\n", "", "");
319     else
320         pr("%13s blst dam lbs tech $%7s abilities\n", "", "");
321
322     if (opt_NONUKES)
323         return;
324     for (np = nchr, n = 0; n < N_MAXNUKE; np++, n++) {
325         if (np->n_tech > tlev)
326             continue;
327         if (opt_NEUTRON == 0 && (np->n_flags & N_NEUT))
328             continue;
329         if (np->n_name == 0 || np->n_name[0] == '\0')
330             continue;
331         if (opt_DRNUKE)
332             pr("%-13.13s %4d %3d %3d %4d %3d $%7d ",
333                np->n_name, np->n_blast, np->n_dam,
334                np->n_weight, np->n_tech,
335                (int)(np->n_tech * drnuke_const) + 1, np->n_cost);
336         else                    /* not DRNUKE */
337             pr("%-13.13s %4d %3d %3d %4d $%7d ",
338                np->n_name, np->n_blast, np->n_dam,
339                np->n_weight, np->n_tech, np->n_cost);
340
341         for (i = j = 0; i < 32; i++) {
342             if (!(np->n_flags & bit(i)))
343                 continue;
344             if (NULL != (p = lookup(bit(i), nuke_flags))) {
345                 if (j++ > 0)
346                     pr(" ");
347                 pr(p);
348             }
349         }
350         pr("\n");
351     }
352 }
353
354 void
355 show_ship_build(int tlev)
356 {
357     register struct mchrstr *mp;
358     register int n;
359
360     pr("%25s lcm hcm avail tech $\n", "");
361     make_new_list(tlev, EF_SHIP);
362     for (n = 0; n < lookup_list_cnt; n++) {
363         mp = (struct mchrstr *)lookup_list[n].l_u.mp;
364         /* Can't show trade ships unless it's turned on */
365         if ((mp->m_flags & M_TRADE) && !opt_TRADESHIPS)
366             continue;
367
368         pr("%-25.25s %3d %3d %5d %4d $%d\n",
369            mp->m_name, mp->m_lcm, mp->m_hcm,
370            20 + mp->m_lcm + mp->m_hcm * 2, mp->m_tech, mp->m_cost);
371     }
372 }
373
374 void
375 show_ship_stats(int tlev)
376 {
377     register struct mchrstr *mp;
378     int scount;
379     int techdiff;
380
381     pr("%25s      s  v  s  r  f  l  p", "");
382     pr("  h");
383     pr("  x");
384     if (opt_FUEL)
385         pr("  fuel");
386     pr("\n");
387
388     pr("%25s      p  i  p  n  i  n  l", "");
389     pr("  e");
390     pr("  p");
391     if (opt_FUEL)
392         pr("   c/u");
393     pr("\n");
394
395     pr("%25s def  d  s  y  g  r  d  n", "");
396     pr("  l");
397     pr("  l");
398     if (opt_FUEL)
399         pr("      ");
400     pr("\n");
401
402
403     make_new_list(tlev, EF_SHIP);
404     for (scount = 0; scount < lookup_list_cnt; scount++) {
405         mp = (struct mchrstr *)lookup_list[scount].l_u.mp;
406         /* Can't show trade ships unless it's turned on */
407         if ((mp->m_flags & M_TRADE) && !opt_TRADESHIPS)
408             continue;
409
410         techdiff = (int)(tlev - mp->m_tech);
411         pr("%-25.25s %3d %2d %2d %2d %2d %2d ",
412            mp->m_name,
413            (short)SHP_DEF(mp->m_armor, techdiff),
414            (short)SHP_SPD(mp->m_speed, techdiff),
415            (short)SHP_VIS(mp->m_visib, techdiff),
416            mp->m_vrnge,
417            (short)SHP_RNG(mp->m_frnge, techdiff),
418            (short)SHP_FIR(mp->m_glim, techdiff));
419
420         pr("%2d ", mp->m_nland);
421         pr("%2d ", mp->m_nplanes);
422         pr("%2d ", mp->m_nchoppers);
423         pr("%2d ", mp->m_nxlight);
424         if (opt_FUEL)
425             pr("%3d/%1d ", mp->m_fuelc, mp->m_fuelu);
426         pr("\n");
427     }
428 }
429
430 void
431 show_ship_capab(int tlev)
432 {
433     register struct mchrstr *mp;
434     register u_short *ap;
435     register u_char *type;
436     register int i;
437     register int it;
438     int scount;
439     int n;
440     s_char c;
441     s_char *p;
442
443     pr("%25s cargos & capabilities\n", "");
444
445     make_new_list(tlev, EF_SHIP);
446     for (scount = 0; scount < lookup_list_cnt; scount++) {
447         mp = (struct mchrstr *)lookup_list[scount].l_u.mp;
448         /* Can't show trade ships unless it's turned on */
449         if ((mp->m_flags & M_TRADE) && !opt_TRADESHIPS)
450             continue;
451
452         pr("%-25.25s ", mp->m_name);
453
454         /*
455          * should use vector stuff
456          */
457         for (ap = mp->m_vamt, type = mp->m_vtype, i = 0;
458              i < mp->m_nv; i++, ap++, type++) {
459             it = unitem((int)*type);
460             if (it > 0 && it <= I_MAX && ichr[it].i_name != 0)
461                 c = ichr[it].i_name[0];
462             else
463                 c = '?';
464             pr(" %d%c", *ap, c);
465         }
466         pr(" ");
467         for (i = n = 0; i < 32; i++) {
468             if (!(mp->m_flags & bit(i)))
469                 continue;
470             if (NULL != (p = lookup(bit(i), ship_flags))) {
471                 if (n++ > 0)
472                     pr(" ");
473                 pr(p);
474             }
475         }
476         pr("\n");
477     }
478 }
479
480 void
481 show_plane_stats(int tlev)
482 {
483     register struct plchrstr *pp;
484     int pcount;
485
486     pr("%25s acc load att def ran fuel stlth\n", "");
487     make_new_list(tlev, EF_PLANE);
488     for (pcount = 0; pcount < lookup_list_cnt; pcount++) {
489         pp = (struct plchrstr *)lookup_list[pcount].l_u.pp;
490         pr("%-25.25s %3d %4d %3d %3d %3d %4d ",
491            pp->pl_name,
492            (int)PLN_ACC(pp->pl_acc, (int)(tlev - pp->pl_tech)),
493            (int)PLN_LOAD(pp->pl_load, (int)(tlev - pp->pl_tech)),
494            (int)PLN_ATTDEF(pp->pl_att, (int)(tlev - pp->pl_tech)),
495            (int)PLN_ATTDEF(pp->pl_def, (int)(tlev - pp->pl_tech)),
496            (int)PLN_RAN(pp->pl_range, (int)(tlev - pp->pl_tech)),
497            pp->pl_fuel);
498         pr("%4d%% ", pp->pl_stealth);
499         pr("\n");
500     }
501 }
502
503 void
504 show_plane_capab(int tlev)
505 {
506     register struct plchrstr *pp;
507     register int i;
508     int pcount;
509     int n;
510     s_char *p;
511
512     pr("%25s capabilities\n", "");
513     make_new_list(tlev, EF_PLANE);
514     for (pcount = 0; pcount < lookup_list_cnt; pcount++) {
515         pp = (struct plchrstr *)lookup_list[pcount].l_u.pp;
516         pr("%-25.25s  ", pp->pl_name);
517
518         for (i = n = 0; i < 32; i++) {
519             if (!(pp->pl_flags & bit(i)))
520                 continue;
521             if (NULL != (p = lookup(bit(i), plane_flags))) {
522                 if (n++ > 0)
523                     pr(" ");
524                 pr(p);
525             }
526         }
527         pr("\n");
528     }
529 }
530
531 void
532 show_plane_build(int tlev)
533 {
534     register struct plchrstr *pp;
535     register int pcount;
536
537     pr("%25s lcm hcm crew avail tech  $\n", "");
538     make_new_list(tlev, EF_PLANE);
539     for (pcount = 0; pcount < lookup_list_cnt; pcount++) {
540         pp = (struct plchrstr *)lookup_list[pcount].l_u.pp;
541         pr("%-25.25s %3d %3d %3d %5d %4d $%d\n",
542            pp->pl_name, pp->pl_lcm,
543            pp->pl_hcm, pp->pl_crew,
544            20 + 2 * pp->pl_hcm + pp->pl_lcm, pp->pl_tech, pp->pl_cost);
545     }
546 }
547
548 void
549 show_land_build(int tlev)
550 {
551     register struct lchrstr *lp;
552     register int n;
553
554     pr("%25s lcm hcm guns avail tech  $\n", "");
555     make_new_list(tlev, EF_LAND);
556     for (n = 0; n < lookup_list_cnt; n++) {
557         lp = (struct lchrstr *)lookup_list[n].l_u.lp;
558         if ((lp->l_flags & L_SPY) && !opt_LANDSPIES)
559             continue;
560         pr("%-25.25s %3d %3d %4d %5d %4d  $%d\n",
561            lp->l_name, lp->l_lcm,
562            lp->l_hcm,
563            lp->l_gun,
564            20 + lp->l_lcm + (lp->l_hcm * 2), lp->l_tech, lp->l_cost);
565     }
566 }
567
568 void
569 show_land_capab(int tlev)
570 {
571     struct lchrstr *lcp;
572     int lcount;
573     register u_short *ap;
574     register u_char *type;
575     register int i, n;
576     register int it;
577     register s_char *p, c;
578
579     pr("%25s capabilities\n", "");
580
581     make_new_list(tlev, EF_LAND);
582     for (lcount = 0; lcount < lookup_list_cnt; lcount++) {
583         lcp = (struct lchrstr *)lookup_list[lcount].l_u.lp;
584         if ((lcp->l_flags & L_SPY) && !opt_LANDSPIES)
585             continue;
586
587         pr("%-25s ", lcp->l_name);
588
589         /*
590          * should use vector stuff
591          */
592         for (ap = lcp->l_vamt, type = lcp->l_vtype, i = 0;
593              i < lcp->l_nv; i++, ap++, type++) {
594             it = unitem((int)*type);
595             if (it > 0 && it <= I_MAX && ichr[it].i_name != 0)
596                 c = ichr[it].i_name[0];
597             else
598                 c = '?';
599             pr(" %d%c", *ap, c);
600         }
601         pr(" ");
602         for (i = n = 0; i < 32; i++) {
603             if (!(lcp->l_flags & bit(i)))
604                 continue;
605             if (NULL != (p = lookup(bit(i), land_flags))) {
606                 if (n++ > 0)
607                     pr(" ");
608                 pr(p);
609             }
610         }
611         pr("\n");
612     }
613 }
614
615 void
616 show_land_stats(int tlev)
617 {
618     struct lchrstr *lcp;
619     int lcount;
620     int ourtlev;
621
622     pr("%25s              s  v  s  r  r  a  f  a  a        x  l\n", "");
623     pr("%25s              p  i  p  a  n  c  i  m  a  f  f  p  n\n", "");
624     pr("%25s att def vul  d  s  y  d  g  c  r  m  f  c  u  l  d\n", "");
625
626     make_new_list(tlev, EF_LAND);
627     for (lcount = 0; lcount < lookup_list_cnt; lcount++) {
628         lcp = (struct lchrstr *)lookup_list[lcount].l_u.lp;
629         if ((lcp->l_flags & L_SPY) && !opt_LANDSPIES)
630             continue;
631
632         ourtlev = (int)(tlev - lcp->l_tech);
633         pr("%-25s %1.1f %1.1f %3d ",
634            lcp->l_name, (float)LND_ATTDEF(lcp->l_att, ourtlev),
635            (float)LND_ATTDEF(lcp->l_def, ourtlev),
636            (int)LND_VUL(lcp->l_vul, ourtlev));
637         pr("%2d %2d %2d %2d ",
638            (int)LND_SPD(lcp->l_spd, ourtlev),
639            (int)LND_VIS(lcp->l_vis, ourtlev),
640            (int)LND_SPY(lcp->l_spy, ourtlev),
641            (int)LND_RAD(lcp->l_rad, ourtlev));
642         pr("%2d %2d %2d %2d %2d ",
643            (int)LND_FRG(lcp->l_frg, ourtlev),
644            (int)LND_ACC(lcp->l_acc, ourtlev),
645            (int)LND_DAM(lcp->l_dam, ourtlev),
646            (int)LND_AMM(lcp->l_ammo, lcp->l_dam, ourtlev),
647            (int)LND_AAF(lcp->l_aaf, ourtlev));
648         pr("%2d %2d %2d %2d ",
649            (int)LND_FC(lcp->l_fuelc, ourtlev),
650            (int)LND_FU(lcp->l_fuelu, ourtlev),
651            (int)LND_XPL(lcp->l_nxlight, ourtlev),
652            (int)LND_MXL(lcp->l_mxland, ourtlev));
653
654         pr("\n");
655     }
656 }
657
658 void
659 show_sect_build(int foo)
660 {
661     register int x, first = 1;
662
663     for (x = 5; x < SCT_MAXDEF + 2; x++) {
664         if (dchr[x].d_mnem == 0)
665             continue;
666         if ((dchr[x].d_cost > 0) || (dchr[x].d_build != 1) ||
667             (dchr[x].d_lcms > 0) || (dchr[x].d_hcms > 0)) {
668             if (first) {
669                 pr("sector type    cost to des    cost for 1%% eff   lcms for 1%%    hcms for 1%%\n");
670                 first = 0;
671             }
672             pr("%-14c %-14d %-17d %-14d %d\n",
673                dchr[x].d_mnem, dchr[x].d_cost, dchr[x].d_build,
674                dchr[x].d_lcms, dchr[x].d_hcms);
675         }
676     }
677     pr("\n");
678     pr("Infrastructure building - adding 1 point of efficiency costs:\n");
679     pr("       type          lcms    hcms    mobility    $$$$\n");
680     for (x = 0; intrchr[x].in_name; x++) {
681         pr("%-20s %4d    %4d    %8d    %4d\n", intrchr[x].in_name,
682            intrchr[x].in_lcms, intrchr[x].in_hcms,
683            intrchr[x].in_mcost, intrchr[x].in_dcost);
684     }
685 }
686
687 void
688 show_sect_stats(int foo)
689 {
690     register int x, first = 1;
691     struct sctstr sect;
692     struct natstr *natp;
693
694     natp = getnatp(player->cnum);
695     /* We fake this */
696     sect.sct_effic = 100;
697     for (x = 0; x < SCT_MAXDEF + 2; x++) {
698         if (dchr[x].d_mnem == 0)
699             continue;
700         if (first) {
701             pr("                        base     max   max   --  packing bonus  --   max\n");
702             pr("  sector type           mcost    off   def   mil  uw civ bar other   pop\n");
703             first = 0;
704         }
705         sect.sct_type = x;
706         pr("%c %-23s %3d  %5.2f %5.2f   %3d %3d %3d %3d %5d %5d\n",
707            dchr[x].d_mnem, dchr[x].d_name,
708            dchr[x].d_mcst, dchr[x].d_ostr,
709            dchr[x].d_dstr,
710            ichr[I_MILIT].i_pkg[dchr[x].d_pkg],
711            ichr[I_UW].i_pkg[dchr[x].d_pkg],
712            ichr[I_CIVIL].i_pkg[dchr[x].d_pkg],
713            ichr[I_BAR].i_pkg[dchr[x].d_pkg],
714            ichr[I_LCM].i_pkg[dchr[x].d_pkg],
715            max_pop(natp->nat_level[NAT_RLEV], &sect));
716     }
717 }
718
719 void
720 show_sect_capab(int foo)
721 {
722     register int x, first = 1, i, j;
723     char *tmpstr;
724     char c;
725     char *outputs = " cmsgpidbfolhur";
726
727     for (x = 0; x < SCT_MAXDEF + 2; x++) {
728         if ((dchr[x].d_mnem == 0) || (dchr[x].d_prd == 0))
729             continue;
730         if (first) {
731             pr("                                                 --- level ---          reso \n");
732             pr("  sector type             product use1 use2 use3 level min lag eff%% $$$ dep c\n");
733             first = 0;
734         }
735
736         j = dchr[x].d_prd;
737
738         pr("%c %-23s %-7s ", dchr[x].d_mnem, dchr[x].d_name,
739            pchr[j].p_sname);
740         /*for(i=0;i<MAXCHRNV;i++) */
741         /* XXX currently no more than 3 items actually used */
742         for (i = 0; i < 3; i++) {
743             if ((i < pchr[j].p_nv) && (pchr[j].p_vamt[i] > 0)) {
744                 pr("%2d %c ", pchr[j].p_vamt[i],
745                    ichr[pchr[j].p_vtype[i] & (~VT_ITEM)].i_name[0]);
746             } else {
747                 pr("     ");
748             }
749         }
750         switch (pchr[j].p_nlndx) {
751         case NAT_TLEV:
752             tmpstr = "tech";
753             break;
754         case NAT_ELEV:
755             tmpstr = "edu";
756             break;
757         case NAT_RLEV:
758             tmpstr = "res";
759             break;
760         case NAT_HLEV:
761             tmpstr = "hap";
762             break;
763         default:
764             tmpstr = " ";
765             break;
766         }
767         if (pchr[j].p_type)
768             c = outputs[pchr[j].p_type - VT_ITEM];
769         else
770             c = ' ';
771         pr("%-5s %3d %3d %4d %3d %3d %c",
772            tmpstr,
773            pchr[j].p_nlmin,
774            pchr[j].p_nllag,
775            pchr[j].p_effic, pchr[j].p_cost, pchr[j].p_nrdep, c);
776
777         pr("\n");
778     }
779 }