2007-04-27 12:58:35 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2006 The ScummVM project
|
|
|
|
*
|
|
|
|
* cinE Engine is (C) 2004-2005 by CruisE Team
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
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/stdafx.h"
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/util.h"
|
|
|
|
|
|
|
|
#include "engines/engine.h"
|
|
|
|
|
|
|
|
#include "cruise/cruise_main.h"
|
|
|
|
|
|
|
|
namespace Cruise {
|
|
|
|
|
|
|
|
enum CruiseGameType {
|
|
|
|
GType_CRUISE = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CRUISEGameDescription;
|
|
|
|
|
2007-04-27 22:33:45 +00:00
|
|
|
class CruiseEngine:public Engine {
|
2007-04-27 12:58:35 +00:00
|
|
|
|
2007-04-27 22:33:45 +00:00
|
|
|
protected:
|
2007-04-27 12:58:35 +00:00
|
|
|
int init();
|
|
|
|
int go();
|
|
|
|
void shutdown();
|
2007-04-27 22:33:45 +00:00
|
|
|
|
2007-04-27 12:58:35 +00:00
|
|
|
bool initGame();
|
|
|
|
|
2007-04-27 22:33:45 +00:00
|
|
|
public:
|
|
|
|
CruiseEngine(OSystem * syst);
|
|
|
|
virtual ~ CruiseEngine();
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
int getGameType() const;
|
|
|
|
uint32 getFeatures() const;
|
2007-04-27 22:33:45 +00:00
|
|
|
Common::Language getLanguage() const;
|
|
|
|
Common::Platform getPlatform() const;
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
bool loadSaveDirectory(void);
|
|
|
|
void makeSystemMenu(void);
|
|
|
|
|
|
|
|
const CRUISEGameDescription *_gameDescription;
|
|
|
|
|
2007-04-27 22:33:45 +00:00
|
|
|
private:
|
2007-04-27 12:58:35 +00:00
|
|
|
void initialize(void);
|
|
|
|
bool makeLoad(char *saveName);
|
|
|
|
void mainLoop(int bootScriptIdx);
|
|
|
|
|
|
|
|
bool _preLoad;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern CruiseEngine *g_cruise;
|
|
|
|
|
|
|
|
#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 {
|
|
|
|
kCruiseDebugScript = 1 << 0
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kCmpEQ = (1 << 0),
|
|
|
|
kCmpGT = (1 << 1),
|
|
|
|
kCmpLT = (1 << 2)
|
|
|
|
};
|
|
|
|
|
2007-04-27 22:33:45 +00:00
|
|
|
extern Common::SaveFileManager * g_saveFileMan; // TEMP
|
2007-04-27 12:58:35 +00:00
|
|
|
|
|
|
|
} // End of namespace Cruise
|
|
|
|
|
|
|
|
#endif
|