2016-02-26 23:32:06 +01: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 ADL_ADL_H
|
|
|
|
#define ADL_ADL_H
|
|
|
|
|
2016-04-01 00:13:21 +02:00
|
|
|
#include "common/debug-channels.h"
|
2016-03-07 20:43:37 +01:00
|
|
|
#include "common/array.h"
|
2016-02-27 13:54:47 +01:00
|
|
|
#include "common/rect.h"
|
2016-03-07 20:43:37 +01:00
|
|
|
#include "common/str.h"
|
2016-03-15 20:06:03 +01:00
|
|
|
#include "common/hashmap.h"
|
|
|
|
#include "common/hash-str.h"
|
2016-03-18 00:30:51 +01:00
|
|
|
#include "common/func.h"
|
2019-03-26 23:41:23 +01:00
|
|
|
#include "common/ptr.h"
|
2016-03-31 15:39:46 +02:00
|
|
|
#include "common/scummsys.h"
|
2016-02-27 13:54:47 +01:00
|
|
|
|
2016-02-26 23:32:06 +01:00
|
|
|
#include "engines/engine.h"
|
2016-02-27 13:54:47 +01:00
|
|
|
|
2016-03-15 20:06:03 +01:00
|
|
|
#include "audio/mixer.h"
|
|
|
|
#include "audio/softsynth/pcspk.h"
|
|
|
|
|
2016-03-26 23:26:22 +01:00
|
|
|
#include "adl/console.h"
|
2016-03-23 11:14:51 +01:00
|
|
|
#include "adl/disk.h"
|
2017-01-15 23:05:56 +01:00
|
|
|
#include "adl/sound.h"
|
2020-08-26 16:41:04 +05:30
|
|
|
#include "adl/detection.h"
|
2016-03-23 11:14:51 +01:00
|
|
|
|
2016-02-26 23:32:06 +01:00
|
|
|
namespace Common {
|
|
|
|
class ReadStream;
|
2016-12-23 20:56:56 +01:00
|
|
|
class WriteStream;
|
2016-02-26 23:32:06 +01:00
|
|
|
class SeekableReadStream;
|
2016-03-15 20:06:03 +01:00
|
|
|
class File;
|
|
|
|
struct Event;
|
2018-08-04 00:34:59 +02:00
|
|
|
class RandomSource;
|
2016-02-26 23:32:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace Adl {
|
2016-03-07 20:43:37 +01:00
|
|
|
|
2020-08-08 22:21:45 +05:30
|
|
|
Common::String getDiskImageName(const AdlGameDescription &adlDesc, byte volume);
|
|
|
|
GameType getGameType(const AdlGameDescription &desc);
|
|
|
|
GameVersion getGameVersion(const AdlGameDescription &desc);
|
|
|
|
Common::Platform getPlatform(const AdlGameDescription &desc);
|
|
|
|
|
2016-03-26 23:26:22 +01:00
|
|
|
class Console;
|
2016-02-26 23:32:06 +01:00
|
|
|
class Display;
|
2016-03-14 10:04:51 +01:00
|
|
|
class GraphicsMan;
|
2016-06-06 20:48:47 +02:00
|
|
|
class ScriptEnv;
|
2016-03-18 00:30:51 +01:00
|
|
|
|
2016-03-31 15:39:46 +02:00
|
|
|
enum kDebugChannels {
|
|
|
|
kDebugChannelScript = 1 << 0
|
|
|
|
};
|
|
|
|
|
2016-03-18 11:52:19 +01:00
|
|
|
// Save and restore opcodes
|
2016-02-28 15:56:17 +01:00
|
|
|
#define IDO_ACT_SAVE 0x0f
|
|
|
|
#define IDO_ACT_LOAD 0x10
|
|
|
|
|
2016-04-01 00:13:21 +02:00
|
|
|
#define IDI_CUR_ROOM 0xfc
|
2016-03-31 15:39:46 +02:00
|
|
|
#define IDI_VOID_ROOM 0xfd
|
2016-03-19 14:20:48 +01:00
|
|
|
#define IDI_ANY 0xfe
|
2016-03-18 12:18:22 +01:00
|
|
|
|
2016-03-06 19:34:14 +01:00
|
|
|
#define IDI_WORD_SIZE 8
|
|
|
|
|
2016-03-18 00:50:30 +01:00
|
|
|
enum Direction {
|
|
|
|
IDI_DIR_NORTH,
|
|
|
|
IDI_DIR_SOUTH,
|
|
|
|
IDI_DIR_EAST,
|
|
|
|
IDI_DIR_WEST,
|
|
|
|
IDI_DIR_UP,
|
|
|
|
IDI_DIR_DOWN,
|
|
|
|
IDI_DIR_TOTAL
|
|
|
|
};
|
|
|
|
|
2016-02-27 13:35:49 +01:00
|
|
|
struct Room {
|
2016-03-23 11:14:51 +01:00
|
|
|
Room() :
|
|
|
|
description(0),
|
|
|
|
picture(0),
|
2016-12-23 23:47:25 +01:00
|
|
|
curPicture(0),
|
|
|
|
isFirstTime(true) {
|
2016-03-23 11:14:51 +01:00
|
|
|
memset(connections, 0, sizeof(connections));
|
|
|
|
}
|
|
|
|
|
2016-02-27 13:35:49 +01:00
|
|
|
byte description;
|
2016-03-18 00:50:30 +01:00
|
|
|
byte connections[IDI_DIR_TOTAL];
|
2016-03-23 11:14:51 +01:00
|
|
|
DataBlockPtr data;
|
2016-02-27 13:35:49 +01:00
|
|
|
byte picture;
|
2016-02-28 15:18:00 +01:00
|
|
|
byte curPicture;
|
2016-03-18 22:52:22 +01:00
|
|
|
bool isFirstTime;
|
2016-02-27 13:35:49 +01:00
|
|
|
};
|
|
|
|
|
2016-03-26 16:27:51 +01:00
|
|
|
typedef Common::HashMap<byte, DataBlockPtr> PictureMap;
|
2016-02-27 13:35:49 +01:00
|
|
|
|
2016-03-18 00:30:51 +01:00
|
|
|
typedef Common::Array<byte> Script;
|
|
|
|
|
2016-02-27 13:35:49 +01:00
|
|
|
struct Command {
|
|
|
|
byte room;
|
|
|
|
byte verb, noun;
|
|
|
|
byte numCond, numAct;
|
2016-03-18 00:30:51 +01:00
|
|
|
Script script;
|
|
|
|
};
|
|
|
|
|
2016-03-18 11:02:02 +01:00
|
|
|
class ScriptEnv {
|
|
|
|
public:
|
2016-03-18 12:18:22 +01:00
|
|
|
ScriptEnv(const Command &cmd, byte room, byte verb, byte noun) :
|
|
|
|
_cmd(cmd), _room(room), _verb(verb), _noun(noun), _ip(0) { }
|
2016-03-18 00:30:51 +01:00
|
|
|
|
2017-08-10 13:15:26 +02:00
|
|
|
virtual ~ScriptEnv() { }
|
|
|
|
|
|
|
|
enum kOpType {
|
|
|
|
kOpTypeDone,
|
|
|
|
kOpTypeCond,
|
|
|
|
kOpTypeAct
|
|
|
|
};
|
|
|
|
|
2016-03-18 12:18:22 +01:00
|
|
|
byte op() const { return _cmd.script[_ip]; }
|
2017-08-10 13:15:26 +02:00
|
|
|
virtual kOpType getOpType() const = 0;
|
2016-03-18 11:02:02 +01:00
|
|
|
// We keep this 1-based for easier comparison with the original engine
|
2016-03-18 12:18:22 +01:00
|
|
|
byte arg(uint i) const { return _cmd.script[_ip + i]; }
|
2017-08-10 13:15:26 +02:00
|
|
|
virtual void next(uint numArgs) = 0;
|
2016-03-18 12:18:22 +01:00
|
|
|
|
|
|
|
bool isMatch() const {
|
2016-03-19 14:20:48 +01:00
|
|
|
return (_cmd.room == IDI_ANY || _cmd.room == _room) &&
|
|
|
|
(_cmd.verb == IDI_ANY || _cmd.verb == _verb) &&
|
|
|
|
(_cmd.noun == IDI_ANY || _cmd.noun == _noun);
|
2016-03-18 12:18:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
byte getNoun() const { return _noun; }
|
2016-03-31 15:39:46 +02:00
|
|
|
const Command &getCommand() const { return _cmd; }
|
2016-03-18 12:18:22 +01:00
|
|
|
|
2017-08-10 13:15:26 +02:00
|
|
|
protected:
|
|
|
|
byte _ip;
|
|
|
|
|
2016-03-18 12:18:22 +01:00
|
|
|
private:
|
|
|
|
const Command &_cmd;
|
|
|
|
const byte _room, _verb, _noun;
|
2016-02-27 13:35:49 +01:00
|
|
|
};
|
|
|
|
|
2016-02-28 14:24:04 +01:00
|
|
|
enum {
|
|
|
|
IDI_ITEM_NOT_MOVED,
|
2016-03-18 15:55:20 +01:00
|
|
|
IDI_ITEM_DROPPED,
|
2016-02-28 14:24:04 +01:00
|
|
|
IDI_ITEM_DOESNT_MOVE
|
|
|
|
};
|
|
|
|
|
2016-02-27 13:35:49 +01:00
|
|
|
struct Item {
|
2016-03-31 23:42:03 +02:00
|
|
|
byte id;
|
2016-02-28 14:24:04 +01:00
|
|
|
byte noun;
|
2016-12-16 15:29:02 +01:00
|
|
|
byte region;
|
2016-02-28 14:24:04 +01:00
|
|
|
byte room;
|
|
|
|
byte picture;
|
2017-02-27 10:17:21 +01:00
|
|
|
bool isShape;
|
2016-02-28 14:24:04 +01:00
|
|
|
Common::Point position;
|
|
|
|
int state;
|
|
|
|
byte description;
|
|
|
|
Common::Array<byte> roomPictures;
|
2016-04-03 19:26:34 +02:00
|
|
|
bool isOnScreen;
|
2016-12-23 23:47:25 +01:00
|
|
|
|
2017-02-27 10:17:21 +01:00
|
|
|
Item() : id(0), noun(0), region(0), room(0), picture(0), isShape(false), state(0), description(0), isOnScreen(false) { }
|
2016-02-27 13:35:49 +01:00
|
|
|
};
|
|
|
|
|
2016-03-20 07:56:53 +01:00
|
|
|
struct Time {
|
|
|
|
byte hours, minutes;
|
|
|
|
|
|
|
|
Time() : hours(12), minutes(0) { }
|
|
|
|
};
|
|
|
|
|
2016-12-11 13:35:15 +01:00
|
|
|
struct RoomState {
|
|
|
|
byte picture;
|
|
|
|
byte isFirstTime;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Region {
|
|
|
|
Common::Array<byte> vars;
|
|
|
|
Common::Array<RoomState> rooms;
|
|
|
|
};
|
|
|
|
|
2016-02-28 21:01:01 +01:00
|
|
|
struct State {
|
2016-12-11 13:35:15 +01:00
|
|
|
Common::Array<Region> regions;
|
2016-02-28 21:01:01 +01:00
|
|
|
Common::Array<Room> rooms;
|
2016-03-31 23:42:03 +02:00
|
|
|
Common::List<Item> items;
|
2016-02-28 21:01:01 +01:00
|
|
|
Common::Array<byte> vars;
|
|
|
|
|
2016-12-16 15:29:02 +01:00
|
|
|
byte region, prevRegion;
|
2016-02-28 21:01:01 +01:00
|
|
|
byte room;
|
2016-08-21 12:27:45 +02:00
|
|
|
byte curPicture;
|
2016-02-28 21:01:01 +01:00
|
|
|
uint16 moves;
|
|
|
|
bool isDark;
|
2016-03-20 07:56:53 +01:00
|
|
|
Time time;
|
2016-02-28 21:01:01 +01:00
|
|
|
|
2016-12-16 15:29:02 +01:00
|
|
|
State() : region(0), prevRegion(0), room(1), curPicture(0), moves(1), isDark(false) { }
|
2016-02-28 21:01:01 +01:00
|
|
|
};
|
|
|
|
|
2016-02-27 13:35:49 +01:00
|
|
|
typedef Common::List<Command> Commands;
|
2016-03-06 16:43:30 +01:00
|
|
|
typedef Common::HashMap<Common::String, uint> WordMap;
|
2016-02-26 23:32:06 +01:00
|
|
|
|
2016-03-26 09:44:40 +01:00
|
|
|
struct RoomData {
|
|
|
|
Common::String description;
|
2016-03-26 16:27:51 +01:00
|
|
|
PictureMap pictures;
|
2016-03-26 09:44:40 +01:00
|
|
|
Commands commands;
|
|
|
|
};
|
|
|
|
|
2016-04-01 00:13:21 +02:00
|
|
|
// Opcode debugging macros
|
|
|
|
#define OP_DEBUG_0(F) do { \
|
|
|
|
if (DebugMan.isDebugChannelEnabled(kDebugChannelScript) && op_debug(F)) \
|
|
|
|
return 0; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define OP_DEBUG_1(F, P1) do { \
|
|
|
|
if (DebugMan.isDebugChannelEnabled(kDebugChannelScript) && op_debug(F, P1)) \
|
|
|
|
return 1; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define OP_DEBUG_2(F, P1, P2) do { \
|
|
|
|
if (DebugMan.isDebugChannelEnabled(kDebugChannelScript) && op_debug(F, P1, P2)) \
|
|
|
|
return 2; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define OP_DEBUG_3(F, P1, P2, P3) do { \
|
|
|
|
if (DebugMan.isDebugChannelEnabled(kDebugChannelScript) && op_debug(F, P1, P2, P3)) \
|
|
|
|
return 3; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define OP_DEBUG_4(F, P1, P2, P3, P4) do { \
|
|
|
|
if (DebugMan.isDebugChannelEnabled(kDebugChannelScript) && op_debug(F, P1, P2, P3, P4)) \
|
|
|
|
return 4; \
|
|
|
|
} while (0)
|
|
|
|
|
2016-02-26 23:32:06 +01:00
|
|
|
class AdlEngine : public Engine {
|
2016-03-27 14:36:14 +02:00
|
|
|
friend class Console;
|
2016-02-26 23:32:06 +01:00
|
|
|
public:
|
2020-02-09 12:05:27 +01:00
|
|
|
~AdlEngine() override;
|
2016-02-26 23:32:06 +01:00
|
|
|
|
2016-03-26 23:26:22 +01:00
|
|
|
bool pollEvent(Common::Event &event) const;
|
2017-01-27 23:12:29 +01:00
|
|
|
void bell(uint count = 1) const;
|
2016-03-15 20:06:03 +01:00
|
|
|
|
2016-02-26 23:32:06 +01:00
|
|
|
protected:
|
2016-03-06 16:43:30 +01:00
|
|
|
AdlEngine(OSystem *syst, const AdlGameDescription *gd);
|
2016-03-01 15:47:34 +01:00
|
|
|
|
2016-03-20 11:48:07 +01:00
|
|
|
// Engine
|
2020-02-05 14:35:42 +01:00
|
|
|
Common::Error loadGameState(int slot) override;
|
2020-02-04 22:13:33 -08:00
|
|
|
Common::Error saveGameState(int slot, const Common::String &desc, bool isAutosave = false) override;
|
2020-02-05 14:35:42 +01:00
|
|
|
bool canSaveGameStateCurrently() override;
|
2020-02-06 21:54:41 -08:00
|
|
|
virtual Common::String getSaveStateName(int slot) const override;
|
2016-03-20 11:48:07 +01:00
|
|
|
|
2018-02-03 11:42:03 +01:00
|
|
|
Common::String getDiskImageName(byte volume) const { return Adl::getDiskImageName(*_gameDescription, volume); }
|
|
|
|
GameType getGameType() const { return Adl::getGameType(*_gameDescription); }
|
|
|
|
GameVersion getGameVersion() const { return Adl::getGameVersion(*_gameDescription); }
|
2016-12-28 22:11:53 +01:00
|
|
|
virtual void gameLoop();
|
2016-12-23 20:56:56 +01:00
|
|
|
virtual void loadState(Common::ReadStream &stream);
|
|
|
|
virtual void saveState(Common::WriteStream &stream);
|
2016-03-06 16:43:30 +01:00
|
|
|
Common::String readString(Common::ReadStream &stream, byte until = 0) const;
|
2016-03-07 15:19:26 +01:00
|
|
|
Common::String readStringAt(Common::SeekableReadStream &stream, uint offset, byte until = 0) const;
|
2016-03-14 10:40:51 +01:00
|
|
|
void openFile(Common::File &file, const Common::String &name) const;
|
2016-03-06 22:50:17 +01:00
|
|
|
|
2016-03-26 14:29:26 +01:00
|
|
|
virtual void printString(const Common::String &str) = 0;
|
2016-04-09 17:00:49 +02:00
|
|
|
virtual Common::String loadMessage(uint idx) const = 0;
|
2016-03-26 14:29:26 +01:00
|
|
|
virtual void printMessage(uint idx);
|
2016-04-13 22:01:15 +02:00
|
|
|
virtual Common::String getItemDescription(const Item &item) const;
|
2016-03-06 16:43:30 +01:00
|
|
|
void delay(uint32 ms) const;
|
2016-03-06 22:50:17 +01:00
|
|
|
|
2017-01-17 23:05:29 +01:00
|
|
|
virtual Common::String getLine();
|
2016-03-06 22:50:17 +01:00
|
|
|
Common::String inputString(byte prompt = 0) const;
|
2016-03-14 15:39:19 +01:00
|
|
|
byte inputKey(bool showCursor = true) const;
|
2016-12-28 22:11:53 +01:00
|
|
|
void getInput(uint &verb, uint &noun);
|
2016-03-06 22:50:17 +01:00
|
|
|
|
2016-05-31 19:33:24 +02:00
|
|
|
virtual Common::String formatVerbError(const Common::String &verb) const;
|
|
|
|
virtual Common::String formatNounError(const Common::String &verb, const Common::String &noun) const;
|
2016-03-31 15:39:46 +02:00
|
|
|
void loadWords(Common::ReadStream &stream, WordMap &map, Common::StringArray &pri) const;
|
2016-03-06 22:50:17 +01:00
|
|
|
void readCommands(Common::ReadStream &stream, Commands &commands);
|
2016-12-18 17:26:57 +01:00
|
|
|
void removeCommand(Commands &commands, uint idx);
|
|
|
|
Command &getCommand(Commands &commands, uint idx);
|
2016-03-26 09:44:40 +01:00
|
|
|
void checkInput(byte verb, byte noun);
|
2016-04-01 11:03:22 +02:00
|
|
|
virtual bool isInputValid(byte verb, byte noun, bool &is_any);
|
|
|
|
virtual bool isInputValid(const Commands &commands, byte verb, byte noun, bool &is_any);
|
2016-12-18 17:26:57 +01:00
|
|
|
virtual void applyRoomWorkarounds(byte roomNr) { }
|
|
|
|
virtual void applyRegionWorkarounds() { }
|
2016-02-27 13:54:47 +01:00
|
|
|
|
2016-03-18 00:30:51 +01:00
|
|
|
virtual void setupOpcodeTables();
|
2016-04-10 15:20:17 +02:00
|
|
|
virtual void initState();
|
2016-12-22 22:28:57 +01:00
|
|
|
virtual void switchRoom(byte roomNr);
|
2016-03-19 14:40:39 +01:00
|
|
|
virtual byte roomArg(byte room) const;
|
2016-03-20 07:56:53 +01:00
|
|
|
virtual void advanceClock() { }
|
2016-08-28 20:29:11 +02:00
|
|
|
void loadDroppedItemOffsets(Common::ReadStream &stream, byte count);
|
2016-03-18 00:30:51 +01:00
|
|
|
|
|
|
|
// Opcodes
|
2019-03-26 23:41:23 +01:00
|
|
|
typedef Common::SharedPtr<Common::Functor1<ScriptEnv &, int> > Opcode;
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
Opcode opcode(int (T::*f)(ScriptEnv &)) {
|
|
|
|
return Opcode(new Common::Functor1Mem<ScriptEnv &, int, T>(static_cast<T *>(this), f));
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int o_isItemInRoom(ScriptEnv &e);
|
|
|
|
virtual int o_isMovesGT(ScriptEnv &e);
|
|
|
|
virtual int o_isVarEQ(ScriptEnv &e);
|
|
|
|
virtual int o_isCurPicEQ(ScriptEnv &e);
|
|
|
|
virtual int o_isItemPicEQ(ScriptEnv &e);
|
|
|
|
|
|
|
|
virtual int o_varAdd(ScriptEnv &e);
|
|
|
|
virtual int o_varSub(ScriptEnv &e);
|
|
|
|
virtual int o_varSet(ScriptEnv &e);
|
|
|
|
virtual int o_listInv(ScriptEnv &e);
|
|
|
|
virtual int o_moveItem(ScriptEnv &e);
|
|
|
|
virtual int o_setRoom(ScriptEnv &e);
|
|
|
|
virtual int o_setCurPic(ScriptEnv &e);
|
|
|
|
virtual int o_setPic(ScriptEnv &e);
|
|
|
|
virtual int o_printMsg(ScriptEnv &e);
|
|
|
|
virtual int o_setLight(ScriptEnv &e);
|
|
|
|
virtual int o_setDark(ScriptEnv &e);
|
|
|
|
virtual int o_save(ScriptEnv &e);
|
|
|
|
virtual int o_restore(ScriptEnv &e);
|
|
|
|
virtual int o_restart(ScriptEnv &e);
|
|
|
|
virtual int o_quit(ScriptEnv &e);
|
|
|
|
virtual int o_placeItem(ScriptEnv &e);
|
|
|
|
virtual int o_setItemPic(ScriptEnv &e);
|
|
|
|
virtual int o_resetPic(ScriptEnv &e);
|
|
|
|
virtual int o_takeItem(ScriptEnv &e);
|
|
|
|
virtual int o_dropItem(ScriptEnv &e);
|
|
|
|
virtual int o_setRoomPic(ScriptEnv &e);
|
|
|
|
|
|
|
|
virtual int goDirection(ScriptEnv &e, Direction D);
|
|
|
|
int o_goNorth(ScriptEnv &e) { return goDirection(e, IDI_DIR_NORTH); }
|
|
|
|
int o_goSouth(ScriptEnv &e) { return goDirection(e, IDI_DIR_SOUTH); }
|
|
|
|
int o_goEast(ScriptEnv &e) { return goDirection(e, IDI_DIR_EAST); }
|
|
|
|
int o_goWest(ScriptEnv &e) { return goDirection(e, IDI_DIR_WEST); }
|
|
|
|
int o_goUp(ScriptEnv &e) { return goDirection(e, IDI_DIR_UP); }
|
|
|
|
int o_goDown(ScriptEnv &e) { return goDirection(e, IDI_DIR_DOWN); }
|
2016-03-18 00:30:51 +01:00
|
|
|
|
2016-03-10 20:44:56 +01:00
|
|
|
// Graphics
|
2016-03-26 22:48:04 +01:00
|
|
|
void drawPic(byte pic, Common::Point pos = Common::Point()) const;
|
2016-03-10 20:44:56 +01:00
|
|
|
|
2016-03-15 20:06:03 +01:00
|
|
|
// Sound
|
2017-01-17 23:05:29 +01:00
|
|
|
bool playTones(const Tones &tones, bool isMusic, bool allowSkip = false) const;
|
2016-03-15 20:06:03 +01:00
|
|
|
|
2016-03-10 20:44:56 +01:00
|
|
|
// Game state functions
|
2016-12-16 15:29:02 +01:00
|
|
|
const Region &getRegion(uint i) const;
|
|
|
|
Region &getRegion(uint i);
|
2016-03-10 20:44:56 +01:00
|
|
|
const Room &getRoom(uint i) const;
|
|
|
|
Room &getRoom(uint i);
|
2016-12-16 15:29:02 +01:00
|
|
|
const Region &getCurRegion() const;
|
|
|
|
Region &getCurRegion();
|
2016-03-10 20:44:56 +01:00
|
|
|
const Room &getCurRoom() const;
|
|
|
|
Room &getCurRoom();
|
|
|
|
const Item &getItem(uint i) const;
|
|
|
|
Item &getItem(uint i);
|
|
|
|
byte getVar(uint i) const;
|
|
|
|
void setVar(uint i, byte value);
|
2016-04-03 19:26:34 +02:00
|
|
|
virtual void takeItem(byte noun);
|
2016-12-16 15:29:02 +01:00
|
|
|
virtual void dropItem(byte noun);
|
2016-03-18 12:18:22 +01:00
|
|
|
bool matchCommand(ScriptEnv &env) const;
|
2016-03-18 00:30:51 +01:00
|
|
|
void doActions(ScriptEnv &env);
|
2016-03-10 20:44:56 +01:00
|
|
|
bool doOneCommand(const Commands &commands, byte verb, byte noun);
|
|
|
|
void doAllCommands(const Commands &commands, byte verb, byte noun);
|
2017-08-10 13:15:26 +02:00
|
|
|
virtual ScriptEnv *createScriptEnv(const Command &cmd, byte room, byte verb, byte noun);
|
2016-03-10 20:44:56 +01:00
|
|
|
|
2016-03-31 15:39:46 +02:00
|
|
|
// Debug functions
|
|
|
|
static Common::String toAscii(const Common::String &str);
|
|
|
|
Common::String itemStr(uint i) const;
|
|
|
|
Common::String roomStr(uint i) const;
|
|
|
|
Common::String itemRoomStr(uint i) const;
|
|
|
|
Common::String verbStr(uint i) const;
|
|
|
|
Common::String nounStr(uint i) const;
|
|
|
|
Common::String msgStr(uint i) const;
|
|
|
|
Common::String dirStr(Direction dir) const;
|
|
|
|
bool op_debug(const char *fmt, ...) const;
|
|
|
|
Common::DumpFile *_dumpFile;
|
|
|
|
|
2016-02-26 23:32:06 +01:00
|
|
|
Display *_display;
|
2016-03-14 10:04:51 +01:00
|
|
|
GraphicsMan *_graphics;
|
2017-02-17 21:08:49 +01:00
|
|
|
bool _textMode;
|
2016-02-26 23:32:06 +01:00
|
|
|
|
2016-03-18 00:30:51 +01:00
|
|
|
// Opcodes
|
2019-03-26 23:41:23 +01:00
|
|
|
Common::Array<Opcode> _condOpcodes, _actOpcodes;
|
2016-03-06 19:34:14 +01:00
|
|
|
// Message strings in data file
|
2016-04-09 17:00:49 +02:00
|
|
|
Common::Array<DataBlockPtr> _messages;
|
2016-03-06 19:34:14 +01:00
|
|
|
// Picture data
|
2016-03-26 16:27:51 +01:00
|
|
|
PictureMap _pictures;
|
2016-03-06 19:34:14 +01:00
|
|
|
// Dropped item screen offsets
|
2016-02-27 13:54:47 +01:00
|
|
|
Common::Array<Common::Point> _itemOffsets;
|
2016-03-06 19:34:14 +01:00
|
|
|
// <room, verb, noun, script> lists
|
2016-02-27 13:54:47 +01:00
|
|
|
Commands _roomCommands;
|
|
|
|
Commands _globalCommands;
|
2016-03-26 09:44:40 +01:00
|
|
|
// Data related to the current room
|
|
|
|
RoomData _roomData;
|
2016-02-27 13:54:47 +01:00
|
|
|
|
2016-03-06 19:34:14 +01:00
|
|
|
WordMap _verbs;
|
|
|
|
WordMap _nouns;
|
2016-03-31 15:39:46 +02:00
|
|
|
Common::StringArray _priVerbs;
|
|
|
|
Common::StringArray _priNouns;
|
2016-03-06 19:34:14 +01:00
|
|
|
|
2016-03-07 15:19:26 +01:00
|
|
|
struct {
|
|
|
|
Common::String enterCommand;
|
|
|
|
Common::String verbError;
|
|
|
|
Common::String nounError;
|
|
|
|
Common::String playAgain;
|
2016-03-11 00:24:31 +01:00
|
|
|
Common::String pressReturn;
|
2016-04-03 13:45:31 +02:00
|
|
|
Common::String lineFeeds;
|
2016-03-07 15:19:26 +01:00
|
|
|
} _strings;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
uint cantGoThere;
|
|
|
|
uint dontUnderstand;
|
|
|
|
uint itemDoesntMove;
|
|
|
|
uint itemNotHere;
|
|
|
|
uint thanksForPlaying;
|
|
|
|
} _messageIds;
|
|
|
|
|
2016-02-27 13:54:47 +01:00
|
|
|
// Game state
|
2016-02-28 21:01:01 +01:00
|
|
|
State _state;
|
2016-02-28 13:24:41 +01:00
|
|
|
|
2017-02-23 14:35:47 +01:00
|
|
|
uint _linesPrinted;
|
2016-11-10 14:15:38 +01:00
|
|
|
bool _isRestarting, _isRestoring, _isQuitting;
|
2016-12-28 22:11:53 +01:00
|
|
|
bool _canSaveNow, _canRestoreNow;
|
2017-02-15 22:20:22 +01:00
|
|
|
bool _abortScript;
|
2018-08-04 00:34:59 +02:00
|
|
|
Common::RandomSource *_random;
|
2016-03-20 11:48:07 +01:00
|
|
|
|
2016-12-11 13:35:15 +01:00
|
|
|
const AdlGameDescription *_gameDescription;
|
|
|
|
|
2018-08-04 00:34:59 +02:00
|
|
|
mutable Common::File *_inputScript;
|
|
|
|
mutable uint _scriptDelay;
|
|
|
|
mutable bool _scriptPaused;
|
|
|
|
|
2016-02-28 13:24:41 +01:00
|
|
|
private:
|
2016-12-11 13:35:15 +01:00
|
|
|
virtual void runIntro() { }
|
2016-03-14 10:04:51 +01:00
|
|
|
virtual void init() = 0;
|
2016-04-10 15:20:17 +02:00
|
|
|
virtual void initGameState() = 0;
|
2016-04-03 19:26:34 +02:00
|
|
|
virtual void drawItems() = 0;
|
|
|
|
virtual void drawItem(Item &item, const Common::Point &pos) = 0;
|
2016-03-26 14:29:26 +01:00
|
|
|
virtual void loadRoom(byte roomNr) = 0;
|
2016-03-14 15:39:19 +01:00
|
|
|
virtual void showRoom() = 0;
|
2016-12-22 15:36:59 +01:00
|
|
|
virtual void switchRegion(byte region) { }
|
2018-08-04 00:34:59 +02:00
|
|
|
void runScript(const char *filename) const;
|
|
|
|
void stopScript() const;
|
2018-12-26 13:25:48 +01:00
|
|
|
void setScriptDelay(uint scriptDelay) const { _scriptDelay = scriptDelay; }
|
2018-08-04 00:34:59 +02:00
|
|
|
Common::String getScriptLine() const;
|
2016-03-06 16:43:30 +01:00
|
|
|
// Engine
|
2020-02-05 14:35:42 +01:00
|
|
|
Common::Error run() override;
|
2020-02-04 20:03:51 -08:00
|
|
|
bool hasFeature(EngineFeature f) const override;
|
2020-02-05 14:35:42 +01:00
|
|
|
bool canLoadGameStateCurrently() override;
|
2016-03-06 16:43:30 +01:00
|
|
|
|
|
|
|
// Text input
|
|
|
|
byte convertKey(uint16 ascii) const;
|
|
|
|
Common::String getWord(const Common::String &line, uint &index) const;
|
|
|
|
|
|
|
|
byte _saveVerb, _saveNoun, _restoreVerb, _restoreNoun;
|
2016-02-26 23:32:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Adl
|
|
|
|
|
|
|
|
#endif
|