]> git.pond.sub.org Git - empserver/blob - src/lib/update/nxtitemp.c
Update copyright notice
[empserver] / src / lib / update / nxtitemp.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2010, 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  *  nxtitemp.c: Get next item from list
29  *
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  */
33
34 #include <config.h>
35
36 #include "empobj.h"
37 #include "land.h"
38 #include "nsc.h"
39 #include "ship.h"
40 #include "unit.h"
41 #include "update.h"
42
43 void *
44 nxtitemp(struct nstr_item *np)
45 {
46     struct empobj *gp;
47     int selected;
48
49     if (np->sel == NS_UNDEF)
50         return NULL;
51     do {
52         if (np->sel == NS_LIST) {
53             np->index++;
54             if (np->index >= np->size)
55                 return NULL;
56             np->cur = np->list[np->index];
57         } else if (np->sel == NS_CARGO) {
58             if (np->next < 0)
59                 return NULL;
60             np->cur = np->next;
61             np->next = unit_cargo_next(np->type, np->next);
62         } else {
63             np->cur++;
64         }
65         gp = ef_ptr(np->type, np->cur);
66         if (!gp)
67             return NULL;
68
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 NULL;
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 NULL;
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 NULL;
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 NULL;
101             if (np->group != gp->group)
102                 selected = 0;
103             break;
104         default:
105             CANT_REACH();
106             return NULL;
107         }
108         if (selected && np->ncond) {
109             /* nstr_exec is expensive, so we do it last */
110             if (!nstr_exec(np->cond, np->ncond, gp))
111                 selected = 0;
112         }
113     } while (!selected);
114     return gp;
115 }