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"
|
2006-11-19 17:52:52 +00:00
|
|
|
#include "common/savefile.h"
|
2005-04-05 15:07:40 +00:00
|
|
|
|
2006-09-23 00:42:35 +00:00
|
|
|
#include "engines/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;
|
2007-01-23 19:40:28 +00:00
|
|
|
class Adlib;
|
2006-01-03 23:14:39 +00:00
|
|
|
|
2006-11-27 14:19:30 +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))
|
2006-11-27 14:19:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define VARP(offs) (_vm->_global->_inter_variables + (offs))
|
|
|
|
#define WRITE_VARO_UINT32(offs, val) _vm->_global->writeVar(offs, (uint32) (val))
|
|
|
|
#define WRITE_VARO_UINT16(offs, val) _vm->_global->writeVar(offs, (uint16) (val))
|
|
|
|
#define WRITE_VARO_UINT8(offs, val) _vm->_global->writeVar(offs, (uint8) (val))
|
|
|
|
#define WRITE_VARO_STR(offs, str) _vm->_global->writeVar(offs, (const char *) (str))
|
|
|
|
#define WRITE_VAR_UINT32(var, val) WRITE_VARO_UINT32((var) << 2, (val))
|
|
|
|
#define WRITE_VAR_UINT16(var, val) WRITE_VARO_UINT16((var) << 2, (val))
|
|
|
|
#define WRITE_VAR_UINT8(var, val) WRITE_VARO_UINT8((var) << 2, (val))
|
|
|
|
#define WRITE_VAR_STR(var, str) WRITE_VARO_STR((var) << 2, (str))
|
|
|
|
#define READ_VARO_UINT32(offs) (*((uint32 *) VARP(offs)))
|
|
|
|
#define READ_VARO_UINT16(offs) (*((uint16 *) VARP(offs)))
|
|
|
|
#define READ_VARO_UINT8(offs) (*((uint8 *) VARP(offs)))
|
|
|
|
#define READ_VAR_UINT32(var) READ_VARO_UINT32((var) << 2)
|
|
|
|
#define READ_VAR_UINT16(var) READ_VARO_UINT16((var) << 2)
|
|
|
|
#define READ_VAR_UINT8(var) READ_VARO_UINT8((var) << 2)
|
|
|
|
#define GET_VARO_STR(offs) ((char *) VARP(offs))
|
|
|
|
#define GET_VAR_STR(var) GET_VARO_STR((var) << 2)
|
|
|
|
|
|
|
|
#define WRITE_VAR_OFFSET(offs, val) WRITE_VARO_UINT32((offs), (val))
|
|
|
|
#define WRITE_VAR(var, val) WRITE_VAR_UINT32((var), (val))
|
|
|
|
#define VAR_OFFSET(offs) READ_VARO_UINT32(offs)
|
|
|
|
#define VAR(var) READ_VAR_UINT32(var)
|
|
|
|
#define VAR_ADDRESS(var) ((uint32 *) VARP((var) << 2))
|
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,
|
2007-01-30 22:32:51 +00:00
|
|
|
GF_EGA = 1 << 5
|
2005-05-13 16:56:53 +00:00
|
|
|
};
|
|
|
|
|
2006-02-24 23:31:31 +00:00
|
|
|
enum {
|
2007-01-13 15:35:02 +00:00
|
|
|
kDebugFuncOp = 1 << 0,
|
|
|
|
kDebugDrawOp = 1 << 1,
|
|
|
|
kDebugGobOp = 1 << 2,
|
2007-01-23 19:40:28 +00:00
|
|
|
kDebugMusic = 1 << 3, // CD, Adlib and Infogrames music
|
2007-01-13 15:35:02 +00:00
|
|
|
kDebugParser = 1 << 4,
|
|
|
|
kDebugGameFlow = 1 << 5,
|
|
|
|
kDebugFileIO = 1 << 6,
|
|
|
|
kDebugGraphics = 1 << 7,
|
|
|
|
kDebugCollisions = 1 << 8
|
2006-02-24 23:31:31 +00:00
|
|
|
};
|
|
|
|
|
2006-11-19 17:52:52 +00:00
|
|
|
enum SaveFiles {
|
2006-11-27 14:19:30 +00:00
|
|
|
SAVE_CAT = 0, // Saves
|
2007-01-28 13:19:17 +00:00
|
|
|
SAVE_SAV, // Holds a sprite, normally a cache for Draw::_backBuffer
|
|
|
|
// (see Global::_savedBack)
|
2006-11-27 14:19:30 +00:00
|
|
|
SAVE_BLO // Notes
|
2006-11-19 17:52:52 +00:00
|
|
|
};
|
|
|
|
|
2005-04-05 15:07:40 +00:00
|
|
|
class GobEngine : public Engine {
|
|
|
|
protected:
|
2006-11-27 14:19:30 +00:00
|
|
|
char **_saveFiles;
|
|
|
|
char *_saveSlotFile;
|
|
|
|
char _saveIndex[600];
|
|
|
|
byte _saveIndexSizes[600];
|
|
|
|
|
2005-04-05 15:07:40 +00:00
|
|
|
int go();
|
2006-04-15 20:36:41 +00:00
|
|
|
int init();
|
2005-04-05 15:07:40 +00:00
|
|
|
|
2006-11-27 14:19:30 +00:00
|
|
|
inline uint32 getSaveSize(Common::InSaveFile &in);
|
|
|
|
const char *getSaveSlotFile(int slot);
|
|
|
|
bool saveGame(int saveSlot, int16 dataVar, int32 size, int32 offset);
|
|
|
|
bool loadGame(int saveSlot, int16 dataVar, int32 size, int32 offset);
|
|
|
|
uint32 writeDataEndian(Common::OutSaveFile &out, char *varBuf, byte *sizeBuf, int32 size);
|
|
|
|
uint32 readDataEndian(Common::InSaveFile &in, char *varBuf, byte *sizeBuf, int32 size);
|
|
|
|
|
2007-01-30 02:17:46 +00:00
|
|
|
bool detectGame();
|
|
|
|
|
2005-04-05 15:07:40 +00:00
|
|
|
public:
|
2007-01-30 02:17:46 +00:00
|
|
|
GobEngine(OSystem *syst);
|
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-04-18 12:39:02 +00:00
|
|
|
Common::Language _language;
|
2007-01-30 22:32:51 +00:00
|
|
|
Common::Platform _platform;
|
2006-08-12 12:35:18 +00:00
|
|
|
char *_startTot;
|
|
|
|
char *_startTot0;
|
2006-01-14 09:57:20 +00:00
|
|
|
bool _copyProtection;
|
2007-01-25 14:18:12 +00:00
|
|
|
bool _noMusic;
|
2006-05-31 08:44:14 +00:00
|
|
|
bool _quitRequested;
|
2006-01-14 09:57:20 +00:00
|
|
|
|
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;
|
2007-01-23 19:40:28 +00:00
|
|
|
Adlib *_adlib;
|
2006-11-27 14:19:30 +00:00
|
|
|
GobEngine *_vm;
|
2006-08-12 09:16:08 +00:00
|
|
|
|
|
|
|
void writeVarDebug(uint32 offs, uint32 v);
|
2006-11-27 14:19:30 +00:00
|
|
|
|
2006-11-19 17:52:52 +00:00
|
|
|
int32 getSaveSize(enum SaveFiles sFile);
|
2006-11-27 14:19:30 +00:00
|
|
|
void saveGameData(enum SaveFiles sFile, int16 dataVar, int32 size, int32 offset);
|
|
|
|
void loadGameData(enum SaveFiles sFile, int16 dataVar, int32 size, int32 offset);
|
2005-04-05 15:07:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Gob
|
|
|
|
#endif
|