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