]> git.pond.sub.org Git - empserver/blob - src/lib/subs/nxtitem.c
Update copyright notice
[empserver] / src / lib / subs / nxtitem.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2017, 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  *  nxtitem.c: Get the next item from a list
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1989
31  */
32
33 #include <config.h>
34
35 #include "empobj.h"
36 #include "land.h"
37 #include "misc.h"
38 #include "nsc.h"
39 #include "prototypes.h"
40 #include "ship.h"
41 #include "unit.h"
42 #include "xy.h"
43
44 int
45 nxtitem(struct nstr_item *np, void *ptr)
46 {
47     struct empobj *gp;
48     int selected;
49
50     if (np->sel == NS_UNDEF)
51         return 0;
52     gp = (struct empobj *)ptr;
53     do {
54         if (np->sel == NS_LIST) {
55             np->index++;
56             if (np->index >= np->size)
57                 return 0;
58             np->cur = np->list[np->index];
59         } else if (np->sel == NS_CARGO) {
60             if (np->next < 0)
61                 return 0;
62             np->cur = np->next;
63             np->next = unit_cargo_next(np->type, np->next);
64         } else {
65             np->cur++;
66         }
67         if (!ef_read(np->type, np->cur, ptr))
68             return 0;
69         selected = 1;
70         switch (np->sel) {
71         case NS_LIST:
72         case NS_CARGO:
73         case NS_ALL:
74             break;
75         case NS_DIST:
76             if (CANT_HAPPEN(!(ef_flags(np->type) & EFF_XY)))
77                 return 0;
78             if (!xyinrange(gp->x, gp->y, &np->range)) {
79                 selected = 0;
80                 break;
81             }
82             np->curdist = mapdist(gp->x, gp->y, np->cx, np->cy);
83             if (np->curdist > np->dist)
84                 selected = 0;
85             break;
86         case NS_AREA:
87             if (CANT_HAPPEN(!(ef_flags(np->type) & EFF_XY)))
88                 return 0;
89             if (!xyinrange(gp->x, gp->y, &np->range))
90                 selected = 0;
91             break;
92         case NS_XY:
93             if (CANT_HAPPEN(!(ef_flags(np->type) & EFF_XY)))
94                 return 0;
95             if (xnorm(gp->x) != np->cx || ynorm(gp->y) != np->cy)
96                 selected = 0;
97             break;
98         case NS_GROUP:
99             if (CANT_HAPPEN(!(ef_flags(np->type) & EFF_GROUP)))
100                 return 0;
101             if (np->group != gp->group)
102                 selected = 0;
103             break;
104         default:
105             CANT_REACH();
106             return 0;
107         }
108         if (selected && np->ncond) {
109             /* nstr_exec is expensive, so we do it last */
110             if (!nstr_exec(np->cond, np->ncond, ptr))
111                 selected = 0;
112         }
113     } while (!selected);
114     return 1;
115 }