]> git.pond.sub.org Git - empserver/blob - src/lib/commands/setres.c
Drop resnoise()'s second parameter
[empserver] / src / lib / commands / setres.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2013, 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, "Iron ore content", sect.sct_min, amt);
76             sect.sct_min = (unsigned char)amt;
77             break;
78         case 'g':
79             if (sect.sct_own != 0)
80                 resnoise(&sect, "Gold content", sect.sct_gmin, amt);
81             sect.sct_gmin = (unsigned char)amt;
82             break;
83         case 'o':
84             if (sect.sct_own != 0)
85                 resnoise(&sect, "Oil content", sect.sct_oil, amt);
86             sect.sct_oil = (unsigned char)amt;
87             break;
88         case 'f':
89             if (sect.sct_own != 0)
90                 resnoise(&sect, "Fertility content", sect.sct_fertil, amt);
91             sect.sct_fertil = (unsigned char)amt;
92             break;
93         case 'u':
94             if (sect.sct_own != 0)
95                 resnoise(&sect, "Uranium content", sect.sct_uran, amt);
96             sect.sct_uran = (unsigned char)amt;
97             break;
98         default:
99             pr("huh?\n");
100             return RET_SYN;
101         }
102         putsect(&sect);
103     }
104     return RET_OK;
105 }