]> git.pond.sub.org Git - empserver/blob - src/lib/commands/rang.c
Import of Empire 4.2.12
[empserver] / src / lib / commands / rang.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  *  rang.c: Edit range of plane/land unit
29  * 
30  *  Known contributors to this file:
31  *     Jeff Bailey
32  */
33
34 #include "misc.h"
35 #include "player.h"
36 #include "var.h"
37 #include "xy.h"
38 #include "plane.h"
39 #include "land.h"
40 #include "nsc.h"
41 #include "file.h"
42 #include "nat.h"
43 #include "deity.h"
44 #include "commands.h"
45
46 int
47 range(void)
48 {
49         struct nstr_item np;
50         struct plnstr plane;
51         int     i;
52         s_char  *p;
53         s_char  buf[1024];
54
55         if (!snxtitem(&np, EF_PLANE, player->argp[1]))
56                 return RET_SYN;
57         while (nxtitem(&np, (s_char *)&plane)) {
58                 if (!player->owner || plane.pln_own == 0)
59                         continue;
60                 p = getstarg(player->argp[2],"New range? ", buf);
61                 if (!check_plane_ok(&plane))
62                     return RET_SYN;
63                 if (!p || (i = atoi(p)) < 0)
64                         continue;
65                 plane.pln_range = (plane.pln_range_max < i) ?
66                         plane.pln_range_max : i;
67                 pr("Plane %d range changed to %d\n",plane.pln_uid,
68                         plane.pln_range);
69
70                 putplane(plane.pln_uid,&plane);
71         }
72
73         return RET_OK;
74 }
75
76 int
77 lrange(void)
78 {
79         struct nstr_item np;
80         struct lndstr land;
81         struct lchrstr *lcp;
82         int     i;
83         s_char  *p;
84         s_char  prompt[128];
85         s_char  buf[128];
86
87         if (!snxtitem(&np, EF_LAND, player->argp[1]))
88                 return RET_SYN;
89         while (nxtitem(&np, (s_char *)&land)) {
90                 if (!player->owner || land.lnd_own == 0)
91                         continue;
92                 lcp = &lchr[(int)land.lnd_type];
93                 sprintf(prompt, "New range for %s? ", prland(&land));
94                 if ((p = getstarg(player->argp[2], prompt, buf)) == 0)
95                         return RET_SYN;
96                 if (!check_land_ok(&land))
97                     return RET_SYN;
98                 if ((i = atoi(p)) < 0)
99                         continue;
100                 land.lnd_rad_max = (i < land.lnd_rad) ?
101                         i : land.lnd_rad;
102                 pr("%s reaction radius changed to %d\n", prland(&land),
103                    land.lnd_rad_max);
104                 putland(land.lnd_uid,&land);
105         }
106
107         return RET_OK;
108 }