]> 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-2008, 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     if ((what = getstarg(player->argp[1],
54                          "Set What (iron, gold, oil, uranium, fertility)? ",
55                          buf)) == 0)
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             if (!(p = getstarg(player->argp[3], "What value : ", buf)) ||
63                 (*p == '\0'))
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             if (!(p = getstarg(player->argp[3], "What value : ", buf)) ||
82                 (*p == '\0'))
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             if (!(p = getstarg(player->argp[3], "What value : ", buf)) ||
101                 (*p == '\0'))
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             if (!(p = getstarg(player->argp[3], "What value : ", buf)) ||
119                 (*p == '\0'))
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             if (!(p = getstarg(player->argp[3], "What value : ", buf)) ||
138                 (*p == '\0'))
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 }