ScummVM API documentation
livingbooks_code.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef MOHAWK_LIVINGBOOKS_CODE_H
23 #define MOHAWK_LIVINGBOOKS_CODE_H
24 
25 #include "common/ptr.h"
26 #include "common/rect.h"
27 #include "common/stack.h"
28 #include "common/substream.h"
29 
30 namespace Mohawk {
31 
32 class MohawkEngine_LivingBooks;
33 class LBItem;
34 class LBXObject;
35 struct LBList;
36 
37 enum LBValueType {
38  kLBValueString,
39  kLBValueInteger,
40  kLBValueReal,
41  kLBValuePoint,
42  kLBValueRect,
43  kLBValueItemPtr,
44  kLBValueLBX,
45  kLBValueList
46 };
47 
48 struct LBValue {
49  LBValue() {
50  type = kLBValueInteger;
51  integer = 0;
52  }
53  LBValue(int val) {
54  type = kLBValueInteger;
55  integer = val;
56  }
57  LBValue(const Common::String &str) {
58  type = kLBValueString;
59  string = str;
60  }
61  LBValue(const Common::Point &p) {
62  type = kLBValuePoint;
63  point = p;
64  }
65  LBValue(const Common::Rect &r) {
66  type = kLBValueRect;
67  rect = r;
68  }
69  LBValue(LBItem *itm) {
70  type = kLBValueItemPtr;
71  item = itm;
72  }
74  type = kLBValueLBX;
75  lbx = l;
76  }
78  type = kLBValueList;
79  list = l;
80  }
81  LBValue(const LBValue &val) {
82  copy(val);
83  }
84 
85  void copy(const LBValue &val) {
86  type = val.type;
87  switch (type) {
88  case kLBValueString:
89  string = val.string;
90  break;
91  case kLBValueInteger:
92  integer = val.integer;
93  break;
94  case kLBValueReal:
95  real = val.real;
96  break;
97  case kLBValuePoint:
98  point = val.point;
99  break;
100  case kLBValueRect:
101  rect = val.rect;
102  break;
103  case kLBValueItemPtr:
104  item = val.item;
105  break;
106  case kLBValueLBX:
107  lbx = val.lbx;
108  break;
109  case kLBValueList:
110  list = val.list;
111  break;
112  default:
113  break;
114  }
115  }
116 
117  LBValue &operator=(const LBValue &other);
118 
119  LBValueType type;
120  Common::String string;
121  int integer;
122  double real;
123  Common::Point point;
124  Common::Rect rect;
125  LBItem *item;
128 
129  bool operator==(const LBValue &x) const;
130  bool operator!=(const LBValue &x) const;
131 
132  bool isNumeric() const;
133  bool isZero() const;
134 
135  Common::String toString() const;
136  int toInt() const;
137  double toDouble() const;
138  Common::Point toPoint() const;
139  Common::Rect toRect() const;
140 };
141 
142 struct LBList {
144 };
145 
146 enum {
147  kLBCodeLiteralInteger = 0x1,
148  kLBCodeLiteralIntegerLE = 0x11
149 };
150 
151 enum {
152  kTokenIdentifier = 0x1,
153  kTokenLiteral = 0x5,
154  kTokenString = 0x6,
155  kTokenEndOfStatement = 0x7,
156  kTokenEndOfFile = 0x8,
157  kTokenConcat = 0xb,
158  kTokenSingleQuote = 0xc, // ??
159  kTokenDoubleQuote = 0xd, // ??
160  kTokenMultiply = 0xe,
161  kTokenOpenBracket = 0xf,
162  kTokenCloseBracket = 0x10,
163  kTokenMinus = 0x11,
164  kTokenMinusMinus = 0x12,
165  kTokenPlusEquals = 0x13,
166  kTokenPlus = 0x14,
167  kTokenPlusPlus = 0x15,
168  kTokenEquals = 0x16,
169  kTokenMinusEquals = 0x17,
170  kTokenMultiplyEquals = 0x18,
171  kTokenDivideEquals = 0x19,
172  kTokenListStart = 0x1a,
173  kTokenListEnd = 0x1b,
174  kTokenColon = 0x1c, // ??
175  kTokenLessThan = 0x1d,
176  kTokenGreaterThan = 0x1e,
177  kTokenAndEquals = 0x1f,
178  kTokenDotOperator = 0x20,
179  kTokenDivide = 0x21,
180  kTokenAssign = 0x22,
181  kTokenLessThanEq = 0x23,
182  kTokenGreaterThanEq = 0x24,
183  kTokenNotEq = 0x25,
184  kTokenQuote = 0x27, // ??
185  kTokenAnd = 0x2a,
186  kTokenComma = 0x2c,
187  kTokenConstMode = 0x31,
188  kTokenIntDivide = 0x32,
189  kTokenModulo = 0x34,
190  kTokenNot = 0x35,
191  kTokenOr = 0x37,
192  kTokenTrue = 0x39,
193  kTokenFalse = 0x3a,
194  kTokenConstDataType = 0x3b, // ??
195  kTokenConstItemType = 0x3c, // ??
196  kTokenConstEventId = 0x42,
197  kTokenConstScriptOpcode = 0x43, // ??
198  kTokenConstScriptParam = 0x44, // ??
199  kTokenEval = 0x4b,
200  kTokenGeneralCommand = 0x4d,
201  kTokenItemCommand = 0x4e,
202  kTokenNotifyCommand = 0x4f,
203  // 0x5e?!
204  kTokenKeycode = 0x5f,
205 
206  // v5 only:
207  kTokenLocal = 0x61,
208  kTokenPropListCommand = 0x70,
209  kTokenRectCommand = 0x71
210 };
211 
212 class LBCode {
213 public:
214  LBCode(MohawkEngine_LivingBooks *vm, uint16 baseId);
215  ~LBCode();
216 
217  LBValue runCode(LBItem *src, uint32 offset);
218  uint parseCode(const Common::String &source);
219 
220 protected:
222 
223  uint32 _size;
224  byte *_data;
226 
227  uint32 _currOffset;
228  LBItem *_currSource;
229 
230  Common::Stack<LBValue> _stack;
231  byte _currToken;
232  LBValue _currValue;
233 
234  void nextToken();
235 
236  LBValue runCode(byte terminator);
237  void parseStatement();
238  void parseComparisons();
239  void parseConcat();
240  void parseArithmetic1();
241  void parseArithmetic2();
242  void parseMain();
243 
244  LBValue *getIndexedVar(Common::String varname, const Common::Array<LBValue> &index);
245  LBItem *resolveItem(const LBValue &value);
246  Common::Array<LBValue> readParams();
247  Common::Rect getRectFromParams(const Common::Array<LBValue> &params);
248 
249  void runGeneralCommand();
250  void runItemCommand();
251  void runNotifyCommand();
252 
253  uint nextFreeString();
254  bool parseCodeSymbol(Common::String name, uint &pos, Common::Array<byte> &code, bool useAllAliases);
255 
256 public:
257  void cmdUnimplemented(const Common::Array<LBValue> &params);
258  void cmdEval(const Common::Array<LBValue> &params);
259  void cmdRandom(const Common::Array<LBValue> &params);
260  void cmdStringLen(const Common::Array<LBValue> &params);
261  void cmdSubstring(const Common::Array<LBValue> &params);
262  void cmdMax(const Common::Array<LBValue> &params);
263  void cmdMin(const Common::Array<LBValue> &params);
264  void cmdAbs(const Common::Array<LBValue> &params);
265  void cmdGetRect(const Common::Array<LBValue> &params);
266  void cmdMakePoint(const Common::Array<LBValue> &params);
267  void cmdTopLeft(const Common::Array<LBValue> &params);
268  void cmdBottomRight(const Common::Array<LBValue> &params);
269  void cmdMousePos(const Common::Array<LBValue> &params);
270  void cmdTop(const Common::Array<LBValue> &params);
271  void cmdLeft(const Common::Array<LBValue> &params);
272  void cmdBottom(const Common::Array<LBValue> &params);
273  void cmdRight(const Common::Array<LBValue> &params);
274  void cmdXPos(const Common::Array<LBValue> &params);
275  void cmdYPos(const Common::Array<LBValue> &params);
276  void cmdWidth(const Common::Array<LBValue> &params);
277  void cmdHeight(const Common::Array<LBValue> &params);
278  void cmdMove(const Common::Array<LBValue> &params);
279  void cmdSetDragParams(const Common::Array<LBValue> &params);
280  void cmdNewList(const Common::Array<LBValue> &params);
281  void cmdAdd(const Common::Array<LBValue> &params);
282  void cmdAddAt(const Common::Array<LBValue> &params);
283  void cmdSetAt(const Common::Array<LBValue> &params);
284  void cmdListLen(const Common::Array<LBValue> &params);
285  void cmdDeleteAt(const Common::Array<LBValue> &params);
286  void cmdSetProperty(const Common::Array<LBValue> &params);
287  void cmdGetProperty(const Common::Array<LBValue> &params);
288  void cmdDeleteVar(const Common::Array<LBValue> &params);
289  void cmdExec(const Common::Array<LBValue> &params);
290  void cmdReturn(const Common::Array<LBValue> &params);
291  void cmdSetPlayParams(const Common::Array<LBValue> &params);
292  void cmdSetKeyEvent(const Common::Array<LBValue> &params);
293  void cmdSetHitTest(const Common::Array<LBValue> &params);
294  void cmdLBXCreate(const Common::Array<LBValue> &params);
295  void cmdLBXFunc(const Common::Array<LBValue> &params);
296  void cmdKey(const Common::Array<LBValue> &params);
297 
298  void itemClone(const Common::Array<LBValue> &params);
299  void itemIsPlaying(const Common::Array<LBValue> &params);
300  void itemIsLoaded(const Common::Array<LBValue> &params);
301  void itemMoveTo(const Common::Array<LBValue> &params);
302  void itemSeek(const Common::Array<LBValue> &params);
303  void itemSeekToFrame(const Common::Array<LBValue> &params);
304  void itemSetParent(const Common::Array<LBValue> &params);
305 };
306 
307 } // End of namespace Mohawk
308 
309 #endif
Definition: livingbooks_code.h:142
Definition: str.h:59
Definition: livingbooks_code.h:212
Definition: array.h:52
Definition: rect.h:144
Definition: livingbooks.h:381
Definition: livingbooks_code.h:48
Definition: rect.h:45
Definition: ptr.h:159
Definition: stack.h:102
Definition: bitmap.h:32
Definition: livingbooks.h:707