aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/livingbooks_code.cpp
blob: a11ac1cfe93e7ec76aa7727b277bb72b4ad59372 (plain)
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
/* 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 "mohawk/livingbooks.h"
#include "mohawk/resource.h"

namespace Mohawk {

LBCode::LBCode(MohawkEngine_LivingBooks *vm) : _vm(vm) {
	Common::SeekableSubReadStreamEndian *bcodStream = _vm->wrapStreamEndian(ID_BCOD, 1000);
	uint32 totalSize = bcodStream->readUint32();
	if (totalSize != (uint32)bcodStream->size())
		error("BCOD had size %d, but claimed to be of size %d", bcodStream->size(), totalSize);
	size = bcodStream->readUint32();
	if (size + 8 > totalSize)
		error("BCOD code was of size %d, beyond size %d", size, totalSize);
	data = new byte[size];
	bcodStream->read(data, size);
	uint16 pos = 0;
	while (bcodStream->pos() < bcodStream->size()) {
		uint16 unknown = bcodStream->readUint16();
		if (unknown != 0) {
			warning("unknown was %04x, not zero, while reading strings", unknown);
			if (bcodStream->pos() != bcodStream->size())
				error(".. and there was more data afterwards");
			break;
		}
		Common::String string = _vm->readString(bcodStream);
		strings[pos] = string;
		debug(2, "read '%s' from BCOD at 0x%04x", string.c_str(), pos);
		pos += 2 + string.size() + 1;
	}
}

LBCode::~LBCode() {
	delete[] data;
}

Common::Array<LBValue> LBCode::readParams(LBItem *src, uint32 &offset) {
	Common::Array<LBValue> params;

	if (offset + 1 >= size)
		error("went off the end of code");

	byte numParams = data[offset];
	offset++;

	if (!numParams) {
		debugN("()\n");
		return params;
	}

	byte nextToken = data[offset];
	offset++;
	if (nextToken != kLBCodeTokenOpenBracket)
		error("missing ( before code parameter list (got %02x)", nextToken);
	debugN("(");

	for (uint i = 0; i < numParams; i++) {
		if (i != 0) {
			nextToken = data[offset];
			offset++;
			if (nextToken != ',')
				error("missing , between code parameters (got %02x)", nextToken);
			debugN(", ");
		}

		nextToken = data[offset];
		offset++;

		LBValue nextValue;

		switch (nextToken) {
		case kLBCodeTokenLiteral:
			{
			byte literalType = data[offset];
			offset++;
			if (literalType == kLBCodeLiteralInteger) {
				uint16 intValue = READ_BE_UINT16(data + offset);
				offset += 2;
				nextValue.type = kLBValueInteger;
				nextValue.integer = intValue;
				debugN("%d", nextValue.integer);
			} else
				error("unknown literal type %02x in code", literalType);
			}
			break;

		case kLBCodeTokenString:
			{
			uint16 stringOffset = READ_BE_UINT16(data + offset);
			offset += 2;
			// TODO: check string exists
			nextValue.type = kLBValueString;
			nextValue.string = strings[stringOffset];
			debugN("\"%s\"", nextValue.string.c_str());
			}
			break;

		case kLBCodeTokenChar:
			{
			uint16 stringOffset = READ_BE_UINT16(data + offset);
			offset += 2;
			// TODO: check string exists
			nextValue.type = kLBValueString;
			nextValue.string = strings[stringOffset];
			debugN("'%s'", nextValue.string.c_str());
			}
			break;

		case kLBCodeTokenLong: // FIXME: wrong?
			{
			uint32 intValue = READ_BE_UINT32(data + offset);
			offset += 4;
			nextValue.type = kLBValueInteger;
			nextValue.integer = intValue;
			debugN("%d", nextValue.integer);
			}
			break;

		case 0x31:
			{
			// TODO
			uint16 intValue = READ_BE_UINT16(data + offset);
			offset += 2;
			nextValue.type = kLBValueInteger;
			nextValue.integer = intValue;
			debugN("%d", nextValue.integer);
			}
			break;

		case 0x4d:
			// TODO
			runCodeCommand(src, offset);
			break;

		case 0x5f:
			// keycode
			nextValue.type = kLBValueInteger;
			nextValue.integer = data[offset];
			debugN("%d", nextValue.integer);
			offset++;
			offset++; // TODO
			break;

		default:
			error("unknown token %02x in code parameter", nextToken);
		}

		params.push_back(nextValue);
	}

	nextToken = data[offset];
	offset++;
	if (nextToken != kLBCodeTokenCloseBracket)
		error("missing ) after code parameter list (got %02x)", nextToken);
	debugN(")");

	return params;
}

void LBCode::runCodeCommand(LBItem *src, uint32 &offset) {
	if (offset + 1 >= size)
		error("went off the end of code");

	byte commandType = data[offset];
	offset++;

	switch (commandType) {
	case 0x23:
		{
		debugN("setViewOrigin");
		Common::Array<LBValue> params = readParams(src, offset);
		// TODO
		}
		break;

	case 0x36:
		{
		debugN("setWorld");
		Common::Array<LBValue> params = readParams(src, offset);
		// TODO
		}
		break;

	case 0x42:
		{
		debugN("setPlayParams");
		Common::Array<LBValue> params = readParams(src, offset);
		if (params.size() > 8)
			error("too many parameters (%d) to setPlayParams", params.size());
		if (!params.size())
			error("no target for setPlayParams");
		LBItem *target;
		if (params[0].string.equalsIgnoreCase("self")) {
			target = src;
		} else {
			error("didn't understand target '%s'", params[0].string.c_str());
		}
		// TODO: type-checking
		switch (params.size()) {
		case 8:
			target->_soundMode = params[7].integer;
		case 7:
			target->_controlMode = params[6].integer;
		case 6:
			// TODO: _relocPoint?
		case 5:
			// TODO: _periodMin/Max
		case 4:
			target->_timingMode = params[3].integer;
		case 3:
			// TODO: _delayMin/Max
		case 2:
			target->_loopMode = params[1].integer;
		}
		}
		break;

	case 0x50:
		{
		debugN("setKeyEvent");
		Common::Array<LBValue> params = readParams(src, offset);
		if (params.size() != 2)
			error("incorrect number of parameters (%d) to setKeyEvent", params.size());
		// FIXME: params[0] is key, params[1] is opcode id
		}
		break;

	case 0x51:
		{
		debugN("setHitTest");
		Common::Array<LBValue> params = readParams(src, offset);
		if (params.size() > 2)
			error("incorrect number of parameters (%d) to setHitTest", params.size());
		// TODO
		}
		break;

	case 0x52:
		{
		debugN("key");
		Common::Array<LBValue> params = readParams(src, offset);
		// TODO
		}
		break;

	case 0x5E:
		{
		debugN("setPageFade");
		Common::Array<LBValue> params = readParams(src, offset);
		// TODO
		}
		break;

	default:
		error("unknown command %02x in code", commandType);
	}
}

void LBCode::runCodeItemCommand(LBItem *src, uint32 &offset) {
	if (offset + 1 >= size)
		error("went off the end of code");

	byte commandType = data[offset];
	offset++;

	switch (commandType) {
	case 0x1d:
		{
		debugN("setParent");
		Common::Array<LBValue> params = readParams(src, offset);
		if (params.size() > 2)
			error("incorrect number of parameters (%d) to setParent", params.size());
		// TODO
		}
		break;

	default:
		error("unknown item command %02x in code", commandType);
	}
}

void LBCode::runCodeNotifyCommand(LBItem *src, uint32 &offset) {
	if (offset + 1 >= size)
		error("went off the end of code");

	byte commandType = data[offset];
	offset++;

	switch (commandType) {
	case kLBNotifyChangePage:
		{
		debugN("goto");
		Common::Array<LBValue> params = readParams(src, offset);
		// TODO: type-checking
		switch (params.size()) {
		case 1:
			_vm->addNotifyEvent(NotifyEvent(kLBNotifyChangePage, params[0].integer));
			break;

		case 2:
			// FIXME
		case 4:
			// FIXME

		default:
			error("incorrect number of parameters (%d) to goto", params.size());
		}
		}
		break;

	case kLBNotifyGoToControls:
	case kLBNotifyGotoQuit:
		{
		debugN(commandType == kLBNotifyGoToControls ? "gotocontrol" : "gotoquit");
		Common::Array<LBValue> params = readParams(src, offset);
		if (params.size() != 0)
			error("incorrect number of parameters (%d) to notify", params.size());
		_vm->addNotifyEvent(NotifyEvent(commandType, 0));
		}
		break;

	case kLBNotifyIntroDone:
		{
		debugN("startphasemain");
		Common::Array<LBValue> params = readParams(src, offset);
		if (params.size() != 0)
			error("incorrect number of parameters (%d) to startphasemain", params.size());
		_vm->addNotifyEvent(NotifyEvent(kLBNotifyIntroDone, 1));
		}
		break;

	default:
		error("unknown notify command %02x in code", commandType);
	}
}

void LBCode::runCode(LBItem *src, uint32 offset) {
	while (true) {
		if (offset + 1 >= size) {
			warning("went off the end of code");
			return;
		}

		byte tokenType = data[offset];
		offset++;

		switch (tokenType) {
		case 0x01: // FIXME
		case kLBCodeTokenEndOfFile:
			return;

		case 0x4D:
			runCodeCommand(src, offset);
			break;

		case 0x4E:
			runCodeItemCommand(src, offset);
			break;

		case 0x4F:
			runCodeNotifyCommand(src, offset);
			break;

		default:
			debugN("at %04x: %02x ", offset - 1, tokenType);
			for (uint i = 0; i < size; i++)
				debugN("%02x ", data[offset++]);
			debugN("\n");
			error("unknown token %02x in code", tokenType);
		}

		byte nextToken = data[offset];
		offset++;
		if (nextToken != kLBCodeTokenEndOfStatement)
			warning("missing EndOfStatement after code statement (got %04x)", nextToken);
		if (nextToken == kLBCodeTokenEndOfFile)
			return;

		debugN("\n");
	}
}

} // End of namespace Mohawk