2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
2007-04-27 12:58:35 +00:00
|
|
|
*
|
2007-05-30 21:56:52 +00:00
|
|
|
* 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.
|
2007-04-27 12:58:35 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-04-27 22:33:45 +00:00
|
|
|
#ifndef CRUISE_CRUISE_H
|
|
|
|
#define CRUISE_CRUISE_H
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/util.h"
|
2010-03-18 15:07:11 +00:00
|
|
|
#include "common/random.h"
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
#include "engines/engine.h"
|
|
|
|
|
|
|
|
#include "cruise/cruise_main.h"
|
2009-02-11 10:03:01 +00:00
|
|
|
#include "cruise/debugger.h"
|
2009-04-01 10:43:24 +00:00
|
|
|
#include "cruise/sound.h"
|
2007-04-27 12:58:35 +00:00
|
|
|
|
2009-11-24 22:10:14 +00:00
|
|
|
/**
|
|
|
|
* This is the namespace of the Cruise engine.
|
|
|
|
*
|
2010-08-09 10:30:40 +00:00
|
|
|
* Status of this engine: Game is completable, engine needs objectifying
|
2009-11-24 22:10:14 +00:00
|
|
|
*
|
2010-10-15 12:48:19 +00:00
|
|
|
* Games using this engine:
|
2010-08-09 10:30:40 +00:00
|
|
|
* - Cruise for a Corpse
|
2009-11-24 22:10:14 +00:00
|
|
|
*/
|
2007-04-27 12:58:35 +00:00
|
|
|
namespace Cruise {
|
|
|
|
|
|
|
|
enum CruiseGameType {
|
|
|
|
GType_CRUISE = 1
|
|
|
|
};
|
|
|
|
|
2009-05-31 11:37:21 +00:00
|
|
|
#define GAME_FRAME_DELAY_1 50
|
|
|
|
#define GAME_FRAME_DELAY_2 100
|
2009-03-07 07:12:10 +00:00
|
|
|
|
2009-02-14 00:10:51 +00:00
|
|
|
#define MAX_LANGUAGE_STRINGS 25
|
|
|
|
|
2009-05-12 10:20:12 +00:00
|
|
|
enum LangStringId { ID_PAUSED = 0, ID_INVENTORY = 5, ID_SPEAK_ABOUT = 6, ID_PLAYER_MENU = 7,
|
2009-02-14 00:10:51 +00:00
|
|
|
ID_SAVE = 9, ID_LOAD = 10, ID_RESTART = 11, ID_QUIT = 12};
|
|
|
|
|
2007-04-27 12:58:35 +00:00
|
|
|
struct CRUISEGameDescription;
|
|
|
|
|
2009-01-16 02:43:41 +00:00
|
|
|
class CruiseEngine: public Engine {
|
2009-02-11 10:03:01 +00:00
|
|
|
private:
|
|
|
|
bool _preLoad;
|
|
|
|
Debugger *_debugger;
|
2009-06-14 03:39:30 +00:00
|
|
|
PCSound *_sound;
|
2010-03-18 15:54:40 +00:00
|
|
|
Common::StringArray _langStrings;
|
2009-02-19 09:57:39 +00:00
|
|
|
CursorType _savedCursor;
|
2009-03-07 07:12:10 +00:00
|
|
|
uint32 lastTick, lastTickDebug;
|
2009-05-31 11:37:21 +00:00
|
|
|
int _gameSpeed;
|
|
|
|
bool _speedFlag;
|
2009-03-07 07:12:10 +00:00
|
|
|
|
2009-11-02 21:54:57 +00:00
|
|
|
void initialize();
|
2011-05-25 15:17:11 +00:00
|
|
|
void deinitialize();
|
2009-03-07 07:12:10 +00:00
|
|
|
bool loadLanguageStrings();
|
|
|
|
void mainLoop();
|
2009-11-02 21:54:57 +00:00
|
|
|
int processInput();
|
2009-01-16 05:04:49 +00:00
|
|
|
protected:
|
|
|
|
// Engine APIs
|
2009-03-01 04:42:46 +00:00
|
|
|
virtual Common::Error run();
|
2008-11-06 17:05:54 +00:00
|
|
|
|
2009-01-16 05:04:49 +00:00
|
|
|
void shutdown();
|
2007-04-27 22:33:45 +00:00
|
|
|
|
2009-01-16 05:04:49 +00:00
|
|
|
bool initGame();
|
2007-04-27 12:58:35 +00:00
|
|
|
|
2009-01-16 05:04:49 +00:00
|
|
|
public:
|
|
|
|
CruiseEngine(OSystem * syst, const CRUISEGameDescription *gameDesc);
|
|
|
|
virtual ~ CruiseEngine();
|
2009-04-18 10:16:08 +00:00
|
|
|
virtual bool hasFeature(EngineFeature f) const;
|
2007-04-27 12:58:35 +00:00
|
|
|
|
2009-01-16 05:04:49 +00:00
|
|
|
int getGameType() const;
|
2009-08-24 09:07:21 +00:00
|
|
|
const char *getGameId() const;
|
2009-01-16 05:04:49 +00:00
|
|
|
uint32 getFeatures() const;
|
|
|
|
Common::Language getLanguage() const;
|
|
|
|
Common::Platform getPlatform() const;
|
2009-06-14 03:39:30 +00:00
|
|
|
PCSound &sound() { return *_sound; }
|
2009-02-11 10:03:01 +00:00
|
|
|
virtual GUI::Debugger *getDebugger() { return _debugger; }
|
2009-04-18 10:16:08 +00:00
|
|
|
virtual void pauseEngine(bool pause);
|
2009-02-14 00:10:51 +00:00
|
|
|
const char *langString(LangStringId langId) { return _langStrings[(int)langId].c_str(); }
|
2007-04-27 12:58:35 +00:00
|
|
|
|
2009-04-18 10:16:08 +00:00
|
|
|
static const char *getSavegameFile(int saveGameIdx);
|
|
|
|
virtual Common::Error loadGameState(int slot);
|
|
|
|
virtual bool canLoadGameStateCurrently();
|
2011-06-02 12:11:38 +00:00
|
|
|
virtual Common::Error saveGameState(int slot, const Common::String &desc);
|
2009-04-18 10:16:08 +00:00
|
|
|
virtual bool canSaveGameStateCurrently();
|
2009-06-30 10:36:50 +00:00
|
|
|
virtual void syncSoundSettings();
|
2007-04-27 12:58:35 +00:00
|
|
|
|
2009-01-16 05:04:49 +00:00
|
|
|
const CRUISEGameDescription *_gameDescription;
|
2009-11-02 21:54:57 +00:00
|
|
|
void initAllData();
|
2007-04-27 12:58:35 +00:00
|
|
|
|
2009-01-16 05:04:49 +00:00
|
|
|
Common::RandomSource _rnd;
|
2010-08-09 10:30:40 +00:00
|
|
|
|
2011-08-06 09:12:02 +00:00
|
|
|
struct MemInfo {
|
|
|
|
int32 lineNum;
|
|
|
|
char fname[64];
|
|
|
|
uint32 magic;
|
|
|
|
|
|
|
|
static uint32 const cookie = 0x41424344;
|
|
|
|
};
|
|
|
|
|
2012-02-15 06:06:13 +00:00
|
|
|
Common::List<MemInfo *> _memList;
|
2010-08-09 10:30:40 +00:00
|
|
|
|
|
|
|
typedef Common::List<Common::Rect> RectList;
|
|
|
|
|
|
|
|
RectList _dirtyRects;
|
|
|
|
RectList _priorFrameRects;
|
|
|
|
|
|
|
|
Common::File _currentVolumeFile;
|
|
|
|
|
|
|
|
Common::Array<CtStruct> _polyStructNorm;
|
|
|
|
Common::Array<CtStruct> _polyStructExp;
|
|
|
|
Common::Array<CtStruct> *_polyStructs;
|
|
|
|
Common::Array<CtStruct> *_polyStruct;
|
|
|
|
|
|
|
|
Common::File _PAL_file;
|
2007-04-27 12:58:35 +00:00
|
|
|
};
|
|
|
|
|
2009-01-25 05:44:18 +00:00
|
|
|
extern CruiseEngine *_vm;
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
#define BOOT_PRC_NAME "AUTO00.PRC"
|
|
|
|
|
|
|
|
enum {
|
|
|
|
VAR_MOUSE_X_MODE = 253,
|
|
|
|
VAR_MOUSE_X_POS = 249,
|
|
|
|
VAR_MOUSE_Y_MODE = 251,
|
|
|
|
VAR_MOUSE_Y_POS = 250
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
MOUSE_CURSOR_NORMAL = 0,
|
|
|
|
MOUSE_CURSOR_DISK,
|
|
|
|
MOUSE_CURSOR_CROSS
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
2009-06-14 03:39:30 +00:00
|
|
|
kCruiseDebugScript = 1 << 0,
|
|
|
|
kCruiseDebugSound = 1 << 1
|
2007-04-27 12:58:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kCmpEQ = (1 << 0),
|
|
|
|
kCmpGT = (1 << 1),
|
|
|
|
kCmpLT = (1 << 2)
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Cruise
|
|
|
|
|
|
|
|
#endif
|