/* 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. * */ #ifndef DIRECTOR_LINGO_LINGO_H #define DIRECTOR_LINGO_LINGO_H #include "audio/audiostream.h" #include "common/hash-str.h" #include "director/director.h" #include "director/score.h" #include "director/lingo/lingo-gr.h" #include "director/lingo/lingo-the.h" namespace Director { enum LEvent { kEventPrepareMovie, kEventStartMovie, kEventStopMovie, kEventNew, kEventBeginSprite, kEventEndSprite, kEventNone, kEventEnterFrame, kEventPrepareFrame, kEventIdle, kEventStepFrame, kEventExitFrame, kEventActivateWindow, kEventDeactivateWindow, kEventMoveWindow, kEventResizeWindow, kEventOpenWindow, kEventCloseWindow, kEventKeyUp, kEventKeyDown, kEventMouseUp, kEventMouseDown, kEventRightMouseUp, kEventRightMouseDown, kEventMouseEnter, kEventMouseLeave, kEventMouseUpOutSide, kEventMouseWithin, kEventStart }; typedef void (*inst)(void); #define STOP (inst)0 typedef Common::Array ScriptData; typedef Common::Array FloatArray; struct FuncDesc { Common::String name; const char *proto; FuncDesc(Common::String n, const char *p) { name = n; proto = p; } }; struct Pointer_EqualTo { bool operator()(const void *x, const void *y) const { return x == y; } }; struct Pointer_Hash { uint operator()(const void *x) const { #ifdef SCUMM_64BITS uint64 v = (uint64)x; return (v >> 32) ^ (v & 0xffffffff); #else return (uint)x; #endif } }; typedef Common::HashMap FuncHash; struct Symbol { /* symbol table entry */ char *name; int type; union { int i; /* VAR */ double f; /* FLOAT */ ScriptData *defn; /* FUNCTION, PROCEDURE */ void (*func)(); /* OPCODE */ void (*bltin)(int); /* BUILTIN */ Common::String *s; /* STRING */ FloatArray *arr; /* ARRAY, POINT, RECT */ } u; int nargs; /* number of arguments */ int maxArgs; /* maximal number of arguments, for builtins */ bool parens; /* whether parens required or not, for builitins */ bool global; Symbol(); }; struct Datum { /* interpreter stack type */ int type; union { int i; double f; Common::String *s; Symbol *sym; FloatArray *arr; /* ARRAY, POINT, RECT */ } u; Datum() { u.sym = NULL; type = VOID; } Datum(int val) { u.i = val; type = INT; } Datum(double val) { u.f = val; type = FLOAT; } Datum(Common::String *val) { u.s = val; type = STRING; } double toFloat(); int toInt(); Common::String *toString(); const char *type2str(bool isk = false); }; struct Builtin { void (*func)(void); int nargs; Builtin(void (*func1)(void), int nargs1) : func(func1), nargs(nargs1) {} }; typedef Common::HashMap ScriptHash; typedef Common::Array StackData; typedef Common::HashMap SymbolHash; typedef Common::HashMap BuiltinHash; typedef Common::HashMap TheEntityHash; typedef Common::HashMap TheEntityFieldHash; struct CFrame { /* proc/func call stack frame */ Symbol *sp; /* symbol table entry */ int retpc; /* where to resume after return */ ScriptData *retscript; /* which script to resume after return */ SymbolHash *localvars; }; class Lingo { public: Lingo(DirectorEngine *vm); ~Lingo(); void addCode(const char *code, ScriptType type, uint16 id); void executeScript(ScriptType type, uint16 id); void printStack(const char *s); Common::String decodeInstruction(int pc, int *newPC = NULL); ScriptType event2script(LEvent ev); void processEvent(LEvent event, int entityId); void initBuiltIns(); void initFuncs(); void initTheEntities(); Common::String *toLowercaseMac(Common::String *s); void runTests(); private: const char *findNextDefinition(const char *s); public: void execute(int pc); void pushContext(); void popContext(); Symbol *lookupVar(const char *name, bool create = true, bool putInGlobalList = false); void cleanLocalVars(); void define(Common::String &s, int start, int nargs, Common::String *prefix = NULL); void processIf(int elselabel, int endlabel); int alignTypes(Datum &d1, Datum &d2); int code1(inst code) { _currentScript->push_back(code); return _currentScript->size() - 1; } int code2(inst code_1, inst code_2) { int o = code1(code_1); code1(code_2); return o; } int code3(inst code_1, inst code_2, inst code_3) { int o = code1(code_1); code1(code_2); code1(code_3); return o; } int codeString(const char *s); void codeLabel(int label); int codeConst(int val); int calcStringAlignment(const char *s) { return calcCodeAlignment(strlen(s) + 1); } int calcCodeAlignment(int l) { int instLen = sizeof(inst); return (l + instLen - 1) / instLen; } void codeArg(Common::String *s); void codeArgStore(); int codeFunc(Common::String *s, int numpar); int codeFloat(double f); void codeFactory(Common::String &s); void pushVoid(); static void c_xpop(); static void c_printtop(); static void c_add(); static void c_sub(); static void c_mul(); static void c_div(); static void c_mod(); static void c_negate(); static void c_and(); static void c_or(); static void c_not(); static void c_ampersand(); static void c_concat(); static void c_contains(); static void c_starts(); static void c_intersects(); static void c_within(); static void c_constpush(); static void c_voidpush(); static void c_fconstpush(); static void c_stringpush(); static void c_varpush(); static void c_assign(); bool verify(Symbol *s); static void c_eval(); static void c_swap(); static void c_theentitypush(); static void c_theentityassign(); static void c_repeatwhilecode(); static void c_repeatwithcode(); static void c_ifcode(); static void c_whencode(); static void c_exitRepeat(); static void c_eq(); static void c_neq(); static void c_gt(); static void c_lt(); static void c_ge(); static void c_le(); static void c_call(); void call(Common::String &name, int nargs); static void c_procret(); static void c_mci(); static void c_mciwait(); static void c_goto(); static void c_gotoloop(); static void c_gotonext(); static void c_gotoprevious(); static void c_global(); static void c_instance(); static void c_play(); static void c_playdone(); static void c_open(); void printStubWithArglist(const char *funcname, int nargs); void convertVOIDtoString(int arg, int nargs); void dropStack(int nargs); void drop(int num); static void b_abs(int nargs); static void b_atan(int nargs); static void b_cos(int nargs); static void b_exp(int nargs); static void b_float(int nargs); static void b_integer(int nargs); static void b_integerp(int nargs); static void b_log(int nargs); static void b_pi(int nargs); static void b_power(int nargs); static void b_random(int nargs); static void b_sin(int nargs); static void b_sqrt(int nargs); static void b_tan(int nargs); static void b_chars(int nargs); static void b_charToNum(int nargs); static void b_length(int nargs); static void b_numToChar(int nargs); static void b_offset(int nargs); static void b_string(int nargs); static void b_stringp(int nargs); static void b_ilk(int nargs); static void b_alert(int nargs); static void b_cursor(int nargs); static void b_objectp(int nargs); static void b_printFrom(int nargs); static void b_showGlobals(int nargs); static void b_showLocals(int nargs); static void b_symbolp(int nargs); static void b_value(int nargs); static void b_constrainH(int nargs); static void b_constrainV(int nargs); static void b_editableText(int nargs); static void b_installMenu(int nargs); static void b_label(int nargs); static void b_marker(int nargs); static void b_moveableSprite(int nargs); static void b_puppetPalette(int nargs); static void b_puppetSound(int nargs); static void b_puppetSprite(int nargs); static void b_puppetTempo(int nargs); static void b_puppetTransition(int nargs); static void b_rollOver(int nargs); static void b_spriteBox(int nargs); static void b_updateStage(int nargs); static void b_zoomBox(int nargs); static void b_continue(int nargs); static void b_dontPassEvent(int nargs); static void b_delay(int nargs); static void b_do(int nargs); static void b_nothing(int nargs); static void b_pause(int nargs); static void b_playAccel(int nargs); static void b_quit(int nargs); static void b_restart(int nargs); static void b_shutDown(int nargs); static void b_startTimer(int nargs); static void b_closeDA(int nargs); static void b_closeResFile(int nargs); static void b_closeXlib(int nargs); static void b_openDA(int nargs); static void b_openResFile(int nargs); static void b_openXlib(int nargs); static void b_showResFile(int nargs); static void b_showXlib(int nargs); static void b_point(int nargs); static void b_beep(int nargs); static void b_mci(int nargs); static void b_mciwait(int nargs); static void b_backspace(int nargs); static void b_empty(int nargs); static void b_enter(int nargs); static void b_false(int nargs); static void b_quote(int nargs); static void b_return(int nargs); static void b_tab(int nargs); static void b_true(int nargs); static void b_factory(int nargs); void factoryCall(Common::String &name, int nargs); void func_mci(Common::String &s); void func_mciwait(Common::String &s); void func_goto(Datum &frame, Datum &movie); void func_gotoloop(); void func_gotonext(); void func_gotoprevious(); public: void setTheEntity(int entity, Datum &id, int field, Datum &d); void setTheSprite(Datum &id, int field, Datum &d); void setTheCast(Datum &id, int field, Datum &d); Datum getTheEntity(int entity, Datum &id, int field); Datum getTheSprite(Datum &id, int field); Datum getTheCast(Datum &id, int field); public: ScriptData *_currentScript; ScriptType _currentScriptType; bool _returning; bool _indef; Common::Array _callstack; Common::Array _argstack; TheEntityHash _theEntities; TheEntityFieldHash _theEntityFields; Common::Array _labelstack; SymbolHash _handlers; int _linenumber; int _colnumber; Common::String _floatPrecisionFormat; bool _hadError; bool _inFactory; Common::String _currentFactory; bool _exitRepeat; private: int parse(const char *code); void parseMenu(const char *code); void push(Datum d); Datum pop(void); Common::HashMap _eventHandlerTypes; Common::HashMap _audioAliases; ScriptHash _scripts[kMaxScriptType + 1]; SymbolHash _globalvars; SymbolHash *_localvars; FuncHash _functions; int _pc; StackData _stack; DirectorEngine *_vm; int _floatPrecision; }; extern Lingo *g_lingo; } // End of namespace Director #endif