]> git.pond.sub.org Git - empserver/blob - src/lib/subs/snxtitem.c
Clean up struct nstr_sect and struct nstr_item a bit
[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     if (player->condarg == 0)
129         return 1;
130     n = nstr_comp(np->cond, sizeof(np->cond) / sizeof(*np->cond), type,
131                   player->condarg);
132     np->ncond = n >= 0 ? n : 0;
133     return n >= 0;
134 }
135
136 void
137 snxtitem_area(struct nstr_item *np, int type, struct range *range)
138 {
139     memset(np, 0, sizeof(*np));
140     np->cur = -1;
141     np->type = type;
142     np->sel = NS_AREA;
143     np->index = -1;
144     np->range = *range;
145     xysize_range(&np->range);
146 }
147
148 void
149 snxtitem_dist(struct nstr_item *np, int type, int cx, int cy,
150               int dist)
151 {
152     memset(np, 0, sizeof(*np));
153     xydist_range(cx, cy, dist, &np->range);
154     np->cur = -1;
155     np->type = type;
156     np->sel = NS_DIST;
157     np->cx = cx;
158     np->cy = cy;
159     np->index = -1;
160     np->dist = dist;
161 }
162
163 void
164 snxtitem_xy(struct nstr_item *np, int type, coord x, coord y)
165 {
166     memset(np, 0, sizeof(*np));
167     np->cur = -1;
168     np->type = type;
169     np->sel = NS_XY;
170     np->cx = xnorm(x);
171     np->cy = ynorm(y);
172     np->index = -1;
173     np->dist = 0;
174 }
175
176 void
177 snxtitem_all(struct nstr_item *np, int type)
178 {
179     memset(np, 0, sizeof(*np));
180     np->cur = -1;
181     np->sel = NS_ALL;
182     np->type = type;
183     np->index = -1;
184     xysize_range(&np->range);
185 }
186
187 void
188 snxtitem_group(struct nstr_item *np, int type, char group)
189 {
190     if (group == '~')
191         group = 0;
192     memset(np, 0, sizeof(*np));
193     np->cur = -1;
194     np->sel = NS_GROUP;
195     np->group = group;
196     np->type = type;
197     np->index = -1;
198     xysize_range(&np->range);
199 }
200
201 void
202 snxtitem_rewind(struct nstr_item *np)
203 {
204     np->cur = -1;
205     np->index = -1;
206 }
207
208 int
209 snxtitem_list(struct nstr_item *np, int type, int *list, int len)
210 {
211     int i;
212
213     memset(np, 0, sizeof(*np));
214     np->cur = -1;
215     np->type = type;
216     np->sel = NS_LIST;
217     np->index = -1;
218     if (len <= 0 || len > NS_LSIZE)
219         return 0;
220     for (i = 0; i < len; i++)
221         np->list[i] = list[i];
222     np->size = len;
223     return 1;
224 }