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 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
|
/* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef MTROPOLIS_MINISCRIPT_H
#define MTROPOLIS_MINISCRIPT_H
#include "mtropolis/data.h"
#include "mtropolis/runtime.h"
namespace MTropolis {
class MiniscriptThread;
struct MiniscriptStackValue;
struct SIMiniscriptInstructionFactory;
bool miniscriptEvaluateTruth(const DynamicValue &value);
class MiniscriptInstruction {
public:
virtual ~MiniscriptInstruction();
virtual MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const = 0;
};
class IMiniscriptInstructionParserFeedback {
public:
virtual ~IMiniscriptInstructionParserFeedback();
virtual uint registerGlobalGUIDIndex(uint32 guid) = 0;
};
class MiniscriptReferences {
public:
struct LocalRef {
LocalRef();
uint32 guid;
Common::String name;
Common::WeakPtr<RuntimeObject> resolution;
};
struct GlobalRef {
GlobalRef();
uint32 guid;
Common::WeakPtr<RuntimeObject> resolution;
};
explicit MiniscriptReferences(const Common::Array<LocalRef> &localRefs, const Common::Array<GlobalRef> &globalRefs);
void linkInternalReferences(ObjectLinkingScope *scope);
void visitInternalReferences(IStructuralReferenceVisitor *visitor);
Common::WeakPtr<RuntimeObject> getRefByIndex(uint index) const;
Common::WeakPtr<RuntimeObject> getGlobalRefByIndex(uint index) const;
private:
Common::Array<LocalRef> _localRefs;
Common::Array<GlobalRef> _globalRefs;
};
class MiniscriptProgram {
public:
struct Attribute {
Common::String name;
};
MiniscriptProgram(const Common::SharedPtr<Common::Array<uint8> > &programData, const Common::Array<MiniscriptInstruction *> &instructions, const Common::Array<Attribute> &attributes);
~MiniscriptProgram();
const Common::Array<MiniscriptInstruction *> &getInstructions() const;
const Common::Array<Attribute> &getAttributes() const;
private:
Common::SharedPtr<Common::Array<uint8> > _programData;
Common::Array<MiniscriptInstruction *> _instructions;
Common::Array<Attribute> _attributes;
};
class MiniscriptParser {
public:
static bool parse(const Data::MiniscriptProgram &programData, Common::SharedPtr<MiniscriptProgram> &outProgram, Common::SharedPtr<MiniscriptReferences> &outReferences);
static SIMiniscriptInstructionFactory *resolveOpcode(uint16 opcode);
private:
struct InstructionData {
InstructionData();
uint16 opcode;
uint16 flags;
size_t pdPosition;
SIMiniscriptInstructionFactory *instrFactory;
Common::Array<uint8> contents;
};
};
namespace MiniscriptInstructions {
class UnimplementedInstruction : public MiniscriptInstruction {
private:
virtual MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class Set : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class Send : public MiniscriptInstruction {
public:
explicit Send(const Event &evt, const MessageFlags &messageFlags);
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
Event _evt;
MessageFlags _messageFlags;
};
class BinaryArithInstruction : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
protected:
virtual MiniscriptInstructionOutcome arithExecute(MiniscriptThread *thread, double &result, double left, double right) const = 0;
};
class Add : public BinaryArithInstruction {
private:
MiniscriptInstructionOutcome arithExecute(MiniscriptThread *thread, double &result, double left, double right) const override;
};
class Sub : public BinaryArithInstruction {
private:
MiniscriptInstructionOutcome arithExecute(MiniscriptThread *thread, double &result, double left, double right) const override;
};
class Mul : public BinaryArithInstruction {
private:
MiniscriptInstructionOutcome arithExecute(MiniscriptThread *thread, double &result, double left, double right) const override;
};
class Div : public BinaryArithInstruction {
private:
MiniscriptInstructionOutcome arithExecute(MiniscriptThread *thread, double &result, double left, double right) const override;
};
class Pow : public BinaryArithInstruction {
private:
MiniscriptInstructionOutcome arithExecute(MiniscriptThread *thread, double &result, double left, double right) const override;
};
class DivInt : public BinaryArithInstruction {
private:
MiniscriptInstructionOutcome arithExecute(MiniscriptThread *thread, double &result, double left, double right) const override;
};
class Modulo : public BinaryArithInstruction {
private:
MiniscriptInstructionOutcome arithExecute(MiniscriptThread *thread, double &result, double left, double right) const override;
};
class And : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class Or : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class Neg : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class Not : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class OrderedCompareInstruction : public MiniscriptInstruction{
protected:
virtual bool compareFloat(double a, double b) const = 0;
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class UnorderedCompareInstruction : public MiniscriptInstruction {
protected:
virtual bool resolve(bool isEqual) const = 0;
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class CmpEqual : public UnorderedCompareInstruction {
private:
bool resolve(bool isEqual) const override { return isEqual; };
};
class CmpNotEqual : public UnorderedCompareInstruction {
private:
bool resolve(bool isEqual) const override { return !isEqual; };
};
class CmpLessOrEqual : public OrderedCompareInstruction {
private:
bool compareFloat(double a, double b) const override { return a <= b; }
};
class CmpLess : public OrderedCompareInstruction {
private:
bool compareFloat(double a, double b) const override { return a < b; }
};
class CmpGreaterOrEqual : public OrderedCompareInstruction {
private:
bool compareFloat(double a, double b) const override { return a >= b; }
};
class CmpGreater : public OrderedCompareInstruction {
private:
bool compareFloat(double a, double b) const override { return a > b; }
};
class BuiltinFunc : public UnimplementedInstruction {
public:
enum BuiltinFunctionID {
kSin = 1,
kCos = 2,
kRandom = 3,
kSqrt = 4,
kTan = 5,
kAbs = 6,
kSign = 7,
kArctangent = 8,
kExp = 9,
kLn = 10,
kLog = 11,
kCosH = 12,
kSinH = 13,
kTanH = 14,
kRect2Polar = 15,
kPolar2Rect = 16,
kTrunc = 17,
kRound = 18,
kNum2Str = 19,
kStr2Num = 20,
};
explicit BuiltinFunc(BuiltinFunctionID bfid);
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
MiniscriptInstructionOutcome executeFunction(MiniscriptThread *thread, DynamicValue *returnValue) const;
MiniscriptInstructionOutcome executeSimpleNumericInstruction(MiniscriptThread *thread, DynamicValue *returnValue) const;
MiniscriptInstructionOutcome executeRectToPolar(MiniscriptThread *thread, DynamicValue *returnValue) const;
MiniscriptInstructionOutcome executePolarToRect(MiniscriptThread *thread, DynamicValue *returnValue) const;
MiniscriptInstructionOutcome executeNum2Str(MiniscriptThread *thread, DynamicValue *returnValue) const;
MiniscriptInstructionOutcome executeStr2Num(MiniscriptThread *thread, DynamicValue *returnValue) const;
BuiltinFunctionID _funcID;
};
class StrConcat : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class PointCreate : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class RangeCreate : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class VectorCreate : public UnimplementedInstruction {
};
class GetChild : public MiniscriptInstruction {
public:
GetChild(uint32 attribute, bool isLValue, bool isIndexed);
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
MiniscriptInstructionOutcome readRValueAttrib(MiniscriptThread *thread, DynamicValue &valueSrcDest, const Common::String &attrib) const;
MiniscriptInstructionOutcome readRValueAttribIndexed(MiniscriptThread *thread, DynamicValue &valueSrcDest, const Common::String &attrib, const DynamicValue &index) const;
uint32 _attribute;
bool _isLValue;
bool _isIndexed;
};
class ListAppend : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class ListCreate : public MiniscriptInstruction {
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
};
class PushValue : public MiniscriptInstruction {
public:
enum DataType {
kDataTypeNull,
kDataTypeDouble,
kDataTypeBool,
kDataTypeLocalRef,
kDataTypeGlobalRef,
kDataTypeLabel,
};
struct Label {
uint32 superGroup;
uint32 id;
};
PushValue(DataType dataType, const void *value, bool isLValue);
~PushValue();
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
union ValueUnion {
ValueUnion();
bool b;
double f;
uint32 ref;
Label lbl;
};
DataType _dataType;
ValueUnion _value;
//bool _isLValue;
};
class PushGlobal : public MiniscriptInstruction {
public:
explicit PushGlobal(uint32 globalID, bool isLValue);
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
private:
enum {
kGlobalRefElement = 1,
kGlobalRefModifier = 2,
kGlobalRefSource = 3,
kGlobalRefIncomingData = 4,
kGlobalRefMouse = 5,
kGlobalRefTicks = 6,
kGlobalRefScene = 7,
kGlobalRefSharedScene = 8,
kGlobalRefSection = 9,
kGlobalRefProject = 10,
kGlobalRefActiveScene = 11,
};
MiniscriptInstructionOutcome executeFindFilteredParent(MiniscriptThread *thread, DynamicValue &result) const;
uint32 _globalID;
bool _isLValue;
};
class PushString : public UnimplementedInstruction {
public:
explicit PushString(const Common::String &str);
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
Common::String _str;
};
class Jump : public MiniscriptInstruction {
public:
Jump(uint32 instrOffset, bool isConditional);
private:
MiniscriptInstructionOutcome execute(MiniscriptThread *thread) const override;
uint32 _instrOffset;
bool _isConditional;
};
} // End of namespace MiniscriptInstructions
struct MiniscriptStackValue {
DynamicValue value;
};
class MiniscriptThread {
public:
MiniscriptThread(Runtime *runtime, const Common::SharedPtr<MessageProperties> &msgProps, const Common::SharedPtr<MiniscriptProgram> &program, const Common::SharedPtr<MiniscriptReferences> &refs, Modifier *modifier);
void error(const Common::String &message);
const Common::SharedPtr<MiniscriptProgram> &getProgram() const;
const Common::SharedPtr<MiniscriptReferences> &getRefs() const;
Modifier *getModifier() const;
const Common::SharedPtr<MessageProperties> &getMessageProperties() const;
Runtime *getRuntime() const;
void pushValue(const DynamicValue &value);
void popValues(size_t count);
size_t getStackSize() const;
MiniscriptStackValue &getStackValueFromTop(size_t offset);
MiniscriptInstructionOutcome dereferenceRValue(size_t offset);
void jumpOffset(size_t offset);
bool evaluateTruthOfResult(bool &isTrue);
void createWriteIncomingDataProxy(DynamicValueWriteProxy &proxy);
void retryInstruction();
struct ResumeThreadCoroutine {
CORO_DEFINE_RETURN_TYPE(void);
CORO_DEFINE_PARAMS_1(Common::SharedPtr<MiniscriptThread>, thread);
};
private:
struct IncomingDataWriteInterface {
static MiniscriptInstructionOutcome write(MiniscriptThread *thread, const DynamicValue &dest, void *objectRef, uintptr ptrOrOffset);
static MiniscriptInstructionOutcome refAttrib(MiniscriptThread *thread, DynamicValueWriteProxy &proxy, void *objectRef, uintptr ptrOrOffset, const Common::String &attrib);
static MiniscriptInstructionOutcome refAttribIndexed(MiniscriptThread *thread, DynamicValueWriteProxy &proxy, void *objectRef, uintptr ptrOrOffset, const Common::String &attrib, const DynamicValue &index);
};
MiniscriptInstructionOutcome runNextInstruction();
VThreadState resume(MiniscriptThread *thread);
MiniscriptInstructionOutcome tryLoadVariable(MiniscriptStackValue &stackValue);
Common::SharedPtr<MiniscriptProgram> _program;
Common::SharedPtr<MiniscriptReferences> _refs;
Common::SharedPtr<MessageProperties> _msgProps;
Modifier *_modifier;
Runtime *_runtime;
Common::Array<MiniscriptStackValue> _stack;
size_t _currentInstruction;
bool _failed;
};
MiniscriptInstructionOutcome miniscriptIgnoreFailure(MiniscriptInstructionOutcome outcome);
} // End of namespace MTropolis
#endif
|