2002-08-14 10:18:03 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2003-03-06 21:46:56 +00:00
|
|
|
* Copyright (C) 2002-2003 The ScummVM project
|
2002-08-14 10:18:03 +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ENGINE_H
|
|
|
|
#define ENGINE_H
|
|
|
|
|
|
|
|
#include "scummsys.h"
|
|
|
|
#include "system.h"
|
2002-08-18 17:48:18 +00:00
|
|
|
|
2003-07-05 11:14:16 +00:00
|
|
|
#define SCUMMVM_VERSION "0.5.0pre-cvs"
|
|
|
|
#define SCUMMVM_CVS "2003-07-xx"
|
2002-09-08 01:08:12 +00:00
|
|
|
|
2003-06-15 01:42:19 +00:00
|
|
|
|
|
|
|
enum GameId {
|
|
|
|
GID_SCUMM_FIRST = 1,
|
|
|
|
GID_SCUMM_LAST = GID_SCUMM_FIRST + 99,
|
|
|
|
|
|
|
|
// Simon the Sorcerer
|
|
|
|
GID_SIMON_FIRST,
|
|
|
|
GID_SIMON_LAST = GID_SIMON_FIRST + 49,
|
|
|
|
|
|
|
|
// Beneath a Steel Sky
|
|
|
|
GID_SKY_FIRST,
|
|
|
|
GID_SKY_LAST = GID_SKY_FIRST + 49
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-08-18 17:48:18 +00:00
|
|
|
class SoundMixer;
|
|
|
|
class GameDetector;
|
2003-03-25 00:26:53 +00:00
|
|
|
class Timer;
|
2003-03-01 22:04:48 +00:00
|
|
|
struct VersionSettings;
|
2002-08-18 17:48:18 +00:00
|
|
|
|
|
|
|
/* FIXME - BIG HACK for MidiEmu */
|
|
|
|
extern OSystem *g_system;
|
|
|
|
extern SoundMixer *g_mixer;
|
2002-08-14 10:18:03 +00:00
|
|
|
|
|
|
|
class Engine {
|
|
|
|
public:
|
|
|
|
OSystem *_system;
|
|
|
|
SoundMixer *_mixer;
|
2002-09-18 10:22:36 +00:00
|
|
|
Timer * _timer;
|
2002-08-14 10:18:03 +00:00
|
|
|
|
2002-08-18 22:47:11 +00:00
|
|
|
protected:
|
|
|
|
char *_gameDataPath;
|
|
|
|
|
|
|
|
public:
|
2002-08-18 17:48:18 +00:00
|
|
|
Engine(GameDetector *detector, OSystem *syst);
|
|
|
|
virtual ~Engine();
|
|
|
|
|
2002-08-18 18:39:42 +00:00
|
|
|
// Invoke the main engine loop using this method
|
2002-08-18 17:48:18 +00:00
|
|
|
virtual void go() = 0;
|
2003-03-06 16:27:06 +00:00
|
|
|
|
2002-08-18 22:47:11 +00:00
|
|
|
// Get the save game dir path
|
|
|
|
const char *getSavePath() const;
|
|
|
|
|
2002-12-27 00:11:01 +00:00
|
|
|
virtual const char *getGameDataPath() const { return _gameDataPath; }
|
2002-08-18 18:39:42 +00:00
|
|
|
|
|
|
|
// Create a new engine object based on the detector - either
|
2003-06-01 09:41:56 +00:00
|
|
|
// a Scumm or a SimonEngine object currently.
|
2002-08-18 18:39:42 +00:00
|
|
|
static Engine *createFromDetector(GameDetector *detector, OSystem *syst);
|
2003-03-07 15:38:11 +00:00
|
|
|
|
|
|
|
// Specific for each engine preparare of erroe string
|
|
|
|
virtual void errorString(const char *buf_input, char *buf_output) = 0;
|
2002-08-14 10:18:03 +00:00
|
|
|
};
|
|
|
|
|
2003-03-07 15:38:11 +00:00
|
|
|
extern Engine *g_engine;
|
|
|
|
|
2002-08-31 13:29:10 +00:00
|
|
|
#if defined(__GNUC__)
|
|
|
|
void CDECL error(const char *s, ...) NORETURN;
|
|
|
|
#else
|
|
|
|
void CDECL NORETURN error(const char *s, ...);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void CDECL warning(const char *s, ...);
|
|
|
|
|
|
|
|
void CDECL debug(int level, const char *s, ...);
|
|
|
|
void checkHeap();
|
|
|
|
|
2003-03-01 22:04:48 +00:00
|
|
|
// Factory functions => no need to include the specific classes
|
|
|
|
// in this header. This serves two purposes:
|
|
|
|
// 1) Clean seperation from the game modules (scumm, simon) and the generic code
|
|
|
|
// 2) Faster (compiler doesn't have to parse lengthy header files)
|
2003-04-26 11:44:13 +00:00
|
|
|
#ifndef DISABLE_SCUMM
|
|
|
|
extern const VersionSettings *Engine_SCUMM_targetList();
|
2002-11-10 17:19:43 +00:00
|
|
|
extern Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst);
|
2003-04-26 11:44:13 +00:00
|
|
|
#endif
|
2002-08-14 10:18:03 +00:00
|
|
|
|
2003-04-26 11:44:13 +00:00
|
|
|
#ifndef DISABLE_SIMON
|
|
|
|
extern Engine *Engine_SIMON_create(GameDetector *detector, OSystem *syst);
|
2003-03-01 22:04:48 +00:00
|
|
|
extern const VersionSettings *Engine_SIMON_targetList();
|
2003-04-26 11:44:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DISABLE_SKY
|
2003-03-05 19:04:34 +00:00
|
|
|
extern const VersionSettings *Engine_SKY_targetList();
|
2003-04-26 11:44:13 +00:00
|
|
|
extern Engine *Engine_SKY_create(GameDetector *detector, OSystem *syst);
|
|
|
|
#endif
|
2003-03-01 22:04:48 +00:00
|
|
|
|
2002-08-14 10:18:03 +00:00
|
|
|
#endif
|
2002-08-31 13:29:10 +00:00
|
|
|
|