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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program 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
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL$
* $Id$
*
*/
#include "common/stdafx.h"
#include "parallaction/parallaction.h"
namespace Parallaction {
#define CMD_SET 1
#define CMD_CLEAR 2
#define CMD_START 3
#define CMD_SPEAK 4
#define CMD_GET 5
#define CMD_LOCATION 6
#define CMD_OPEN 7
#define CMD_CLOSE 8
#define CMD_ON 9
#define CMD_OFF 10
#define CMD_CALL 11
#define CMD_TOGGLE 12
#define CMD_DROP 13
#define CMD_QUIT 14
#define CMD_MOVE 15
#define CMD_STOP 16
void Parallaction::parseCommands(Script &script, CommandList& list) {
// printf("parseCommands()");
fillBuffers(script, true);
while (scumm_stricmp(_tokens[0], "ENDCOMMANDS") && scumm_stricmp(_tokens[0], "ENDZONE")) {
// printf("token[0] = %s", _tokens[0]);
Command *cmd = new Command;
cmd->_id = _commandsNames->lookup(_tokens[0]);
uint16 _si = 1;
// printf("cmd id = %i", cmd->_id);
switch (cmd->_id) {
case CMD_SET: // set
case CMD_CLEAR: // clear
case CMD_TOGGLE: // toggle
if (_globalTable->lookup(_tokens[1]) == -1) {
do {
char _al = _localFlagNames->lookup(_tokens[_si]);
_si++;
cmd->u._flags |= 1 << (_al - 1);
} while (!scumm_stricmp(_tokens[_si++], "|"));
_si--;
} else {
cmd->u._flags |= kFlagsGlobal;
do {
char _al = _globalTable->lookup(_tokens[1]);
_si++;
cmd->u._flags |= 1 << (_al - 1);
} while (!scumm_stricmp(_tokens[_si++], "|"));
_si--;
}
break;
case CMD_START: // start
case CMD_STOP: // stop
cmd->u._animation = findAnimation(_tokens[_si]);
_si++;
if (cmd->u._animation == NULL) {
strcpy(_forwardedAnimationNames[_numForwards], _tokens[_si-1]);
_forwardedCommands[_numForwards] = cmd;
_numForwards++;
}
break;
case CMD_SPEAK: // speak
case CMD_GET: // get
case CMD_OPEN: // open
case CMD_CLOSE: // close
case CMD_ON: // on
case CMD_OFF: // off
cmd->u._zone = findZone(_tokens[_si]);
_si++;
break;
case CMD_LOCATION: // location
cmd->u._string = (char*)malloc(strlen(_tokens[_si])+1);
strcpy(cmd->u._string, _tokens[_si]);
_si++;
break;
case CMD_CALL: // call
cmd->u._callable = _callableNames->lookup(_tokens[_si]) - 1;
_si++;
break;
case CMD_DROP: // drop
cmd->u._object = _objectsNames->lookup(_tokens[_si]);
_si++;
break;
case CMD_QUIT: // quit
break;
case CMD_MOVE: // move
cmd->u._move._x = atoi(_tokens[_si]);
_si++;
cmd->u._move._y = atoi(_tokens[_si]);
_si++;
break;
}
if (!scumm_stricmp(_tokens[_si], "flags")) {
_si++;
do {
if (!scumm_stricmp(_tokens[_si], "exit") || !scumm_stricmp(_tokens[_si], "exittrap")) {
cmd->_flagsOn |= kFlagsExit;
} else
if (!scumm_stricmp(_tokens[_si], "enter") || !scumm_stricmp(_tokens[_si], "entertrap")) {
cmd->_flagsOn |= kFlagsEnter;
} else
if (!scumm_strnicmp(_tokens[_si], "no", 2)) {
byte _al = _localFlagNames->lookup(&_tokens[_si][2]);
cmd->_flagsOff |= 1 << (_al - 1);
} else {
byte _al = _localFlagNames->lookup(_tokens[_si]);
cmd->_flagsOn |= 1 << (_al - 1);
}
_si++;
} while (!scumm_stricmp(_tokens[_si++], "|"));
}
if (!scumm_stricmp(_tokens[_si], "gflags")) {
_si++;
cmd->_flagsOn |= kFlagsGlobal;
do {
if (!scumm_stricmp(_tokens[_si], "exit")) {
cmd->_flagsOn |= kFlagsExit;
} else
if (!scumm_stricmp(_tokens[_si], "enter")) {
cmd->_flagsOn |= kFlagsEnter;
} else
if (!scumm_strnicmp(_tokens[_si], "no", 2)) {
byte _al = _globalTable->lookup(&_tokens[_si][2]);
cmd->_flagsOff |= 1 << (_al - 1);
} else {
byte _al = _globalTable->lookup(_tokens[_si]);
cmd->_flagsOn |= 1 << (_al - 1);
}
_si++;
} while (!scumm_stricmp(_tokens[_si++], "|"));
}
list.push_front(cmd); // NOTE: command lists are written backwards in scripts
fillBuffers(script, true);
}
}
void Parallaction::runCommands(CommandList& list, Zone *z) {
debugC(1, kDebugLocation, "runCommands");
CommandList::iterator it = list.begin();
for ( ; it != list.end(); it++) {
Command *cmd = *it;
CommandData *u = &cmd->u;
uint32 v8 = _localFlags[_currentLocationIndex];
if (_engineFlags & kEngineQuit)
break;
if (cmd->_flagsOn & kFlagsGlobal) {
v8 = _commandFlags | kFlagsGlobal;
}
if ((cmd->_flagsOn & v8) != cmd->_flagsOn) continue;
if ((cmd->_flagsOff & ~v8) != cmd->_flagsOff) continue;
debugC(1, kDebugLocation, "runCommands: %s (on: %x, off: %x)", _commandsNamesRes[cmd->_id-1], cmd->_flagsOn, cmd->_flagsOff);
switch (cmd->_id) {
case CMD_SET: // set
if (cmd->u._flags & kFlagsGlobal) {
cmd->u._flags &= ~kFlagsGlobal;
_commandFlags |= cmd->u._flags;
} else {
_localFlags[_currentLocationIndex] |= cmd->u._flags;
}
break;
case CMD_CLEAR: // clear
if (cmd->u._flags & kFlagsGlobal) {
cmd->u._flags &= ~kFlagsGlobal;
_commandFlags &= ~cmd->u._flags;
} else {
_localFlags[_currentLocationIndex] &= ~cmd->u._flags;
}
break;
case CMD_TOGGLE: // toggle
if (cmd->u._flags & kFlagsGlobal) {
cmd->u._flags &= ~kFlagsGlobal;
_commandFlags ^= cmd->u._flags;
} else {
_localFlags[_currentLocationIndex] ^= cmd->u._flags;
}
break;
case CMD_START: // start
cmd->u._zone->_flags |= kFlagsActing;
break;
case CMD_STOP: // stop
cmd->u._zone->_flags &= ~kFlagsActing;
break;
case CMD_SPEAK: // speak
_activeZone = u->_zone;
break;
case CMD_GET: // get
u->_zone->_flags &= ~kFlagsFixed;
if (!runZone(u->_zone)) {
runCommands(u->_zone->_commands);
}
break;
case CMD_DROP: // drop
dropItem( u->_object );
break;
case CMD_OPEN: // open
u->_zone->_flags &= ~kFlagsClosed;
if (u->_zone->u.door->_cnv) {
addJob(&jobToggleDoor, (void*)u->_zone, kPriority18 );
}
break;
case CMD_CLOSE: // close
u->_zone->_flags |= kFlagsClosed;
break;
case CMD_ON: // on
// WORKAROUND: the original DOS-based engine didn't check u->_zone before dereferencing
// the pointer to get structure members, thus leading to crashes in systems with memory
// protection.
// As a side note, the overwritten address is the 5th entry in the DOS interrupt table
// (print screen handler): this suggests that a system would hang when the print screen
// key is pressed after playing Nippon Safes, provided that this code path is taken.
if (u->_zone != NULL) {
u->_zone->_flags &= ~kFlagsRemove;
u->_zone->_flags |= kFlagsActive;
if ((u->_zone->_type & 0xFFFF) == kZoneGet) {
addJob(&jobDisplayDroppedItem, u->_zone, kPriority17 );
}
}
break;
case CMD_OFF: // off
u->_zone->_flags |= kFlagsRemove;
break;
case CMD_LOCATION: // location
strcpy(_location._name, u->_string);
_engineFlags |= kEngineChangeLocation;
break;
case CMD_CALL: // call
_callables[u->_callable](z);
break;
case CMD_QUIT: // quit
_engineFlags |= kEngineQuit;
break;
case CMD_MOVE: { // move
if ((_char._ani._flags & kFlagsRemove) || (_char._ani._flags & kFlagsActive) == 0) {
continue;
}
WalkNodeList *vC = _vm->_char._builder.buildPath(u->_move._x, u->_move._y);
addJob(&jobWalk, vC, kPriority19 );
_engineFlags |= kEngineWalking;
}
break;
}
}
debugC(1, kDebugLocation, "runCommands completed");
return;
}
Command::Command() {
_id = 0;
_flagsOn = 0;
_flagsOff = 0;
}
Command::~Command() {
if (_id == CMD_LOCATION) free(u._string);
}
} // namespace Parallaction
|