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