]> git.pond.sub.org Git - empserver/blob - src/lib/commands/strv.c
(starv_units): Remove unused local variable.
[empserver] / src / lib / commands / strv.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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  *  star.c: Do a starvation report
29  * 
30  *  Known contributors to this file:
31  *     
32  */
33
34 #include <config.h>
35
36 #include <math.h>
37 #include "misc.h"
38 #include "player.h"
39 #include "xy.h"
40 #include "sect.h"
41 #include "nsc.h"
42 #include "nat.h"
43 #include "path.h"
44 #include "file.h"
45 #include "item.h"
46 #include "ship.h"
47 #include "optlist.h"
48 #include "land.h"
49 #include "commands.h"
50
51 static void starv_sects(char *range);
52 static void starv_ships(char *range);
53 static void starv_units(char *range);
54 static void sect_hdr(void);
55 static void ship_hdr(void);
56 static void unit_hdr(void);
57
58 int
59 starve(void)
60 {
61     int do_sects = 0;
62     int do_ships = 0;
63     int do_units = 0;
64     char *range;
65
66     if (opt_NOFOOD) {           /* no food - no work! */
67         pr("No food is required in this game\n");
68         return RET_OK;
69     }
70
71     range = "*";
72     if (!player->argp[1]) {
73         do_sects = do_ships = do_units = 1;
74     } else if (*(player->argp[1]) == 's') {
75         do_ships = 1;
76         if (player->argp[2])
77             range = player->argp[2];
78     } else if (*(player->argp[1]) == 'l') {
79         do_units = 1;
80         if (player->argp[2])
81             range = player->argp[2];
82     } else {
83         do_sects = 1;
84         range = player->argp[1];
85     }
86     player->simulation = 1;
87     prdate();
88     if (do_sects)
89         starv_sects(range);
90     if (do_ships)
91         starv_ships(range);
92     if (do_units)
93         starv_units(range);
94     player->simulation = 0;
95     return RET_OK;
96 }
97
98 static void
99 starv_people(short *vec, int victims)
100 {
101     pr(" will starve %d people. %.0f more food needed\n", victims,
102        ceil(food_needed(vec, etu_per_update) - vec[I_FOOD]));
103 }
104
105 static void
106 starv_sects(char *range)
107 {
108     struct nstr_sect nstr;
109     struct sctstr sect;
110     int nsect = 0;
111     int s;
112
113     if (!snxtsct(&nstr, range))
114         return;
115     while (nxtsct(&nstr, &sect)) {
116         if (!player->owner)
117             continue;
118         if (sect.sct_type == SCT_SANCT)
119             continue;
120
121         if (sect.sct_item[I_FOOD] == 0)
122             sect.sct_item[I_FOOD] = 1; /* see growfood() */
123         s = famine_victims(sect.sct_item, etu_per_update);
124
125         if (s == 0)
126             continue;
127         if (nsect++ == 0)
128             sect_hdr();
129         if (player->god)
130             pr("%3d ", sect.sct_own);
131         prxy("%4d,%-4d", nstr.x, nstr.y, player->cnum);
132         pr(" %c", dchr[sect.sct_type].d_mnem);
133         pr(" %c", sect.sct_own != sect.sct_oldown ? '*' : ' ');
134         if (sect.sct_newtype != sect.sct_type)
135             pr("%c", dchr[sect.sct_newtype].d_mnem);
136         else
137             pr(" ");
138         pr("%4d%%", sect.sct_effic);
139         starv_people(sect.sct_item, s);
140     }
141     if (nsect == 0) {
142         if (player->argp[1])
143             pr("%s: No sector(s)\n", player->argp[1]);
144         else
145             pr("%s: No sector(s)\n", "");
146         return;
147     } else
148         pr("%d sector%s\n", nsect, splur(nsect));
149     return;
150 }
151
152 static void
153 sect_hdr(void)
154 {
155     if (player->god)
156         pr("    ");
157     pr("Starvation               \n");
158     if (player->god)
159         pr("own ");
160     pr("  sect         eff ");
161     pr("\n");
162 }
163
164 static void
165 starv_ships(char *range)
166 {
167     struct nstr_item ni;
168     struct shpstr ship;
169     int nship = 0;
170     int s;
171
172     if (!snxtitem(&ni, EF_SHIP, range))
173         return;
174
175     while (nxtitem(&ni, &ship)) {
176         if (!player->owner || !ship.shp_own)
177             continue;
178
179         s = famine_victims(ship.shp_item, etu_per_update);
180         if (s == 0)
181             continue;
182         if (nship++ == 0)
183             ship_hdr();
184         if (player->god)
185             pr("%3d ", ship.shp_own);
186         pr("%5d ", ship.shp_uid);
187         pr("%-16.16s ", mchr[(int)ship.shp_type].m_name);
188         starv_people(ship.shp_item, s);
189     }
190     if (nship == 0) {
191         if (range)
192             pr("%s: No ship(s)\n", range);
193         else
194             pr("%s: No ship(s)\n", "");
195         return;
196     } else
197         pr("%d ship%s\n", nship, splur(nship));
198     return;
199 }
200
201 static void
202 ship_hdr(void)
203 {
204     if (player->god)
205         pr("    ");
206     pr("Starvation               \n");
207     if (player->god)
208         pr("own ");
209     pr(" shp#     ship type       \n");
210 }
211
212 static void
213 starv_units(char *range)
214 {
215     struct nstr_item ni;
216     struct lndstr land;
217     int nunit = 0;
218     int s;
219
220     if (!snxtitem(&ni, EF_LAND, range))
221         return;
222
223     while (nxtitem(&ni, &land)) {
224         if (!player->owner || !land.lnd_own)
225             continue;
226
227         s = famine_victims(land.lnd_item, etu_per_update);
228         if (s == 0)
229             continue;
230         if (nunit++ == 0)
231             unit_hdr();
232         if (player->god)
233             pr("%3d ", land.lnd_own);
234         pr("%5d ", land.lnd_uid);
235         pr("%-16.16s ", lchr[(int)land.lnd_type].l_name);
236         starv_people(land.lnd_item, s);
237     }
238     if (nunit == 0) {
239         if (range)
240             pr("%s: No unit(s)\n", range);
241         else
242             pr("%s: No unit(s)\n", "");
243         return;
244     } else
245         pr("%d unit%s\n", nunit, splur(nunit));
246     return;
247 }
248
249 static void
250 unit_hdr(void)
251 {
252     if (player->god)
253         pr("    ");
254     pr("Starvation               \n");
255     if (player->god)
256         pr("own ");
257     pr(" lnd#     unit type       \n");
258 }