763
764
765
766
767
768
769
770
771
772
773
774
775
776
|
ParseError("Number or string or name expected\n");
}
}
s[n]=0;
strcpy(tokenstr,s);
free(s);
ReturnToken(TF_NAME|TF_ABNORMAL,OP_STRING);
case MAC_VERSION:
nxttok1();
if(tokent!=TF_INT) ParseError("Number expected\n");
if(tokenv<MIN_VERSION || tokenv>MAX_VERSION) ParseError("Version number out of range\n");
nxttok1();
if(tokent!=TF_MACRO+TF_CLOSE) ParseError("Too many macro arguments\n");
goto again;
|
>
>
>
>
>
>
>
>
>
>
>
|
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
|
ParseError("Number or string or name expected\n");
}
}
s[n]=0;
strcpy(tokenstr,s);
free(s);
ReturnToken(TF_NAME|TF_ABNORMAL,OP_STRING);
case MAC_BIT:
n=0;
for(;;) {
nxttok();
if(tokent==TF_MACRO+TF_CLOSE) break;
if(tokent!=TF_INT) ParseError("Number expected\n");
n|=1<<tokenv;
}
tokent=TF_INT;
tokenv=n;
break;
case MAC_VERSION:
nxttok1();
if(tokent!=TF_INT) ParseError("Number expected\n");
if(tokenv<MIN_VERSION || tokenv>MAX_VERSION) ParseError("Version number out of range\n");
nxttok1();
if(tokent!=TF_MACRO+TF_CLOSE) ParseError("Too many macro arguments\n");
goto again;
|
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
|
if(!(i&16)) printf(" [%04X]",i);
printf(" %04X",cl->codes[i]);
}
putchar('\n');
}
printf("---\n\n");
}
static void class_definition(int cla) {
Hash*hash=calloc(LOCAL_HASH_SIZE,sizeof(Hash));
Class*cl=classes[cla];
int ptr=0;
int compat=0;
int i;
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
|
if(!(i&16)) printf(" [%04X]",i);
printf(" %04X",cl->codes[i]);
}
putchar('\n');
}
printf("---\n\n");
}
static inline Uint32 class_def_number(void) {
Uint32 n;
nxttok();
if(!Tokenf(TF_INT)) fatal("Number expected\n");
n=tokenv;
nxttok();
if(tokent!=TF_CLOSE) fatal("Close parentheses expected\n");
return n;
}
static Uint32 class_def_misc(void) {
Uint32 n=0;
for(;;) {
nxttok();
if(tokent==TF_CLOSE) return n;
if(Tokenf(TF_INT)) {
n|=tokenv;
} else if(Tokenf(TF_NAME) && !(tokenv&~255)) {
n|=tokenv;
} else if(Tokenf(TF_NAME) && tokenv>=OP_BITCONSTANT && tokenv<=OP_BITCONSTANT_LAST) {
n|=1L<<(tokenv&31);
} else {
fatal("Number expected");
}
}
}
static Uint32 class_def_arrivals(void) {
Uint32 n=0;
int i;
nxttok();
if(Tokenf(TF_NAME) && tokenv==OP_INPLACE) {
nxttok();
if(tokent!=TF_CLOSE) ParseError("Close parentheses expected\n");
return 1<<12;
}
for(i=0;i<25;i++) {
nxttok();
if(!Tokenf(TF_INT) || (tokenv&~1)) ParseError("Expected 0 or 1\n");
if(tokenv) n|=1<<(i+4-2*(i%5));
}
nxttok();
if(tokent!=TF_CLOSE) ParseError("Close parentheses expected\n");
return n;
}
static void class_def_hard(Uint16*data) {
int i;
for(;;) {
nxttok();
if(tokent==TF_CLOSE) {
return;
} else if(tokent==TF_OPEN) {
nxttok();
if(!Tokenf(TF_DIR) || tokenv>7 || (tokenv&1)) ParseError("Expected even absolute direction\n");
i=tokenv>>1;
nxttok();
if(tokent!=TF_INT || (tokenv&~0xFFFF)) ParseError("Sixteen-bit number expected\n");
data[i]=tokenv;
nxttok();
if(tokent!=TF_CLOSE) ParseError("Close parentheses expected\n");
} else if(tokent==TF_INT) {
if(tokenv&~0xFFFF) ParseError("Hardness/sharpness must be a 16-bit number\n");
data[0]=data[1]=data[2]=data[3]=tokenv;
} else {
ParseError("Expected ( or ) or number\n");
}
}
}
static inline Uint8 class_def_shovable(void) {
}
static inline Uint8 class_def_shape(void) {
}
static void class_definition(int cla) {
Hash*hash=calloc(LOCAL_HASH_SIZE,sizeof(Hash));
Class*cl=classes[cla];
int ptr=0;
int compat=0;
int i;
|
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
|
begin_label_stack();
for(;;) {
nxttok();
if(Tokenf(TF_EOF)) {
ParseError("Unexpected end of file\n");
} else if(Tokenf(TF_MACRO)) {
ParseError("Unexpected macro token\n");
} else if(Tokenf(TF_CLOSE)) {
break;
} else if(Tokenf(TF_OPEN)) {
nxttok();
} else if(Tokenf(TF_NAME)) {
switch(tokenv) {
case OP_PLAYER: cl->cflags|=CF_PLAYER; break;
case OP_INPUT: cl->cflags|=CF_INPUT; break;
case OP_COMPATIBLE: cl->cflags|=CF_COMPATIBLE; compat=1; break;
case OP_COMPATIBLE_C: cl->cflags|=CF_COMPATIBLE; break;
case OP_QUIZ: cl->cflags|=CF_QUIZ; break;
case OP_INVISIBLE: cl->oflags|=OF_INVISIBLE; break;
case OP_VISUALONLY: cl->oflags|=OF_VISUALONLY; break;
case OP_STEALTHY: cl->oflags|=OF_STEALTHY; break;
case OP_USERSTATE: cl->oflags|=OF_USERSTATE; break;
case OP_SHOVABLE: cl->shovable=0x55; break;
default: ParseError("Invalid directly inside of a class definition\n");
}
} else {
ParseError("Invalid directly inside of a class definition\n");
}
}
end_label_stack(classes[0]->codes,hash);
if(main_options['C']) dump_class(cla,ptr,hash);
if(main_options['H']) {
for(i=0;i<LOCAL_HASH_SIZE;i++) if(hash[i].id) printf(" \"%s\": %04X\n",hash[i].txt,hash[i].id);
}
for(i=0;i<LOCAL_HASH_SIZE;i++) free(hash[i].txt);
free(hash);
}
void load_classes(void) {
int i;
int gloptr=0;
Hash*glolocalhash;
char*nam=sqlite3_mprintf("%s.class",basefilename);
if(!nam) fatal("Allocation failed\n");
classfp=fopen(nam,"r");
sqlite3_free(nam);
if(!classfp) fatal("Cannot open class file '%s': %m\n",nam);
glohash=calloc(HASH_SIZE,sizeof(Hash));
if(!glohash) fatal("Allocation failed\n");
glolocalhash=calloc(LOCAL_HASH_SIZE,sizeof(Hash));
if(!glolocalhash) fatal("Allocation failed\n");
strcpy(tokenstr,"+"); glohash[look_hash_mac()].id=MAC_ADD;
strcpy(tokenstr,"-"); glohash[look_hash_mac()].id=MAC_SUB;
strcpy(tokenstr,"*"); glohash[look_hash_mac()].id=MAC_MUL;
strcpy(tokenstr,"/"); glohash[look_hash_mac()].id=MAC_DIV;
strcpy(tokenstr,"mod"); glohash[look_hash_mac()].id=MAC_MOD;
strcpy(tokenstr,"band"); glohash[look_hash_mac()].id=MAC_BAND;
strcpy(tokenstr,"bor"); glohash[look_hash_mac()].id=MAC_BOR;
strcpy(tokenstr,"bxor"); glohash[look_hash_mac()].id=MAC_BXOR;
strcpy(tokenstr,"bnot"); glohash[look_hash_mac()].id=MAC_BNOT;
strcpy(tokenstr,"cat"); glohash[look_hash_mac()].id=MAC_CAT;
strcpy(tokenstr,"version"); glohash[look_hash_mac()].id=MAC_VERSION;
strcpy(tokenstr,"define"); glohash[look_hash_mac()].id=MAC_DEFINE;
strcpy(tokenstr,"include"); glohash[look_hash_mac()].id=MAC_INCLUDE;
strcpy(tokenstr,"call"); glohash[look_hash_mac()].id=MAC_CALL;
if(main_options['L']) {
for(;;) {
nxttok();
|
|
>
>
>
>
>
|
>
|
>
>
|
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
|
begin_label_stack();
for(;;) {
nxttok();
if(Tokenf(TF_EOF)) {
ParseError("Unexpected end of file\n");
} else if(Tokenf(TF_MACRO)) {
ParseError("Unexpected macro token\n");
} else if(Tokenf(TF_OPEN)) {
nxttok();
if(Tokenf(TF_NAME)) {
switch(tokenv) {
case OP_IMAGE:
break;
case OP_DEFAULTIMAGE:
break;
case OP_HELP:
break;
case OP_EDITORHELP:
break;
case OP_HEIGHT:
cl->height=class_def_number();
break;
case OP_WEIGHT:
cl->weight=class_def_number();
break;
case OP_CLIMB:
cl->climb=class_def_number();
break;
case OP_DENSITY:
cl->density=class_def_number();
break;
case OP_VOLUME:
cl->volume=class_def_number();
break;
case OP_STRENGTH:
cl->strength=class_def_number();
break;
case OP_TEMPERATURE:
cl->temperature=class_def_number();
break;
case OP_MISC4:
cl->misc4=class_def_misc();
break;
case OP_MISC5:
cl->misc5=class_def_misc();
break;
case OP_MISC6:
cl->misc6=class_def_misc();
break;
case OP_MISC7:
cl->misc7=class_def_misc();
break;
case OP_ARRIVALS:
cl->arrivals=class_def_arrivals();
break;
case OP_DEPARTURES:
cl->departures=class_def_arrivals();
break;
case OP_HARD:
class_def_hard(cl->hard);
break;
case OP_SHARP:
class_def_hard(cl->sharp);
break;
case OP_SHAPE:
cl->shape=class_def_shape();
break;
case OP_SHOVABLE:
cl->shovable=class_def_shovable();
break;
case OP_SUBS:
ptr=parse_instructions(cla,ptr,hash,compat);
break;
case OP_LABEL:
pushback=1;
ptr=parse_instructions(cla,ptr,hash,compat);
break;
case 0x0200 ... 0x02FF:
set_message_ptr(cla,tokenv&255,ptr);
ptr=parse_instructions(cla,ptr,hash,compat);
break;
case 0xC000 ... 0xFFFF:
set_message_ptr(cla,tokenv+256-0xC000,ptr);
ptr=parse_instructions(cla,ptr,hash,compat);
break;
default: ParseError("Invalid directly inside of a class definition\n");
}
} else {
ParseError("Invalid directly inside of a class definition\n");
}
} else if(Tokenf(TF_NAME)) {
switch(tokenv) {
case OP_PLAYER: cl->cflags|=CF_PLAYER; break;
case OP_INPUT: cl->cflags|=CF_INPUT; break;
case OP_COMPATIBLE: cl->cflags|=CF_COMPATIBLE; compat=1; break;
case OP_COMPATIBLE_C: cl->cflags|=CF_COMPATIBLE; break;
case OP_QUIZ: cl->cflags|=CF_QUIZ; break;
case OP_INVISIBLE: cl->oflags|=OF_INVISIBLE; break;
case OP_VISUALONLY: cl->oflags|=OF_VISUALONLY; break;
case OP_STEALTHY: cl->oflags|=OF_STEALTHY; break;
case OP_USERSTATE: cl->oflags|=OF_USERSTATE; break;
case OP_SHOVABLE: cl->shovable=0x55; break;
default: ParseError("Invalid directly inside of a class definition\n");
}
} else if(Tokenf(TF_CLOSE)) {
break;
} else {
ParseError("Invalid directly inside of a class definition\n");
}
}
end_label_stack(classes[0]->codes,hash);
if(!cl->nimages) cl->oflags|=OF_INVISIBLE;
if(main_options['C']) dump_class(cla,ptr,hash);
if(main_options['H']) {
for(i=0;i<LOCAL_HASH_SIZE;i++) if(hash[i].id) printf(" \"%s\": %04X\n",hash[i].txt,hash[i].id);
}
for(i=0;i<LOCAL_HASH_SIZE;i++) free(hash[i].txt);
free(hash);
}
static void load_class_numbers(void) {
int i,n;
long size=0;
unsigned char*data=read_lump(FIL_LEVEL,LUMP_CLASS_DEF,&size,0);
unsigned char*p;
if(!data) return;
for(i=0;i<size-3;) {
n=data[i]|(data[i+1]<<8);
if(!n) break;
if(n>=0x4000) fatal("Malformed CLASS.DEF lump\n");
i+=2;
p=data+i;
while(i<size && data[i++]);
if(i==size && data[i-1]) fatal("Malformed CLASS.DEF lump\n");
initialize_class(n,CF_NOCLASS2,p);
}
i+=2;
for(;i<size-3;) {
n=data[i]|(data[i+1]<<8);
if(n<256 || n>=0x4100) fatal("Malformed CLASS.DEF lump\n");
n-=256;
i+=2;
p=data+i;
while(i<size && data[i++]);
if(i==size && data[i-1]) fatal("Malformed CLASS.DEF lump\n");
if(messages[n]) fatal("Duplicate message number %d\n",n+256);
messages[n]=strdup(p);
if(!messages[n]) fatal("Allocation failed\n");
}
free(data);
}
void load_classes(void) {
int i;
int gloptr=0;
Hash*glolocalhash;
char*nam=sqlite3_mprintf("%s.class",basefilename);
fprintf(stderr,"Loading class definitions...\n");
if(!nam) fatal("Allocation failed\n");
classfp=fopen(nam,"r");
sqlite3_free(nam);
if(!classfp) fatal("Cannot open class file '%s': %m\n",nam);
glohash=calloc(HASH_SIZE,sizeof(Hash));
if(!glohash) fatal("Allocation failed\n");
glolocalhash=calloc(LOCAL_HASH_SIZE,sizeof(Hash));
if(!glolocalhash) fatal("Allocation failed\n");
strcpy(tokenstr,"+"); glohash[look_hash_mac()].id=MAC_ADD;
strcpy(tokenstr,"-"); glohash[look_hash_mac()].id=MAC_SUB;
strcpy(tokenstr,"*"); glohash[look_hash_mac()].id=MAC_MUL;
strcpy(tokenstr,"/"); glohash[look_hash_mac()].id=MAC_DIV;
strcpy(tokenstr,"mod"); glohash[look_hash_mac()].id=MAC_MOD;
strcpy(tokenstr,"band"); glohash[look_hash_mac()].id=MAC_BAND;
strcpy(tokenstr,"bor"); glohash[look_hash_mac()].id=MAC_BOR;
strcpy(tokenstr,"bxor"); glohash[look_hash_mac()].id=MAC_BXOR;
strcpy(tokenstr,"bnot"); glohash[look_hash_mac()].id=MAC_BNOT;
strcpy(tokenstr,"cat"); glohash[look_hash_mac()].id=MAC_CAT;
strcpy(tokenstr,"bit"); glohash[look_hash_mac()].id=MAC_BIT;
strcpy(tokenstr,"version"); glohash[look_hash_mac()].id=MAC_VERSION;
strcpy(tokenstr,"define"); glohash[look_hash_mac()].id=MAC_DEFINE;
strcpy(tokenstr,"include"); glohash[look_hash_mac()].id=MAC_INCLUDE;
strcpy(tokenstr,"call"); glohash[look_hash_mac()].id=MAC_CALL;
if(main_options['L']) {
for(;;) {
nxttok();
|