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
|
|
|
*
|
2006-02-11 10:11:37 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2005-04-05 15:07:40 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
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 "base/engine.h"
|
2006-01-03 23:14:39 +00:00
|
|
|
|
|
|
|
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;
|
2006-01-07 22:28:54 +00:00
|
|
|
class Music;
|
2006-01-03 23:14:39 +00:00
|
|
|
|
2006-01-04 01:48:15 +00:00
|
|
|
#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,
|
2006-01-08 20:03:20 +00:00
|
|
|
GF_CD = 1 << 4,
|
|
|
|
GF_MAC = 1 << 5
|
2005-05-13 16:56:53 +00:00
|
|
|
};
|
|
|
|
|
2006-02-24 23:31:31 +00:00
|
|
|
enum {
|
|
|
|
DEBUG_FUNCOP = 1 << 0,
|
|
|
|
DEBUG_DRAWOP = 1 << 1,
|
|
|
|
DEBUG_GOBOP = 1 << 2,
|
|
|
|
DEBUG_MUSIC = 1 << 3, // CD and adlib music
|
|
|
|
DEBUG_PARSER = 1 << 4,
|
|
|
|
DEBUG_GAMEFLOW = 1 << 5,
|
|
|
|
DEBUG_FILEIO = 1 << 6,
|
|
|
|
DEBUG_GRAPHICS = 1 << 7,
|
|
|
|
DEBUG_COLLISIONS = 1 << 8
|
|
|
|
};
|
|
|
|
|
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:
|
2006-01-05 16:06:55 +00:00
|
|
|
GobEngine(GameDetector * detector, OSystem * syst, uint32 features);
|
2005-04-05 15:07:40 +00:00
|
|
|
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-14 09:57:20 +00:00
|
|
|
bool _copyProtection;
|
|
|
|
|
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;
|
|
|
|
Map *_map;
|
|
|
|
Mult *_mult;
|
|
|
|
Pack *_pack;
|
|
|
|
PalAnim *_palanim;
|
|
|
|
Parse *_parse;
|
|
|
|
Scenery *_scenery;
|
|
|
|
GTimer *_gtimer;
|
|
|
|
Util *_util;
|
2006-01-05 16:06:55 +00:00
|
|
|
Inter *_inter;
|
2006-01-07 22:28:54 +00:00
|
|
|
Music *_music;
|
2005-04-05 15:07:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Gob
|
|
|
|
#endif
|