]> git.pond.sub.org Git - empserver/blob - src/lib/subs/list.c
Remove unused num_shipsatxy()
[empserver] / src / lib / subs / list.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  *  list.c: List ships, planes, units at a given x,y
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1986
32  */
33
34 #include <config.h>
35
36 #include <ctype.h>
37 #include "file.h"
38 #include "land.h"
39 #include "misc.h"
40 #include "nat.h"
41 #include "nsc.h"
42 #include "path.h"
43 #include "plane.h"
44 #include "player.h"
45 #include "prototypes.h"
46 #include "sect.h"
47 #include "ship.h"
48 #include "xy.h"
49
50 int
51 shipsatxy(coord x, coord y, int wantflags, int nowantflags, int only_count)
52 {
53     int first;
54     int ships;
55     struct nstr_item ni;
56     struct mchrstr *mp;
57     struct shpstr ship;
58
59     first = 1;
60     ships = 0;
61     snxtitem_xy(&ni, EF_SHIP, x, y);
62     while (nxtitem(&ni, &ship)) {
63         if (player->owner)
64             continue;
65         if (ship.shp_effic < SHIP_MINEFF || ship.shp_own == 0)
66             continue;
67         mp = &mchr[(int)ship.shp_type];
68         if (wantflags) {
69             if ((mp->m_flags & wantflags) == 0)
70                 continue;
71         }
72         if (nowantflags) {
73             if (mp->m_flags & nowantflags)
74                 continue;
75         }
76         if (!only_count) {
77             if (first) {
78                 pr(" #          owner           eff       type\n");
79                 first = 0;
80             }
81             pr("(#%3d) %10.10s  %12.12s  %s\n", ni.cur,
82                cname(ship.shp_own), effadv(ship.shp_effic), prship(&ship));
83         }
84         ships++;
85     }
86     return ships;
87 }
88
89 /* This one only shows owned or allied ships */
90
91 int
92 carriersatxy(coord x, coord y, natid own)
93 {
94     int first;
95     int ships;
96     struct nstr_item ni;
97     struct shpstr ship;
98
99     first = 1;
100     ships = 0;
101     snxtitem_xy(&ni, EF_SHIP, x, y);
102     while (nxtitem(&ni, &ship)) {
103         if (ship.shp_effic < SHIP_MINEFF || ship.shp_own == 0)
104             continue;
105         if (ship.shp_own != own
106             && getrel(getnatp(ship.shp_own), own) != ALLIED)
107             continue;
108         if ((carrier_planes(&ship, 0) & (P_L | P_K)) == 0)
109             continue;
110         if (first) {
111             pr(" #          owner           eff       type\n");
112             first = 0;
113         }
114         pr("(#%3d) %10.10s  %12.12s  %s\n", ni.cur,
115            cname(ship.shp_own), effadv(ship.shp_effic), prship(&ship));
116         ships++;
117     }
118     return ships;
119 }
120
121 int
122 unitsatxy(coord x, coord y, int wantflags, int nowantflags)
123 {
124     int first;
125     int units;
126     struct nstr_item ni;
127     struct lchrstr *lp;
128     struct lndstr land;
129
130     first = 1;
131     units = 0;
132     snxtitem_xy(&ni, EF_LAND, x, y);
133     while (nxtitem(&ni, &land)) {
134         if (land.lnd_effic < LAND_MINEFF || land.lnd_own == 0)
135             continue;
136         /* Can't bomb units on ships or other units */
137         if (land.lnd_ship >= 0 || land.lnd_land >= 0)
138             continue;
139         lp = &lchr[(int)land.lnd_type];
140
141         if (wantflags) {
142             if ((lp->l_flags & wantflags) == 0)
143                 continue;
144         }
145         if (nowantflags) {
146             if (lp->l_flags & nowantflags)
147                 continue;
148         }
149
150         if (lp->l_flags & L_SPY) {
151             if (!(chance(LND_SPY_DETECT_CHANCE(land.lnd_effic))))
152                 continue;
153         }
154
155         if (first) {
156             pr(" #          owner           eff       type\n");
157             first = 0;
158         }
159         pr("(#%3d) %10.10s  %12.12s  %s\n", ni.cur,
160            cname(land.lnd_own), effadv(land.lnd_effic), prland(&land));
161         units++;
162     }
163     return units;
164 }
165
166 int
167 planesatxy(coord x, coord y, int wantflags, int nowantflags)
168 {
169     int first;
170     int planes;
171     struct plnstr plane;
172     struct nstr_item ni;
173     struct plchrstr *plp;
174
175     planes = 0;
176     first = 1;
177     snxtitem_xy(&ni, EF_PLANE, x, y);
178     while (nxtitem(&ni, &plane)) {
179         if (plane.pln_effic < PLANE_MINEFF || plane.pln_own == 0)
180             continue;
181         if (plane.pln_flags & PLN_LAUNCHED)
182             continue;
183         plp = &plchr[(int)plane.pln_type];
184         if (first) {
185             pr(" #          owner           eff       type\n");
186             first = 0;
187         }
188         if (wantflags) {
189             if ((plp->pl_flags & wantflags) == 0)
190                 continue;
191         }
192         if (nowantflags) {
193             if (plp->pl_flags & nowantflags)
194                 continue;
195         }
196         pr("(#%3d) %10.10s  %12.12s  %s\n", ni.cur,
197            cname(plane.pln_own), effadv(plane.pln_effic), prplane(&plane));
198         planes++;
199     }
200     return planes;
201 }
202
203 int
204 asw_shipsatxy(coord x, coord y, int wantflags, int nowantflags,
205               struct plnstr *pp, struct shiplist **head)
206 {
207     int first;
208     int ships;
209     struct nstr_item ni;
210     struct mchrstr *mp;
211     struct shpstr ship;
212
213     first = 1;
214     ships = 0;
215     snxtitem_xy(&ni, EF_SHIP, x, y);
216     while (nxtitem(&ni, &ship)) {
217         if (player->owner)
218             continue;
219         if (ship.shp_effic < SHIP_MINEFF || ship.shp_own == 0)
220             continue;
221         mp = &mchr[(int)ship.shp_type];
222         if (wantflags) {
223             if ((mp->m_flags & wantflags) == 0)
224                 continue;
225         }
226         if (nowantflags) {
227             if (mp->m_flags & nowantflags)
228                 continue;
229         }
230         if (mp->m_flags & M_SUB) {
231             if (roll(100) > pln_hitchance(pp,
232                                           shp_hardtarget(&ship), EF_SHIP))
233                 continue;
234         }
235         add_shiplist(ship.shp_uid, head);
236         if (first) {
237             pr(" #          owner           eff       type\n");
238             first = 0;
239         }
240         pr("(#%3d) %10.10s  %12.12s  %s\n", ni.cur,
241            cname(ship.shp_own), effadv(ship.shp_effic), prship(&ship));
242         ships++;
243     }
244     return ships;
245 }
246
247 int
248 adj_units(coord x, coord y, natid own)
249 {
250     int i;
251     struct sctstr sect;
252
253     for (i = DIR_FIRST; i <= DIR_LAST; i++) {
254         getsect(x + diroff[i][0], y + diroff[i][1], &sect);
255         if (has_units(sect.sct_x, sect.sct_y, own, 0))
256             return 1;
257     }
258     return 0;
259 }
260
261 int
262 has_units(coord x, coord y, natid cn, struct lndstr *lp)
263 {
264     int n;
265     struct lndstr land;
266
267     for (n = 0; ef_read(EF_LAND, n, &land); n++) {
268         if (land.lnd_x != x || land.lnd_y != y)
269             continue;
270         if (lp) {
271             /* Check this unit.  If it is this one, we don't want
272                it included in the count. */
273             if (lp->lnd_uid == land.lnd_uid)
274                 continue;
275         }
276         if (land.lnd_own == cn)
277             return 1;
278     }
279
280     return 0;
281 }
282
283 /*
284  * is p a list of ships/planes/units?
285  */
286
287 int
288 islist(char *p)
289 {
290     for (; *p; p++) {
291         if (!isdigit(*p) && *p != '/')
292             return 0;
293     }
294     return 1;
295 }