2013-05-18 12:40:43 +10: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 VOYEUR_VOYEUR_H
|
|
|
|
#define VOYEUR_VOYEUR_H
|
|
|
|
|
2013-06-01 22:14:59 -04:00
|
|
|
#include "voyeur/debugger.h"
|
2013-05-18 13:13:48 +10:00
|
|
|
#include "voyeur/events.h"
|
2013-05-20 12:45:54 +10:00
|
|
|
#include "voyeur/files.h"
|
|
|
|
#include "voyeur/graphics.h"
|
2013-06-12 22:13:52 -04:00
|
|
|
#include "voyeur/sound.h"
|
2013-05-18 12:40:43 +10:00
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/system.h"
|
|
|
|
#include "common/error.h"
|
|
|
|
#include "common/random.h"
|
|
|
|
#include "common/util.h"
|
|
|
|
#include "engines/engine.h"
|
|
|
|
#include "graphics/surface.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the namespace of the Voyeur engine.
|
|
|
|
*
|
|
|
|
* Status of this engine: In Development
|
|
|
|
*
|
|
|
|
* Games using this engine:
|
|
|
|
* - Voyeur
|
|
|
|
*/
|
|
|
|
namespace Voyeur {
|
|
|
|
|
|
|
|
#define DEBUG_BASIC 1
|
|
|
|
#define DEBUG_INTERMEDIATE 2
|
|
|
|
#define DEBUG_DETAILED 3
|
|
|
|
|
2013-05-23 23:13:28 +10:00
|
|
|
#define MAX_RESOLVE 1000
|
2013-05-18 12:40:43 +10:00
|
|
|
|
|
|
|
enum VoyeurDebugChannels {
|
2013-12-13 20:51:06 -05:00
|
|
|
kDebugPath = 1 << 0,
|
|
|
|
kDebugScripts = 1 << 1
|
2013-05-18 12:40:43 +10:00
|
|
|
};
|
|
|
|
|
2013-12-13 20:51:06 -05:00
|
|
|
|
2013-05-18 12:40:43 +10:00
|
|
|
struct VoyeurGameDescription;
|
|
|
|
|
2013-05-22 22:29:24 +10:00
|
|
|
|
2013-05-18 12:40:43 +10:00
|
|
|
class VoyeurEngine : public Engine {
|
|
|
|
private:
|
|
|
|
const VoyeurGameDescription *_gameDescription;
|
|
|
|
Common::RandomSource _randomSource;
|
2013-05-23 23:13:28 +10:00
|
|
|
Common::Array<int> _resolves;
|
2013-06-15 11:39:28 -04:00
|
|
|
FontInfoResource _defaultFontInfo;
|
2013-05-18 12:40:43 +10:00
|
|
|
|
2013-05-18 13:13:48 +10:00
|
|
|
void ESP_Init();
|
2013-05-20 12:45:54 +10:00
|
|
|
void initialiseManagers();
|
|
|
|
void globalInitBolt();
|
2013-05-23 23:13:28 +10:00
|
|
|
void initBolt();
|
|
|
|
void vInitInterrupts();
|
|
|
|
void initInput();
|
2013-12-05 21:49:12 -05:00
|
|
|
void addVideoEventStart();
|
2013-06-10 21:29:12 -04:00
|
|
|
|
2013-06-23 14:55:27 -04:00
|
|
|
bool doHeadTitle();
|
2013-06-10 21:29:12 -04:00
|
|
|
void showConversionScreen();
|
|
|
|
bool doLock();
|
2013-06-22 21:09:20 -04:00
|
|
|
void showTitleScreen();
|
2013-06-23 14:55:27 -04:00
|
|
|
void doOpening();
|
2013-12-07 20:44:28 -05:00
|
|
|
|
2013-12-05 21:49:12 -05:00
|
|
|
void playStamp();
|
2013-12-08 14:44:48 -05:00
|
|
|
void initStamp();
|
2013-12-08 18:23:40 -05:00
|
|
|
void closeStamp();
|
2013-12-09 22:22:32 -05:00
|
|
|
void reviewTape();
|
|
|
|
bool doGossip();
|
|
|
|
int doApt();
|
|
|
|
void doTapePlaying();
|
|
|
|
bool checkForMurder();
|
|
|
|
void checkForIncriminate();
|
|
|
|
void playAVideoEvent(int eventId);
|
|
|
|
int getChooseButton();
|
2013-05-18 12:40:43 +10:00
|
|
|
protected:
|
|
|
|
// Engine APIs
|
|
|
|
virtual Common::Error run();
|
|
|
|
virtual bool hasFeature(EngineFeature f) const;
|
2013-05-24 21:54:40 -04:00
|
|
|
public:
|
2013-06-23 14:55:27 -04:00
|
|
|
BoltFile *_bVoy;
|
2013-06-01 22:14:59 -04:00
|
|
|
Debugger _debugger;
|
2013-05-25 09:58:03 -04:00
|
|
|
EventsManager _eventsManager;
|
|
|
|
FilesManager _filesManager;
|
|
|
|
GraphicsManager _graphicsManager;
|
2013-06-12 22:13:52 -04:00
|
|
|
SoundManager _soundManager;
|
2013-06-20 21:42:48 -04:00
|
|
|
SVoy _voy;
|
2013-12-08 10:40:26 -05:00
|
|
|
|
2013-12-08 14:44:48 -05:00
|
|
|
BoltFile *_stampLibPtr;
|
|
|
|
BoltGroup *_controlGroupPtr;
|
2013-12-08 10:40:26 -05:00
|
|
|
ControlResource *_controlPtr;
|
2013-12-08 14:44:48 -05:00
|
|
|
byte *_stampData;
|
|
|
|
BoltGroup *_stackGroupPtr;
|
2013-12-09 22:22:32 -05:00
|
|
|
int _glGoScene;
|
|
|
|
int _glGoStack;
|
|
|
|
bool _bob;
|
|
|
|
int _playStamp1;
|
|
|
|
int _playStamp2;
|
2013-12-10 09:19:54 -05:00
|
|
|
const int *_resolvePtr;
|
2013-12-11 00:11:02 -05:00
|
|
|
int _iForceDeath;
|
2013-05-18 12:40:43 +10:00
|
|
|
public:
|
|
|
|
VoyeurEngine(OSystem *syst, const VoyeurGameDescription *gameDesc);
|
|
|
|
virtual ~VoyeurEngine();
|
|
|
|
void GUIError(const Common::String &msg);
|
|
|
|
|
|
|
|
uint32 getFeatures() const;
|
|
|
|
Common::Language getLanguage() const;
|
|
|
|
Common::Platform getPlatform() const;
|
|
|
|
uint16 getVersion() const;
|
|
|
|
bool getIsDemo() const;
|
|
|
|
|
|
|
|
int getRandomNumber(int maxNumber);
|
|
|
|
Common::String generateSaveName(int slotNumber);
|
|
|
|
virtual bool canLoadGameStateCurrently();
|
|
|
|
virtual bool canSaveGameStateCurrently();
|
|
|
|
virtual Common::Error loadGameState(int slot);
|
|
|
|
virtual Common::Error saveGameState(int slot, const Common::String &desc);
|
2013-06-22 11:57:51 -04:00
|
|
|
|
|
|
|
void playRL2Video(const Common::String &filename);
|
2013-12-05 21:49:12 -05:00
|
|
|
void doTransitionCard(const Common::String &time, const Common::String &location);
|
2013-12-10 20:47:05 -05:00
|
|
|
void playAVideo(int id);
|
2013-12-11 22:57:51 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Saves the last time the game was played
|
|
|
|
*/
|
2013-12-11 00:11:02 -05:00
|
|
|
void saveLastInplay();
|
2013-12-11 21:46:06 -05:00
|
|
|
void loadTheApt();
|
|
|
|
void freeTheApt();
|
2013-05-18 12:40:43 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Voyeur
|
|
|
|
|
|
|
|
#endif /* VOYEUR_VOYEUR_H */
|