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.
|
2014-12-17 17:27:47 +00:00
|
|
|
*
|
2014-08-06 03:23:49 +00:00
|
|
|
* 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.
|
2014-12-17 17:27:47 +00:00
|
|
|
*
|
2014-08-06 03:23:49 +00:00
|
|
|
* 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"
|
2014-08-09 20:31:23 +00:00
|
|
|
#include "common/memstream.h"
|
2014-08-18 02:44:31 +00:00
|
|
|
#include "access/data.h"
|
2014-08-06 03:23:49 +00:00
|
|
|
|
|
|
|
namespace Access {
|
|
|
|
|
|
|
|
class AccessEngine;
|
2014-08-08 02:53:02 +00:00
|
|
|
class Scripts;
|
|
|
|
|
2014-11-09 00:16:14 +00:00
|
|
|
#define SCRIPT_START_BYTE 0xE0
|
|
|
|
#define ROOM_SCRIPT 2000
|
|
|
|
|
2015-01-05 17:15:12 +00:00
|
|
|
typedef void(Scripts::*ScriptMethodPtr)();
|
|
|
|
|
2014-12-17 20:31:26 +00:00
|
|
|
class Scripts : public Manager {
|
2014-08-09 20:31:23 +00:00
|
|
|
private:
|
2014-08-28 02:13:43 +00:00
|
|
|
Resource *_resource;
|
2014-08-14 02:23:08 +00:00
|
|
|
int _specialFunction;
|
2014-08-18 02:32:26 +00:00
|
|
|
|
2014-08-29 02:15:39 +00:00
|
|
|
void charLoop();
|
2014-08-06 03:23:49 +00:00
|
|
|
protected:
|
2014-08-28 02:13:43 +00:00
|
|
|
Common::SeekableReadStream *_data;
|
2015-01-05 17:15:12 +00:00
|
|
|
ScriptMethodPtr COMMAND_LIST[100];
|
2014-08-08 13:19:38 +00:00
|
|
|
|
2014-08-14 02:23:08 +00:00
|
|
|
virtual void executeSpecial(int commandIndex, int param1, int param2) = 0;
|
2014-08-09 20:31:23 +00:00
|
|
|
virtual void executeCommand(int commandIndex);
|
2014-08-18 03:04:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Read a null terminated string from the script
|
|
|
|
*/
|
|
|
|
Common::String readString();
|
|
|
|
|
2014-12-04 00:25:16 +00:00
|
|
|
void cmdObject();
|
2014-08-18 02:32:26 +00:00
|
|
|
void cmdEndObject();
|
2014-08-09 20:31:23 +00:00
|
|
|
void cmdJumpLook();
|
|
|
|
void cmdJumpHelp();
|
|
|
|
void cmdJumpGet();
|
|
|
|
void cmdJumpMove();
|
|
|
|
void cmdJumpUse();
|
|
|
|
void cmdJumpTalk();
|
|
|
|
void cmdNull();
|
2014-08-17 00:26:17 +00:00
|
|
|
void cmdPrint();
|
2014-08-11 02:25:30 +00:00
|
|
|
void cmdAnim();
|
2014-08-09 20:31:23 +00:00
|
|
|
void cmdSetFlag();
|
2014-08-09 23:18:10 +00:00
|
|
|
void cmdCheckFlag();
|
2014-08-08 13:30:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Jump to another script
|
|
|
|
*/
|
2014-08-09 20:31:23 +00:00
|
|
|
void cmdGoto();
|
2014-08-08 13:30:16 +00:00
|
|
|
|
2014-12-04 01:01:51 +00:00
|
|
|
void cmdAddScore();
|
2014-08-09 21:57:34 +00:00
|
|
|
void cmdSetInventory();
|
|
|
|
void cmdCheckInventory();
|
2014-08-17 20:42:28 +00:00
|
|
|
void cmdSetTex();
|
2014-08-20 00:43:32 +00:00
|
|
|
void cmdNewRoom();
|
2014-08-23 16:09:27 +00:00
|
|
|
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();
|
2014-08-09 20:31:23 +00:00
|
|
|
void cmdCheckLoc();
|
|
|
|
void cmdSetAnim();
|
2014-08-17 09:16:31 +00:00
|
|
|
void cmdDispInv();
|
2014-12-04 01:01:51 +00:00
|
|
|
void cmdSetAbout();
|
2014-08-19 05:48:00 +00:00
|
|
|
void cmdSetTimer();
|
|
|
|
void cmdCheckTimer();
|
2014-12-04 01:01:51 +00:00
|
|
|
void cmdJumpGoto();
|
2014-08-10 22:52:03 +00:00
|
|
|
void cmdSetTravel();
|
2014-08-23 18:13:26 +00:00
|
|
|
void cmdSetVideo();
|
2014-08-29 00:02:35 +00:00
|
|
|
void cmdPlayVideo();
|
2014-08-10 15:49:44 +00:00
|
|
|
void cmdPlotImage();
|
|
|
|
void cmdSetDisplay();
|
2014-08-11 21:43:27 +00:00
|
|
|
void cmdSetBuffer();
|
2014-08-10 22:52:03 +00:00
|
|
|
void cmdSetScroll();
|
2014-12-04 01:01:51 +00:00
|
|
|
void cmdSaveRect();
|
2014-08-29 01:40:59 +00:00
|
|
|
void cmdVideoEnded();
|
2014-11-23 21:21:48 +00:00
|
|
|
void cmdSetBufVid();
|
2014-11-23 21:29:46 +00:00
|
|
|
void cmdPlayBufVid();
|
2014-08-11 21:43:27 +00:00
|
|
|
void cmdRemoveLast();
|
2014-12-04 01:01:51 +00:00
|
|
|
void cmdDoTravel();
|
|
|
|
void cmdCheckAbout();
|
2014-08-17 20:42:28 +00:00
|
|
|
void cmdSpecial();
|
2014-11-02 02:20:23 +00:00
|
|
|
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();
|
2014-11-02 00:58:13 +00:00
|
|
|
void cmdWait();
|
2014-08-17 19:49:07 +00:00
|
|
|
void cmdSetConPos();
|
2014-11-20 01:28:27 +00:00
|
|
|
void cmdCheckVFrame();
|
2014-08-11 21:43:27 +00:00
|
|
|
void cmdJumpChoice();
|
|
|
|
void cmdReturnChoice();
|
2014-08-17 09:16:31 +00:00
|
|
|
void cmdClearBlock();
|
2014-08-18 22:18:42 +00:00
|
|
|
void cmdLoadSound();
|
2014-08-23 18:13:26 +00:00
|
|
|
void cmdSetVideoSound();
|
2014-08-29 00:02:35 +00:00
|
|
|
void cmdPlayVideoSound();
|
2014-12-04 01:01:51 +00:00
|
|
|
void cmdPrintWatch();
|
|
|
|
void cmdDispAbout();
|
2014-12-17 22:45:41 +00:00
|
|
|
void cmdPushLocation();
|
2014-12-04 01:01:51 +00:00
|
|
|
void cmdCheckTravel();
|
|
|
|
void cmdBlock();
|
2014-08-09 20:31:23 +00:00
|
|
|
void cmdPlayerOff();
|
|
|
|
void cmdPlayerOn();
|
2014-08-30 21:17:19 +00:00
|
|
|
void cmdDead();
|
2014-08-09 23:44:24 +00:00
|
|
|
void cmdFadeOut();
|
2014-11-23 22:51:25 +00:00
|
|
|
void cmdEndVideo();
|
2014-12-04 01:01:51 +00:00
|
|
|
void cmdHelp();
|
|
|
|
void cmdCycleBack();
|
|
|
|
void cmdSetHelp();
|
2014-08-06 03:23:49 +00:00
|
|
|
public:
|
|
|
|
int _sequence;
|
2014-08-08 02:53:02 +00:00
|
|
|
bool _endFlag;
|
|
|
|
int _returnCode;
|
|
|
|
int _scriptCommand;
|
2014-08-11 21:43:27 +00:00
|
|
|
int _choice;
|
|
|
|
int32 _choiceStart;
|
2014-08-17 19:49:07 +00:00
|
|
|
Common::Point _charsOrg, _texsOrg;
|
2014-08-06 03:23:49 +00:00
|
|
|
public:
|
|
|
|
Scripts(AccessEngine *vm);
|
|
|
|
|
2014-08-06 12:28:20 +00:00
|
|
|
virtual ~Scripts();
|
|
|
|
|
2015-01-05 17:15:12 +00:00
|
|
|
void setOpcodes();
|
|
|
|
void setOpcodes_v2();
|
|
|
|
|
2014-11-14 01:30:41 +00:00
|
|
|
void setScript(Resource *data, bool restartFlag = false);
|
2014-08-09 20:31:23 +00:00
|
|
|
|
2014-08-06 12:28:20 +00:00
|
|
|
void freeScriptData();
|
2014-08-08 02:53:02 +00:00
|
|
|
|
2014-08-09 20:31:23 +00:00
|
|
|
void searchForSequence();
|
2014-08-08 02:53:02 +00:00
|
|
|
|
2014-08-08 13:19:38 +00:00
|
|
|
int executeScript();
|
2014-08-17 19:49:07 +00:00
|
|
|
|
|
|
|
void findNull();
|
2014-08-24 16:49:34 +00:00
|
|
|
|
2014-11-29 02:02:12 +00:00
|
|
|
/**
|
|
|
|
* Print a given message to the screen in a bubble box
|
|
|
|
*/
|
|
|
|
void printString(const Common::String &msg);
|
|
|
|
|
2014-11-01 03:01:47 +00:00
|
|
|
// Script commands that need to be public
|
2014-08-29 02:15:39 +00:00
|
|
|
void cmdFreeSound();
|
2014-11-01 03:01:47 +00:00
|
|
|
void cmdRetPos();
|
2014-08-06 03:23:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Access
|
|
|
|
|
|
|
|
#endif /* ACCESS_SCRIPTS_H */
|