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