]> git.pond.sub.org Git - empserver/blob - src/lib/commands/edit.c
Sectors need space for items, deliveries and distribution thresholds.
[empserver] / src / lib / commands / edit.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  *  edit.c: Edit things (sectors, ships, planes, units, nukes, countries)
29  * 
30  *  Known contributors to this file:
31  *     David Muir Sharnoff
32  *     Chad Zabel, 1994
33  *     Steve McClure, 1998-2000
34  *     Ron Koenderink, 2003
35  */
36
37 #include <stdio.h>
38 #include <ctype.h>
39 #include <string.h>
40 #include "misc.h"
41 #include "player.h"
42 #include "var.h"
43 #include "xy.h"
44 #include "sect.h"
45 #include "nat.h"
46 #include "news.h"
47 #include "nsc.h"
48 #include "item.h"
49 #include "file.h"
50 #include "plane.h"
51 #include "ship.h"
52 #include "land.h"
53 #include "optlist.h"
54 #include "commands.h"
55
56 #define END -1
57
58 static void benefit(natid who, int good);
59 static int docountry(s_char op, int arg, s_char *p, float farg, natid nat,
60                      struct natstr *np);
61 static int doland(s_char op, int arg, s_char *p, struct sctstr *sect);
62 static int doplane(s_char op, int arg, s_char *p, struct plnstr *plane);
63 static int doship(s_char op, int arg, s_char *p, struct shpstr *ship);
64 static int dounit(s_char op, int arg, s_char *p, struct lndstr *land);
65 static int getin(s_char **, s_char **, int *, s_char *);
66 static void noise(struct sctstr *sptr, int public_amt, s_char *name,
67                   int old, int new);
68 static void pr_land(struct lndstr *land);
69 static void pr_plane(struct plnstr *plane);
70 static void pr_ship(struct shpstr *ship);
71 static void prnat(natid n);
72 static void prsect(struct sctstr *sect);
73
74
75 int
76 edit(void)
77 {
78     struct sctstr sect;
79     struct plnstr plane;
80     struct shpstr ship;
81     struct lndstr land;
82     s_char *what;
83     s_char *ptr;
84     s_char *thing;
85     int num;
86     int arg;
87     int err;
88     int arg_index = 3;
89     coord x, y;
90     float farg;
91     natid nat;
92     struct natstr *np;
93     s_char buf[1024];
94     s_char ewhat;               /* saves information from the command line
95                                    for use later on.                         */
96
97     if ((what = getstarg(player->argp[1],
98                          "Edit What (country, land, ship, plane, nuke, unit)? ",
99                          buf)) == 0)
100         return RET_SYN;
101     ewhat = what[0];
102     switch (ewhat) {
103     case 'l':
104         if (!(ptr = getstarg(player->argp[2], "Sector : ", buf)))
105             return RET_FAIL;
106         if (!sarg_xy(ptr, &x, &y))
107             return RET_FAIL;
108         if (!getsect(x, y, &sect))
109             return RET_FAIL;
110         break;
111     case 'c':
112         if ((num = natarg(player->argp[2], "Country number? ")) < 0)
113             return RET_SYN;
114         nat = (natid)num;
115         np = getnatp(nat);
116         break;
117     case 'p':
118         if ((num = onearg(player->argp[2], "Plane number? ")) < 0)
119             return RET_SYN;
120         if (!getplane(num, &plane))
121             return RET_SYN;
122         break;
123     case 's':
124         if ((num = onearg(player->argp[2], "Ship number? ")) < 0)
125             return RET_SYN;
126         if (!getship(num, &ship))
127             return RET_SYN;
128         break;
129     case 'u':
130         if ((num = onearg(player->argp[2], "Unit number? ")) < 0)
131             return RET_SYN;
132         if (!getland(num, &land))
133             return RET_SYN;
134         break;
135     case 'n':
136         pr("Not implemented yet.\n");
137         break;
138     default:
139         pr("huh?\n");
140         return RET_SYN;
141     }
142     if (player->argp[3] == 0) {
143         switch (ewhat) {
144         case 'l':
145             prsect(&sect);
146             break;
147         case 'c':
148             prnat(nat);
149             break;
150         case 'p':
151             pr_plane(&plane);
152             break;
153         case 's':
154             pr_ship(&ship);
155             break;
156         case 'u':
157             pr_land(&land);
158             break;
159         }
160     }
161     ptr = &buf[0];
162     *ptr = 0;
163     for (;;) {
164         if (player->argp[arg_index] != 0) {
165             if (player->argp[arg_index+1] != 0) {
166                 thing = player->argp[arg_index++];
167                 ptr = player->argp[arg_index++];
168                 arg = atoi(ptr);
169             } else
170                 return RET_SYN;
171         } else if (arg_index == 3) {
172             if ((err = getin(&thing, &ptr, &arg, buf)) != RET_OK) {
173                 if (err == END) {
174                     switch (ewhat) {
175                     case 'c':
176                         prnat(nat);
177                         break;
178                     case 'l':
179                         prsect(&sect);
180                         break;
181                     case 's':
182                         pr_ship(&ship);
183                         break;
184                     case 'u':
185                         pr_land(&land);
186                         break;
187                     case 'p':
188                         pr_plane(&plane);
189                         break;
190                     }
191                     break;
192                 } else
193                     return err;
194             }
195         } else
196             break;
197         switch (ewhat) {
198         case 'c':
199             farg = atof(ptr);
200             if ((err = docountry(thing[0], arg, ptr, farg, nat, np))
201                 != RET_OK)
202                 return err;
203             break;
204         case 'l':
205             if ((err = doland(thing[0], arg, ptr, &sect)) != RET_OK)
206                 return err;
207             if (!putsect(&sect))
208                 return RET_FAIL;
209             break;
210         case 's':
211             if ((err = doship(thing[0], arg, ptr, &ship)) != RET_OK)
212                 return err;
213             if (!ef_ensure_space(EF_SHIP, ship.shp_uid, 50))
214                 return RET_FAIL;
215             if (!putship(ship.shp_uid, &ship))
216                 return RET_FAIL;
217             break;
218         case 'u':
219             if ((err = dounit(thing[0], arg, ptr, &land))
220                 != RET_OK)
221                 return err;
222             if (!ef_ensure_space(EF_LAND, land.lnd_uid, 50))
223                 return RET_FAIL;
224             if (!putland(land.lnd_uid, &land))
225                 return RET_FAIL;
226             break;
227         case 'p':
228             if ((err = doplane(thing[0], arg, ptr, &plane))
229                 != RET_OK)
230                 return err;
231             if (!ef_ensure_space(EF_PLANE, plane.pln_uid, 50))
232                 return RET_FAIL;
233             if (!putplane(plane.pln_uid, &plane))
234                 return RET_FAIL;
235             break;
236         }
237         if (err != RET_OK)
238             break;
239         else
240             ptr = 0;
241     }
242     return RET_OK;
243 }
244
245 static void
246 benefit(natid who, int good)
247 {
248     if (!opt_GODNEWS)
249         return;
250
251     if (good) {
252         if (who)
253             nreport(player->cnum, N_AIDS, who, 1);
254     } else {
255         if (who)
256             nreport(player->cnum, N_HURTS, who, 1);
257     }
258 }
259
260 static void
261 noise(struct sctstr *sptr, int public_amt, s_char *name, int old, int new)
262 {
263     s_char p[100];
264
265     pr("%s of %s changed from %d to %d\n",
266        name, xyas(sptr->sct_x, sptr->sct_y, player->cnum), old, new);
267     if (public_amt)
268         (void)sprintf(p, "changed from %d to %d", old, new);
269     else
270         (void)sprintf(p, "%s", (old < new ? "increased" : "decreased"));
271     if (sptr->sct_own)
272         wu(player->cnum, sptr->sct_own,
273            "%s in %s was %s by an act of %s\n",
274            name, xyas(sptr->sct_x, sptr->sct_y, sptr->sct_own),
275            p, cname(player->cnum));
276     benefit(sptr->sct_own, (old < new));
277 }
278
279 static void
280 prsect(struct sctstr *sect)
281 {
282     pr("Location <L>: %s\t", xyas(sect->sct_x, sect->sct_y, player->cnum));
283     pr("Distribution sector <D>: %s\n",
284        xyas(sect->sct_dist_x, sect->sct_dist_y, player->cnum));
285     pr("Designation <s>: %c\t New designation <S>: %c\n",
286        dchr[sect->sct_type].d_mnem, dchr[sect->sct_newtype].d_mnem);
287     pr("own  oo eff mob min gld frt oil urn wrk lty  che plg ptime fall avail\n");
288     pr("  o   O   e   m   i   g   f   c   u   w   l    x   p     t    F     a\n");
289     pr("%3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %4d %3d %5d %4d %5d\n",
290        sect->sct_own, sect->sct_oldown, sect->sct_effic, sect->sct_mobil,
291        sect->sct_min, sect->sct_gmin, sect->sct_fertil, sect->sct_oil,
292        sect->sct_uran, sect->sct_work, sect->sct_loyal,
293        sect->sct_che, sect->sct_pstage, sect->sct_ptime,
294        sect->sct_fallout, sect->sct_avail);
295
296     pr("Mines <M>: %d\t", sect->sct_mines);
297     pr("Coastal <C>: %d\n", sect->sct_coastal);
298     pr("Road %% <R>: %d\t", sect->sct_road);
299     pr("Rail %% <r>: %d\t", sect->sct_rail);
300     pr("Defense %% <d>: %d\n", sect->sct_defense);
301 }
302
303
304 static void
305 prnat(natid n)
306 {
307     struct natstr *np;
308     int i;
309
310     if ((np = getnatp(n)) == 0)
311         return;
312     pr("Country #: %2d\n", n);
313     pr("Name <n>: %-20s\t", np->nat_cnam);
314     pr("Connected: %d\n", np->nat_connected);
315     pr("Representative <r>: %-20s\n", np->nat_pnam);
316     pr("BTUs <b>: %3d\t\t\t", np->nat_btu);
317     pr("Reserves <m>: %5d\n", np->nat_reserve);
318     pr("Capital <c>: %s\t\t",
319        xyas(np->nat_xcap, np->nat_ycap, player->cnum));
320     pr("Origin <o>: %3s\n",
321        xyas(np->nat_xorg, np->nat_yorg, player->cnum));
322     pr("Status <s>: 0x%x\t\t\t", np->nat_stat);
323     pr("Min Used <u>: %3d\n", np->nat_minused);
324     pr("Technology <T>: %.2f\t\t", np->nat_level[NAT_TLEV]);
325     pr("Research <R>: %.2f\n", np->nat_level[NAT_RLEV]);
326     pr("Education <E>: %.2f\t\t", np->nat_level[NAT_ELEV]);
327     pr("Happiness <H>: %.2f\n", np->nat_level[NAT_HLEV]);
328     pr("Money <M>: $%6d\n", np->nat_money);
329     pr("Telegrams <t>: %6d\n", np->nat_tgms);
330     if (opt_DEMANDUPDATE)
331         pr("Updates missed <U>: %d\n", np->nat_missed);
332     if (opt_HIDDEN) {
333         pr("Countries contacted: ");
334         for (i = 0; i < MAXNOC; i++) {
335             if (getcontact(np, i))
336                 pr("%d(%d) ", i, getcontact(np, i));
337         }
338         pr("\n");
339     }
340 }
341
342 static void
343 pr_plane(struct plnstr *plane)
344 {
345     pr("UID <U>: %d\t\t", (int)plane->pln_uid);
346     pr("Owner <O>: %d\t\t", (int)plane->pln_own);
347     pr("Location <l>: %s\n",
348        xyas(plane->pln_x, plane->pln_y, player->cnum));
349     pr("Efficiency <e>: %d\t", (int)plane->pln_effic);
350     pr("Mobility <m>: %d\n", (int)plane->pln_mobil);
351     pr("Tech <t>: %d\t\t", plane->pln_tech);
352     pr("Wing <w>: %c\n", plane->pln_wing);
353     pr("Attack <a>: %d\t\t", plane->pln_att);
354     pr("Defense <d>: %d\n", plane->pln_def);
355     pr("Range <r>: %d\t\t", plane->pln_range);
356     pr("Flags <f>: %d\n", plane->pln_flags);
357     pr("Ship <s>: %d\t\t", plane->pln_ship);
358     pr("Land Unit <y>: %d\t", plane->pln_land);
359     pr("Nuke Type <n>: %d\n", plane->pln_nuketype);
360 }
361
362 static void
363 pr_land(struct lndstr *land)
364 {
365     int vec[I_MAX + 1];
366     struct lchrstr *lcp;
367
368     lcp = &lchr[(int)land->lnd_type];
369     pr("UID <U>: %d\n", (int)land->lnd_uid);
370     pr("Owner <O>: %d\n", (int)land->lnd_own);
371     pr("Location <L>: %s\n", xyas(land->lnd_x, land->lnd_y, player->cnum));
372     pr("Efficiency <e>: %d\t", (int)land->lnd_effic);
373     pr("Mobility <M>: %d\n", (int)land->lnd_mobil);
374     pr("Tech <t>: %d\t\t", land->lnd_tech);
375     pr("Army <a>: %c\n", land->lnd_army);
376     pr("Attack: %f\t", lcp->l_att);
377     pr("Defense: %f\n", lcp->l_def);
378     pr("Fortification <F>: %d\t", land->lnd_harden);
379     pr("Fuel <B>: %d\n", land->lnd_fuel);
380     count_land_planes(land);
381     pr("Xlight planes <X>: %d\n", land->lnd_nxlight);
382     pr("Land unit <Y>: %d\n", land->lnd_land);
383     pr("Ship <S>: %d\t\t", land->lnd_ship);
384     pr("Radius <P>: %d\n", land->lnd_rad_max);
385     pr("Retreat percentage <Z>: %d\n", (int)land->lnd_retreat);
386     pr("Retreat path <R>: '%s'\t\tRetreat Flags <W>: %d\n",
387        land->lnd_rpath, (int)land->lnd_rflags);
388     getvec(VT_ITEM, vec, (s_char *)land, EF_LAND);
389     pr("civ mil  uw food shl gun  pet  irn  dst  oil  lcm  hcm rad\n");
390     pr("  c   m   u    f   s   g    p    i    d    o    l    h   r\n");
391     pr("%3d", vec[I_CIVIL]);
392     pr("%4d", vec[I_MILIT]);
393     pr("%4d", vec[I_UW]);
394     pr("%5d", vec[I_FOOD]);
395     pr("%4d", vec[I_SHELL]);
396     pr("%4d", vec[I_GUN]);
397     pr("%5d", vec[I_PETROL]);
398     pr("%5d", vec[I_IRON]);
399     pr("%5d", vec[I_DUST]);
400     pr("%5d", vec[I_OIL]);
401     pr("%5d", vec[I_LCM]);
402     pr("%5d", vec[I_HCM]);
403     pr("%4d", vec[I_RAD]);
404     pr("\n");
405 }
406
407 static void
408 pr_ship(struct shpstr *ship)
409 {
410     int vec[I_MAX + 1];
411     struct natstr *natp;
412
413     if ((natp = getnatp(ship->shp_own)) == 0)
414         return;
415     pr("%s (#%d) %s\n", natp->nat_cnam, (int)ship->shp_own, prship(ship));
416     pr("UID <U>: %d\n", (int)ship->shp_uid);
417     pr("Owner <O>: %d\t\t\t", (int)ship->shp_own);
418     pr("Location <L>: %s\n", xyas(ship->shp_x, ship->shp_y, player->cnum));
419     pr("Tech <T>: %d\t\t\t", ship->shp_tech);
420     pr("Efficiency <E>: %d\n", (int)ship->shp_effic);
421     pr("Mobility <M>: %d\t\t\t", (int)ship->shp_mobil);
422     pr("Fleet <F>: %c\n", ship->shp_fleet);
423     count_planes(ship);
424     pr("Helos <H>: %d\n", (int)ship->shp_nchoppers);
425     pr("Xlight planes <X>: %d\n", (int)ship->shp_nxlight);
426     pr("Planes <P>: %d\n", (int)ship->shp_nplane);
427     count_units(ship);
428     pr("Units <Y>: %d\n", (int)ship->shp_nland);
429     /* could depend on opt_FUEL - but a deity might want to set this
430        up before enabling the option */
431     pr("Fuel <B>: %d\n", (int)ship->shp_fuel);
432     pr("Retreat path <R>: '%s'\t\tRetreat Flags <W>: %d\n",
433        ship->shp_rpath, (int)ship->shp_rflags);
434     getvec(VT_ITEM, vec, (s_char *)ship, EF_SHIP);
435     pr("Plague Stage <a>: %d\n", ship->shp_pstage);
436     pr("Plague Time <b>: %d\n", ship->shp_ptime);
437     pr("civ mil  uw food shl gun  pet  irn  dst  oil  lcm  hcm rad\n");
438     pr("  c   m   u    f   s   g    p    i    d    o    l    h   r\n");
439     pr("%3d", vec[I_CIVIL]);
440     pr("%4d", vec[I_MILIT]);
441     pr("%4d", vec[I_UW]);
442     pr("%5d", vec[I_FOOD]);
443     pr("%4d", vec[I_SHELL]);
444     pr("%4d", vec[I_GUN]);
445     pr("%5d", vec[I_PETROL]);
446     pr("%5d", vec[I_IRON]);
447     pr("%5d", vec[I_DUST]);
448     pr("%5d", vec[I_OIL]);
449     pr("%5d", vec[I_LCM]);
450     pr("%5d", vec[I_HCM]);
451     pr("%4d", vec[I_RAD]);
452     pr("\n");
453 }
454
455 static int
456 errcheck(int num, int min, int max)
457 {
458     if (num < min)
459         return (min);
460     else if (num > max)
461         return (max);
462     return (num);
463 }
464
465 static int
466 getin(s_char **what, s_char **p, int *arg, s_char *buf)
467 {
468     if (!(*what = getstarg(*p, "%c xxxxx -- thing value : ", buf))) {
469         return RET_SYN;
470     }
471     if (**what == '\0')
472         return END;
473     while (**what && isspace(**what))
474         (*what)++;
475     if (**what == '\0')
476         return RET_SYN;
477     for (*p = *what; **p && !isspace(**p); (*p)++)      /* skip non spaces */
478         continue;
479     while (**p && isspace(**p))
480         (*p)++;
481     if (**p == '\0')
482         return RET_SYN;
483     *arg = atoi(*p);
484     return RET_OK;
485 }
486
487
488 static int
489 doland(s_char op, int arg, s_char *p, struct sctstr *sect)
490 {
491     natid newown, oldown;
492     coord newx, newy;
493     int new, old;
494     int des;
495     switch (op) {
496     case 'C':
497         if (arg < 0)
498             return RET_SYN;
499         sect->sct_coastal = (arg ? 1 : 0);
500         pr("Coastal flag of %s changed to %d\n",
501            xyas(sect->sct_x, sect->sct_y, player->cnum),
502            sect->sct_coastal);
503         break;
504     case 'o':
505         if (arg < 0)
506             return RET_SYN;
507         newown = (natid)errcheck(arg, 0, MAXNOC - 1);
508         pr("Owner of %s changed from %s (#%d) to %s (#%d).\n",
509            xyas(sect->sct_x, sect->sct_y, player->cnum),
510            cname(sect->sct_own), sect->sct_own, cname(newown), newown);
511         if (sect->sct_own) {
512             makelost(EF_SECTOR, sect->sct_own, 0, sect->sct_x,
513                      sect->sct_y);
514             wu(player->cnum, sect->sct_own,
515                "Sector %s lost to deity intervention\n", xyas(sect->sct_x,
516                                                               sect->sct_y,
517                                                               sect->
518                                                               sct_own));
519         }
520         benefit(sect->sct_own, 0);
521         sect->sct_own = newown;
522         if (newown) {
523             makenotlost(EF_SECTOR, newown, 0, sect->sct_x, sect->sct_y);
524             wu(player->cnum, newown,
525                "Sector %s gained from deity intervention\n",
526                xyas(sect->sct_x, sect->sct_y, sect->sct_own));
527         }
528         benefit(newown, 1);
529         break;
530     case 'O':
531         if (arg < 0)
532             return RET_SYN;
533         oldown = (natid)errcheck(arg, 0, MAXNOC - 1);
534         pr("Old owner of %s changed from %s (#%d) to %s (#%d).\n",
535            xyas(sect->sct_x, sect->sct_y, player->cnum),
536            cname(sect->sct_oldown),
537            sect->sct_oldown, cname(oldown), oldown);
538         sect->sct_oldown = oldown;
539         break;
540     case 'e':
541         new = errcheck(arg, 0, 100);
542         noise(sect, 1, "Efficiency", (int)sect->sct_effic, new);
543         sect->sct_effic = (u_char)new;
544         break;
545     case 'm':
546         new = errcheck(arg, -127, 255);
547         noise(sect, 1, "Mobility", (int)sect->sct_mobil, new);
548         sect->sct_mobil = new;
549         break;
550     case 'i':
551         new = errcheck(arg, 0, 127);
552         noise(sect, 1, "Iron ore content", (int)sect->sct_min, new);
553         sect->sct_min = (u_char)new;
554         break;
555     case 'g':
556         new = errcheck(arg, 0, 127);
557         noise(sect, 1, "Gold content", (int)sect->sct_gmin, new);
558         sect->sct_gmin = (u_char)new;
559         break;
560     case 'f':
561         new = errcheck(arg, 0, 127);
562         noise(sect, 1, "Fertility", (int)sect->sct_fertil, new);
563         sect->sct_fertil = (u_char)new;
564         break;
565     case 'c':
566         new = errcheck(arg, 0, 127);
567         noise(sect, 1, "Oil content", (int)sect->sct_oil, new);
568         sect->sct_oil = (u_char)new;
569         break;
570     case 'u':
571         new = errcheck(arg, 0, 127);
572         noise(sect, 1, "Uranium content", (int)sect->sct_uran, new);
573         sect->sct_uran = (u_char)new;
574         break;
575     case 'w':
576         new = errcheck(arg, 0, 100);
577         noise(sect, 1, "Workforce percentage", (int)sect->sct_work, new);
578         sect->sct_work = (u_char)new;
579         break;
580     case 'l':
581         new = errcheck(arg, 0, 127);
582         pr("Loyalty of %s changed from %d to %d%%\n",
583            xyas(sect->sct_x, sect->sct_y, player->cnum),
584            sect->sct_loyal, new);
585         sect->sct_loyal = (u_char)new;
586         break;
587     case 'x':
588         old = sect->sct_che;
589         new = errcheck(arg, 0, 65536);
590         pr("Guerillas in %s changed from %d to %d%\n",
591            xyas(sect->sct_x, sect->sct_y, player->cnum), old, new);
592         sect->sct_che = new;
593         break;
594     case 'p':
595         old = sect->sct_pstage;
596         new = errcheck(arg, 0, PLG_EXPOSED);
597         pr("Plague stage of %s changed from %d to %d%\n",
598            xyas(sect->sct_x, sect->sct_y, player->cnum), old, new);
599         sect->sct_pstage = new;
600         break;
601     case 't':
602         old = sect->sct_ptime;
603         new = errcheck(arg, 0, 255);
604         pr("Plague time of %s changed from %d to %d%\n",
605            xyas(sect->sct_x, sect->sct_y, player->cnum), old, new);
606         sect->sct_ptime = new;
607         break;
608     case 'F':
609         old = sect->sct_fallout;
610         new = errcheck(arg, 0, 9999);
611         pr("Fallout for sector %s changed from %d to %d\n",
612            xyas(sect->sct_x, sect->sct_y, player->cnum), old, new);
613         sect->sct_fallout = new;
614         break;
615     case 'a':
616         new = errcheck(arg, 0, 9999);
617         noise(sect, 1, "Available workforce", (int)sect->sct_avail, new);
618         sect->sct_avail = new;
619         break;
620     case 'M':
621         sect->sct_mines = arg;
622         pr("Mines changed to %d\n", arg);
623         break;
624     case 'L':
625         if (!sarg_xy(p, &newx, &newy))
626             return RET_SYN;
627         sect->sct_x = newx;
628         sect->sct_y = newy;
629         break;
630     case 'D':
631         if (!sarg_xy(p, &newx, &newy))
632             return RET_SYN;
633         pr("Distribtion Location for sector %s changed from %s to %s\n",
634            xyas(sect->sct_x, sect->sct_y, player->cnum),
635            xyas(sect->sct_dist_x, sect->sct_dist_y, player->cnum),
636            xyas(newx, newy, player->cnum));
637         sect->sct_dist_x = newx;
638         sect->sct_dist_y = newy;
639         break;
640     case 's':
641         des = sct_typematch(p);
642         if (des < 0)
643             return RET_SYN;
644         pr("Designation for sector %s changed from %c to %c\n",
645            xyas(sect->sct_x, sect->sct_y, player->cnum),
646            dchr[sect->sct_type].d_mnem, dchr[des].d_mnem);
647         sect->sct_type = des;
648         break;
649     case 'S':
650         des = sct_typematch(p);
651         if (des < 0)
652             return RET_SYN;
653         pr("New Designation for sector %s changed from %c to %c\n",
654            xyas(sect->sct_x, sect->sct_y, player->cnum),
655            dchr[sect->sct_newtype].d_mnem, dchr[des].d_mnem);
656         sect->sct_newtype = des;
657         break;
658     case 'R':
659         if (arg > 100)
660             arg = 100;
661         if (arg < 0)
662             arg = 0;
663         noise(sect, 1, "Road percentage", (int)sect->sct_road, arg);
664         sect->sct_road = arg;
665         break;
666     case 'r':
667         if (arg > 100)
668             arg = 100;
669         if (arg < 0)
670             arg = 0;
671         noise(sect, 1, "Rail percentage", (int)sect->sct_rail, arg);
672         sect->sct_rail = arg;
673         break;
674     case 'd':
675         if (arg > 100)
676             arg = 100;
677         if (arg < 0)
678             arg = 0;
679         noise(sect, 1, "Defense percentage", (int)sect->sct_defense, arg);
680         sect->sct_defense = arg;
681         break;
682     default:
683         pr("huh? (%c)\n", op);
684         return RET_SYN;
685     }
686     return RET_OK;
687 }
688
689
690 static int
691 docountry(s_char op, int arg, s_char *p, float farg, natid nat,
692           struct natstr *np)
693 {
694     coord newx, newy;
695     switch (op) {
696     case 'n':
697         pr("Country name changed from %s to %s\n", np->nat_cnam, p);
698         strncpy(np->nat_cnam, p, sizeof(np->nat_cnam) - 1);
699         break;
700     case 'r':
701         pr("Country representative changed from %s to %s\n",
702            np->nat_pnam, p);
703         strncpy(np->nat_pnam, p, sizeof(np->nat_pnam) - 1);
704         break;
705     case 't':
706         np->nat_tgms = arg;
707         break;
708     case 'b':
709         arg = errcheck(arg, 0, 1024);
710         pr("BTU's changed from %d to %d\n", np->nat_btu, arg);
711         np->nat_btu = arg;
712         break;
713     case 'm':
714         benefit(nat, np->nat_reserve < arg);
715         pr("Military Reserves changed from %d to %d\n",
716            np->nat_reserve, arg);
717         if (np->nat_stat == STAT_NORM)
718             wu(player->cnum, nat,
719                "Military Reserves changed from %d to %d by divine intervention.\n",
720                np->nat_reserve, arg);
721         np->nat_reserve = arg;
722         break;
723     case 'c':
724         if (!sarg_xy(p, &newx, &newy))
725             return RET_SYN;
726         pr("Capital coordinates changed from %s to %s\n",
727            xyas(np->nat_xcap, np->nat_ycap, player->cnum),
728            xyas(newx, newy, player->cnum));
729         np->nat_xcap = newx;
730         np->nat_ycap = newy;
731         break;
732     case 'o':
733         if (!sarg_xy(p, &newx, &newy))
734             return RET_SYN;
735         pr("Origin coordinates changed from %s to %s\n",
736            xyas(np->nat_xorg, np->nat_yorg, player->cnum),
737            xyas(newx, newy, player->cnum));
738         np->nat_xorg = newx;
739         np->nat_yorg = newy;
740         break;
741     case 's':
742         np->nat_stat = (s_char)errcheck(arg, 0, STAT_NEW);
743         break;
744     case 'u':
745         arg = errcheck(arg, 0, m_m_p_d);
746         pr("Number of minutes used changed from %d to %d.\n",
747            np->nat_minused, arg);
748         np->nat_minused = arg;
749         break;
750     case 'M':
751         pr("Money changed from %d to %d\n", np->nat_money, arg);
752         wu(player->cnum, nat,
753            "Money changed from %d to %d by divine intervention.\n",
754            np->nat_money, arg);
755         np->nat_money = arg;
756         break;
757     case 'T':
758         pr("Tech changed from %.2f to %.2f.\n",
759            np->nat_level[NAT_TLEV], farg);
760         np->nat_level[NAT_TLEV] = farg;
761         break;
762     case 'R':
763         pr("Research changed from %.2f to %.2f.\n",
764            np->nat_level[NAT_RLEV], farg);
765         np->nat_level[NAT_RLEV] = farg;
766         break;
767     case 'E':
768         pr("Education changed from %.2f to %.2f.\n",
769            np->nat_level[NAT_ELEV], farg);
770         np->nat_level[NAT_ELEV] = farg;
771         break;
772     case 'H':
773         pr("Happiness changed from %.2f to %.2f.\n",
774            np->nat_level[NAT_HLEV], farg);
775         np->nat_level[NAT_HLEV] = farg;
776         break;
777     case 'U':
778         np->nat_missed = arg;
779         break;
780     default:
781         pr("huh? (%c)\n", op);
782         break;
783     }
784     putnat(np);
785     return RET_OK;
786 }
787
788
789 static int
790 doship(s_char op, int arg, s_char *p, struct shpstr *ship)
791 {
792     coord newx, newy;
793
794     newx = newy = 0;
795     switch (op) {
796     case 'a':
797         ship->shp_pstage = arg;
798         break;
799     case 'b':
800         ship->shp_ptime = arg;
801         break;
802     case 'R':
803         memcpy(ship->shp_rpath, p, sizeof(ship->shp_rpath));
804         break;
805     case 'W':
806         ship->shp_rflags = arg;
807         break;
808     case 'H':
809         ship->shp_nchoppers = arg;
810         break;
811     case 'X':
812         ship->shp_nxlight = arg;
813         break;
814     case 'U':
815         ship->shp_uid = arg;
816         break;
817     case 'O':
818         if (ship->shp_own)
819             wu(player->cnum, ship->shp_own,
820                "%s taken from you by deity intervention!\n", prship(ship));
821         if (arg && arg < MAXNOC) {
822             wu(player->cnum, (natid)arg,
823                "%s given to you by deity intervention!\n", prship(ship));
824             makelost(EF_SHIP, ship->shp_own, ship->shp_uid, ship->shp_x,
825                      ship->shp_y);
826             ship->shp_own = (natid)arg;
827             makenotlost(EF_SHIP, ship->shp_own, ship->shp_uid, ship->shp_x,
828                         ship->shp_y);
829         } else if (!arg) {
830             ship->shp_effic = 0;
831             makelost(EF_SHIP, ship->shp_own, ship->shp_uid, ship->shp_x,
832                      ship->shp_y);
833             ship->shp_own = (natid)0;
834         }
835         break;
836     case 'L':
837         if (!sarg_xy(p, &newx, &newy))
838             return RET_SYN;
839         ship->shp_x = newx;
840         ship->shp_y = newy;
841         break;
842     case 'T':
843         ship->shp_tech = arg;
844         break;
845     case 'E':
846         ship->shp_effic = errcheck(arg, 0, 100);
847         if (arg < 10) {
848             ship->shp_effic = 0;
849             makelost(EF_SHIP, ship->shp_own, ship->shp_uid, ship->shp_x,
850                      ship->shp_y);
851             ship->shp_own = (natid)0;
852         }
853         break;
854     case 'M':
855         ship->shp_mobil = arg;
856         break;
857     case 'B':
858         ship->shp_fuel = errcheck(arg, 0, 255);
859         break;
860     case 'F':
861         if (p[0] == '~')
862             ship->shp_fleet = ' ';
863         else if (isalpha(p[0]))
864             ship->shp_fleet = p[0];
865         else {
866             pr("%c: invalid fleet\n", p[0]);
867             return RET_FAIL;
868         }
869         break;
870     case 'Y':
871         ship->shp_nland = errcheck(arg, 0, 100);
872         break;
873     case 'P':
874         ship->shp_nplane = errcheck(arg, 0, 100);
875         break;
876     case 'c':
877         ship->shp_item[I_CIVIL] = arg;
878         break;
879     case 'm':
880         ship->shp_item[I_MILIT] = arg;
881         break;
882     case 'u':
883         ship->shp_item[I_UW] = arg;
884         break;
885     case 'f':
886         ship->shp_item[I_FOOD] = arg;
887         break;
888     case 's':
889         ship->shp_item[I_SHELL] = arg;
890         break;
891     case 'g':
892         ship->shp_item[I_GUN] = arg;
893         break;
894     case 'p':
895         ship->shp_item[I_PETROL] = arg;
896         break;
897     case 'i':
898         ship->shp_item[I_IRON] = arg;
899         break;
900     case 'd':
901         ship->shp_item[I_DUST] = arg;
902         break;
903     case 'o':
904         ship->shp_item[I_OIL] = arg;
905         break;
906     case 'l':
907         ship->shp_item[I_LCM] = arg;
908         break;
909     case 'h':
910         ship->shp_item[I_HCM] = arg;
911         break;
912     case 'r':
913         ship->shp_item[I_RAD] = arg;
914         break;
915     default:
916         pr("huh? (%c)\n", op);
917         return RET_FAIL;
918     }
919     return RET_OK;
920 }
921
922 static int
923 dounit(s_char op, int arg, s_char *p, struct lndstr *land)
924 {
925     coord newx, newy;
926
927     newx = newy = 0;
928     switch (op) {
929     case 'Y':
930         land->lnd_land = arg;
931         break;
932     case 'U':
933         land->lnd_uid = arg;
934         break;
935     case 'O':
936         if (land->lnd_own)
937             wu(player->cnum, land->lnd_own,
938                "%s taken from you by deity intervention!\n", prland(land));
939
940         if (arg && arg < MAXNOC) {
941             wu(player->cnum, (natid)arg,
942                "%s given to you by deity intervention!\n", prland(land));
943             makelost(EF_LAND, land->lnd_own, land->lnd_uid, land->lnd_x,
944                      land->lnd_y);
945             land->lnd_own = (natid)arg;
946             makenotlost(EF_LAND, land->lnd_own, land->lnd_uid, land->lnd_x,
947                         land->lnd_y);
948         } else if (!arg) {
949             makelost(EF_LAND, land->lnd_own, land->lnd_uid, land->lnd_x,
950                      land->lnd_y);
951             land->lnd_effic = 0;
952             land->lnd_own = (natid)0;
953         }
954         break;
955     case 'L':
956         if (!sarg_xy(p, &newx, &newy))
957             return RET_SYN;
958         land->lnd_x = newx;
959         land->lnd_y = newy;
960         break;
961     case 'e':
962         land->lnd_effic = errcheck(arg, 0, 100);
963         if (arg < 10) {
964             makelost(EF_LAND, land->lnd_own, land->lnd_uid, land->lnd_x,
965                      land->lnd_y);
966             land->lnd_effic = 0;
967             land->lnd_own = (natid)0;
968         }
969         break;
970     case 'M':
971         land->lnd_mobil = arg;
972         break;
973     case 't':
974         land->lnd_tech = arg;
975         break;
976     case 'a':
977         if (p[0] == '~')
978             land->lnd_army = ' ';
979         else if (isalpha(p[0]))
980             land->lnd_army = p[0];
981         else {
982             pr("%c: invalid army\n", p[0]);
983             return RET_FAIL;
984         }
985         break;
986     case 'F':
987         land->lnd_harden = errcheck(arg, 0, 255);
988         break;
989     case 'B':
990         land->lnd_fuel = errcheck(arg, 0, 255);
991         break;
992     case 'X':
993         land->lnd_nxlight = arg;
994         break;
995     case 'S':
996         land->lnd_ship = arg;
997         break;
998     case 'P':
999         land->lnd_rad_max = arg;
1000         break;
1001     case 'Z':
1002         land->lnd_retreat = arg;
1003         break;
1004     case 'R':
1005         memcpy(land->lnd_rpath, p, sizeof(land->lnd_rpath));
1006         break;
1007     case 'W':
1008         land->lnd_rflags = arg;
1009         break;
1010     case 'c':
1011         land->lnd_item[I_CIVIL] = arg;
1012         break;
1013     case 'm':
1014         land->lnd_item[I_MILIT] = arg;
1015         break;
1016     case 'u':
1017         land->lnd_item[I_UW] = arg;
1018         break;
1019     case 'f':
1020         land->lnd_item[I_FOOD] = arg;
1021         break;
1022     case 's':
1023         land->lnd_item[I_SHELL] = arg;
1024         break;
1025     case 'g':
1026         land->lnd_item[I_GUN] = arg;
1027         break;
1028     case 'p':
1029         land->lnd_item[I_PETROL] = arg;
1030         break;
1031     case 'i':
1032         land->lnd_item[I_IRON] = arg;
1033         break;
1034     case 'd':
1035         land->lnd_item[I_DUST] = arg;
1036         break;
1037     case 'o':
1038         land->lnd_item[I_OIL] = arg;
1039         break;
1040     case 'l':
1041         land->lnd_item[I_LCM] = arg;
1042         break;
1043     case 'h':
1044         land->lnd_item[I_HCM] = arg;
1045         break;
1046     case 'r':
1047         land->lnd_item[I_RAD] = arg;
1048         break;
1049     default:
1050         pr("huh? (%c)\n", op);
1051         return RET_FAIL;
1052     }
1053     return RET_OK;
1054 }
1055
1056
1057 int
1058 doplane(s_char op, int arg, s_char *p, struct plnstr *plane)
1059 {
1060     coord newx, newy;
1061
1062     switch (op) {
1063     case 'n':
1064         plane->pln_nuketype = arg;
1065         break;
1066     case 'U':
1067         plane->pln_uid = arg;
1068         break;
1069     case 'l':
1070         if (!sarg_xy(p, &newx, &newy))
1071             return RET_SYN;
1072         plane->pln_x = newx;
1073         plane->pln_y = newy;
1074         break;
1075     case 'O':
1076         if (plane->pln_own)
1077             wu(player->cnum, plane->pln_own,
1078                "%s taken from you by deity intervention!\n",
1079                prplane(plane));
1080         if (arg && arg < MAXNOC) {
1081             makelost(EF_PLANE, plane->pln_own, plane->pln_uid,
1082                      plane->pln_x, plane->pln_y);
1083             plane->pln_own = (natid)arg;
1084             makenotlost(EF_PLANE, plane->pln_own, plane->pln_uid,
1085                         plane->pln_x, plane->pln_y);
1086             wu(player->cnum, plane->pln_own,
1087                "%s given to you by deity intervention!\n", prplane(plane));
1088         } else if (!arg) {
1089             plane->pln_effic = 0;
1090             makelost(EF_PLANE, plane->pln_own, plane->pln_uid,
1091                      plane->pln_x, plane->pln_y);
1092             plane->pln_own = (natid)0;
1093         }
1094         break;
1095     case 'e':
1096         plane->pln_effic = errcheck(arg, 0, 100);
1097         if (arg < 10) {
1098             plane->pln_effic = 0;
1099             makelost(EF_PLANE, plane->pln_own, plane->pln_uid,
1100                      plane->pln_x, plane->pln_y);
1101             plane->pln_own = (natid)0;
1102         }
1103         break;
1104     case 'm':
1105         plane->pln_mobil = errcheck(arg, -127, 255);
1106         break;
1107     case 't':
1108         plane->pln_tech = arg;
1109         break;
1110     case 'w':
1111         if (p[0] == '~')
1112             plane->pln_wing = ' ';
1113         else if (isalpha(p[0]))
1114             plane->pln_wing = p[0];
1115         else {
1116             pr("%c: invalid wing\n", p[0]);
1117             return RET_FAIL;
1118         }
1119         break;
1120     case 'a':
1121         plane->pln_att = (s_char)errcheck(arg, 0, 127);
1122         break;
1123     case 'd':
1124         plane->pln_def = (s_char)arg;
1125         break;
1126     case 'r':
1127         plane->pln_range = (u_char)arg;
1128         break;
1129     case 's':
1130         plane->pln_ship = arg;
1131         break;
1132     case 'y':
1133         plane->pln_land = arg;
1134         break;
1135     case 'f':
1136         plane->pln_flags = arg;
1137         break;
1138     default:
1139         pr("huh? (%c)\n", op);
1140         return RET_FAIL;
1141     }
1142     return RET_OK;
1143 }