]> git.pond.sub.org Git - empserver/blob - src/lib/commands/edit.c
Replace getvec() by direct, read-only item access in some cases where
[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 ctg plg ptime fall avail\n");
288     pr("  o   O   e   m   i   g   f   c   u   w   l   x   X   p     t    F     a\n");
289     pr("%3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %3d %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_che_target,
294        sect->sct_pstage, sect->sct_ptime,
295        sect->sct_fallout, sect->sct_avail);
296
297     pr("Mines <M>: %d\t", sect->sct_mines);
298     pr("Coastal <C>: %d\n", sect->sct_coastal);
299     pr("Road %% <R>: %d\t", sect->sct_road);
300     pr("Rail %% <r>: %d\t", sect->sct_rail);
301     pr("Defense %% <d>: %d\n", sect->sct_defense);
302 }
303
304
305 static void
306 prnat(natid n)
307 {
308     struct natstr *np;
309     int i;
310
311     if ((np = getnatp(n)) == 0)
312         return;
313     pr("Country #: %2d\n", n);
314     pr("Name <n>: %-20s\t", np->nat_cnam);
315     pr("Connected: %d\n", np->nat_connected);
316     pr("Representative <r>: %-20s\n", np->nat_pnam);
317     pr("BTUs <b>: %3d\t\t\t", np->nat_btu);
318     pr("Reserves <m>: %5d\n", np->nat_reserve);
319     pr("Capital <c>: %s\t\t",
320        xyas(np->nat_xcap, np->nat_ycap, player->cnum));
321     pr("Origin <o>: %3s\n",
322        xyas(np->nat_xorg, np->nat_yorg, player->cnum));
323     pr("Status <s>: 0x%x\t\t\t", np->nat_stat);
324     pr("Min Used <u>: %3d\n", np->nat_minused);
325     pr("Technology <T>: %.2f\t\t", np->nat_level[NAT_TLEV]);
326     pr("Research <R>: %.2f\n", np->nat_level[NAT_RLEV]);
327     pr("Education <E>: %.2f\t\t", np->nat_level[NAT_ELEV]);
328     pr("Happiness <H>: %.2f\n", np->nat_level[NAT_HLEV]);
329     pr("Money <M>: $%6d\n", np->nat_money);
330     pr("Telegrams <t>: %6d\n", np->nat_tgms);
331     if (opt_DEMANDUPDATE)
332         pr("Updates missed <U>: %d\n", np->nat_missed);
333     if (opt_HIDDEN) {
334         pr("Countries contacted: ");
335         for (i = 0; i < MAXNOC; i++) {
336             if (getcontact(np, i))
337                 pr("%d(%d) ", i, getcontact(np, i));
338         }
339         pr("\n");
340     }
341 }
342
343 static void
344 pr_plane(struct plnstr *plane)
345 {
346     pr("UID <U>: %d\t\t", (int)plane->pln_uid);
347     pr("Owner <O>: %d\t\t", (int)plane->pln_own);
348     pr("Location <l>: %s\n",
349        xyas(plane->pln_x, plane->pln_y, player->cnum));
350     pr("Efficiency <e>: %d\t", (int)plane->pln_effic);
351     pr("Mobility <m>: %d\n", (int)plane->pln_mobil);
352     pr("Tech <t>: %d\t\t", plane->pln_tech);
353     pr("Wing <w>: %c\n", plane->pln_wing);
354     pr("Attack <a>: %d\t\t", plane->pln_att);
355     pr("Defense <d>: %d\n", plane->pln_def);
356     pr("Range <r>: %d\t\t", plane->pln_range);
357     pr("Flags <f>: %d\n", plane->pln_flags);
358     pr("Ship <s>: %d\t\t", plane->pln_ship);
359     pr("Land Unit <y>: %d\t", plane->pln_land);
360     pr("Nuke Type <n>: %d\n", plane->pln_nuketype);
361 }
362
363 static void
364 pr_land(struct lndstr *land)
365 {
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     pr("civ mil  uw food shl gun  pet  irn  dst  oil  lcm  hcm rad\n");
389     pr("  c   m   u    f   s   g    p    i    d    o    l    h   r\n");
390     pr("%3d", land->lnd_item[I_CIVIL]);
391     pr("%4d", land->lnd_item[I_MILIT]);
392     pr("%4d", land->lnd_item[I_UW]);
393     pr("%5d", land->lnd_item[I_FOOD]);
394     pr("%4d", land->lnd_item[I_SHELL]);
395     pr("%4d", land->lnd_item[I_GUN]);
396     pr("%5d", land->lnd_item[I_PETROL]);
397     pr("%5d", land->lnd_item[I_IRON]);
398     pr("%5d", land->lnd_item[I_DUST]);
399     pr("%5d", land->lnd_item[I_OIL]);
400     pr("%5d", land->lnd_item[I_LCM]);
401     pr("%5d", land->lnd_item[I_HCM]);
402     pr("%4d", land->lnd_item[I_RAD]);
403     pr("\n");
404 }
405
406 static void
407 pr_ship(struct shpstr *ship)
408 {
409     struct natstr *natp;
410
411     if ((natp = getnatp(ship->shp_own)) == 0)
412         return;
413     pr("%s (#%d) %s\n", natp->nat_cnam, (int)ship->shp_own, prship(ship));
414     pr("UID <U>: %d\n", (int)ship->shp_uid);
415     pr("Owner <O>: %d\t\t\t", (int)ship->shp_own);
416     pr("Location <L>: %s\n", xyas(ship->shp_x, ship->shp_y, player->cnum));
417     pr("Tech <T>: %d\t\t\t", ship->shp_tech);
418     pr("Efficiency <E>: %d\n", (int)ship->shp_effic);
419     pr("Mobility <M>: %d\t\t\t", (int)ship->shp_mobil);
420     pr("Fleet <F>: %c\n", ship->shp_fleet);
421     count_planes(ship);
422     pr("Helos <H>: %d\n", (int)ship->shp_nchoppers);
423     pr("Xlight planes <X>: %d\n", (int)ship->shp_nxlight);
424     pr("Planes <P>: %d\n", (int)ship->shp_nplane);
425     count_units(ship);
426     pr("Units <Y>: %d\n", (int)ship->shp_nland);
427     /* could depend on opt_FUEL - but a deity might want to set this
428        up before enabling the option */
429     pr("Fuel <B>: %d\n", (int)ship->shp_fuel);
430     pr("Retreat path <R>: '%s'\t\tRetreat Flags <W>: %d\n",
431        ship->shp_rpath, (int)ship->shp_rflags);
432     pr("Plague Stage <a>: %d\n", ship->shp_pstage);
433     pr("Plague Time <b>: %d\n", ship->shp_ptime);
434     pr("civ mil  uw food shl gun  pet  irn  dst  oil  lcm  hcm rad\n");
435     pr("  c   m   u    f   s   g    p    i    d    o    l    h   r\n");
436     pr("%3d", ship->shp_item[I_CIVIL]);
437     pr("%4d", ship->shp_item[I_MILIT]);
438     pr("%4d", ship->shp_item[I_UW]);
439     pr("%5d", ship->shp_item[I_FOOD]);
440     pr("%4d", ship->shp_item[I_SHELL]);
441     pr("%4d", ship->shp_item[I_GUN]);
442     pr("%5d", ship->shp_item[I_PETROL]);
443     pr("%5d", ship->shp_item[I_IRON]);
444     pr("%5d", ship->shp_item[I_DUST]);
445     pr("%5d", ship->shp_item[I_OIL]);
446     pr("%5d", ship->shp_item[I_LCM]);
447     pr("%5d", ship->shp_item[I_HCM]);
448     pr("%4d", ship->shp_item[I_RAD]);
449     pr("\n");
450 }
451
452 static int
453 errcheck(int num, int min, int max)
454 {
455     if (num < min)
456         return (min);
457     else if (num > max)
458         return (max);
459     return (num);
460 }
461
462 static int
463 getin(s_char **what, s_char **p, int *arg, s_char *buf)
464 {
465     if (!(*what = getstarg(*p, "%c xxxxx -- thing value : ", buf))) {
466         return RET_SYN;
467     }
468     if (**what == '\0')
469         return END;
470     while (**what && isspace(**what))
471         (*what)++;
472     if (**what == '\0')
473         return RET_SYN;
474     for (*p = *what; **p && !isspace(**p); (*p)++)      /* skip non spaces */
475         continue;
476     while (**p && isspace(**p))
477         (*p)++;
478     if (**p == '\0')
479         return RET_SYN;
480     *arg = atoi(*p);
481     return RET_OK;
482 }
483
484
485 static int
486 doland(s_char op, int arg, s_char *p, struct sctstr *sect)
487 {
488     natid newown, oldown;
489     coord newx, newy;
490     int new, old;
491     int des;
492     switch (op) {
493     case 'C':
494         if (arg < 0)
495             return RET_SYN;
496         sect->sct_coastal = (arg ? 1 : 0);
497         pr("Coastal flag of %s changed to %d\n",
498            xyas(sect->sct_x, sect->sct_y, player->cnum),
499            sect->sct_coastal);
500         break;
501     case 'o':
502         if (arg < 0)
503             return RET_SYN;
504         newown = (natid)errcheck(arg, 0, MAXNOC - 1);
505         pr("Owner of %s changed from %s (#%d) to %s (#%d).\n",
506            xyas(sect->sct_x, sect->sct_y, player->cnum),
507            cname(sect->sct_own), sect->sct_own, cname(newown), newown);
508         if (sect->sct_own) {
509             makelost(EF_SECTOR, sect->sct_own, 0, sect->sct_x,
510                      sect->sct_y);
511             wu(player->cnum, sect->sct_own,
512                "Sector %s lost to deity intervention\n", xyas(sect->sct_x,
513                                                               sect->sct_y,
514                                                               sect->
515                                                               sct_own));
516         }
517         benefit(sect->sct_own, 0);
518         sect->sct_own = newown;
519         if (newown) {
520             makenotlost(EF_SECTOR, newown, 0, sect->sct_x, sect->sct_y);
521             wu(player->cnum, newown,
522                "Sector %s gained from deity intervention\n",
523                xyas(sect->sct_x, sect->sct_y, sect->sct_own));
524         }
525         benefit(newown, 1);
526         break;
527     case 'O':
528         if (arg < 0)
529             return RET_SYN;
530         oldown = (natid)errcheck(arg, 0, MAXNOC - 1);
531         pr("Old owner of %s changed from %s (#%d) to %s (#%d).\n",
532            xyas(sect->sct_x, sect->sct_y, player->cnum),
533            cname(sect->sct_oldown),
534            sect->sct_oldown, cname(oldown), oldown);
535         sect->sct_oldown = oldown;
536         break;
537     case 'e':
538         new = errcheck(arg, 0, 100);
539         noise(sect, 1, "Efficiency", (int)sect->sct_effic, new);
540         sect->sct_effic = (u_char)new;
541         break;
542     case 'm':
543         new = errcheck(arg, -127, 255);
544         noise(sect, 1, "Mobility", (int)sect->sct_mobil, new);
545         sect->sct_mobil = new;
546         break;
547     case 'i':
548         new = errcheck(arg, 0, 127);
549         noise(sect, 1, "Iron ore content", (int)sect->sct_min, new);
550         sect->sct_min = (u_char)new;
551         break;
552     case 'g':
553         new = errcheck(arg, 0, 127);
554         noise(sect, 1, "Gold content", (int)sect->sct_gmin, new);
555         sect->sct_gmin = (u_char)new;
556         break;
557     case 'f':
558         new = errcheck(arg, 0, 127);
559         noise(sect, 1, "Fertility", (int)sect->sct_fertil, new);
560         sect->sct_fertil = (u_char)new;
561         break;
562     case 'c':
563         new = errcheck(arg, 0, 127);
564         noise(sect, 1, "Oil content", (int)sect->sct_oil, new);
565         sect->sct_oil = (u_char)new;
566         break;
567     case 'u':
568         new = errcheck(arg, 0, 127);
569         noise(sect, 1, "Uranium content", (int)sect->sct_uran, new);
570         sect->sct_uran = (u_char)new;
571         break;
572     case 'w':
573         new = errcheck(arg, 0, 100);
574         noise(sect, 1, "Workforce percentage", (int)sect->sct_work, new);
575         sect->sct_work = (u_char)new;
576         break;
577     case 'l':
578         new = errcheck(arg, 0, 127);
579         pr("Loyalty of %s changed from %d to %d%%\n",
580            xyas(sect->sct_x, sect->sct_y, player->cnum),
581            sect->sct_loyal, new);
582         sect->sct_loyal = (u_char)new;
583         break;
584     case 'x':
585         old = sect->sct_che;
586         new = errcheck(arg, 0, CHE_MAX);
587         pr("Guerillas in %s changed from %d to %d\n",
588            xyas(sect->sct_x, sect->sct_y, player->cnum), old, new);
589         sect->sct_che = new;
590         break;
591     case 'X':
592         old = sect->sct_che_target;
593         new = errcheck(arg, 0, MAXNOC - 1);
594         pr("Old owner of %s changed from %s (#%d) to %s (#%d).\n",
595            xyas(sect->sct_x, sect->sct_y, player->cnum),
596            cname(old), old, cname(new), new);
597         sect->sct_che_target = new;
598         break;
599     case 'p':
600         old = sect->sct_pstage;
601         new = errcheck(arg, 0, PLG_EXPOSED);
602         pr("Plague stage of %s changed from %d to %d%\n",
603            xyas(sect->sct_x, sect->sct_y, player->cnum), old, new);
604         sect->sct_pstage = new;
605         break;
606     case 't':
607         old = sect->sct_ptime;
608         new = errcheck(arg, 0, 255);
609         pr("Plague time of %s changed from %d to %d%\n",
610            xyas(sect->sct_x, sect->sct_y, player->cnum), old, new);
611         sect->sct_ptime = new;
612         break;
613     case 'F':
614         old = sect->sct_fallout;
615         new = errcheck(arg, 0, FALLOUT_MAX);
616         pr("Fallout for sector %s changed from %d to %d\n",
617            xyas(sect->sct_x, sect->sct_y, player->cnum), old, new);
618         sect->sct_fallout = new;
619         break;
620     case 'a':
621         new = errcheck(arg, 0, 9999);
622         noise(sect, 1, "Available workforce", (int)sect->sct_avail, new);
623         sect->sct_avail = new;
624         break;
625     case 'M':
626         new = errcheck(arg, 0, MINES_MAX);
627         sect->sct_mines = new;
628         pr("Mines changed to %d\n", new);
629         break;
630     case 'L':
631         if (!sarg_xy(p, &newx, &newy))
632             return RET_SYN;
633         sect->sct_x = newx;
634         sect->sct_y = newy;
635         break;
636     case 'D':
637         if (!sarg_xy(p, &newx, &newy))
638             return RET_SYN;
639         pr("Distribtion Location for sector %s changed from %s to %s\n",
640            xyas(sect->sct_x, sect->sct_y, player->cnum),
641            xyas(sect->sct_dist_x, sect->sct_dist_y, player->cnum),
642            xyas(newx, newy, player->cnum));
643         sect->sct_dist_x = newx;
644         sect->sct_dist_y = newy;
645         break;
646     case 's':
647         des = sct_typematch(p);
648         if (des < 0)
649             return RET_SYN;
650         pr("Designation for sector %s changed from %c to %c\n",
651            xyas(sect->sct_x, sect->sct_y, player->cnum),
652            dchr[sect->sct_type].d_mnem, dchr[des].d_mnem);
653         sect->sct_type = des;
654         break;
655     case 'S':
656         des = sct_typematch(p);
657         if (des < 0)
658             return RET_SYN;
659         pr("New Designation for sector %s changed from %c to %c\n",
660            xyas(sect->sct_x, sect->sct_y, player->cnum),
661            dchr[sect->sct_newtype].d_mnem, dchr[des].d_mnem);
662         sect->sct_newtype = des;
663         break;
664     case 'R':
665         if (arg > 100)
666             arg = 100;
667         if (arg < 0)
668             arg = 0;
669         noise(sect, 1, "Road percentage", (int)sect->sct_road, arg);
670         sect->sct_road = arg;
671         break;
672     case 'r':
673         if (arg > 100)
674             arg = 100;
675         if (arg < 0)
676             arg = 0;
677         noise(sect, 1, "Rail percentage", (int)sect->sct_rail, arg);
678         sect->sct_rail = arg;
679         break;
680     case 'd':
681         if (arg > 100)
682             arg = 100;
683         if (arg < 0)
684             arg = 0;
685         noise(sect, 1, "Defense percentage", (int)sect->sct_defense, arg);
686         sect->sct_defense = arg;
687         break;
688     default:
689         pr("huh? (%c)\n", op);
690         return RET_SYN;
691     }
692     return RET_OK;
693 }
694
695
696 static int
697 docountry(s_char op, int arg, s_char *p, float farg, natid nat,
698           struct natstr *np)
699 {
700     coord newx, newy;
701     switch (op) {
702     case 'n':
703         pr("Country name changed from %s to %s\n", np->nat_cnam, p);
704         strncpy(np->nat_cnam, p, sizeof(np->nat_cnam) - 1);
705         break;
706     case 'r':
707         pr("Country representative changed from %s to %s\n",
708            np->nat_pnam, p);
709         strncpy(np->nat_pnam, p, sizeof(np->nat_pnam) - 1);
710         break;
711     case 't':
712         np->nat_tgms = arg;
713         break;
714     case 'b':
715         arg = errcheck(arg, 0, 1024);
716         pr("BTU's changed from %d to %d\n", np->nat_btu, arg);
717         np->nat_btu = arg;
718         break;
719     case 'm':
720         benefit(nat, np->nat_reserve < arg);
721         pr("Military Reserves changed from %d to %d\n",
722            np->nat_reserve, arg);
723         if (np->nat_stat == STAT_NORM)
724             wu(player->cnum, nat,
725                "Military Reserves changed from %d to %d by divine intervention.\n",
726                np->nat_reserve, arg);
727         np->nat_reserve = arg;
728         break;
729     case 'c':
730         if (!sarg_xy(p, &newx, &newy))
731             return RET_SYN;
732         pr("Capital coordinates changed from %s to %s\n",
733            xyas(np->nat_xcap, np->nat_ycap, player->cnum),
734            xyas(newx, newy, player->cnum));
735         np->nat_xcap = newx;
736         np->nat_ycap = newy;
737         break;
738     case 'o':
739         if (!sarg_xy(p, &newx, &newy))
740             return RET_SYN;
741         pr("Origin coordinates changed from %s to %s\n",
742            xyas(np->nat_xorg, np->nat_yorg, player->cnum),
743            xyas(newx, newy, player->cnum));
744         np->nat_xorg = newx;
745         np->nat_yorg = newy;
746         break;
747     case 's':
748         np->nat_stat = (s_char)errcheck(arg, 0, STAT_NEW);
749         break;
750     case 'u':
751         arg = errcheck(arg, 0, m_m_p_d);
752         pr("Number of minutes used changed from %d to %d.\n",
753            np->nat_minused, arg);
754         np->nat_minused = arg;
755         break;
756     case 'M':
757         pr("Money changed from %d to %d\n", np->nat_money, arg);
758         wu(player->cnum, nat,
759            "Money changed from %d to %d by divine intervention.\n",
760            np->nat_money, arg);
761         np->nat_money = arg;
762         break;
763     case 'T':
764         pr("Tech changed from %.2f to %.2f.\n",
765            np->nat_level[NAT_TLEV], farg);
766         np->nat_level[NAT_TLEV] = farg;
767         break;
768     case 'R':
769         pr("Research changed from %.2f to %.2f.\n",
770            np->nat_level[NAT_RLEV], farg);
771         np->nat_level[NAT_RLEV] = farg;
772         break;
773     case 'E':
774         pr("Education changed from %.2f to %.2f.\n",
775            np->nat_level[NAT_ELEV], farg);
776         np->nat_level[NAT_ELEV] = farg;
777         break;
778     case 'H':
779         pr("Happiness changed from %.2f to %.2f.\n",
780            np->nat_level[NAT_HLEV], farg);
781         np->nat_level[NAT_HLEV] = farg;
782         break;
783     case 'U':
784         np->nat_missed = arg;
785         break;
786     default:
787         pr("huh? (%c)\n", op);
788         break;
789     }
790     putnat(np);
791     return RET_OK;
792 }
793
794
795 static int
796 doship(s_char op, int arg, s_char *p, struct shpstr *ship)
797 {
798     coord newx, newy;
799
800     newx = newy = 0;
801     switch (op) {
802     case 'a':
803         ship->shp_pstage = arg;
804         break;
805     case 'b':
806         ship->shp_ptime = arg;
807         break;
808     case 'R':
809         memcpy(ship->shp_rpath, p, sizeof(ship->shp_rpath));
810         break;
811     case 'W':
812         ship->shp_rflags = arg;
813         break;
814     case 'H':
815         ship->shp_nchoppers = arg;
816         break;
817     case 'X':
818         ship->shp_nxlight = arg;
819         break;
820     case 'U':
821         ship->shp_uid = arg;
822         break;
823     case 'O':
824         if (ship->shp_own)
825             wu(player->cnum, ship->shp_own,
826                "%s taken from you by deity intervention!\n", prship(ship));
827         if (arg && arg < MAXNOC) {
828             wu(player->cnum, (natid)arg,
829                "%s given to you by deity intervention!\n", prship(ship));
830             makelost(EF_SHIP, ship->shp_own, ship->shp_uid, ship->shp_x,
831                      ship->shp_y);
832             ship->shp_own = (natid)arg;
833             makenotlost(EF_SHIP, ship->shp_own, ship->shp_uid, ship->shp_x,
834                         ship->shp_y);
835         } else if (!arg) {
836             ship->shp_effic = 0;
837             makelost(EF_SHIP, ship->shp_own, ship->shp_uid, ship->shp_x,
838                      ship->shp_y);
839             ship->shp_own = (natid)0;
840         }
841         break;
842     case 'L':
843         if (!sarg_xy(p, &newx, &newy))
844             return RET_SYN;
845         ship->shp_x = newx;
846         ship->shp_y = newy;
847         break;
848     case 'T':
849         ship->shp_tech = arg;
850         break;
851     case 'E':
852         ship->shp_effic = errcheck(arg, 0, 100);
853         if (arg < 10) {
854             ship->shp_effic = 0;
855             makelost(EF_SHIP, ship->shp_own, ship->shp_uid, ship->shp_x,
856                      ship->shp_y);
857             ship->shp_own = (natid)0;
858         }
859         break;
860     case 'M':
861         ship->shp_mobil = arg;
862         break;
863     case 'B':
864         ship->shp_fuel = errcheck(arg, 0, 255);
865         break;
866     case 'F':
867         if (p[0] == '~')
868             ship->shp_fleet = ' ';
869         else if (isalpha(p[0]))
870             ship->shp_fleet = p[0];
871         else {
872             pr("%c: invalid fleet\n", p[0]);
873             return RET_FAIL;
874         }
875         break;
876     case 'Y':
877         ship->shp_nland = errcheck(arg, 0, 100);
878         break;
879     case 'P':
880         ship->shp_nplane = errcheck(arg, 0, 100);
881         break;
882     case 'c':
883         ship->shp_item[I_CIVIL] = arg;
884         break;
885     case 'm':
886         ship->shp_item[I_MILIT] = arg;
887         break;
888     case 'u':
889         ship->shp_item[I_UW] = arg;
890         break;
891     case 'f':
892         ship->shp_item[I_FOOD] = arg;
893         break;
894     case 's':
895         ship->shp_item[I_SHELL] = arg;
896         break;
897     case 'g':
898         ship->shp_item[I_GUN] = arg;
899         break;
900     case 'p':
901         ship->shp_item[I_PETROL] = arg;
902         break;
903     case 'i':
904         ship->shp_item[I_IRON] = arg;
905         break;
906     case 'd':
907         ship->shp_item[I_DUST] = arg;
908         break;
909     case 'o':
910         ship->shp_item[I_OIL] = arg;
911         break;
912     case 'l':
913         ship->shp_item[I_LCM] = arg;
914         break;
915     case 'h':
916         ship->shp_item[I_HCM] = arg;
917         break;
918     case 'r':
919         ship->shp_item[I_RAD] = arg;
920         break;
921     default:
922         pr("huh? (%c)\n", op);
923         return RET_FAIL;
924     }
925     return RET_OK;
926 }
927
928 static int
929 dounit(s_char op, int arg, s_char *p, struct lndstr *land)
930 {
931     coord newx, newy;
932
933     newx = newy = 0;
934     switch (op) {
935     case 'Y':
936         land->lnd_land = arg;
937         break;
938     case 'U':
939         land->lnd_uid = arg;
940         break;
941     case 'O':
942         if (land->lnd_own)
943             wu(player->cnum, land->lnd_own,
944                "%s taken from you by deity intervention!\n", prland(land));
945
946         if (arg && arg < MAXNOC) {
947             wu(player->cnum, (natid)arg,
948                "%s given to you by deity intervention!\n", prland(land));
949             makelost(EF_LAND, land->lnd_own, land->lnd_uid, land->lnd_x,
950                      land->lnd_y);
951             land->lnd_own = (natid)arg;
952             makenotlost(EF_LAND, land->lnd_own, land->lnd_uid, land->lnd_x,
953                         land->lnd_y);
954         } else if (!arg) {
955             makelost(EF_LAND, land->lnd_own, land->lnd_uid, land->lnd_x,
956                      land->lnd_y);
957             land->lnd_effic = 0;
958             land->lnd_own = (natid)0;
959         }
960         break;
961     case 'L':
962         if (!sarg_xy(p, &newx, &newy))
963             return RET_SYN;
964         land->lnd_x = newx;
965         land->lnd_y = newy;
966         break;
967     case 'e':
968         land->lnd_effic = errcheck(arg, 0, 100);
969         if (arg < 10) {
970             makelost(EF_LAND, land->lnd_own, land->lnd_uid, land->lnd_x,
971                      land->lnd_y);
972             land->lnd_effic = 0;
973             land->lnd_own = (natid)0;
974         }
975         break;
976     case 'M':
977         land->lnd_mobil = arg;
978         break;
979     case 't':
980         land->lnd_tech = arg;
981         break;
982     case 'a':
983         if (p[0] == '~')
984             land->lnd_army = ' ';
985         else if (isalpha(p[0]))
986             land->lnd_army = p[0];
987         else {
988             pr("%c: invalid army\n", p[0]);
989             return RET_FAIL;
990         }
991         break;
992     case 'F':
993         land->lnd_harden = errcheck(arg, 0, 255);
994         break;
995     case 'B':
996         land->lnd_fuel = errcheck(arg, 0, 255);
997         break;
998     case 'X':
999         land->lnd_nxlight = arg;
1000         break;
1001     case 'S':
1002         land->lnd_ship = arg;
1003         break;
1004     case 'P':
1005         land->lnd_rad_max = arg;
1006         break;
1007     case 'Z':
1008         land->lnd_retreat = arg;
1009         break;
1010     case 'R':
1011         memcpy(land->lnd_rpath, p, sizeof(land->lnd_rpath));
1012         break;
1013     case 'W':
1014         land->lnd_rflags = arg;
1015         break;
1016     case 'c':
1017         land->lnd_item[I_CIVIL] = arg;
1018         break;
1019     case 'm':
1020         land->lnd_item[I_MILIT] = arg;
1021         break;
1022     case 'u':
1023         land->lnd_item[I_UW] = arg;
1024         break;
1025     case 'f':
1026         land->lnd_item[I_FOOD] = arg;
1027         break;
1028     case 's':
1029         land->lnd_item[I_SHELL] = arg;
1030         break;
1031     case 'g':
1032         land->lnd_item[I_GUN] = arg;
1033         break;
1034     case 'p':
1035         land->lnd_item[I_PETROL] = arg;
1036         break;
1037     case 'i':
1038         land->lnd_item[I_IRON] = arg;
1039         break;
1040     case 'd':
1041         land->lnd_item[I_DUST] = arg;
1042         break;
1043     case 'o':
1044         land->lnd_item[I_OIL] = arg;
1045         break;
1046     case 'l':
1047         land->lnd_item[I_LCM] = arg;
1048         break;
1049     case 'h':
1050         land->lnd_item[I_HCM] = arg;
1051         break;
1052     case 'r':
1053         land->lnd_item[I_RAD] = arg;
1054         break;
1055     default:
1056         pr("huh? (%c)\n", op);
1057         return RET_FAIL;
1058     }
1059     return RET_OK;
1060 }
1061
1062
1063 int
1064 doplane(s_char op, int arg, s_char *p, struct plnstr *plane)
1065 {
1066     coord newx, newy;
1067
1068     switch (op) {
1069     case 'n':
1070         plane->pln_nuketype = arg;
1071         break;
1072     case 'U':
1073         plane->pln_uid = arg;
1074         break;
1075     case 'l':
1076         if (!sarg_xy(p, &newx, &newy))
1077             return RET_SYN;
1078         plane->pln_x = newx;
1079         plane->pln_y = newy;
1080         break;
1081     case 'O':
1082         if (plane->pln_own)
1083             wu(player->cnum, plane->pln_own,
1084                "%s taken from you by deity intervention!\n",
1085                prplane(plane));
1086         if (arg && arg < MAXNOC) {
1087             makelost(EF_PLANE, plane->pln_own, plane->pln_uid,
1088                      plane->pln_x, plane->pln_y);
1089             plane->pln_own = (natid)arg;
1090             makenotlost(EF_PLANE, plane->pln_own, plane->pln_uid,
1091                         plane->pln_x, plane->pln_y);
1092             wu(player->cnum, plane->pln_own,
1093                "%s given to you by deity intervention!\n", prplane(plane));
1094         } else if (!arg) {
1095             plane->pln_effic = 0;
1096             makelost(EF_PLANE, plane->pln_own, plane->pln_uid,
1097                      plane->pln_x, plane->pln_y);
1098             plane->pln_own = (natid)0;
1099         }
1100         break;
1101     case 'e':
1102         plane->pln_effic = errcheck(arg, 0, 100);
1103         if (arg < 10) {
1104             plane->pln_effic = 0;
1105             makelost(EF_PLANE, plane->pln_own, plane->pln_uid,
1106                      plane->pln_x, plane->pln_y);
1107             plane->pln_own = (natid)0;
1108         }
1109         break;
1110     case 'm':
1111         plane->pln_mobil = errcheck(arg, -127, 255);
1112         break;
1113     case 't':
1114         plane->pln_tech = arg;
1115         break;
1116     case 'w':
1117         if (p[0] == '~')
1118             plane->pln_wing = ' ';
1119         else if (isalpha(p[0]))
1120             plane->pln_wing = p[0];
1121         else {
1122             pr("%c: invalid wing\n", p[0]);
1123             return RET_FAIL;
1124         }
1125         break;
1126     case 'a':
1127         plane->pln_att = (s_char)errcheck(arg, 0, 127);
1128         break;
1129     case 'd':
1130         plane->pln_def = (s_char)arg;
1131         break;
1132     case 'r':
1133         plane->pln_range = (u_char)arg;
1134         break;
1135     case 's':
1136         plane->pln_ship = arg;
1137         break;
1138     case 'y':
1139         plane->pln_land = arg;
1140         break;
1141     case 'f':
1142         plane->pln_flags = arg;
1143         break;
1144     default:
1145         pr("huh? (%c)\n", op);
1146         return RET_FAIL;
1147     }
1148     return RET_OK;
1149 }