1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
/* Low-level support for variables and properties in Xconq GDL.
Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996 Stanley T. Shebs.
Xconq is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version. See the file COPYING. */
#include "config.h"
#include "misc.h"
#include "lisp.h"
#include "game.h"
/* The total number of unit/material/terrain types. */
short numutypes;
short nummtypes;
short numttypes;
/* These variables indicate whether new types can still be defined.
Once a table or list of types is manipulated, these are turned off. */
short canaddutype = TRUE;
short canaddmtype = TRUE;
short canaddttype = TRUE;
/* It would be useful for these to mention the slot or table access that
resulted in the error, but we don't want to have to pass a bunch of
parameters to these routines, since they're referenced a lot. */
void
utype_error(u)
int u;
{
run_warning("Bad utype %d", u);
}
void
mtype_error(m)
int m;
{
run_warning("Bad mtype %d", m);
}
void
ttype_error(t)
int t;
{
run_warning("Bad ttype %d", t);
}
/* Declarations of the type definitions themselves. */
Utype *utypes;
Mtype *mtypes;
Ttype *ttypes;
Globals globals;
/* This prepares the type definitions to be filled in, doing initial
allocations, etc. */
int curmaxutypes = MAXUTYPES;
int curmaxmtypes = MAXMTYPES;
int curmaxttypes = MAXTTYPES;
void
init_types()
{
numutypes = nummtypes = numttypes = 0;
Dprintf("Utype is %d bytes, mtype is %d bytes, ttype is %d bytes.\n",
sizeof(Utype), sizeof(Mtype), sizeof(Ttype));
utypes = (Utype *) xmalloc(sizeof(Utype) * curmaxutypes);
mtypes = (Mtype *) xmalloc(sizeof(Mtype) * curmaxmtypes);
ttypes = (Ttype *) xmalloc(sizeof(Ttype) * curmaxttypes);
memset(utypes, 0, sizeof(Utype) * curmaxutypes);
memset(mtypes, 0, sizeof(Mtype) * curmaxmtypes);
memset(ttypes, 0, sizeof(Ttype) * curmaxttypes);
}
VarDefn vardefns[] = {
#undef DEF_VAR_I
#define DEF_VAR_I(NAME,FNAME,SETFNAME,DOC,var,LO,DFLT,HI) \
{ NAME, FNAME, NULL, NULL, SETFNAME, NULL, NULL, DOC, DFLT, NULL, NULL, LO, HI },
#undef DEF_VAR_S
#define DEF_VAR_S(NAME,FNAME,SETFNAME,DOC,var,DFLT) \
{ NAME, NULL, FNAME, NULL, NULL, SETFNAME, NULL, DOC, 0, DFLT, NULL, 0, 0 },
#undef DEF_VAR_L
#define DEF_VAR_L(NAME,FNAME,SETFNAME,DOC,var,DFLT) \
{ NAME, NULL, NULL, FNAME, NULL, NULL, SETFNAME, DOC, 0, NULL, DFLT, 0, 0 },
#include "gvar.def"
{ NULL }
};
/* Define all the global-getting and -setting functions. */
#undef DEF_VAR_I
#define DEF_VAR_I(str,FNAME,SETFNAME,doc,VAR,lo,dflt,hi) \
int FNAME() { return globals.VAR; } \
void SETFNAME(v) int v; { globals.VAR = v; }
#undef DEF_VAR_S
#define DEF_VAR_S(str,FNAME,SETFNAME,doc,VAR,dflt) \
char *FNAME() { return globals.VAR; } \
void SETFNAME(v) char *v; { globals.VAR = v; }
#undef DEF_VAR_L
#define DEF_VAR_L(str,FNAME,SETFNAME,doc,VAR,DFLT) \
Obj *FNAME() { \
void (*fn) PARAMS ((void)) = (DFLT); \
if (fn != NULL && globals.VAR == NULL) (*fn)(); \
return globals.VAR; \
} \
void SETFNAME(v) Obj *v; { globals.VAR = v; }
#include "gvar.def"
/* Set the globals to their default values. */
void
init_globals()
{
#undef DEF_VAR_I
#define DEF_VAR_I(str,fname,SETFNAME,doc,var,lo,DFLT,hi) \
SETFNAME(DFLT);
#undef DEF_VAR_S
#define DEF_VAR_S(str,fname,SETFNAME,doc,var,DFLT) \
SETFNAME(DFLT);
#undef DEF_VAR_L
#define DEF_VAR_L(str,fname,SETFNAME,doc,var,DFLT) \
if ((DFLT) == NULL) SETFNAME(lispnil);
#include "gvar.def"
}
#define TYPEPROP(TYPES, N, DEFNS, I, TYPE) \
((TYPE *) &(((char *) (&(TYPES[N])))[DEFNS[I].offset]))[0]
/* MPW C always loses on multiply-nested array references, so expand them
into pointer-arithmetic equivalents, which seem to work fine. */
#ifdef MPW_C
#undef TYPEPROP
#define TYPEPROP(TYPES, N, DEFNS, I, TYPE) \
((TYPE *) &(((char *) (&(TYPES[N])))[(*((DEFNS)+(I))).offset]))[0]
#endif
/* This sets all the defaults in a unit type definition. Note that all
type structures get blasted with zeros initially, so we really only
need to do default settings of nonzero values, thus the test. (It
helps if the compiler is smart enough to remove dead code.) */
void
default_unit_type(u)
int u;
{
int i;
for (i = 0; utypedefns[i].name != NULL; ++i) {
if (utypedefns[i].intgetter) {
if (utypedefns[i].dflt != 0)
TYPEPROP(utypes, u, utypedefns, i, short) = utypedefns[i].dflt;
} else if (utypedefns[i].strgetter) {
if (utypedefns[i].dfltstr != NULL)
TYPEPROP(utypes, u, utypedefns, i, char *) =
(char *) utypedefns[i].dfltstr;
} else {
TYPEPROP(utypes, u, utypedefns, i, Obj *) = lispnil;
}
}
}
/* This sets all the defaults in a material type definition. */
void
default_material_type(m)
int m;
{
int i;
for (i = 0; mtypedefns[i].name != NULL; ++i) {
if (mtypedefns[i].intgetter) {
if (mtypedefns[i].dflt != 0)
TYPEPROP(mtypes, m, mtypedefns, i, short) = mtypedefns[i].dflt;
} else if (mtypedefns[i].strgetter) {
if (mtypedefns[i].dfltstr != NULL)
TYPEPROP(mtypes, m, mtypedefns, i, char *) = (char *) mtypedefns[i].dfltstr;
} else {
TYPEPROP(mtypes, m, mtypedefns, i, Obj *) = lispnil;
}
}
}
/* This sets all the defaults in a terrain type definition. */
void
default_terrain_type(t)
int t;
{
int i;
for (i = 0; ttypedefns[i].name != NULL; ++i) {
if (ttypedefns[i].intgetter) {
if (ttypedefns[i].dflt != 0)
TYPEPROP(ttypes, t, ttypedefns, i, short) = ttypedefns[i].dflt;
} else if (ttypedefns[i].strgetter) {
if (ttypedefns[i].dfltstr != 0)
TYPEPROP(ttypes, t, ttypedefns, i, char *) = (char *) ttypedefns[i].dfltstr;
} else {
TYPEPROP(ttypes, t, ttypedefns, i, Obj *) = lispnil;
}
}
}
char *
index_type_name(x)
int x;
{
return ((x) == UTYP ? "unit" : ((x) == MTYP ? "material" : "terrain"));
}
/* This function allocates a parameter table and fills it with a default. */
void
allocate_table(tbl, reset)
int tbl, reset;
{
int i, lim1, lim2, dflt = tabledefns[tbl].dflt;
short *rslt;
if (reset) *(tabledefns[tbl].table) = NULL;
if (*tabledefns[tbl].table == NULL) {
lim1 = numtypes_from_index_type(tabledefns[tbl].index1);
lim2 = numtypes_from_index_type(tabledefns[tbl].index2);
if (lim1 == 0) {
run_warning("Can't allocate the %s table, no %s types defined",
tabledefns[tbl].name, index_type_name(tabledefns[tbl].index1));
return;
}
if (lim2 == 0) {
run_warning("Can't allocate the %s table, no %s types defined",
tabledefns[tbl].name, index_type_name(tabledefns[tbl].index2));
return;
}
/* Allocate the table itself. */
rslt = (short *) xmalloc(lim1 * lim2 * sizeof(short));
/* Put the table's default everywhere in the table. */
for (i = 0; i < lim1 * lim2; ++i) rslt[i] = dflt;
*(tabledefns[tbl].table) = rslt;
/* For each index, flag that no more types of that sort allowed. */
switch (tabledefns[tbl].index1) {
case UTYP: canaddutype = FALSE; break;
case MTYP: canaddmtype = FALSE; break;
case TTYP: canaddttype = FALSE; break;
}
switch (tabledefns[tbl].index2) {
case UTYP: canaddutype = FALSE; break;
case MTYP: canaddmtype = FALSE; break;
case TTYP: canaddttype = FALSE; break;
}
}
}
int
numtypes_from_index_type(x)
int x;
{
return ((x) == UTYP ? numutypes : ((x) == MTYP ? nummtypes : numttypes));
}
|