]> git.pond.sub.org Git - empserver/blob - src/lib/commands/setres.c
2a668356d163dea5316f0875f00de34ed4caa011
[empserver] / src / lib / commands / setres.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2012, 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     char char0;
52
53     what = getstarg(player->argp[1],
54                     "Set what (iron, gold, oil, uranium, fertility)? ",
55                     buf);
56     if (!what)
57         return RET_SYN;
58     char0 = what[0];
59
60     if (!snxtsct(&nstr, player->argp[2]))
61         return RET_SYN;
62     while (nxtsct(&nstr, &sect) > 0) {
63         p = getstarg(player->argp[3], "What value : ", buf);
64         if (!p || !*p)
65             return RET_SYN;
66         amt = atoi(p);
67         if (amt > 100)
68             amt = 100;
69         if (amt < 0)
70             amt = 0;
71         check_sect_ok(&sect);
72         switch (char0) {
73         case 'i':
74             if (sect.sct_own != 0)
75                 resnoise(&sect, 1, "Iron ore content",
76                          (int)sect.sct_min, amt);
77             sect.sct_min = (unsigned char)amt;
78             break;
79         case 'g':
80             if (sect.sct_own != 0)
81                 resnoise(&sect, 1, "Gold content",
82                          (int)sect.sct_gmin, amt);
83             sect.sct_gmin = (unsigned char)amt;
84             break;
85         case 'o':
86             if (sect.sct_own != 0)
87                 resnoise(&sect, 1, "Oil content", (int)sect.sct_oil, amt);
88             sect.sct_oil = (unsigned char)amt;
89             break;
90         case 'f':
91             if (sect.sct_own != 0)
92                 resnoise(&sect, 1, "Fertility content",
93                          (int)sect.sct_fertil, amt);
94             sect.sct_fertil = (unsigned char)amt;
95             break;
96         case 'u':
97             if (sect.sct_own != 0)
98                 resnoise(&sect, 1, "Uranium content",
99                          (int)sect.sct_uran, amt);
100             sect.sct_uran = (unsigned char)amt;
101             break;
102         default:
103             pr("huh?\n");
104             return RET_SYN;
105         }
106         putsect(&sect);
107     }
108     return RET_OK;
109 }