2005-04-05 15:07:40 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2004 The ScummVM project
|
|
|
|
*
|
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-04-05 15:07:40 +00:00
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-04-05 18:08:02 +00:00
|
|
|
#ifndef GOB_GOB_H
|
|
|
|
#define GOB_GOB_H
|
2005-04-05 15:07:40 +00:00
|
|
|
|
|
|
|
#include "common/stdafx.h"
|
|
|
|
#include "common/system.h"
|
|
|
|
#include "sound/mixer.h"
|
|
|
|
#include "common/config-manager.h"
|
|
|
|
|
|
|
|
#include "base/engine.h"
|
|
|
|
|
2006-01-03 23:14:39 +00:00
|
|
|
#include "gob/dataio.h"
|
|
|
|
#include "gob/video.h"
|
|
|
|
#include "common/file.h"
|
|
|
|
|
|
|
|
namespace Gob {
|
|
|
|
|
|
|
|
class Game;
|
|
|
|
class Snd;
|
|
|
|
class Video;
|
|
|
|
class Global;
|
|
|
|
class Draw;
|
|
|
|
class Anim;
|
|
|
|
class CDROM;
|
|
|
|
class DataIO;
|
|
|
|
class Goblin;
|
|
|
|
class Init;
|
|
|
|
class Inter;
|
|
|
|
class Map;
|
|
|
|
class Mult;
|
|
|
|
class Pack;
|
|
|
|
class PalAnim;
|
|
|
|
class Parse;
|
|
|
|
class Scenery;
|
|
|
|
class GTimer;
|
|
|
|
class Util;
|
|
|
|
|
|
|
|
#define VAR_OFFSET(offs) (*(uint32 *)(_vm->_global->inter_variables + (offs)))
|
2005-04-13 00:47:17 +00:00
|
|
|
#define VAR(var) VAR_OFFSET((var) << 2)
|
2005-04-10 17:13:17 +00:00
|
|
|
#define VAR_ADDRESS(var) (&VAR(var))
|
|
|
|
|
2005-04-13 00:47:17 +00:00
|
|
|
#define WRITE_VAR_OFFSET(offs, val) (VAR_OFFSET(offs) = (val))
|
|
|
|
#define WRITE_VAR(var, val) WRITE_VAR_OFFSET((var) << 2, (val))
|
2005-04-10 17:13:17 +00:00
|
|
|
|
2005-05-13 16:56:53 +00:00
|
|
|
enum {
|
|
|
|
GF_GOB1 = 1 << 0,
|
|
|
|
GF_GOB2 = 1 << 1,
|
|
|
|
GF_GOB3 = 1 << 2,
|
2005-11-01 11:18:50 +00:00
|
|
|
GF_WOODRUFF = 1 << 3,
|
|
|
|
GF_CD = 1 << 4
|
2005-05-13 16:56:53 +00:00
|
|
|
};
|
|
|
|
|
2005-04-05 15:07:40 +00:00
|
|
|
class GobEngine : public Engine {
|
|
|
|
void errorString(const char *buf_input, char *buf_output);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int go();
|
|
|
|
int init(GameDetector &detector);
|
|
|
|
|
|
|
|
public:
|
|
|
|
GobEngine(GameDetector * detector, OSystem * syst);
|
|
|
|
virtual ~GobEngine();
|
|
|
|
|
|
|
|
void shutdown();
|
|
|
|
|
2005-04-29 15:01:03 +00:00
|
|
|
Common::RandomSource _rnd;
|
2005-05-13 21:24:30 +00:00
|
|
|
|
|
|
|
int32 _features;
|
2006-01-03 23:14:39 +00:00
|
|
|
Game *_game;
|
|
|
|
Snd *_snd;
|
|
|
|
Video *_video;
|
|
|
|
Global *_global;
|
|
|
|
Draw *_draw;
|
|
|
|
Anim *_anim;
|
|
|
|
CDROM *_cdrom;
|
|
|
|
DataIO *_dataio;
|
|
|
|
Goblin *_goblin;
|
|
|
|
Init *_init;
|
|
|
|
Inter *_inter;
|
|
|
|
Map *_map;
|
|
|
|
Mult *_mult;
|
|
|
|
Pack *_pack;
|
|
|
|
PalAnim *_palanim;
|
|
|
|
Parse *_parse;
|
|
|
|
Scenery *_scenery;
|
|
|
|
GTimer *_gtimer;
|
|
|
|
Util *_util;
|
2005-04-05 15:07:40 +00:00
|
|
|
};
|
|
|
|
|
2005-04-29 10:07:00 +00:00
|
|
|
extern GobEngine *_vm;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-04-05 15:07:40 +00:00
|
|
|
} // End of namespace Gob
|
|
|
|
#endif
|