scummvm/engines/access/scripts.h

152 lines
3.3 KiB
C
Raw Normal View History

/* 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"
#include "common/memstream.h"
#include "access/data.h"
namespace Access {
class AccessEngine;
class Scripts;
class Scripts: public Manager {
private:
const byte *_rawData;
int _specialFunction;
2014-08-18 02:32:26 +00:00
protected:
Common::MemoryReadStream *_data;
virtual void executeSpecial(int commandIndex, int param1, int param2) = 0;
virtual void executeCommand(int commandIndex);
2014-08-18 03:04:05 +00:00
2014-08-18 22:18:42 +00:00
int checkMouseBox1(Common::Rect *rectArr);
2014-08-18 03:04:05 +00:00
/**
* Print a given message to the screen in a bubble box
*/
void printString(const Common::String &msg);
/**
* Read a null terminated string from the script
*/
Common::String readString();
void CMDOBJECT();
2014-08-18 02:32:26 +00:00
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();
/**
* Jump to another script
*/
void cmdGoto();
void cmdSetInventory();
void cmdCheckInventory();
2014-08-17 20:42:28 +00:00
void cmdSetTex();
2014-08-20 00:43:32 +00:00
void cmdNewRoom();
void cmdConverse();
2014-08-11 21:03:49 +00:00
void cmdCheckFrame();
2014-08-09 23:44:24 +00:00
void cmdCheckAnim();
2014-08-11 21:57:06 +00:00
void cmdSnd();
2014-08-10 15:49:44 +00:00
void cmdRetNeg();
void cmdCheckLoc();
void cmdSetAnim();
2014-08-17 09:16:31 +00:00
void cmdDispInv();
2014-08-19 05:48:00 +00:00
void cmdSetTimer();
void cmdCheckTimer();
2014-08-10 22:52:03 +00:00
void cmdSetTravel();
void cmdSetVideo();
void CMDPLAYVID();
2014-08-10 15:49:44 +00:00
void cmdPlotImage();
void cmdSetDisplay();
void cmdSetBuffer();
2014-08-10 22:52:03 +00:00
void cmdSetScroll();
void CMDSAVERECT();
void CMDSETBUFVID();
void CMDPLAYBUFVID();
void cmdRemoveLast();
2014-08-17 20:42:28 +00:00
void cmdSpecial();
void CMDSETCYCLE();
void CMDCYCLE();
2014-08-17 19:49:07 +00:00
void cmdCharSpeak();
void cmdTexSpeak();
2014-08-18 22:18:42 +00:00
void cmdTexChoice();
void CMDWAIT();
2014-08-17 19:49:07 +00:00
void cmdSetConPos();
void CMDCHECKVFRAME();
void cmdJumpChoice();
void cmdReturnChoice();
2014-08-17 09:16:31 +00:00
void cmdClearBlock();
2014-08-18 22:18:42 +00:00
void cmdLoadSound();
void CMDFREESOUND();
void cmdSetVideoSound();
void CMDPLAYVIDSND();
void CMDPUSHLOCATION();
void cmdPlayerOff();
void cmdPlayerOn();
void CMDDEAD();
2014-08-09 23:44:24 +00:00
void cmdFadeOut();
void CMDENDVID();
public:
int _sequence;
bool _endFlag;
int _returnCode;
int _scriptCommand;
int _choice;
int32 _choiceStart;
2014-08-17 19:49:07 +00:00
Common::Point _charsOrg, _texsOrg;
public:
Scripts(AccessEngine *vm);
2014-08-06 12:28:20 +00:00
virtual ~Scripts();
void setScript(const byte *data, int size);
2014-08-06 12:28:20 +00:00
void freeScriptData();
void searchForSequence();
int executeScript();
2014-08-17 19:49:07 +00:00
void findNull();
};
} // End of namespace Access
#endif /* ACCESS_SCRIPTS_H */