]> git.pond.sub.org Git - empserver/blob - src/lib/subs/snxtitem.c
(ef_zapcache): Clearing the cache doesn't make sense. No harm done if
[empserver] / src / lib / subs / snxtitem.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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  *  snxtitem.c: Arrange item selection using one of many criteria.
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  */
33
34 #include "misc.h"
35 #include "player.h"
36 #include "xy.h"
37 #include "nsc.h"
38 #include "file.h"
39 #include "prototypes.h"
40
41 /*
42  * setup the nstr structure for sector selection.
43  * can select on NS_ALL, NS_AREA, NS_DIST, and NS_LIST.
44  * iterate thru the "condarg" string looking
45  * for arguments to compile into the nstr.
46  */
47 int
48 snxtitem(struct nstr_item *np, int type, s_char *str)
49 {
50     struct range range;
51     int list[NS_LSIZE];
52     int n;
53     coord cx, cy;
54     int dist;
55     int flags;
56     s_char natnumber[16];
57     s_char prompt[128];
58     s_char buf[1024];
59
60     np->type = EF_BAD;
61     np->sel = NS_UNDEF;
62     if (str == 0) {
63         sprintf(prompt, "%s(s)? ", ef_nameof(type));
64         str = getstring(prompt, buf);
65         if (str == 0)
66             return 0;
67     }
68     if (*str == 0) {
69         /* empty string passed by player */
70         return 0;
71     }
72     if (type == EF_NATION && isalpha(*str)) {
73         sprintf(natnumber, "%d", natarg(str, ""));
74         str = natnumber;
75     }
76     flags = ef_flags(type);
77     switch (sarg_type(str)) {
78     case NS_AREA:
79         if (!(flags & EFF_XY))
80             return 0;
81         if (!sarg_area(str, &range))
82             return 0;
83         snxtitem_area(np, type, &range);
84         break;
85     case NS_DIST:
86         if (!(flags & EFF_XY))
87             return 0;
88         if (!sarg_range(str, &cx, &cy, &dist))
89             return 0;
90         snxtitem_dist(np, type, cx, cy, dist);
91         break;
92     case NS_ALL:
93         snxtitem_all(np, type);
94         break;
95     case NS_LIST:
96         if ((n = sarg_list(str, list, NS_LSIZE)) == 0)
97             return 0;
98         if (!snxtitem_list(np, type, list, n))
99             return 0;
100         break;
101     case NS_XY:
102         if (!(flags & EFF_XY))
103             return 0;
104         if (!sarg_xy(str, &cx, &cy))
105             return 0;
106         snxtitem_xy(np, type, cx, cy);
107         break;
108     case NS_GROUP:
109         if (!(flags & EFF_GROUP))
110             return 0;
111         snxtitem_group(np, type, *str);
112         break;
113     default:
114         return 0;
115     }
116     np->flags = flags;
117     if (player->condarg == 0)
118         return 1;
119     n = nstr_comp(np->cond, sizeof(np->cond) / sizeof(*np->cond), type,
120                   player->condarg);
121     np->ncond = n >= 0 ? n : 0;
122     return n >= 0;
123 }
124
125 void
126 snxtitem_area(struct nstr_item *np, int type, struct range *range)
127 {
128     memset(np, 0, sizeof(*np));
129     np->cur = -1;
130     np->type = type;
131     np->sel = NS_AREA;
132     np->index = -1;
133     np->range = *range;
134     np->read = ef_read;
135     np->flags = ef_flags(type);
136     xysize_range(&np->range);
137 }
138
139 void
140 snxtitem_dist(struct nstr_item *np, int type, int cx, int cy,
141               int dist)
142 {
143     struct range range;
144
145     memset(np, 0, sizeof(*np));
146     xydist_range(cx, cy, dist, &range);
147     np->cur = -1;
148     np->type = type;
149     np->sel = NS_DIST;
150     np->cx = cx;
151     np->cy = cy;
152     np->index = -1;
153     np->range = range;
154     np->dist = dist;
155     np->read = ef_read;
156     np->flags = ef_flags(type);
157 #if 0
158     /* This is no longer proper. */
159     /* It did the wrong thing for small, hitech worlds. */
160     xysize_range(&np->range);
161 #endif
162 }
163
164 void
165 snxtitem_xy(struct nstr_item *np, int type, coord x, coord y)
166 {
167     memset(np, 0, sizeof(*np));
168     np->cur = -1;
169     np->type = type;
170     np->sel = NS_XY;
171     np->cx = xnorm(x);
172     np->cy = ynorm(y);
173     np->index = -1;
174     np->dist = 0;
175     np->read = ef_read;
176     np->flags = ef_flags(type);
177 }
178
179 void
180 snxtitem_all(struct nstr_item *np, int type)
181 {
182     memset(np, 0, sizeof(*np));
183     np->cur = -1;
184     np->sel = NS_ALL;
185     np->type = type;
186     np->index = -1;
187     np->read = ef_read;
188     np->flags = ef_flags(type);
189     xysize_range(&np->range);
190 }
191
192 void
193 snxtitem_group(struct nstr_item *np, int type, s_char group)
194 {
195     if (group == '~')
196         group = ' ';
197     memset(np, 0, sizeof(*np));
198     np->cur = -1;
199     np->sel = NS_GROUP;
200     np->group = group;
201     np->type = type;
202     np->index = -1;
203     np->read = ef_read;
204     np->flags = ef_flags(type);
205     xysize_range(&np->range);
206 }
207
208 void
209 snxtitem_rewind(struct nstr_item *np)
210 {
211     np->cur = -1;
212     np->index = -1;
213 }
214
215 int
216 snxtitem_list(struct nstr_item *np, int type, int *list, int len)
217 {
218     int i;
219
220     memset(np, 0, sizeof(*np));
221     np->cur = -1;
222     np->type = type;
223     np->sel = NS_LIST;
224     np->index = -1;
225     np->read = ef_read;
226     np->flags = ef_flags(type);
227     if (len <= 0 || len > NS_LSIZE)
228         return 0;
229     for (i = 0; i < len; i++)
230         np->list[i] = list[i];
231     np->size = len;
232     return 1;
233 }