]> git.pond.sub.org Git - empserver/blob - src/lib/commands/spy.c
Have the complete spy report code in one place
[empserver] / src / lib / commands / spy.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  *  spy.c: Spy on your neighbors
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  *     Steve McClure, 1998-2000
33  */
34
35 #include <config.h>
36
37 #include "commands.h"
38 #include "item.h"
39 #include "land.h"
40 #include "map.h"
41 #include "news.h"
42 #include "optlist.h"
43 #include "path.h"
44 #include "plane.h"
45
46 /*
47  * format:  spy <SECTS>
48  */
49
50 static int check(coord *table, int *len, coord x, coord y);
51 static void insert(coord *table, int *len, coord x, coord y);
52 static int num_units(int, int);
53 static void prplanes(int, int);
54 static void prunits(int, int);
55 static void spy_report(struct sctstr *sp);
56
57 int
58 spy(void)
59 {
60     natid own;
61     int relat;
62     coord x, y;
63     coord nx, ny;
64     int military;
65     int savemil;
66     int btucost;
67     int i;
68     coord *table;               /* sectors already seen */
69     int t_len = 0;
70     int nrecon;
71     int nunits;
72     struct nstr_sect nstr;
73     struct nstr_item ni;
74     struct natstr *natp;
75     struct sctstr from;
76     struct sctstr dsect;
77     struct lndstr land;
78     int changed = 0;
79     int nsects;
80
81     /*
82      * first arg should be the range of sectors
83      */
84     if (!snxtsct(&nstr, player->argp[1]))
85         return RET_SYN;
86     nsects = (nstr.range.width + 1) * nstr.range.height / 2;
87     btucost = (nsects / 40) + 1;
88     natp = getnatp(player->cnum);
89     if (natp->nat_btu < btucost) {
90         pr("You don't have the BTU's for spying on that scale!\n");
91         return RET_FAIL;
92     }
93     /*
94      * set up all the goodies we need later
95      * 6 = neighbors, 2 = x,y
96      */
97     table = malloc((nsects + 1) * 6 * 2 * sizeof(coord));
98     memset(table, 0, (nsects + 1) * 6 * 2 * sizeof(coord));
99     pr("SPY report\n");
100     prdate();
101     pr("                 old sct rd  rl  def\n");
102     pr("   sect   de own own eff eff eff eff  civ  mil  shl gun  pet food bars lnd pln\n");
103     while (nxtsct(&nstr, &from)) {
104         if (!player->owner && !player->god)
105             continue;
106         nrecon = 0;
107         nunits = 0;
108         snxtitem_xy(&ni, EF_LAND, from.sct_x, from.sct_y);
109         while (nxtitem(&ni, &land)) {
110             nunits++;
111             if (lchr[(int)land.lnd_type].l_flags & L_RECON)
112                 nrecon++;
113         }
114         if ((military = from.sct_item[I_MILIT]) == 0 && (nunits == 0))
115             continue;
116         x = from.sct_x;
117         y = from.sct_y;
118         /* Print out the units/planes in this sector */
119         prunits(x, y);
120         prplanes(x, y);
121         savemil = military;
122         /*
123          * check the neighboring sectors.
124          */
125         for (i = 1; i <= 6; i++) {
126             if ((military == 0) && (nunits == 0))
127                 break;
128             nx = x + diroff[i][0];
129             ny = y + diroff[i][1];
130             /*
131              * if we've already seen the
132              * sector, don't bother checking it
133              * out.
134              */
135             if (check(table, &t_len, nx, ny)) {
136                 continue;
137             }
138             getsect(nx, ny, &dsect);
139             if (player->owner
140                 || (dsect.sct_type == SCT_WATER)
141                 || (!dsect.sct_item[I_MILIT] && !dsect.sct_item[I_CIVIL]
142                     && num_units(nx, ny) == 0)) {
143                 /* mark sector as seen */
144                 insert(table, &t_len, nx, ny);
145                 continue;
146             }
147
148             own = dsect.sct_own;
149             relat = getrel(getnatp(own), player->cnum);
150             if (relat <= NEUTRAL
151                 && chance(dsect.sct_item[I_MILIT] / 200.0)) {
152                 /* spy caught */
153                 if (relat == NEUTRAL) {
154                     /* deport spy */
155                     pr("Spy deported from %s\n",
156                        xyas(nx, ny, player->cnum));
157                     if (own != 0)
158                         wu(0, own, "%s (#%d) spy deported from %s\n",
159                            cname(player->cnum), player->cnum,
160                            xyas(nx, ny, own));
161                 } else {
162                     /* execute spy */
163                     pr("BANG!! A spy was shot in %s\n",
164                        xyas(nx, ny, player->cnum));
165                     military--;
166                     if (own != 0)
167                         wu(0, own, "%s (#%d) spy caught in %s\n",
168                            cname(player->cnum), player->cnum,
169                            xyas(nx, ny, own));
170                 }
171                 if (opt_HIDDEN)
172                     setcont(own, player->cnum, FOUND_SPY);
173                 if (!nrecon)    /* unless you have a recon unit */
174                     continue;   /* no report from caught spy */
175             }
176
177             /* spy report */
178             insert(table, &t_len, nx, ny);
179             spy_report(&dsect);
180             changed += map_set(player->cnum, dsect.sct_x, dsect.sct_y,
181                                dchr[dsect.sct_type].d_mnem, 0);
182             if (opt_HIDDEN)
183                 setcont(player->cnum, own, FOUND_SPY);
184         }
185         /* subtract any military if necessary */
186         if ((savemil != military) && (savemil > 0)) {
187             if ((military < 0) || (military > savemil))
188                 military = 0;
189             from.sct_item[I_MILIT] = military;
190             putsect(&from);
191         }
192     }
193     if (changed)
194         writemap(player->cnum);
195     player->btused += btucost;
196     free(table);
197     return RET_OK;
198 }
199
200 static void
201 spy_report(struct sctstr *sp)
202 {
203     prxy("%4d,%-4d", sp->sct_x, sp->sct_y, player->cnum);
204     pr(" %c%c %3d %3d %3d %3d %3d %3d %4d %4d %4d %3d %4d %4d %4d %3d %3d\n",
205        dchr[sp->sct_type].d_mnem,
206        sp->sct_newtype == sp->sct_type ? ' ' : dchr[sp->sct_newtype].d_mnem,
207        sp->sct_own,
208        sp->sct_oldown,
209        roundintby((int)sp->sct_effic, 10),
210        roundintby((int)sp->sct_road, 10),
211        roundintby((int)sp->sct_rail, 10),
212        roundintby((int)sp->sct_defense, 10),
213        roundintby(sp->sct_item[I_CIVIL], 10),
214        roundintby(sp->sct_item[I_MILIT], 10),
215        roundintby(sp->sct_item[I_SHELL], 10),
216        roundintby(sp->sct_item[I_GUN], 10),
217        roundintby(sp->sct_item[I_PETROL], 10),
218        roundintby(sp->sct_item[I_FOOD], 10),
219        roundintby(sp->sct_item[I_BAR], 10),
220        count_sect_units(sp),
221        count_sect_planes(sp));
222     prunits(sp->sct_x, sp->sct_y);
223     prplanes(sp->sct_x, sp->sct_y);
224 }
225
226 /*
227  * insert a key into the table.
228  */
229 static void
230 insert(coord *table, int *len, coord x, coord y)
231 {
232     if (!check(table, len, x, y)) {
233         table[(*len)++] = x;
234         table[(*len)++] = y;
235     }
236 }
237
238 /*
239  * see if a key is in the bitmask table
240  */
241 static int
242 check(coord *table, int *len, coord x, coord y)
243 {
244     int i;
245
246     for (i = 0; i < *len; i += 2)
247         if (table[i] == x && table[i + 1] == y)
248             return 1;
249     return 0;
250 }
251
252 static int
253 num_units(int x, int y)
254 {
255     struct lndstr land;
256     struct nstr_item ni;
257     int n = 0;
258
259     snxtitem_xy(&ni, EF_LAND, x, y);
260     while (nxtitem(&ni, &land)) {
261         if ((land.lnd_own == player->cnum) || (land.lnd_own == 0))
262             continue;
263         if (land.lnd_ship >= 0 || land.lnd_land >= 0)
264             continue;
265         n++;
266     }
267
268     return n;
269 }
270
271 static void
272 prunits(int x, int y)
273 {
274     struct lndstr land;
275     struct nstr_item ni;
276     char report[128];
277
278     snxtitem_xy(&ni, EF_LAND, x, y);
279     while (nxtitem(&ni, &land)) {
280         if (land.lnd_own == player->cnum || land.lnd_own == 0)
281             continue;
282         if (land.lnd_ship >= 0 || land.lnd_land >= 0)
283             continue;
284         /* Don't always see spies */
285         if (lchr[(int)land.lnd_type].l_flags & L_SPY) {
286             if (!(chance(LND_SPY_DETECT_CHANCE(land.lnd_effic))))
287                 continue;
288         }
289         if ((land.lnd_own != player->cnum) && land.lnd_own) {
290             int rel;
291             char *relstr;
292
293             rel = getrel(getnatp(player->cnum), land.lnd_own);
294             if (rel == ALLIED)
295                 relstr = "Allied";
296             else if (rel == FRIENDLY || rel == NEUTRAL)
297                 relstr = "Neutral";
298             else
299                 relstr = "Enemy";
300             sprintf(report, "%s (%s) unit in %s: ",
301                     relstr, cname(land.lnd_own),
302                     xyas(land.lnd_x, land.lnd_y, player->cnum));
303             intelligence_report(player->cnum, &land, 3, report);
304         }
305     }
306 }
307
308 static void
309 prplanes(int x, int y)
310 {
311     struct plnstr plane;
312     struct nstr_item ni;
313
314     snxtitem_xy(&ni, EF_PLANE, x, y);
315     while (nxtitem(&ni, &plane)) {
316         if (plane.pln_own == player->cnum || plane.pln_own == 0)
317             continue;
318         if (plane.pln_ship >= 0 || plane.pln_land >= 0)
319             continue;
320         if (plane.pln_flags & PLN_LAUNCHED)
321             continue;
322         if ((plane.pln_own != player->cnum) && plane.pln_own) {
323             int rel;
324             char *relstr;
325
326             rel = getrel(getnatp(player->cnum), plane.pln_own);
327             if (rel == ALLIED)
328                 relstr = "Allied";
329             else if (rel == FRIENDLY || rel == NEUTRAL)
330                 relstr = "Neutral";
331             else
332                 relstr = "Enemy";
333             pr("%s (%s) plane in %s: %s\n",
334                relstr, cname(plane.pln_own),
335                xyas(plane.pln_x, plane.pln_y, player->cnum),
336                prplane(&plane));
337         }
338     }
339 }