]> git.pond.sub.org Git - empserver/blob - src/lib/commands/buil.c
build: Report missing stuff more nicely for bridges
[empserver] / src / lib / commands / buil.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2014, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  buil.c: Build ships, nukes, bridges, planes, land units, bridge towers
28  *
29  *  Known contributors to this file:
30  *     Steve McClure, 1998-2000
31  *     Markus Armbruster, 2004-2014
32  */
33
34 #include <config.h>
35
36 #include <limits.h>
37 #include <math.h>
38 #include "chance.h"
39 #include "commands.h"
40 #include "game.h"
41 #include "land.h"
42 #include "lost.h"
43 #include "map.h"
44 #include "nuke.h"
45 #include "optlist.h"
46 #include "path.h"
47 #include "plague.h"
48 #include "plane.h"
49 #include "ship.h"
50 #include "unit.h"
51
52 static int build_ship(struct sctstr *sp, int type, int tlev);
53 static int build_land(struct sctstr *sp, int type, int tlev);
54 static int build_nuke(struct sctstr *sp, int type, int tlev);
55 static int build_plane(struct sctstr *sp, int type, int tlev);
56 static int pick_unused_unit_uid(int);
57 static int build_bridge(char);
58 static int build_bspan(struct sctstr *sp);
59 static int build_btower(struct sctstr *sp);
60 static int sector_can_build(struct sctstr *, short[], int, int, char *);
61 static void build_charge(struct sctstr *, short[], int, double, int);
62 static int build_can_afford(double, int, char *);
63
64 /*
65  * build <WHAT> <SECTS> <TYPE|DIR|MEG> [NUMBER]
66  */
67 int
68 buil(void)
69 {
70     struct natstr *natp = getnatp(player->cnum);
71     int tlev = (int)natp->nat_level[NAT_TLEV];
72     struct sctstr sect;
73     struct nstr_sect nstr;
74     int rqtech, type, number, val, gotsect;
75     char *p, *what, *prompt;
76     int (*build_it)(struct sctstr *, int, int);
77     char buf[1024];
78
79     p = getstarg(player->argp[1],
80                  "Build (ship, nuke, bridge, plane, land unit, tower)? ",
81                  buf);
82     if (!p)
83         return RET_SYN;
84     switch (*p) {
85     case 'b':
86     case 't':
87         return build_bridge(*p);
88     case 's':
89         what = "ship";
90         prompt = "Ship type? ";
91         build_it = build_ship;
92         break;
93     case 'p':
94         what = "plane";
95         prompt = "Plane type? ";
96         build_it = build_plane;
97         break;
98     case 'l':
99         what = "land";
100         prompt = "Land unit type? ";
101         build_it = build_land;
102         break;
103     case 'n':
104         if (!ef_nelem(EF_NUKE_CHR)) {
105             pr("There are no nukes in this game.\n");
106             return RET_FAIL;
107         }
108         if (drnuke_const > MIN_DRNUKE_CONST)
109             tlev = MIN(tlev,
110                        (int)(natp->nat_level[NAT_RLEV] / drnuke_const));
111         what = "nuke";
112         prompt = "Nuke type? ";
113         build_it = build_nuke;
114         break;
115     default:
116         pr("You can't build that!\n");
117         return RET_SYN;
118     }
119
120     if (!snxtsct(&nstr, player->argp[2]))
121         return RET_SYN;
122
123     p = getstarg(player->argp[3], prompt, buf);
124     if (!p || !*p)
125         return RET_SYN;
126
127     rqtech = 0;
128     switch (*what) {
129     case 'p':
130         type = ef_elt_byname(EF_PLANE_CHR, p);
131         if (type >= 0)
132             rqtech = plchr[type].pl_tech;
133         break;
134     case 's':
135         type = ef_elt_byname(EF_SHIP_CHR, p);
136         if (type >= 0)
137             rqtech = mchr[type].m_tech;
138         break;
139     case 'l':
140         type = ef_elt_byname(EF_LAND_CHR, p);
141         if (type >= 0)
142             rqtech = lchr[type].l_tech;
143         break;
144     case 'n':
145         type = ef_elt_byname(EF_NUKE_CHR, p);
146         if (type >= 0)
147             rqtech = nchr[type].n_tech;
148         break;
149     default:
150         CANT_REACH();
151         return RET_FAIL;
152     }
153
154     if (type < 0 || tlev < rqtech) {
155         pr("You can't build that!\n");
156         pr("Use `show %s build %d' to show types you can build.\n",
157            what, tlev);
158         return RET_FAIL;
159     }
160
161     number = 1;
162     if (player->argp[4]) {
163         number = atoi(player->argp[4]);
164         if (number > 20) {
165             char bstr[80];
166             sprintf(bstr,
167                     "Are you sure that you want to build %d of them? ",
168                     number);
169             p = getstarg(player->argp[6], bstr, buf);
170             if (!p || *p != 'y')
171                 return RET_SYN;
172         }
173     }
174
175     if (player->argp[5]) {
176         val = atoi(player->argp[5]);
177         if (val > tlev && !player->god) {
178             pr("Your%s tech level is only %d.\n",
179                *what == 'n' && drnuke_const > MIN_DRNUKE_CONST
180                ? " effective" : "", tlev);
181             return RET_FAIL;
182         }
183         if (rqtech > val) {
184             pr("Required tech is %d.\n", rqtech);
185             return RET_FAIL;
186         }
187         tlev = val;
188         pr("Building with tech level %d.\n", tlev);
189     }
190
191     gotsect = 0;
192     while (number-- > 0) {
193         while (nxtsct(&nstr, &sect)) {
194             if (!player->owner)
195                 continue;
196             gotsect = 1;
197             if (build_it(&sect, type, tlev))
198                 putsect(&sect);
199         }
200         snxtsct_rewind(&nstr);
201     }
202     if (!gotsect)
203         pr("No sectors.\n");
204     return RET_OK;
205 }
206
207 static int
208 build_ship(struct sctstr *sp, int type, int tlev)
209 {
210     struct mchrstr *mp = &mchr[type];
211     short mat[I_MAX+1];
212     int work;
213     struct shpstr ship;
214
215     memset(mat, 0, sizeof(mat));
216     mat[I_LCM] = mp->m_lcm;
217     mat[I_HCM] = mp->m_hcm;
218     work = SHP_BLD_WORK(mp->m_lcm, mp->m_hcm);
219
220     if (sp->sct_type != SCT_HARBR) {
221         pr("Ships must be built in harbours.\n");
222         return 0;
223     }
224     if (!sector_can_build(sp, mat, work, SHIP_MINEFF, mp->m_name))
225         return 0;
226     if (!build_can_afford(mp->m_cost, SHIP_MINEFF, mp->m_name))
227         return 0;
228     build_charge(sp, mat, work, mp->m_cost, SHIP_MINEFF);
229
230     ef_blank(EF_SHIP, pick_unused_unit_uid(EF_SHIP), &ship);
231     ship.shp_x = sp->sct_x;
232     ship.shp_y = sp->sct_y;
233     ship.shp_own = sp->sct_own;
234     ship.shp_type = mp - mchr;
235     ship.shp_effic = SHIP_MINEFF;
236     if (opt_MOB_ACCESS) {
237         game_tick_to_now(&ship.shp_access);
238         ship.shp_mobil = -(etu_per_update / sect_mob_neg_factor);
239     } else {
240         ship.shp_mobil = 0;
241     }
242     memset(ship.shp_item, 0, sizeof(ship.shp_item));
243     ship.shp_pstage = PLG_HEALTHY;
244     ship.shp_ptime = 0;
245     ship.shp_name[0] = 0;
246     ship.shp_orig_own = sp->sct_own;
247     ship.shp_orig_x = sp->sct_x;
248     ship.shp_orig_y = sp->sct_y;
249     shp_set_tech(&ship, tlev);
250     unit_wipe_orders((struct empobj *)&ship);
251
252     if (sp->sct_pstage == PLG_INFECT)
253         ship.shp_pstage = PLG_EXPOSED;
254     putship(ship.shp_uid, &ship);
255     pr("%s", prship(&ship));
256     pr(" built in sector %s\n", xyas(sp->sct_x, sp->sct_y, player->cnum));
257     return 1;
258 }
259
260 static int
261 build_land(struct sctstr *sp, int type, int tlev)
262 {
263     struct lchrstr *lp = &lchr[type];
264     short mat[I_MAX+1];
265     int work;
266     struct lndstr land;
267
268     memset(mat, 0, sizeof(mat));
269     mat[I_LCM] = lp->l_lcm;
270     mat[I_HCM] = lp->l_hcm;
271     work = LND_BLD_WORK(lp->l_lcm, lp->l_hcm);
272
273     if (sp->sct_type != SCT_HEADQ) {
274         pr("Land units must be built in headquarters.\n");
275         return 0;
276     }
277     if (!sector_can_build(sp, mat, work, LAND_MINEFF, lp->l_name))
278         return 0;
279     if (!build_can_afford(lp->l_cost, LAND_MINEFF, lp->l_name))
280         return 0;
281     build_charge(sp, mat, work, lp->l_cost, LAND_MINEFF);
282
283     ef_blank(EF_LAND, pick_unused_unit_uid(EF_LAND), &land);
284     land.lnd_x = sp->sct_x;
285     land.lnd_y = sp->sct_y;
286     land.lnd_own = sp->sct_own;
287     land.lnd_type = lp - lchr;
288     land.lnd_effic = LAND_MINEFF;
289     if (opt_MOB_ACCESS) {
290         game_tick_to_now(&land.lnd_access);
291         land.lnd_mobil = -(etu_per_update / sect_mob_neg_factor);
292     } else {
293         land.lnd_mobil = 0;
294     }
295     land.lnd_ship = -1;
296     land.lnd_land = -1;
297     land.lnd_harden = 0;
298     memset(land.lnd_item, 0, sizeof(land.lnd_item));
299     land.lnd_pstage = PLG_HEALTHY;
300     land.lnd_ptime = 0;
301     lnd_set_tech(&land, tlev);
302     unit_wipe_orders((struct empobj *)&land);
303
304     if (sp->sct_pstage == PLG_INFECT)
305         land.lnd_pstage = PLG_EXPOSED;
306     putland(land.lnd_uid, &land);
307     pr("%s", prland(&land));
308     pr(" built in sector %s\n", xyas(sp->sct_x, sp->sct_y, player->cnum));
309     return 1;
310 }
311
312 static int
313 build_nuke(struct sctstr *sp, int type, int tlev)
314 {
315     struct nchrstr *np = &nchr[type];
316     short mat[I_MAX+1];
317     int work;
318     struct nukstr nuke;
319
320     if (sp->sct_type != SCT_NUKE && !player->god) {
321         pr("Nuclear weapons must be built in nuclear plants.\n");
322         return 0;
323     }
324     /*
325      * XXX when nukes turn into units (or whatever), then
326      * make them start at 20%.  Since they don't have efficiency
327      * now, we charge all the work right away.
328      */
329     memset(mat, 0, sizeof(mat));
330     mat[I_LCM] = np->n_lcm;
331     mat[I_HCM] = np->n_hcm;
332     mat[I_OIL] = np->n_oil;
333     mat[I_RAD] = np->n_rad;
334     work = NUK_BLD_WORK(np->n_lcm, np->n_hcm, np->n_oil, np->n_rad);
335
336     if (!sector_can_build(sp, mat, work, 100, np->n_name))
337         return 0;
338     if (!build_can_afford(np->n_cost, 100, np->n_name))
339         return 0;
340     build_charge(sp, mat, work, np->n_cost, 100);
341
342     ef_blank(EF_NUKE, pick_unused_unit_uid(EF_NUKE), &nuke);
343     nuke.nuk_x = sp->sct_x;
344     nuke.nuk_y = sp->sct_y;
345     nuke.nuk_own = sp->sct_own;
346     nuke.nuk_type = np - nchr;
347     nuke.nuk_effic = 100;
348     nuke.nuk_plane = -1;
349     nuke.nuk_tech = tlev;
350     unit_wipe_orders((struct empobj *)&nuke);
351
352     putnuke(nuke.nuk_uid, &nuke);
353     pr("%s created in %s\n", prnuke(&nuke),
354        xyas(sp->sct_x, sp->sct_y, player->cnum));
355     return 1;
356 }
357
358 static int
359 build_plane(struct sctstr *sp, int type, int tlev)
360 {
361     struct plchrstr *pp = &plchr[type];
362     short mat[I_MAX+1];
363     int work;
364     struct plnstr plane;
365
366     memset(mat, 0, sizeof(mat));
367     mat[I_MILIT] = pp->pl_crew;
368     mat[I_LCM] = pp->pl_lcm;
369     mat[I_HCM] = pp->pl_hcm;
370     work = PLN_BLD_WORK(pp->pl_lcm, pp->pl_hcm);
371
372     if (sp->sct_type != SCT_AIRPT && !player->god) {
373         pr("Planes must be built in airports.\n");
374         return 0;
375     }
376     if (!sector_can_build(sp, mat, work, PLANE_MINEFF, pp->pl_name))
377         return 0;
378     if (!build_can_afford(pp->pl_cost, PLANE_MINEFF, pp->pl_name))
379         return 0;
380     build_charge(sp, mat, work, pp->pl_cost, PLANE_MINEFF);
381
382     ef_blank(EF_PLANE, pick_unused_unit_uid(EF_PLANE), &plane);
383     plane.pln_x = sp->sct_x;
384     plane.pln_y = sp->sct_y;
385     plane.pln_own = sp->sct_own;
386     plane.pln_type = pp - plchr;
387     plane.pln_effic = PLANE_MINEFF;
388     if (opt_MOB_ACCESS) {
389         game_tick_to_now(&plane.pln_access);
390         plane.pln_mobil = -(etu_per_update / sect_mob_neg_factor);
391     } else {
392         plane.pln_mobil = 0;
393     }
394     plane.pln_range = UCHAR_MAX; /* will be adjusted by pln_set_tech() */
395     plane.pln_ship = -1;
396     plane.pln_land = -1;
397     plane.pln_harden = 0;
398     plane.pln_flags = 0;
399     pln_set_tech(&plane, tlev);
400     unit_wipe_orders((struct empobj *)&plane);
401
402     putplane(plane.pln_uid, &plane);
403     pr("%s built in sector %s\n", prplane(&plane),
404        xyas(sp->sct_x, sp->sct_y, player->cnum));
405     return 1;
406 }
407
408 static int
409 pick_unused_unit_uid(int type)
410 {
411     struct nstr_item nstr;
412     union empobj_storage unit;
413
414     snxtitem_all(&nstr, type);
415     while (nxtitem(&nstr, &unit)) {
416         if (!unit.gen.own)
417             return nstr.cur;
418     }
419     ef_extend(type, 50);
420     return nstr.cur;
421 }
422
423 static int
424 build_bridge(char what)
425 {
426     struct natstr *natp = getnatp(player->cnum);
427     struct nstr_sect nstr;
428     int (*build_it)(struct sctstr *);
429     int gotsect;
430     struct sctstr sect;
431
432     switch (what) {
433     case 'b':
434         if (natp->nat_level[NAT_TLEV] < buil_bt) {
435             pr("Building a span requires a tech of %.0f\n", buil_bt);
436             return RET_FAIL;
437         }
438         build_it = build_bspan;
439         break;
440     case 't':
441         if (!opt_BRIDGETOWERS) {
442             pr("Bridge tower building is disabled.\n");
443             return RET_FAIL;
444         }
445         if (natp->nat_level[NAT_TLEV] < buil_tower_bt) {
446             pr("Building a tower requires a tech of %.0f\n",
447                buil_tower_bt);
448             return RET_FAIL;
449         }
450         build_it = build_btower;
451         break;
452     default:
453         CANT_REACH();
454         return RET_FAIL;
455     }
456
457     if (!snxtsct(&nstr, player->argp[2]))
458         return RET_SYN;
459     gotsect = 0;
460     while (nxtsct(&nstr, &sect)) {
461         if (!player->owner)
462             continue;
463         gotsect = 1;
464         if (build_it(&sect))
465             putsect(&sect);
466     }
467     if (!gotsect)
468         pr("No sectors.\n");
469     return RET_OK;
470 }
471
472 static int
473 build_bspan(struct sctstr *sp)
474 {
475     struct sctstr sect;
476     short mat[I_MAX+1];
477     int work;
478     int val;
479     int newx, newy;
480     int nx, ny, i, good = 0;
481     char *p;
482     char buf[1024];
483
484     if (opt_EASY_BRIDGES == 0) {        /* must have a bridge head or tower */
485         if (sp->sct_type != SCT_BTOWER) {
486             if (sp->sct_type != SCT_BHEAD)
487                 return 0;
488             if (sp->sct_newtype != SCT_BHEAD)
489                 return 0;
490         }
491     }
492
493     memset(mat, 0, sizeof(mat));
494     mat[I_HCM] = buil_bh;
495     work = (SCT_BLD_WORK(0, buil_bh) * SCT_MINEFF + 99) / 100;
496
497     if (!sector_can_build(sp, mat, work, 100, dchr[SCT_BSPAN].d_name))
498         return 0;
499     if (!build_can_afford(buil_bc, 100, dchr[SCT_BSPAN].d_name))
500         return 0;
501     if (!player->argp[3]) {
502         pr("Bridge head at %s\n",
503            xyas(sp->sct_x, sp->sct_y, player->cnum));
504         nav_map(sp->sct_x, sp->sct_y, 1);
505     }
506     p = getstarg(player->argp[3], "build span in what direction? ", buf);
507     if (!p || !*p) {
508         return 0;
509     }
510     if (!check_sect_ok(sp))
511         return 0;
512
513     if ((val = chkdir(*p, DIR_FIRST, DIR_LAST)) < 0) {
514         pr("'%c' is not a valid direction...\n", *p);
515         direrr(NULL, NULL, NULL);
516         return 0;
517     }
518     newx = sp->sct_x + diroff[val][0];
519     newy = sp->sct_y + diroff[val][1];
520     if (getsect(newx, newy, &sect) == 0 || sect.sct_type != SCT_WATER) {
521         pr("%s is not a water sector\n", xyas(newx, newy, player->cnum));
522         return 0;
523     }
524     if (opt_EASY_BRIDGES) {
525         good = 0;
526
527         for (i = 1; i <= 6; i++) {
528             struct sctstr s2;
529             nx = sect.sct_x + diroff[i][0];
530             ny = sect.sct_y + diroff[i][1];
531             getsect(nx, ny, &s2);
532             if ((s2.sct_type != SCT_WATER) && (s2.sct_type != SCT_BSPAN))
533                 good = 1;
534         }
535         if (!good) {
536             pr("Bridges must be built adjacent to land or bridge towers.\n");
537             pr("That sector is not adjacent to land or a bridge tower.\n");
538             return 0;
539         }
540     }                           /* end EASY_BRIDGES */
541     build_charge(sp, mat, work, buil_bc, 100);
542
543     sect.sct_type = SCT_BSPAN;
544     sect.sct_newtype = SCT_BSPAN;
545     sect.sct_effic = SCT_MINEFF;
546     sect.sct_road = 0;
547     sect.sct_rail = 0;
548     sect.sct_defense = 0;
549     if (opt_MOB_ACCESS) {
550         game_tick_to_now(&sect.sct_access);
551         sect.sct_mobil = -(etu_per_update / sect_mob_neg_factor);
552     } else {
553         sect.sct_mobil = 0;
554     }
555     sect.sct_mines = 0;
556     map_set(player->cnum, sect.sct_x, sect.sct_y, dchr[SCT_BSPAN].d_mnem, 2);
557     writemap(player->cnum);
558     putsect(&sect);
559     pr("Bridge span built over %s\n",
560        xyas(sect.sct_x, sect.sct_y, player->cnum));
561     return 1;
562 }
563
564 static int
565 build_btower(struct sctstr *sp)
566 {
567     struct sctstr sect;
568     short mat[I_MAX+1];
569     int work;
570     int val;
571     int newx, newy;
572     char *p;
573     char buf[1024];
574     int i;
575     int nx;
576     int ny;
577
578     if (sp->sct_type != SCT_BSPAN) {
579         pr("Bridge towers can only be built from bridge spans.\n");
580         return 0;
581     }
582
583     memset(mat, 0, sizeof(mat));
584     mat[I_HCM] = buil_tower_bh;
585     work = (SCT_BLD_WORK(0, buil_tower_bh) * SCT_MINEFF + 99) / 100;
586
587     if (!sector_can_build(sp, mat, work, 100, dchr[SCT_BTOWER].d_name))
588         return 0;
589     if (!build_can_afford(buil_tower_bc, 100, dchr[SCT_BTOWER].d_name))
590         return 0;
591     if (!player->argp[3]) {
592         pr("Building from %s\n", xyas(sp->sct_x, sp->sct_y, player->cnum));
593         nav_map(sp->sct_x, sp->sct_y, 1);
594     }
595     p = getstarg(player->argp[3], "build tower in what direction? ", buf);
596     if (!p || !*p) {
597         return 0;
598     }
599     if (!check_sect_ok(sp))
600         return 0;
601
602     if ((val = chkdir(*p, DIR_FIRST, DIR_LAST)) < 0) {
603         pr("'%c' is not a valid direction...\n", *p);
604         direrr(NULL, NULL, NULL);
605         return 0;
606     }
607     newx = sp->sct_x + diroff[val][0];
608     newy = sp->sct_y + diroff[val][1];
609     if (getsect(newx, newy, &sect) == 0 || sect.sct_type != SCT_WATER) {
610         pr("%s is not a water sector\n", xyas(newx, newy, player->cnum));
611         return 0;
612     }
613
614     /* Now, check.  You aren't allowed to build bridge towers
615        next to land. */
616     for (i = 1; i <= 6; i++) {
617         struct sctstr s2;
618         nx = sect.sct_x + diroff[i][0];
619         ny = sect.sct_y + diroff[i][1];
620         getsect(nx, ny, &s2);
621         if ((s2.sct_type != SCT_WATER) &&
622             (s2.sct_type != SCT_BTOWER) && (s2.sct_type != SCT_BSPAN)) {
623             pr("Bridge towers cannot be built adjacent to land.\n");
624             pr("That sector is adjacent to land.\n");
625             return 0;
626         }
627     }
628
629     build_charge(sp, mat, work, buil_tower_bc, 100);
630
631     sect.sct_type = SCT_BTOWER;
632     sect.sct_newtype = SCT_BTOWER;
633     sect.sct_effic = SCT_MINEFF;
634     sect.sct_road = 0;
635     sect.sct_rail = 0;
636     sect.sct_defense = 0;
637     if (opt_MOB_ACCESS) {
638         game_tick_to_now(&sect.sct_access);
639         sect.sct_mobil = -(etu_per_update / sect_mob_neg_factor);
640     } else {
641         sect.sct_mobil = 0;
642     }
643     sect.sct_mines = 0;
644     map_set(player->cnum, sect.sct_x, sect.sct_y, dchr[SCT_BTOWER].d_mnem, 2);
645     writemap(player->cnum);
646     putsect(&sect);
647     pr("Bridge tower built in %s\n",
648        xyas(sect.sct_x, sect.sct_y, player->cnum));
649     return 1;
650 }
651
652 static int
653 sector_can_build(struct sctstr *sp, short mat[], int work,
654                  int effic, char *what)
655 {
656     int i, avail, ret;
657     double needed;
658
659     if (sp->sct_effic < 60 && !player->god) {
660         pr("Sector %s is not 60%% efficient.\n",
661            xyas(sp->sct_x, sp->sct_y, player->cnum));
662         return 0;
663     }
664
665     avail = (work * effic + 99) / 100;
666     if (sp->sct_avail < avail) {
667         pr("Not enough available work in %s to build a %s\n",
668            xyas(sp->sct_x, sp->sct_y, player->cnum), what);
669         pr(" (%d available work required)\n", avail);
670         return 0;
671     }
672
673     ret = 1;
674     for (i = I_NONE + 1; i <= I_MAX; i++) {
675         needed = mat[i] * (effic / 100.0);
676         if (sp->sct_item[i] < needed) {
677             pr("Not enough %s in %s (need %g more)\n",
678                ichr[i].i_name, xyas(sp->sct_x, sp->sct_y, player->cnum),
679                ceil(needed - sp->sct_item[i]));
680             ret = 0;
681         }
682         mat[i] = roundavg(needed);
683     }
684
685     return ret;
686 }
687
688 static void
689 build_charge(struct sctstr *sp,
690              short mat[], int work, double cost, int effic)
691 {
692     int i;
693
694     for (i = I_NONE + 1; i <= I_MAX; i++)
695         sp->sct_item[i] -= mat[i];
696     sp->sct_avail -= (work * effic + 99) / 100;
697     player->dolcost += cost * effic / 100.0;
698 }
699
700 static int
701 build_can_afford(double cost, int effic, char *what)
702 {
703     struct natstr *natp = getnatp(player->cnum);
704
705     if (natp->nat_money < player->dolcost + cost * effic / 100.0) {
706         pr("Not enough money left to build a %s\n", what);
707         return 0;
708     }
709     return 1;
710 }