]> git.pond.sub.org Git - empserver/blob - src/lib/commands/buil.c
Get rid of ship and land unit load counters
[empserver] / src / lib / commands / buil.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  buil.c: Build ships, nukes, bridges, planes, land units, bridge towers
29  * 
30  *  Known contributors to this file:
31  *      Steve McClure, 1998-2000
32  *      Markus Armbruster, 2004-2008
33  */
34
35 #include <config.h>
36
37 #include <limits.h>
38 #include "commands.h"
39 #include "game.h"
40 #include "land.h"
41 #include "lost.h"
42 #include "map.h"
43 #include "nuke.h"
44 #include "optlist.h"
45 #include "path.h"
46 #include "plague.h"
47 #include "plane.h"
48 #include "ship.h"
49 #include "treaty.h"
50
51 static int build_nuke(struct sctstr *sp,
52                       struct nchrstr *np, short *vec, int tlev);
53 static int build_ship(struct sctstr *sp,
54                       struct mchrstr *mp, short *vec, int tlev);
55 static int build_land(struct sctstr *sp,
56                       struct lchrstr *lp, short *vec, int tlev);
57 static int build_bridge(struct sctstr *sp, short *vec);
58 static int build_tower(struct sctstr *sp, short *vec);
59 static int build_plane(struct sctstr *sp,
60                        struct plchrstr *pp, short *vec, int tlev);
61 static int build_can_afford(double, char *);
62
63 /*
64  * build <WHAT> <SECTS> <TYPE|DIR|MEG> [NUMBER]
65  */
66 int
67 buil(void)
68 {
69     struct sctstr sect;
70     struct nstr_sect nstr;
71     struct natstr *natp;
72     int rqtech;
73     int tlev;
74     int rlev;
75     int type;
76     char what;
77     struct lchrstr *lp;
78     struct mchrstr *mp;
79     struct plchrstr *pp;
80     struct nchrstr *np;
81     char *p;
82     int gotsect = 0;
83     int built;
84     int number;
85     char buf[1024];
86
87     natp = getnatp(player->cnum);
88     if ((p =
89          getstarg(player->argp[1],
90                   "Build (ship, nuke, bridge, plane, land unit, tower)? ",
91                   buf)) == 0)
92         return RET_SYN;
93     what = *p;
94
95     if (!snxtsct(&nstr, player->argp[2])) {
96         pr("Bad sector specification.\n");
97         return RET_SYN;
98     }
99     tlev = (int)natp->nat_level[NAT_TLEV];
100     rlev = (int)natp->nat_level[NAT_RLEV];
101
102     switch (what) {
103     case 'p':
104         p = getstarg(player->argp[3], "Plane type? ", buf);
105         if (p == 0 || *p == 0)
106             return RET_SYN;
107         type = ef_elt_byname(EF_PLANE_CHR, p);
108         if (type >= 0) {
109             pp = &plchr[type];
110             rqtech = pp->pl_tech;
111             if (rqtech > tlev)
112                 type = -1;
113         }
114         if (type < 0) {
115             pr("You can't build that!\n");
116             pr("Use `show plane build %d' to show types you can build.\n",
117                tlev);
118             return RET_FAIL;
119         }
120         break;
121     case 's':
122         p = getstarg(player->argp[3], "Ship type? ", buf);
123         if (p == 0 || *p == 0)
124             return RET_SYN;
125         type = ef_elt_byname(EF_SHIP_CHR, p);
126         if (type >= 0) {
127             mp = &mchr[type];
128             rqtech = mp->m_tech;
129             if (rqtech > tlev)
130                 type = -1;
131             if ((mp->m_flags & M_TRADE) && !opt_TRADESHIPS)
132                 type = -1;
133         }
134         if (type < 0) {
135             pr("You can't build that!\n");
136             pr("Use `show ship build %d' to show types you can build.\n",
137                tlev);
138             return RET_FAIL;
139         }
140         break;
141     case 'l':
142         p = getstarg(player->argp[3], "Land unit type? ", buf);
143         if (p == 0 || *p == 0)
144             return RET_SYN;
145         type = ef_elt_byname(EF_LAND_CHR, p);
146         if (type >= 0) {
147             lp = &lchr[type];
148             rqtech = lp->l_tech;
149             if (rqtech > tlev)
150                 type = -1;
151             if ((lp->l_flags & L_SPY) && !opt_LANDSPIES)
152                 type = -1;
153         }
154         if (type < 0) {
155             pr("You can't build that!\n");
156             pr("Use `show land build %d' to show types you can build.\n",
157                tlev);
158             return RET_FAIL;
159         }
160         break;
161     case 'b':
162         if (natp->nat_level[NAT_TLEV] + 0.005 < buil_bt) {
163             pr("Building a span requires a tech of %.0f\n", buil_bt);
164             return RET_FAIL;
165         }
166         break;
167     case 't':
168         if (!opt_BRIDGETOWERS) {
169             pr("Bridge tower building is disabled.\n");
170             return RET_FAIL;
171         }
172         if (natp->nat_level[NAT_TLEV] + 0.005 < buil_tower_bt) {
173             pr("Building a tower requires a tech of %.0f\n",
174                buil_tower_bt);
175             return RET_FAIL;
176         }
177         break;
178     case 'n':
179         if (!ef_nelem(EF_NUKE_CHR)) {
180             pr("There are no nukes in this game.\n");
181             return RET_FAIL;
182         }
183         p = getstarg(player->argp[3], "Nuke type? ", buf);
184         if (p == 0 || *p == 0)
185             return RET_SYN;
186         type = ef_elt_byname(EF_NUKE_CHR, p);
187         if (type >= 0) {
188             np = &nchr[type];
189             rqtech = np->n_tech;
190             if (rqtech > tlev
191                 || (drnuke_const > MIN_DRNUKE_CONST &&
192                     np->n_tech * drnuke_const > rlev))
193                 type = -1;
194         }
195         if (type < 0) {
196             int tt = tlev;
197             if (drnuke_const > MIN_DRNUKE_CONST)
198                 tt = (tlev < (rlev / drnuke_const) ? (int)tlev :
199                       (int)(rlev / drnuke_const));
200             pr("You can't build that!\n");
201             pr("Use `show nuke build %d' to show types you can build.\n",
202                tt);
203             return RET_FAIL;
204         }
205         break;
206     default:
207         pr("You can't build that!\n");
208         return RET_SYN;
209     }
210
211     number = 1;
212     if (what != 'b' && what != 't') {
213         if (player->argp[4]) {
214             number = atoi(player->argp[4]);
215             if (number > 20) {
216                 char bstr[80];
217                 sprintf(bstr,
218                         "Are you sure that you want to build %s of them? ",
219                         player->argp[4]);
220                 p = getstarg(player->argp[6], bstr, buf);
221                 if (p == 0 || *p != 'y')
222                     return RET_SYN;
223             }
224         }
225     }
226
227     if (what != 'b' && what != 'n' && what != 't') {
228         if (player->argp[5]) {
229             tlev = atoi(player->argp[5]);
230             if (tlev > natp->nat_level[NAT_TLEV] && !player->god) {
231                 pr("Your tech level is only %d.\n",
232                    (int)natp->nat_level[NAT_TLEV]);
233                 return RET_FAIL;
234             }
235             if (rqtech > tlev) {
236                 pr("Required tech is %d.\n", rqtech);
237                 return RET_FAIL;
238             }
239             pr("building with tech level %d.\n", tlev);
240         }
241     }
242
243     while (number-- > 0) {
244         while (nxtsct(&nstr, &sect)) {
245             gotsect++;
246             if (!player->owner)
247                 continue;
248             switch (what) {
249             case 'l':
250                 built = build_land(&sect, lp, sect.sct_item, tlev);
251                 break;
252             case 's':
253                 built = build_ship(&sect, mp, sect.sct_item, tlev);
254                 break;
255             case 'b':
256                 built = build_bridge(&sect, sect.sct_item);
257                 break;
258             case 't':
259                 built = build_tower(&sect, sect.sct_item);
260                 break;
261             case 'n':
262                 built = build_nuke(&sect, np, sect.sct_item, tlev);
263                 break;
264             case 'p':
265                 built = build_plane(&sect, pp, sect.sct_item, tlev);
266                 break;
267             default:
268                 CANT_REACH();
269                 return RET_FAIL;
270             }
271             if (built) {
272                 putsect(&sect);
273             }
274         }
275         snxtsct_rewind(&nstr);
276     }
277     if (!gotsect) {
278         pr("Bad sector specification.\n");
279     }
280     return RET_OK;
281 }
282
283 static int
284 build_ship(struct sctstr *sp, struct mchrstr *mp, short *vec, int tlev)
285 {
286     struct shpstr ship;
287     struct nstr_item nstr;
288     int avail, i;
289     double cost;
290     double eff = SHIP_MINEFF / 100.0;
291     int lcm, hcm;
292     int freeship = 0;
293
294     hcm = roundavg(mp->m_hcm * eff);
295     lcm = roundavg(mp->m_lcm * eff);
296
297     if (sp->sct_type != SCT_HARBR) {
298         pr("Ships must be built in harbours.\n");
299         return 0;
300     }
301     if (sp->sct_effic < 60 && !player->god) {
302         pr("Sector %s is not 60%% efficient.\n",
303            xyas(sp->sct_x, sp->sct_y, player->cnum));
304         return 0;
305     }
306     if (vec[I_LCM] < lcm || vec[I_HCM] < hcm) {
307         pr("Not enough materials in %s\n",
308            xyas(sp->sct_x, sp->sct_y, player->cnum));
309         return 0;
310     }
311     avail = (SHP_BLD_WORK(mp->m_lcm, mp->m_hcm) * SHIP_MINEFF + 99) / 100;
312     if (sp->sct_avail < avail) {
313         pr("Not enough available work in %s to build a %s\n",
314            xyas(sp->sct_x, sp->sct_y, player->cnum), mp->m_name);
315         pr(" (%d available work required)\n", avail);
316         return 0;
317     }
318     cost = mp->m_cost * SHIP_MINEFF / 100.0;
319     if (!build_can_afford(cost, mp->m_name))
320         return 0;
321     if (!trechk(player->cnum, 0, NEWSHP))
322         return 0;
323     if (!check_sect_ok(sp))
324         return 0;
325     sp->sct_avail -= avail;
326     player->dolcost += cost;
327     snxtitem_all(&nstr, EF_SHIP);
328     while (nxtitem(&nstr, &ship)) {
329         if (ship.shp_own == 0) {
330             freeship++;
331             break;
332         }
333     }
334     if (freeship == 0) {
335         ef_extend(EF_SHIP, 50);
336     }
337     ef_blank(EF_SHIP, nstr.cur, &ship);
338     ship.shp_x = sp->sct_x;
339     ship.shp_y = sp->sct_y;
340     ship.shp_destx[0] = sp->sct_x;
341     ship.shp_desty[0] = sp->sct_y;
342     ship.shp_destx[1] = sp->sct_x;
343     ship.shp_desty[1] = sp->sct_y;
344     ship.shp_autonav = 0;
345     /* new code for autonav, Chad Zabel 1-15-94 */
346     for (i = 0; i < TMAX; ++i) {
347         ship.shp_tstart[i] = I_NONE;
348         ship.shp_tend[i] = I_NONE;
349         ship.shp_lstart[i] = 0;
350         ship.shp_lend[i] = 0;
351     }
352     ship.shp_mission = 0;
353     ship.shp_own = player->cnum;
354     ship.shp_type = mp - mchr;
355     ship.shp_effic = SHIP_MINEFF;
356     if (opt_MOB_ACCESS) {
357         game_tick_to_now(&ship.shp_access);
358         ship.shp_mobil = -(etu_per_update / sect_mob_neg_factor);
359     } else {
360         ship.shp_mobil = 0;
361     }
362     ship.shp_fleet = 0;
363     memset(ship.shp_item, 0, sizeof(ship.shp_item));
364     ship.shp_pstage = PLG_HEALTHY;
365     ship.shp_ptime = 0;
366     ship.shp_mobquota = 0;
367     *ship.shp_path = 0;
368     ship.shp_follow = nstr.cur;
369     ship.shp_name[0] = 0;
370     ship.shp_orig_own = player->cnum;
371     ship.shp_orig_x = sp->sct_x;
372     ship.shp_orig_y = sp->sct_y;
373     ship.shp_rflags = 0;
374     memset(ship.shp_rpath, 0, sizeof(ship.shp_rpath));
375     shp_set_tech(&ship, tlev);
376
377     vec[I_LCM] -= lcm;
378     vec[I_HCM] -= hcm;
379
380     if (sp->sct_pstage == PLG_INFECT)
381         ship.shp_pstage = PLG_EXPOSED;
382     putship(ship.shp_uid, &ship);
383     pr("%s", prship(&ship));
384     pr(" built in sector %s\n", xyas(sp->sct_x, sp->sct_y, player->cnum));
385     return 1;
386 }
387
388 static int
389 build_land(struct sctstr *sp, struct lchrstr *lp, short *vec, int tlev)
390 {
391     struct lndstr land;
392     struct nstr_item nstr;
393     int avail;
394     double cost;
395     double eff = LAND_MINEFF / 100.0;
396     int mil, lcm, hcm, gun, shell;
397     int freeland = 0;
398
399 #if 0
400     mil = roundavg(lp->l_mil * eff);
401     shell = roundavg(lp->l_shell * eff);
402     gun = roundavg(lp->l_gun * eff);
403 #else
404     mil = shell = gun = 0;
405 #endif
406     hcm = roundavg(lp->l_hcm * eff);
407     lcm = roundavg(lp->l_lcm * eff);
408
409     if (sp->sct_type != SCT_HEADQ) {
410         pr("Land Units must be built in headquarters.\n");
411         return 0;
412     }
413     if (sp->sct_effic < 60 && !player->god) {
414         pr("Sector %s is not 60%% efficient.\n",
415            xyas(sp->sct_x, sp->sct_y, player->cnum));
416         return 0;
417     }
418     if (vec[I_LCM] < lcm || vec[I_HCM] < hcm) {
419         pr("Not enough materials in %s\n",
420            xyas(sp->sct_x, sp->sct_y, player->cnum));
421         return 0;
422     }
423 #if 0
424     if (vec[I_GUN] < gun || vec[I_GUN] == 0) {
425         pr("Not enough guns in %s\n",
426            xyas(sp->sct_x, sp->sct_y, player->cnum));
427         return 0;
428     }
429     if (vec[I_SHELL] < shell) {
430         pr("Not enough shells in %s\n",
431            xyas(sp->sct_x, sp->sct_y, player->cnum));
432         return 0;
433     }
434     if (vec[I_MILIT] < mil) {
435         pr("Not enough military in %s\n",
436            xyas(sp->sct_x, sp->sct_y, player->cnum));
437         return 0;
438     }
439 #endif
440     if (!trechk(player->cnum, 0, NEWLND))
441         return 0;
442     if (!check_sect_ok(sp))
443         return 0;
444     avail = (LND_BLD_WORK(lp->l_lcm, lp->l_hcm) * LAND_MINEFF + 99) / 100;
445     if (sp->sct_avail < avail) {
446         pr("Not enough available work in %s to build a %s\n",
447            xyas(sp->sct_x, sp->sct_y, player->cnum), lp->l_name);
448         pr(" (%d available work required)\n", avail);
449         return 0;
450     }
451     cost = lp->l_cost * LAND_MINEFF / 100.0;
452     if (!build_can_afford(cost, lp->l_name))
453         return 0;
454     sp->sct_avail -= avail;
455     player->dolcost += cost;
456     snxtitem_all(&nstr, EF_LAND);
457     while (nxtitem(&nstr, &land)) {
458         if (land.lnd_own == 0) {
459             freeland++;
460             break;
461         }
462     }
463     if (freeland == 0) {
464         ef_extend(EF_LAND, 50);
465     }
466     ef_blank(EF_LAND, nstr.cur, &land);
467     land.lnd_x = sp->sct_x;
468     land.lnd_y = sp->sct_y;
469     land.lnd_own = player->cnum;
470     land.lnd_mission = 0;
471     land.lnd_type = lp - lchr;
472     land.lnd_effic = LAND_MINEFF;
473     if (opt_MOB_ACCESS) {
474         game_tick_to_now(&land.lnd_access);
475         land.lnd_mobil = -(etu_per_update / sect_mob_neg_factor);
476     } else {
477         land.lnd_mobil = 0;
478     }
479     land.lnd_army = 0;
480     land.lnd_flags = 0;
481     land.lnd_ship = -1;
482     land.lnd_land = -1;
483     land.lnd_harden = 0;
484     land.lnd_retreat = morale_base;
485     land.lnd_rflags = 0;
486     memset(land.lnd_rpath, 0, sizeof(land.lnd_rpath));
487     land.lnd_rad_max = 0;
488     memset(land.lnd_item, 0, sizeof(land.lnd_item));
489     land.lnd_pstage = PLG_HEALTHY;
490     land.lnd_ptime = 0;
491     lnd_set_tech(&land, tlev);
492
493     vec[I_LCM] -= lcm;
494     vec[I_HCM] -= hcm;
495     vec[I_MILIT] -= mil;
496     vec[I_GUN] -= gun;
497     vec[I_SHELL] -= shell;
498
499     if (sp->sct_pstage == PLG_INFECT)
500         land.lnd_pstage = PLG_EXPOSED;
501     putland(nstr.cur, &land);
502     pr("%s", prland(&land));
503     pr(" built in sector %s\n", xyas(sp->sct_x, sp->sct_y, player->cnum));
504     return 1;
505 }
506
507 static int
508 build_bridge(struct sctstr *sp, short *vec)
509 {
510     struct sctstr sect;
511     int val;
512     int newx, newy;
513     int avail;
514     int nx, ny, i, good = 0;
515     char *p;
516     char buf[1024];
517
518     if (opt_EASY_BRIDGES == 0) {        /* must have a bridge head or tower */
519         if (sp->sct_type != SCT_BTOWER) {
520             if (sp->sct_type != SCT_BHEAD)
521                 return 0;
522             if (sp->sct_newtype != SCT_BHEAD)
523                 return 0;
524         }
525     }
526
527     if (sp->sct_effic < 60 && !player->god) {
528         pr("Sector %s is not 60%% efficient.\n",
529            xyas(sp->sct_x, sp->sct_y, player->cnum));
530         return 0;
531     }
532
533     if (vec[I_HCM] < buil_bh) {
534         pr("%s only has %d unit%s of hcm,\n",
535            xyas(sp->sct_x, sp->sct_y, player->cnum),
536            vec[I_HCM], vec[I_HCM] > 1 ? "s" : "");
537         pr("(a bridge span requires %d)\n", buil_bh);
538         return 0;
539     }
540
541     if (!build_can_afford(buil_bc, dchr[SCT_BSPAN].d_name))
542         return 0;
543     avail = (SCT_BLD_WORK(0, buil_bh) * SCT_MINEFF + 99) / 100;
544     if (sp->sct_avail < avail) {
545         pr("Not enough available work in %s to build a bridge\n",
546            xyas(sp->sct_x, sp->sct_y, player->cnum));
547         pr(" (%d available work required)\n", avail);
548         return 0;
549     }
550     if (!player->argp[3]) {
551         pr("Bridge head at %s\n",
552            xyas(sp->sct_x, sp->sct_y, player->cnum));
553         nav_map(sp->sct_x, sp->sct_y, 1);
554     }
555     p = getstarg(player->argp[3], "build span in what direction? ", buf);
556     if (!p || !*p) {
557         return 0;
558     }
559     /* Sanity check time */
560     if (!check_sect_ok(sp))
561         return 0;
562
563     if ((val = chkdir(*p, DIR_FIRST, DIR_LAST)) < 0) {
564         pr("'%c' is not a valid direction...\n", *p);
565         direrr(0, 0, 0);
566         return 0;
567     }
568     newx = sp->sct_x + diroff[val][0];
569     newy = sp->sct_y + diroff[val][1];
570     if (getsect(newx, newy, &sect) == 0 || sect.sct_type != SCT_WATER) {
571         pr("%s is not a water sector\n", xyas(newx, newy, player->cnum));
572         return 0;
573     }
574     if (opt_EASY_BRIDGES) {
575         good = 0;
576
577         for (i = 1; i <= 6; i++) {
578             struct sctstr s2;
579             nx = sect.sct_x + diroff[i][0];
580             ny = sect.sct_y + diroff[i][1];
581             getsect(nx, ny, &s2);
582             if ((s2.sct_type != SCT_WATER) && (s2.sct_type != SCT_BSPAN))
583                 good = 1;
584         }
585         if (!good) {
586             pr("Bridges must be built adjacent to land or bridge towers.\n");
587             pr("That sector is not adjacent to land or a bridge tower.\n");
588             return 0;
589         }
590     }                           /* end EASY_BRIDGES */
591     sp->sct_avail -= avail;
592     player->dolcost += buil_bc;
593     sect.sct_type = SCT_BSPAN;
594     sect.sct_newtype = SCT_BSPAN;
595     sect.sct_effic = SCT_MINEFF;
596     sect.sct_road = 0;
597     sect.sct_rail = 0;
598     sect.sct_defense = 0;
599     if (opt_MOB_ACCESS) {
600         game_tick_to_now(&sect.sct_access);
601         sect.sct_mobil = -(etu_per_update / sect_mob_neg_factor);
602     } else {
603         sect.sct_mobil = 0;
604     }
605     sect.sct_mines = 0;
606     map_set(player->cnum, sect.sct_x, sect.sct_y, dchr[SCT_BSPAN].d_mnem, 2);
607     writemap(player->cnum);
608     putsect(&sect);
609     pr("Bridge span built over %s\n",
610        xyas(sect.sct_x, sect.sct_y, player->cnum));
611     vec[I_HCM] -= buil_bh;
612     return 1;
613 }
614
615 static int
616 build_nuke(struct sctstr *sp, struct nchrstr *np, short *vec, int tlev)
617 {
618     struct nukstr nuke;
619     struct nstr_item nstr;
620     int avail;
621     int freenuke;
622
623     if (sp->sct_type != SCT_NUKE && !player->god) {
624         pr("Nuclear weapons must be built in nuclear plants.\n");
625         return 0;
626     }
627     if (sp->sct_effic < 60 && !player->god) {
628         pr("Sector %s is not 60%% efficient.\n",
629            xyas(sp->sct_x, sp->sct_y, player->cnum));
630         return 0;
631     }
632     if (vec[I_HCM] < np->n_hcm || vec[I_LCM] < np->n_lcm ||
633         vec[I_OIL] < np->n_oil || vec[I_RAD] < np->n_rad) {
634         pr("Not enough materials for a %s bomb in %s\n",
635            np->n_name, xyas(sp->sct_x, sp->sct_y, player->cnum));
636         pr("(%d hcm, %d lcm, %d oil, & %d rads).\n",
637            np->n_hcm, np->n_lcm, np->n_oil, np->n_rad);
638         return 0;
639     }
640     if (!build_can_afford(np->n_cost, np->n_name))
641         return 0;
642     avail = NUK_BLD_WORK(np->n_lcm, np->n_hcm, np->n_oil, np->n_rad);
643     /*
644      * XXX when nukes turn into units (or whatever), then
645      * make them start at 20%.  Since they don't have efficiency
646      * now, we charge all the work right away.
647      */
648     if (sp->sct_avail < avail) {
649         pr("Not enough available work in %s to build a %s;\n",
650            xyas(sp->sct_x, sp->sct_y, player->cnum), np->n_name);
651         pr(" (%d available work required)\n", avail);
652         return 0;
653     }
654     if (!trechk(player->cnum, 0, NEWNUK))
655         return 0;
656     if (!check_sect_ok(sp))
657         return 0;
658     sp->sct_avail -= avail;
659     player->dolcost += np->n_cost;
660     snxtitem_all(&nstr, EF_NUKE);
661     freenuke = 0;
662     while (nxtitem(&nstr, &nuke)) {
663         if (nuke.nuk_own == 0) {
664             freenuke++;
665             break;
666         }
667     }
668     if (freenuke == 0) {
669         ef_extend(EF_NUKE, 50);
670     }
671     ef_blank(EF_NUKE, nstr.cur, &nuke);
672     nuke.nuk_x = sp->sct_x;
673     nuke.nuk_y = sp->sct_y;
674     nuke.nuk_own = sp->sct_own;
675     nuke.nuk_type = np - nchr;
676     nuke.nuk_effic = 100;
677     nuke.nuk_stockpile = 0;
678     nuke.nuk_ship = nuke.nuk_plane = nuke.nuk_land = -1;
679     nuke.nuk_tech = tlev;
680
681     vec[I_HCM] -= np->n_hcm;
682     vec[I_LCM] -= np->n_lcm;
683     vec[I_OIL] -= np->n_oil;
684     vec[I_RAD] -= np->n_rad;
685
686     putnuke(nuke.nuk_uid, &nuke);
687     pr("%s created in %s\n", prnuke(&nuke),
688        xyas(sp->sct_x, sp->sct_y, player->cnum));
689     return 1;
690 }
691
692 static int
693 build_plane(struct sctstr *sp, struct plchrstr *pp, short *vec, int tlev)
694 {
695     struct plnstr plane;
696     struct nstr_item nstr;
697     int avail;
698     double cost;
699     double eff = PLANE_MINEFF / 100.0;
700     int hcm, lcm, mil;
701     int freeplane;
702
703     mil = roundavg(pp->pl_crew * eff);
704     /* Always use at least 1 mil to build a plane */
705     if (mil == 0 && pp->pl_crew > 0)
706         mil = 1;
707     hcm = roundavg(pp->pl_hcm * eff);
708     lcm = roundavg(pp->pl_lcm * eff);
709     if (sp->sct_type != SCT_AIRPT && !player->god) {
710         pr("Planes must be built in airports.\n");
711         return 0;
712     }
713     if (sp->sct_effic < 60 && !player->god) {
714         pr("Sector %s is not 60%% efficient.\n",
715            xyas(sp->sct_x, sp->sct_y, player->cnum));
716         return 0;
717     }
718     if (vec[I_LCM] < lcm || vec[I_HCM] < hcm) {
719         pr("Not enough materials in %s\n",
720            xyas(sp->sct_x, sp->sct_y, player->cnum));
721         return 0;
722     }
723     avail = (PLN_BLD_WORK(pp->pl_lcm, pp->pl_hcm) * PLANE_MINEFF + 99) / 100;
724     if (sp->sct_avail < avail) {
725         pr("Not enough available work in %s to build a %s\n",
726            xyas(sp->sct_x, sp->sct_y, player->cnum), pp->pl_name);
727         pr(" (%d available work required)\n", avail);
728         return 0;
729     }
730     cost = pp->pl_cost * PLANE_MINEFF / 100.0;
731     if (!build_can_afford(cost, pp->pl_name))
732         return 0;
733     if (vec[I_MILIT] < mil || (vec[I_MILIT] == 0 && pp->pl_crew > 0)) {
734         pr("Not enough military for crew in %s\n",
735            xyas(sp->sct_x, sp->sct_y, player->cnum));
736         return 0;
737     }
738     if (!trechk(player->cnum, 0, NEWPLN))
739         return 0;
740     if (!check_sect_ok(sp))
741         return 0;
742     sp->sct_avail -= avail;
743     player->dolcost += cost;
744     snxtitem_all(&nstr, EF_PLANE);
745     freeplane = 0;
746     while (nxtitem(&nstr, &plane)) {
747         if (plane.pln_own == 0) {
748             freeplane++;
749             break;
750         }
751     }
752     if (freeplane == 0) {
753         ef_extend(EF_PLANE, 50);
754     }
755     ef_blank(EF_PLANE, nstr.cur, &plane);
756     plane.pln_x = sp->sct_x;
757     plane.pln_y = sp->sct_y;
758     plane.pln_own = sp->sct_own;
759     plane.pln_type = pp - plchr;
760     plane.pln_effic = PLANE_MINEFF;
761     if (opt_MOB_ACCESS) {
762         game_tick_to_now(&plane.pln_access);
763         plane.pln_mobil = -(etu_per_update / sect_mob_neg_factor);
764     } else {
765         plane.pln_mobil = 0;
766     }
767     plane.pln_mission = 0;
768     plane.pln_opx = 0;
769     plane.pln_opy = 0;
770     plane.pln_radius = 0;
771     plane.pln_range = UCHAR_MAX; /* will be adjusted by pln_set_tech() */
772     plane.pln_wing = 0;
773     plane.pln_ship = -1;
774     plane.pln_land = -1;
775     plane.pln_harden = 0;
776     plane.pln_flags = 0;
777     pln_set_tech(&plane, tlev);
778
779     vec[I_LCM] -= lcm;
780     vec[I_HCM] -= hcm;
781     vec[I_MILIT] -= mil;
782
783     putplane(plane.pln_uid, &plane);
784     pr("%s built in sector %s\n", prplane(&plane),
785        xyas(sp->sct_x, sp->sct_y, player->cnum));
786     return 1;
787 }
788
789 static int
790 build_tower(struct sctstr *sp, short *vec)
791 {
792     struct sctstr sect;
793     int val;
794     int newx, newy;
795     int avail;
796     char *p;
797     char buf[1024];
798     int good;
799     int i;
800     int nx;
801     int ny;
802
803     if (sp->sct_type != SCT_BSPAN) {
804         pr("Bridge towers can only be built from bridge spans.\n");
805         return 0;
806     }
807
808     if (sp->sct_effic < 60 && !player->god) {
809         pr("Sector %s is not 60%% efficient.\n",
810            xyas(sp->sct_x, sp->sct_y, player->cnum));
811         return 0;
812     }
813
814     if (vec[I_HCM] < buil_tower_bh) {
815         pr("%s only has %d unit%s of hcm,\n",
816            xyas(sp->sct_x, sp->sct_y, player->cnum),
817            vec[I_HCM], vec[I_HCM] > 1 ? "s" : "");
818         pr("(a bridge tower requires %d)\n", buil_tower_bh);
819         return 0;
820     }
821
822     if (!build_can_afford(buil_tower_bc, dchr[SCT_BTOWER].d_name))
823         return 0;
824     avail = (SCT_BLD_WORK(0, buil_tower_bh) * SCT_MINEFF + 99) / 100;
825     if (sp->sct_avail < avail) {
826         pr("Not enough available work in %s to build a bridge tower\n",
827            xyas(sp->sct_x, sp->sct_y, player->cnum));
828         pr(" (%d available work required)\n", avail);
829         return 0;
830     }
831     if (!player->argp[3]) {
832         pr("Building from %s\n", xyas(sp->sct_x, sp->sct_y, player->cnum));
833         nav_map(sp->sct_x, sp->sct_y, 1);
834     }
835     p = getstarg(player->argp[3], "build tower in what direction? ", buf);
836     if (!p || !*p) {
837         return 0;
838     }
839     /* Sanity check time */
840     if (!check_sect_ok(sp))
841         return 0;
842
843     if ((val = chkdir(*p, DIR_FIRST, DIR_LAST)) < 0) {
844         pr("'%c' is not a valid direction...\n", *p);
845         direrr(0, 0, 0);
846         return 0;
847     }
848     newx = sp->sct_x + diroff[val][0];
849     newy = sp->sct_y + diroff[val][1];
850     if (getsect(newx, newy, &sect) == 0 || sect.sct_type != SCT_WATER) {
851         pr("%s is not a water sector\n", xyas(newx, newy, player->cnum));
852         return 0;
853     }
854
855     /* Now, check.  You aren't allowed to build bridge towers
856        next to land. */
857     good = 0;
858     for (i = 1; i <= 6; i++) {
859         struct sctstr s2;
860         nx = sect.sct_x + diroff[i][0];
861         ny = sect.sct_y + diroff[i][1];
862         getsect(nx, ny, &s2);
863         if ((s2.sct_type != SCT_WATER) &&
864             (s2.sct_type != SCT_BTOWER) && (s2.sct_type != SCT_BSPAN)) {
865             good = 1;
866             break;
867         }
868     }
869     if (good) {
870         pr("Bridge towers cannot be built adjacent to land.\n");
871         pr("That sector is adjacent to land.\n");
872         return 0;
873     }
874
875     sp->sct_avail -= avail;
876     player->dolcost += buil_tower_bc;
877     sect.sct_type = SCT_BTOWER;
878     sect.sct_newtype = SCT_BTOWER;
879     sect.sct_effic = SCT_MINEFF;
880     sect.sct_road = 0;
881     sect.sct_rail = 0;
882     sect.sct_defense = 0;
883     if (opt_MOB_ACCESS) {
884         game_tick_to_now(&sect.sct_access);
885         sect.sct_mobil = -(etu_per_update / sect_mob_neg_factor);
886     } else {
887         sect.sct_mobil = 0;
888     }
889     sect.sct_mines = 0;
890     map_set(player->cnum, sect.sct_x, sect.sct_y, dchr[SCT_BTOWER].d_mnem, 2);
891     writemap(player->cnum);
892     putsect(&sect);
893     pr("Bridge tower built in %s\n",
894        xyas(sect.sct_x, sect.sct_y, player->cnum));
895     vec[I_HCM] -= buil_tower_bh;
896     return 1;
897 }
898
899 static int
900 build_can_afford(double cost, char *what)
901 {
902     struct natstr *natp = getnatp(player->cnum);
903     if (natp->nat_money < player->dolcost + cost) {
904         pr("Not enough money left to build a %s\n", what);
905         return 0;
906     }
907     return 1;
908 }