]> git.pond.sub.org Git - empserver/blob - src/lib/commands/setres.c
Reduce massive code duplication in setsector(), setres()
[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     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         switch (char0) {
72         case 'i':
73             if (sect.sct_own != 0)
74                 resnoise(&sect, 1, "Iron ore content",
75                          (int)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, 1, "Gold content",
81                          (int)sect.sct_gmin, amt);
82             sect.sct_gmin = (unsigned char)amt;
83             break;
84         case 'o':
85             if (sect.sct_own != 0)
86                 resnoise(&sect, 1, "Oil content", (int)sect.sct_oil, amt);
87             sect.sct_oil = (unsigned char)amt;
88             break;
89         case 'f':
90             if (sect.sct_own != 0)
91                 resnoise(&sect, 1, "Fertility content",
92                          (int)sect.sct_fertil, amt);
93             sect.sct_fertil = (unsigned char)amt;
94             break;
95         case 'u':
96             if (sect.sct_own != 0)
97                 resnoise(&sect, 1, "Uranium content",
98                          (int)sect.sct_uran, amt);
99             sect.sct_uran = (unsigned char)amt;
100             break;
101         default:
102             pr("huh?\n");
103             return RET_SYN;
104         }
105         putsect(&sect);
106     }
107     return RET_OK;
108 }