]> git.pond.sub.org Git - empserver/blob - src/lib/subs/satmap.c
Clean up silly use of long in satmap()
[empserver] / src / lib / subs / satmap.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  *  satmap.c: Do a satellite map given an x,y location, effic and other
28  *
29  *  Known contributors to this file:
30  *     Steve McClure, 2000
31  *     Markus Armbruster, 2004-2011
32  */
33
34 #include <config.h>
35
36 #include <stdlib.h>
37 #include "chance.h"
38 #include "file.h"
39 #include "land.h"
40 #include "map.h"
41 #include "misc.h"
42 #include "nat.h"
43 #include "nsc.h"
44 #include "optlist.h"
45 #include "plane.h"
46 #include "player.h"
47 #include "prototypes.h"
48 #include "sect.h"
49 #include "ship.h"
50 #include "xy.h"
51
52 static char **rad;
53 static char *radbuf;
54
55 int
56 satmap(int x, int y, int eff, int range, int flags, int type)
57 {
58     struct sctstr sect;
59     struct shpstr ship;
60     struct lndstr land;
61     int count, crackle;
62     struct nstr_item ni;
63     struct nstr_sect ns;
64     int rx, ry;
65     int row;
66     int n;
67     int changed = 0;
68     signed char noise[100];
69
70     if (!eff)
71         return RET_OK;
72
73     if (!radbuf)
74         radbuf = malloc(WORLD_Y * MAPWIDTH(1));
75     if (!rad) {
76         rad = malloc(WORLD_Y * sizeof(char *));
77         if (rad && radbuf) {
78             for (rx = 0; rx < WORLD_Y; rx++)
79                 rad[rx] = &radbuf[(WORLD_X + 1) * rx];
80         }
81     }
82
83     if (!radbuf || !rad) {
84         pr("Memory error in satmap, tell the deity.\n");
85         return RET_FAIL;
86     }
87
88     range = range * (eff / 100.0);
89     pr("%s efficiency %d%%, max range %d\n",
90        xyas(x, y, player->cnum), eff, range);
91     memset(noise, 0, sizeof(noise));
92     if (eff < 100) {
93         pr("Some noise on the transmission...\n");
94         for (n = 0; n < (100 - eff); ++n)
95             noise[100 * n / (100 - eff)] = 1;
96     }
97
98     if (type == EF_BAD || type == EF_SECTOR) {
99         snxtsct_dist(&ns, x, y, range);
100         if (type == EF_SECTOR && !snxtsct_use_condarg(&ns))
101             return RET_SYN;
102             
103
104         blankfill(radbuf, &ns.range, 1);
105         if (flags & P_S) {
106             pr("Satellite sector report\n");
107             prdate();
108             sathead();
109         }
110         crackle = count = 0;
111         while (nxtsct(&ns, &sect)) {
112             if (++crackle == 100)
113                 crackle = 0;
114             if (noise[crackle])
115                 continue;
116             if (flags & P_S) {
117                 if (sect.sct_own && sect.sct_own != player->cnum) {
118                     satdisp_sect(&sect, (flags & P_I) ? 5 : 50);
119                     changed += map_set(player->cnum, sect.sct_x, sect.sct_y,
120                                        dchr[sect.sct_type].d_mnem, 0);
121                     ++count;
122                     if (opt_HIDDEN)
123                         setcont(player->cnum, sect.sct_own, FOUND_FLY);
124                 }
125             }
126             if ((flags & P_I) ||
127                 sect.sct_type == SCT_WATER || sect.sct_type == SCT_MOUNT) {
128                 rad[ns.dy][ns.dx] = dchr[sect.sct_type].d_mnem;
129             } else
130                 rad[ns.dy][ns.dx] = '?';
131             changed +=
132                 map_set(player->cnum, ns.x, ns.y, rad[ns.dy][ns.dx], 0);
133         }
134         if (changed)
135             writemap(player->cnum);
136         if (flags & P_S)
137             pr("  %d sectors\n\n", count);
138     }
139
140     if ((type == EF_BAD || type == EF_SHIP) &&
141         (flags & P_S || flags & P_I)) {
142         snxtitem_dist(&ni, EF_SHIP, x, y, range);
143         if (type == EF_SHIP && !snxtitem_use_condarg(&ni))
144             return RET_SYN;
145
146         crackle = count = 0;
147         if (flags & P_S) {
148             pr("Satellite ship report\n");
149             prdate();
150             pr(" own  shp# ship type                                  sector   eff\n");
151         }
152         while (nxtitem(&ni, &ship)) {
153             if (ship.shp_own == 0)
154                 continue;
155             if ((mchr[(int)ship.shp_type].m_flags & M_SUB) &&
156                 ((flags & (P_S | P_I)) != (P_S | P_I)))
157                 continue;
158             if (++crackle == 100)
159                 crackle = 0;
160             if (noise[crackle])
161                 continue;
162             if (flags & P_S) {
163                 pr("%4d %4d %-16.16s %-25.25s ",
164                    ship.shp_own, ship.shp_uid,
165                    mchr[(int)ship.shp_type].m_name, ship.shp_name);
166                 prxy("%4d,%-4d ", ship.shp_x, ship.shp_y);
167                 pr("%3d%%\n", ship.shp_effic);
168                 ++count;
169                 if (opt_HIDDEN)
170                     setcont(player->cnum, ship.shp_own, FOUND_FLY);
171             }
172             /* If we are imaging *and* drawing the map */
173             if ((flags & P_I) && (type == EF_BAD)) {
174                 rx = deltx(&ns.range, ship.shp_x);
175                 ry = delty(&ns.range, ship.shp_y);
176                 /* &~0x20 makes it a cap letter */
177                 rad[ry][rx] = (*mchr[(int)ship.shp_type].m_name) & ~0x20;
178             }
179         }
180         if (flags & P_S)
181             pr("  %d ships\n\n", count);
182     }
183
184     if ((type == EF_BAD || type == EF_LAND) &&
185         (flags & P_S || flags & P_I)) {
186         snxtitem_dist(&ni, EF_LAND, x, y, range);
187         if (type == EF_LAND && !snxtitem_use_condarg(&ni))
188             return RET_SYN;
189
190         crackle = count = 0;
191         if (flags & P_S) {
192             pr("Satellite unit report\n");
193             prdate();
194             pr(" own  lnd# unit type         sector   eff\n");
195         }
196         while (nxtitem(&ni, &land)) {
197             if (land.lnd_own == 0)
198                 continue;
199             if (lchr[(int)land.lnd_type].l_flags & L_SPY)
200                 continue;
201             if (!chance(land.lnd_effic / 20.0))
202                 continue;
203             if (++crackle == 100)
204                 crackle = 0;
205             if (noise[crackle])
206                 continue;
207             if (flags & P_S) {
208                 pr("%4d %4d %-16.16s ",
209                    land.lnd_own, land.lnd_uid,
210                    lchr[(int)land.lnd_type].l_name);
211                 prxy("%4d,%-4d", land.lnd_x, land.lnd_y);
212                 pr("%3d%%\n", land.lnd_effic);
213                 ++count;
214                 if (opt_HIDDEN)
215                     setcont(player->cnum, land.lnd_own, FOUND_FLY);
216             }
217             /* If we are imaging *and* drawing the map */
218             if ((flags & P_I) && (type == EF_BAD)) {
219                 rx = deltx(&ns.range, land.lnd_x);
220                 ry = delty(&ns.range, land.lnd_y);
221                 /* &~0x20 makes it a cap letter */
222                 rad[ry][rx] = (*lchr[(int)land.lnd_type].l_name) & ~0x20;
223             }
224         }
225         if (flags & P_S)
226             pr("  %d units\n\n", count);
227     }
228
229     /* Ok, have we made the map?  If so, display it */
230     if (type == EF_BAD) {
231         /*
232          * print out the map
233          * We have to make the center a '0' for ve
234          * ve needs a garbage line to terminate the map
235          */
236         rad[delty(&ns.range, y)][deltx(&ns.range, y)] = '0';
237
238         pr("Satellite radar report\n");
239         n = ns.range.height;
240         for (row = 0; row < n; row++)
241             pr("%s\n", rad[row]);
242         pr("\n(c) 1989 Imaginative Images Inc.\n");
243     }
244     return RET_OK;
245 }
246
247 void
248 sathead(void)
249 {
250     pr("                    sct rd  rl  def\n");
251     pr("   sect   type own  eff eff eff eff  civ  mil  shl  gun iron  pet  food\n");
252 }
253
254 void
255 satdisp_sect(struct sctstr *sp, int acc)
256 {
257     prxy("%4d,%-4d   ", sp->sct_x, sp->sct_y);
258     pr("%c  %3d  %3d %3d %3d %3d %4d %4d %4d %4d %4d %4d %5d\n",
259        dchr[sp->sct_type].d_mnem,
260        sp->sct_own, roundintby((int)sp->sct_effic, acc / 2),
261        roundintby((int)sp->sct_road, acc / 2),
262        opt_RAILWAYS ? !!sct_rail_track(sp) : roundintby(sp->sct_rail, acc / 2),
263        roundintby((int)sp->sct_defense, acc / 2),
264        roundintby(sp->sct_item[I_CIVIL], acc),
265        roundintby(sp->sct_item[I_MILIT], acc),
266        roundintby(sp->sct_item[I_SHELL], acc),
267        roundintby(sp->sct_item[I_GUN], acc),
268        roundintby(sp->sct_item[I_IRON], acc),
269        roundintby(sp->sct_item[I_PETROL], acc),
270        roundintby(sp->sct_item[I_FOOD], acc));
271 }
272
273 void
274 satdisp_units(coord x, coord y)
275 {
276     int first;
277     struct nstr_item ni;
278     struct shpstr ship;
279     struct lndstr land;
280
281     snxtitem_xy(&ni, EF_SHIP, x, y);
282     first = 1;
283     while (nxtitem(&ni, &ship)) {
284         if (ship.shp_own == 0)
285             continue;
286         if (mchr[(int)ship.shp_type].m_flags & M_SUB)
287             continue;
288         if (first) {
289             pr("\t own  shp# ship type                                  sector   eff\n");
290             first = 0;
291         }
292         pr("\t%4d %4d %-16.16s %-25.25s ",
293            ship.shp_own, ship.shp_uid,
294            mchr[(int)ship.shp_type].m_name, ship.shp_name);
295         prxy("%4d,%-4d ", ship.shp_x, ship.shp_y);
296         pr("%3d%%\n", ship.shp_effic);
297     }
298
299     if (!first)
300         pr("\n");
301
302     snxtitem_xy(&ni, EF_LAND, x, y);
303     first = 1;
304
305     while (nxtitem(&ni, &land)) {
306         if (land.lnd_own == 0)
307             continue;
308         if (land.lnd_ship >= 0 || land.lnd_land >= 0)
309             continue;
310         if (lchr[(int)land.lnd_type].l_flags & L_SPY)
311             continue;
312         if (!chance(land.lnd_effic / 20.0))
313             continue;
314
315         if (first) {
316             pr("\t own  lnd# unit type       sector   eff\n");
317             first = 0;
318         }
319
320         pr("\t%4d %4d %-16.16s ",
321            land.lnd_own, land.lnd_uid, lchr[(int)land.lnd_type].l_name);
322         prxy("%4d,%-4d ", land.lnd_x, land.lnd_y);
323         pr("%3d%%\n", land.lnd_effic);
324     }
325
326     if (!first)
327         pr("\n");
328 }