]> git.pond.sub.org Git - empserver/blob - src/lib/commands/setres.c
License upgrade to GPL version 3 or later
[empserver] / src / lib / commands / setres.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, 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  *  setres.c: Set resources of a sector
28  *
29  *  Known contributors to this file:
30  *     David Muir Sharnoff
31  *     Karl Hagen
32  *     Steve McClure, 1998
33  */
34
35 #include <config.h>
36
37 #include "commands.h"
38
39 /*
40  * format: setres resource <amt>  <sect>
41  */
42 int
43 setres(void)
44 {
45     struct sctstr sect;
46     char *what;
47     int amt;
48     char *p;
49     struct nstr_sect nstr;
50     char buf[1024];
51
52     what = getstarg(player->argp[1],
53                     "Set what (iron, gold, oil, uranium, fertility)? ",
54                     buf);
55     if (!what)
56         return RET_SYN;
57     switch (what[0]) {
58     case 'i':
59         if (!snxtsct(&nstr, player->argp[2]))
60             return RET_SYN;
61         while (nxtsct(&nstr, &sect) > 0) {
62             p = getstarg(player->argp[3], "What value : ", buf);
63             if (!p || !*p)
64                 return RET_SYN;
65             amt = atoi(p);
66             if (amt > 100)
67                 amt = 100;
68             if (amt < 0)
69                 amt = 0;
70             if (sect.sct_own != 0)
71                 resnoise(&sect, 1, "Iron ore content",
72                          (int)sect.sct_min, amt);
73             sect.sct_min = (unsigned char)amt;
74             putsect(&sect);
75         }
76         break;
77     case 'g':
78         if (!snxtsct(&nstr, player->argp[2]))
79             return RET_SYN;
80         while (nxtsct(&nstr, &sect) > 0) {
81             p = getstarg(player->argp[3], "What value : ", buf);
82             if (!p || !*p)
83                 return RET_SYN;
84             amt = atoi(p);
85             if (amt > 100)
86                 amt = 100;
87             if (amt < 0)
88                 amt = 0;
89             if (sect.sct_own != 0)
90                 resnoise(&sect, 1, "Gold content",
91                          (int)sect.sct_gmin, amt);
92             sect.sct_gmin = (unsigned char)amt;
93             putsect(&sect);
94         }
95         break;
96     case 'o':
97         if (!snxtsct(&nstr, player->argp[2]))
98             return RET_SYN;
99         while (nxtsct(&nstr, &sect) > 0) {
100             p = getstarg(player->argp[3], "What value : ", buf);
101             if (!p || !*p)
102                 return RET_SYN;
103             amt = atoi(p);
104             if (amt > 100)
105                 amt = 100;
106             if (amt < 0)
107                 amt = 0;
108             if (sect.sct_own != 0)
109                 resnoise(&sect, 1, "Oil content", (int)sect.sct_oil, amt);
110             sect.sct_oil = (unsigned char)amt;
111             putsect(&sect);
112         }
113         break;
114     case 'f':
115         if (!snxtsct(&nstr, player->argp[2]))
116             return RET_SYN;
117         while (nxtsct(&nstr, &sect) > 0) {
118             p = getstarg(player->argp[3], "What value : ", buf);
119             if (!p || !*p)
120                 return RET_SYN;
121             amt = atoi(p);
122             if (amt > 100)
123                 amt = 100;
124             if (amt < 0)
125                 amt = 0;
126             if (sect.sct_own != 0)
127                 resnoise(&sect, 1, "Fertility content",
128                          (int)sect.sct_fertil, amt);
129             sect.sct_fertil = (unsigned char)amt;
130             putsect(&sect);
131         }
132         break;
133     case 'u':
134         if (!snxtsct(&nstr, player->argp[2]))
135             return RET_SYN;
136         while (nxtsct(&nstr, &sect) > 0) {
137             p = getstarg(player->argp[3], "What value : ", buf);
138             if (!p || !*p)
139                 return RET_SYN;
140             amt = atoi(p);
141             if (amt > 100)
142                 amt = 100;
143             if (amt < 0)
144                 amt = 0;
145             if (sect.sct_own != 0)
146                 resnoise(&sect, 1, "Uranium content",
147                          (int)sect.sct_uran, amt);
148             sect.sct_uran = (unsigned char)amt;
149             putsect(&sect);
150         }
151         break;
152     default:
153         pr("huh?\n");
154         return RET_SYN;
155     }
156     return RET_OK;
157 }