]> git.pond.sub.org Git - empserver/blob - src/lib/commands/setres.c
Update copyright notice
[empserver] / src / lib / commands / setres.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2010, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  setres.c: Set resources of a sector
29  *
30  *  Known contributors to this file:
31  *     David Muir Sharnoff
32  *     Karl Hagen
33  *     Steve McClure, 1998
34  */
35
36 #include <config.h>
37
38 #include "commands.h"
39
40 /*
41  * format: setres resource <amt>  <sect>
42  */
43 int
44 setres(void)
45 {
46     struct sctstr sect;
47     char *what;
48     int amt;
49     char *p;
50     struct nstr_sect nstr;
51     char buf[1024];
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     switch (what[0]) {
59     case 'i':
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             if (sect.sct_own != 0)
72                 resnoise(&sect, 1, "Iron ore content",
73                          (int)sect.sct_min, amt);
74             sect.sct_min = (unsigned char)amt;
75             putsect(&sect);
76         }
77         break;
78     case 'g':
79         if (!snxtsct(&nstr, player->argp[2]))
80             return RET_SYN;
81         while (nxtsct(&nstr, &sect) > 0) {
82             p = getstarg(player->argp[3], "What value : ", buf);
83             if (!p || !*p)
84                 return RET_SYN;
85             amt = atoi(p);
86             if (amt > 100)
87                 amt = 100;
88             if (amt < 0)
89                 amt = 0;
90             if (sect.sct_own != 0)
91                 resnoise(&sect, 1, "Gold content",
92                          (int)sect.sct_gmin, amt);
93             sect.sct_gmin = (unsigned char)amt;
94             putsect(&sect);
95         }
96         break;
97     case 'o':
98         if (!snxtsct(&nstr, player->argp[2]))
99             return RET_SYN;
100         while (nxtsct(&nstr, &sect) > 0) {
101             p = getstarg(player->argp[3], "What value : ", buf);
102             if (!p || !*p)
103                 return RET_SYN;
104             amt = atoi(p);
105             if (amt > 100)
106                 amt = 100;
107             if (amt < 0)
108                 amt = 0;
109             if (sect.sct_own != 0)
110                 resnoise(&sect, 1, "Oil content", (int)sect.sct_oil, amt);
111             sect.sct_oil = (unsigned char)amt;
112             putsect(&sect);
113         }
114         break;
115     case 'f':
116         if (!snxtsct(&nstr, player->argp[2]))
117             return RET_SYN;
118         while (nxtsct(&nstr, &sect) > 0) {
119             p = getstarg(player->argp[3], "What value : ", buf);
120             if (!p || !*p)
121                 return RET_SYN;
122             amt = atoi(p);
123             if (amt > 100)
124                 amt = 100;
125             if (amt < 0)
126                 amt = 0;
127             if (sect.sct_own != 0)
128                 resnoise(&sect, 1, "Fertility content",
129                          (int)sect.sct_fertil, amt);
130             sect.sct_fertil = (unsigned char)amt;
131             putsect(&sect);
132         }
133         break;
134     case 'u':
135         if (!snxtsct(&nstr, player->argp[2]))
136             return RET_SYN;
137         while (nxtsct(&nstr, &sect) > 0) {
138             p = getstarg(player->argp[3], "What value : ", buf);
139             if (!p || !*p)
140                 return RET_SYN;
141             amt = atoi(p);
142             if (amt > 100)
143                 amt = 100;
144             if (amt < 0)
145                 amt = 0;
146             if (sect.sct_own != 0)
147                 resnoise(&sect, 1, "Uranium content",
148                          (int)sect.sct_uran, amt);
149             sect.sct_uran = (unsigned char)amt;
150             putsect(&sect);
151         }
152         break;
153     default:
154         pr("huh?\n");
155         return RET_SYN;
156     }
157     return RET_OK;
158 }