]> git.pond.sub.org Git - empserver/blob - include/nsc.h
9abab00270de7b671a5cf63971924ceb716154f4
[empserver] / include / nsc.h
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  nsc.h: Definitions for Empire conditionals
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1989
31  *     Markus Armbruster, 2004-2010
32  */
33
34 #ifndef NSC_H
35 #define NSC_H
36
37 #include <stddef.h>
38 #include "misc.h"
39 #include "xy.h"
40
41 #define NS_LSIZE        128
42 #define NS_NCOND        16
43
44 /* Value type */
45 enum nsc_type {
46     NSC_NOTYPE,
47     /* promoted types */
48     NSC_LONG,                   /* long */
49     NSC_DOUBLE,                 /* double */
50     NSC_STRING,                 /* character string */
51     /* unpromoted types */
52     NSC_CHAR,                   /* signed char */
53     NSC_UCHAR,                  /* unsigned char */
54     NSC_SHORT,                  /* short */
55     NSC_USHORT,                 /* unsigned short */
56     NSC_INT,                    /* int */
57     NSC_XCOORD,                 /* coord that needs x conversion */
58     NSC_YCOORD,                 /* coord that needs y conversion */
59     NSC_HIDDEN,                 /* unsigned char in struct natstr that
60                                    may need hiding */
61     NSC_TIME,                   /* time_t */
62     NSC_FLOAT,                  /* float */
63     NSC_STRINGY,                /* char[] */
64     /* aliases, must match typedefs */
65     NSC_NATID = NSC_UCHAR       /* nation id */
66 };
67
68 /* Is TYPE a promoted value type?  */
69 #define NSC_IS_PROMOTED(type) (NSC_LONG <= (type) && (type) <= NSC_STRING)
70
71 /* Return nsc_type for a signed integer with the same size as TYPE.  */
72 #define NSC_SITYPE(type)                                \
73     (sizeof(type) == 1 ? NSC_CHAR                       \
74      : sizeof(type) == sizeof(short) ? NSC_SHORT        \
75      : sizeof(type) == sizeof(int) ? NSC_INT            \
76      : sizeof(type) == sizeof(long) ? NSC_LONG          \
77      : 1/0)
78
79 /* Value category */
80 enum nsc_cat {
81     NSC_NOCAT,
82     NSC_VAL,                    /* evaluated value */
83     NSC_OFF,                    /* symbolic value: at offset in object */
84     NSC_ID                      /* unresolved identifier (internal use) */
85 };
86
87 /*
88  * Value, possibly symbolic
89  *
90  * If type is NSC_NOTYPE, it's an error value.
91  * If category is NSC_VAL, the value is in val_as, and the type is a
92  * promoted type.
93  * If category is NSC_OFF, the value is in a context object, and
94  * val_as.sym specifies how to get it, as follows.
95  * If sym.get is null, and type is NSC_STRINGY, the value is an array
96  * of sym.len characters starting at sym.offs in the context object.
97  * sym.idx must be zero.
98  * Else if sym.get is null, and sym.len is zero, the value is in the
99  * context object at offset sym.off.  sym.idx must be zero.
100  * Else if sym.get is null, sym.len is non-zero, and the value has
101  * index sym.idx in an array of sym.len elements at offset sym.off in
102  * in the context object.  I.e. the value is at sym.off + sym.idx *
103  * SZ, where SZ is the size of the value.
104  * If sym.get is not null, you obtain the value by calling get() like
105  * VAL->get(VAL, NP, CTXO), where NP points to the country to use for
106  * coordinate translation and access control (null for none), and CTXO
107  * is the context object.  get() either returns a null pointer and
108  * sets VAL->val_as to the value, as appropriate for the type.  Or it
109  * returns another context object and sets VAL->val_as.sym for it.
110  */
111 struct valstr {
112     enum nsc_type val_type;     /* type of value */
113     enum nsc_cat val_cat;       /* category of value */
114     union {
115         struct {                /* cat NSC_OFF */
116             ptrdiff_t off;
117             int len;
118             int idx;
119             void *(*get)(struct valstr *, struct natstr *, void *);
120         } sym;
121         double dbl;             /* cat NSC_VAL, type NSC_DOUBLE */
122         struct {                /* cat NSC_VAL, type NSC_STRING, cat NSC_ID */
123             char *base;
124             size_t maxsz;
125         } str;
126         long lng;               /* cat NSC_VAL, type NSC_LONG */
127     } val_as;
128 };
129
130 /* Compiled condition */
131 struct nscstr {
132     char operator;              /* '<', '=', '>', '#' */
133     enum nsc_type optype;       /* operator type */
134     struct valstr lft;          /* left operand */
135     struct valstr rgt;          /* right operand */
136 };
137
138 /* Selection type */
139 enum ns_seltype {
140     NS_UNDEF,                   /* error value */
141     NS_LIST,                    /* list of IDs */
142     NS_DIST,                    /* circular area */
143     NS_AREA,                    /* rectangular area */
144     NS_ALL,                     /* everything */
145     NS_XY,                      /* one sector area */
146     NS_GROUP,                   /* group, i.e. fleet, wing, army */
147     NS_CARGO                    /* loaded on the same carrier */
148 };
149
150 /* Sector iterator */
151 struct nstr_sect {
152     coord x, y;                 /* current x-y */
153     coord dx, dy;               /* accumlated x,y travel */
154     int id;                     /* return value of sctoff */
155     enum ns_seltype type;       /* selection type: NS_AREA or NS_DIST */
156     int curdist;                /* NS_DIST: current range */
157     struct range range;         /* area of coverage */
158     int dist;                   /* NS_DIST: range */
159     coord cx, cy;               /* NS_DIST: center x-y */
160     int ncond;                  /* # of selection conditions */
161     struct nscstr cond[NS_NCOND]; /* selection conditions */
162 };
163
164 /* Item iterator */
165 struct nstr_item {
166     int cur;                    /* current item */
167     enum ns_seltype sel;        /* selection type, any but NS_UNDEF */
168     int type;                   /* item type being selected */
169     int curdist;                /* if NS_DIST, current item's dist */
170     struct range range;         /* NS_AREA/NS_DIST: range selector */
171     int dist;                   /* NS_DIST: distance selector */
172     coord cx, cy;               /* NS_DIST: center x-y, NS_XY: xy */
173     char group;                 /* NS_GROUP: fleet/wing match */
174     int next;                   /* NS_CARGO: next item */
175     int size;                   /* NS_LIST: size of list */
176     int index;                  /* NS_LIST: index */
177     int list[NS_LSIZE];         /* NS_LIST: item list */
178     int ncond;                  /* # of selection conditions */
179     struct nscstr cond[NS_NCOND]; /* selection conditions */
180 };
181
182 /*
183  * Symbol binding: associate NAME with VALUE.
184  */
185 struct symbol {
186     int value;
187     char *name;
188 };
189
190 /* Selector flags */
191 enum {
192     NSC_DEITY = bit(0),         /* access restricted to deity */
193     NSC_EXTRA = bit(1),         /* computable from other selectors */
194     NSC_CONST = bit(2),         /* field cannot be changed */
195     NSC_BITS = bit(3)           /* value consists of flag bits */
196 };
197
198 /*
199  * Selector descriptor
200  *
201  * A selector describes an attribute of some context object.
202  * A selector with ca_type NSC_NOTYPE is invalid.
203  * If ca_get is null, the selector describes a datum of type ca_type
204  * at offset ca_offs in the context object.
205  * A datum of type NSC_STRINGY is an array of ca_len characters.
206  * A datum of any other type is either a scalar of that type (if
207  * ca_len is zero), or an array of ca_len elements of that type.
208  * If ca_get is not null, the selector is virtual.  Values can be
209  * obtained by calling ca_get(VAL, NP, CTXO), where VAL has been
210  * initialized from the selector and an index by nstr_mksymval(),
211  * NP points to the country to use for coordinate translation and
212  * access control (null for none), and CTXO is the context object.
213  * See struct valstr for details.
214  * Because virtual selectors don't have a setter method, xundump must
215  * be made to ignore them, by setting NSC_EXTRA.
216  * If flag NSC_DEITY is set, only to deities can use this selector.
217  * If flag NSC_EXTRA is set, xdump and xundump ignore this selector.
218  * If flag NSC_CONST is set, the datum can't be changed from its
219  * initial value (xundump obeys that).
220  * If ca_table is not EF_BAD, the datum refers to that Empire table;
221  * ca_type must be an integer type.  If flag NSC_BITS is set, the
222  * datum consists of flag bits, and the referred table must be a
223  * symbol table defining those bits.
224  */
225 struct castr {
226     char *ca_name;
227     ptrdiff_t ca_off;
228     enum nsc_type ca_type;
229     unsigned short ca_len;
230     void *(*ca_get)(struct valstr *, struct natstr *, void *);
231     int ca_table;
232     int ca_flags;
233 };
234
235 /* variables using the above */
236
237 extern struct castr ichr_ca[];
238 extern struct castr pchr_ca[];
239 extern struct castr sect_ca[];
240 extern struct castr dchr_ca[];
241 extern struct castr ship_ca[];
242 extern struct castr mchr_ca[];
243 extern struct castr plane_ca[];
244 extern struct castr plchr_ca[];
245 extern struct castr land_ca[];
246 extern struct castr lchr_ca[];
247 extern struct castr nuke_ca[];
248 extern struct castr nchr_ca[];
249 extern struct castr treaty_ca[];
250 extern struct castr loan_ca[];
251 extern struct castr news_ca[];
252 extern struct castr lost_ca[];
253 extern struct castr commodity_ca[];
254 extern struct castr trade_ca[];
255 extern struct castr nat_ca[];
256 extern struct castr cou_ca[];
257 extern struct castr realm_ca[];
258 extern struct castr game_ca[];
259 extern struct castr intrchr_ca[];
260 extern struct castr rpt_ca[];
261 extern struct castr update_ca[];
262 extern struct castr empfile_ca[];
263 extern struct castr symbol_ca[];
264 extern struct symbol ship_chr_flags[];
265 extern struct symbol plane_chr_flags[];
266 extern struct symbol land_chr_flags[];
267 extern struct symbol nuke_chr_flags[];
268 extern struct symbol treaty_flags[];
269 extern struct castr mdchr_ca[];
270 extern struct symbol meta_type[];
271 extern struct symbol meta_flags[];
272 extern struct symbol missions[];
273 extern struct symbol plane_flags[];
274 extern struct symbol retreat_flags[];
275 extern struct symbol nation_status[];
276 extern struct symbol nation_flags[];
277 extern struct symbol nation_rejects[];
278 extern struct symbol nation_relations[];
279 extern struct symbol level[];
280 extern struct symbol agreement_statuses[];
281 extern struct symbol plague_stages[];
282 extern struct symbol packing[];
283 extern struct symbol resources[];
284 extern struct symbol sector_navigation[];
285
286 /* src/lib/common/nstreval.c */
287 extern struct valstr *nstr_mksymval(struct valstr *, struct castr *, int);
288 extern struct valstr *nstr_exec_val(struct valstr *, natid, void *,
289                                     enum nsc_type);
290 extern int nstr_promote(int);
291 extern char *symbol_by_value(int, struct symbol *);
292 /* src/lib/global/nsc.c */
293 extern void nsc_init(void);
294 /* src/lib/subs/nxtitem.c */
295 extern int nxtitem(struct nstr_item *, void *);
296 /* src/lib/subs/nxtsct.c */
297 extern int nxtsct(struct nstr_sect *, struct sctstr *);
298 /* src/lib/subs/snxtitem.c */
299 extern int snxtitem(struct nstr_item *, int, char *, char *);
300 extern void snxtitem_area(struct nstr_item *, int, struct range *);
301 extern void snxtitem_dist(struct nstr_item *, int, int, int, int);
302 extern void snxtitem_xy(struct nstr_item *, int, coord, coord);
303 extern void snxtitem_all(struct nstr_item *, int);
304 extern void snxtitem_group(struct nstr_item *, int, char);
305 extern void snxtitem_rewind(struct nstr_item *);
306 extern int snxtitem_list(struct nstr_item *, int, int *, int);
307 extern void snxtitem_cargo(struct nstr_item *, int, int, int);
308 extern int snxtitem_use_condarg(struct nstr_item *);
309 /* src/lib/subs/snxtsct.c */
310 extern int snxtsct(struct nstr_sect *, char *);
311 extern void snxtsct_area(struct nstr_sect *, struct range *);
312 extern void snxtsct_all(struct nstr_sect *);
313 extern void snxtsct_rewind(struct nstr_sect *);
314 extern void snxtsct_dist(struct nstr_sect *, coord, coord, int);
315 extern int snxtsct_use_condarg(struct nstr_sect *);
316 /* src/lib/subs/nstr.c */
317 extern int nstr_comp(struct nscstr *np, int len, int type, char *str);
318 extern char *nstr_comp_val(char *, struct valstr *, int);
319 extern int nstr_exec(struct nscstr *, int, void *);
320 /* src/lib/update/nxtitemp.c */
321 extern void *nxtitemp(struct nstr_item *);
322
323 #endif