aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/script.h
blob: 5c689bd99157d1941cd5550f82f51c2ca6571bec (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
/* 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$
 *
 */

#ifndef GOB_SCRIPT_H
#define GOB_SCRIPT_H

#include "common/str.h"
#include "common/stack.h"

namespace Gob {

class GobEngine;

class Script {
public:
	Script(GobEngine *vm);
	~Script();

	uint32 read(byte *data, uint32 size);
	uint32 peek(byte *data, uint32 size, int32 offset = 0);

	byte   readByte();
	char   readChar();
	uint8  readUint8();
	uint16 readUint16();
	uint32 readUint32();
	int8   readInt8();
	int16  readInt16();
	int32  readInt32();

	char *readString(int32 length = -1);

	byte   peekByte(int32 offset = 0);
	char   peekChar(int32 offset = 0);
	uint8  peekUint8(int32 offset = 0);
	uint16 peekUint16(int32 offset = 0);
	uint32 peekUint32(int32 offset = 0);
	int8   peekInt8(int32 offset = 0);
	int16  peekInt16(int32 offset = 0);
	int32  peekInt32(int32 offset = 0);

	char *peekString(int32 offset = 0);

	int16 readVarIndex(uint16 *size = 0, uint16 *type = 0);
	int16 readValExpr(byte stopToken = 99);
	int16 readExpr(byte stopToken, byte *type);
	void skipExpr(char stopToken);

	int32 getResultInt();
	char *getResultStr();

	int32 pos() const;
	int32 getSize() const;
	bool seek(int32 offset, int whence = SEEK_SET);
	bool skip(uint32 offset);

	uint32 getOffset(byte *ptr);
	byte *getData();

	bool load(const char *fileName);

	void unload();

	bool isLoaded() const;

	void setFinished(bool finished);
	bool isFinished() const;

	void cuckoo(byte *totData, uint32 totSize);

	void push();
	void pop(bool ret = true);
	void call(uint32 offset);

/*	byte *loadExtData(int16 dataId, int16 *pResWidth, int16 *pResHeight, uint32 *dataSize = 0);
	byte *loadTotResource(int16 id, int16 *dataSize = 0, int16 *width = 0, int16 *height = 0);

	byte *loadLocTexts(int32 *dataSize = 0);
	int32 loadTotFile(const char *path);
	void loadExtTable(void);
	void loadImFile(void);

	int16 openLocTextFile(char *locTextFile, int language);*/

private:
	struct CallEntry {
		byte *totData;
		byte *totPtr;
		uint32 totSize;
		bool finished;
	};

	GobEngine *_vm;
	Parse *_parser;

	bool _finished;

	Common::String _totFile;

	byte *_totData;

	uint32 _totSize;

	byte *_totPtr;

	int16 _lomHandle;

	Common::Stack<CallEntry> _callStack;

	bool loadTOT(const Common::String &fileName);
	bool loadLOM(const Common::String &fileName);

	void unloadTOT();
};

} // End of namespace Gob

#endif // GOB_SCRIPT_H