2014-08-06 03:23:49 +00:00
|
|
|
/* 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 ACCESS_SCRIPTS_H
|
|
|
|
#define ACCESS_SCRIPTS_H
|
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
|
|
|
|
namespace Access {
|
|
|
|
|
|
|
|
class AccessEngine;
|
2014-08-08 02:53:02 +00:00
|
|
|
class Scripts;
|
|
|
|
|
|
|
|
typedef void(Scripts::*ScriptMethodPtr)();
|
2014-08-06 03:23:49 +00:00
|
|
|
|
|
|
|
class Scripts {
|
|
|
|
protected:
|
|
|
|
AccessEngine *_vm;
|
2014-08-08 02:53:02 +00:00
|
|
|
const ScriptMethodPtr *_commandList;
|
|
|
|
public:
|
|
|
|
void CMDENDOBJECT();
|
|
|
|
void CMDJUMPLOOK();
|
|
|
|
void CMDJUMPHELP();
|
|
|
|
void CMDJUMPGET();
|
|
|
|
void CMDJUMPMOVE();
|
|
|
|
void CMDJUMPUSE();
|
|
|
|
void CMDJUMPTALK();
|
|
|
|
void CMDNULL();
|
|
|
|
void CMDPRINT();
|
|
|
|
void CMDRETPOS();
|
|
|
|
void CMDANIM();
|
|
|
|
void CMDSETFLAG();
|
|
|
|
void CMDCHECKFLAG();
|
|
|
|
void CMDGOTO();
|
|
|
|
void CMDSETINV();
|
|
|
|
void CMDCHECKINV();
|
|
|
|
void CMDSETTEX();
|
|
|
|
void CMDNEWROOM();
|
|
|
|
void CMDCONVERSE();
|
|
|
|
void CMDCHECKFRAME();
|
|
|
|
void CMDCHECKANIM();
|
|
|
|
void CMDSND();
|
|
|
|
void CMDRETNEG();
|
|
|
|
void CMDCHECKLOC();
|
|
|
|
void CMDSETANIM();
|
|
|
|
void CMDDISPINV();
|
|
|
|
void CMDSETTIMER();
|
|
|
|
void CMDCHECKTIMER();
|
|
|
|
void CMDSETTRAVEL();
|
|
|
|
void CMDSETVID();
|
|
|
|
void CMDPLAYVID();
|
|
|
|
void CMDPLOTIMAGE();
|
|
|
|
void CMDSETDISPLAY();
|
|
|
|
void CMDSETBUFFER();
|
|
|
|
void CMDSETSCROLL();
|
|
|
|
void CMDSAVERECT();
|
|
|
|
void CMDSETBUFVID();
|
|
|
|
void CMDPLAYBUFVID();
|
|
|
|
void CMDREMOVELAST();
|
|
|
|
void CMDSPECIAL();
|
|
|
|
void CMDSETCYCLE();
|
|
|
|
void CMDCYCLE();
|
|
|
|
void CMDCHARSPEAK();
|
|
|
|
void CMDTEXSPEAK();
|
|
|
|
void CMDTEXCHOICE();
|
|
|
|
void CMDWAIT();
|
|
|
|
void CMDSETCONPOS();
|
|
|
|
void CMDCHECKVFRAME();
|
|
|
|
void CMDJUMPCHOICE();
|
|
|
|
void CMDRETURNCHOICE();
|
|
|
|
void CMDCLEARBLOCK();
|
|
|
|
void CMDLOADSOUND();
|
|
|
|
void CMDFREESOUND();
|
|
|
|
void CMDSETVIDSND();
|
|
|
|
void CMDPLAYVIDSND();
|
|
|
|
void CMDPUSHLOCATION();
|
|
|
|
void CMDPLAYEROFF();
|
|
|
|
void CMDPLAYERON();
|
|
|
|
void CMDDEAD();
|
|
|
|
void CMDFADEOUT();
|
|
|
|
void CMDENDVID();
|
|
|
|
void CMDHELP();
|
|
|
|
void CMDCYCLEBACK();
|
|
|
|
void CMDCHAPTER();
|
|
|
|
void CMDSETHELP();
|
|
|
|
void CMDCENTERPANEL();
|
|
|
|
void CMDMAINPANEL();
|
|
|
|
void CMDRETFLASH();
|
2014-08-06 03:23:49 +00:00
|
|
|
public:
|
|
|
|
byte *_script;
|
2014-08-08 02:53:02 +00:00
|
|
|
byte *_scriptLoc;
|
2014-08-06 03:23:49 +00:00
|
|
|
int _sequence;
|
2014-08-08 02:53:02 +00:00
|
|
|
bool _endFlag;
|
|
|
|
int _returnCode;
|
|
|
|
int _scriptCommand;
|
2014-08-06 03:23:49 +00:00
|
|
|
public:
|
|
|
|
Scripts(AccessEngine *vm);
|
|
|
|
|
2014-08-06 12:28:20 +00:00
|
|
|
virtual ~Scripts();
|
|
|
|
|
|
|
|
void freeScriptData();
|
2014-08-08 02:53:02 +00:00
|
|
|
|
|
|
|
void searchForSequence();
|
|
|
|
|
|
|
|
int executeCommand();
|
2014-08-06 03:23:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Access
|
|
|
|
|
|
|
|
#endif /* ACCESS_SCRIPTS_H */
|