scummvm/engines/dm/dm.h

157 lines
4.2 KiB
C
Raw Normal View History

2016-08-26 22:36:31 +02: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.
*
*/
/*
* Based on the Reverse Engineering work of Christophe Fontanel,
* maintainer of the Dungeon Master Encyclopaedia (http://dmweb.free.fr/)
*/
#ifndef DM_H
#define DM_H
#include "common/random.h"
#include "engines/engine.h"
#include "gui/debugger.h"
namespace DM {
2016-05-21 12:55:37 +02:00
class Console;
class DisplayMan;
class DungeonMan;
2016-06-15 22:42:08 +02:00
class EventManager;
class MenuMan;
class ChampionMan;
class LoadsaveMan;
2016-06-19 00:54:28 +02:00
class ObjectMan;
class InventoryMan;
class TextMan;
2016-05-21 12:55:37 +02:00
enum direction {
kDirNorth = 0,
kDirEast = 1,
kDirSouth = 2,
kDirWest = 3
};
// TODO: refactor direction into a class
2016-08-26 22:18:01 +02:00
extern int8 _dirIntoStepCountEast[4];
extern int8 _dirIntoStepCountNorth[4];
void turnDirRight(direction &dir);
void turnDirLeft(direction &dir);
direction returnOppositeDir(direction dir);
bool isOrientedWestEast(direction dir);
2016-05-21 12:55:37 +02:00
enum ThingType {
kPartyThingType = -1, // @ CM1_THING_TYPE_PARTY, special value
kDoorThingType = 0,
kTeleporterThingType = 1,
kTextstringType = 2,
kSensorThingType = 3,
kGroupThingType = 4,
kWeaponThingType = 5,
kArmourThingType = 6,
kScrollThingType = 7,
kPotionThingType = 8,
kContainerThingType = 9,
kJunkThingType = 10,
kProjectileThingType = 14,
kExplosionThingType = 15,
kThingTypeTotal = 16 // +1 than the last (explosionThingType)
}; // @ C[00..15]_THING_TYPE_...
class Thing {
2016-06-18 17:48:48 +02:00
uint16 _data;
2016-05-21 12:55:37 +02:00
public:
2016-06-18 17:48:48 +02:00
static const Thing _thingNone;
static const Thing _thingEndOfList;
2016-05-21 12:55:37 +02:00
2016-06-18 17:48:48 +02:00
Thing() : _data(0) {}
2016-06-22 07:47:41 +02:00
explicit Thing(uint16 d) { set(d); }
2016-05-21 12:55:37 +02:00
void set(uint16 d) {
2016-06-18 17:48:48 +02:00
_data = d;
2016-05-21 12:55:37 +02:00
}
2016-06-18 17:48:48 +02:00
byte getCell() const { return _data >> 14; }
ThingType getType() const { return (ThingType)((_data >> 10) & 0xF); }
uint16 getIndex() const { return _data & 0x1FF; }
uint16 toUint16() const { return _data; } // I don't like 'em cast operators
bool operator==(const Thing &rhs) const { return _data == rhs._data; }
bool operator!=(const Thing &rhs) const { return _data != rhs._data; }
2016-05-21 12:55:37 +02:00
}; // @ THING
enum {
// engine debug channels
kDMDebugExample = 1 << 0
};
class DMEngine : public Engine {
2016-06-16 23:48:18 +02:00
void startGame(); // @ F0462_START_StartGame_CPSF
void processNewPartyMap(uint16 mapIndex); // @ F0003_MAIN_ProcessNewPartyMap_CPSE
void initializeGame(); // @ F0463_START_InitializeGame_CPSADEF
void gameloop(); // @ F0002_MAIN_GameLoop_CPSDF
public:
2016-06-22 07:47:41 +02:00
explicit DMEngine(OSystem *syst);
~DMEngine();
virtual Common::Error run(); // @ main
private:
Console *_console;
2016-05-07 23:27:16 +02:00
public:
Common::RandomSource *_rnd;
DisplayMan *_displayMan;
DungeonMan *_dungeonMan;
2016-06-15 10:41:33 +02:00
EventManager *_eventMan;
MenuMan *_menuMan;
ChampionMan *_championMan;
LoadsaveMan *_loadsaveMan;
2016-06-19 00:54:28 +02:00
ObjectMan *_objectMan;
InventoryMan *_inventoryMan;
TextMan *_textMan;
bool _stopWaitingForPlayerInput; // G0321_B_StopWaitingForPlayerInput
bool _gameTimeTicking; // @ G0301_B_GameTimeTicking
bool _restartGameAllowed; // @ G0524_B_RestartGameAllowed
uint32 _gameId; // @ G0525_l_GameID, probably useless here
bool _pressingEye; // @ G0331_B_PressingEye
bool _stopPressingEye; // @ G0332_B_StopPressingEye
bool _pressingMouth; // @ G0333_B_PressingMouth
bool _stopPressingMouth; // @ G0334_B_StopPressingMouth
bool _highlightBoxInversionRequested; // @ G0340_B_HighlightBoxInversionRequested
};
class Console : public GUI::Debugger {
public:
2016-06-22 07:47:41 +02:00
explicit Console(DMEngine *vm) {}
virtual ~Console(void) {}
};
} // End of namespace DM
#endif