]> git.pond.sub.org Git - empserver/blob - src/lib/subs/nxtitem.c
Indented with src/scripts/indent-emp.
[empserver] / src / lib / subs / nxtitem.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  nxtitem.c: Get the next item from a list
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  */
33
34 #include "misc.h"
35 #include "player.h"
36 #include "var.h"
37 #include "xy.h"
38 #include "plane.h"
39 #include "ship.h"
40 #include "nuke.h"
41 #include "land.h"
42 #include "nsc.h"
43 #include "nat.h"
44 #include "file.h"
45 #include "genitem.h"
46 #include "prototypes.h"
47
48 int
49 nxtitem(struct nstr_item *np, caddr_t ptr)
50 {
51     struct genitem *gp;
52     int selected;
53
54     if (np->sel == NS_UNDEF)
55         return 0;
56     gp = (struct genitem *)ptr;
57     do {
58         if (np->sel == NS_LIST) {
59             np->index++;
60             if (np->index >= np->size)
61                 return 0;
62             np->cur = np->list[np->index];
63         } else {
64             np->cur++;
65         }
66         if (!np->read(np->type, np->cur, ptr)) {
67             /* if read fails, fatal */
68             return 0;
69         }
70         selected = 1;
71         switch (np->sel) {
72             /*
73              * This one won't work unless you're running in emp_player
74              *
75              */
76         case NS_LIST:
77             if ((np->flags & EFF_OWNER) && !player->owner)
78                 selected = 0;
79             break;
80         case NS_ALL:
81             /* XXX maybe combine NS_LIST and NS_ALL later */
82             break;
83         case NS_DIST:
84             if (!xyinrange(gp->x, gp->y, &np->range)) {
85                 selected = 0;
86                 break;
87             }
88             np->curdist = mapdist((int)gp->x, (int)gp->y,
89                                   (int)np->cx, (int)np->cy);
90             if (np->curdist > np->dist)
91                 selected = 0;
92             break;
93         case NS_AREA:
94             if (!xyinrange(gp->x, gp->y, &np->range))
95                 selected = 0;
96             if (gp->x == np->range.hx || gp->y == np->range.hy)
97                 selected = 0;
98             break;
99         case NS_XY:
100             if (xnorm(gp->x) != np->cx || ynorm(gp->y) != np->cy)
101                 selected = 0;
102             break;
103         case NS_GROUP:
104             if (np->group != gp->group)
105                 selected = 0;
106             break;
107         default:
108             logerror("nxtitem: bad selector %d\n", np->sel);
109             return 0;
110         }
111         if (selected && np->ncond) {
112             /* nstr_exec is expensive, so we do it last */
113             if (!nstr_exec(np->cond, np->ncond, ptr, np->type))
114                 selected = 0;
115         }
116     } while (!selected);
117     return 1;
118 }