2005-01-17 10:57:15 +00:00
|
|
|
/* Copyright (C) 1994-1998 Revolution Software Ltd.
|
|
|
|
* Copyright (C) 2003-2005 The ScummVM project
|
2003-07-28 01:44:38 +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 _SWORD2
|
|
|
|
#define _SWORD2
|
|
|
|
|
2004-06-10 06:41:08 +00:00
|
|
|
// Enable this to make it possible to clear the mouse cursor luggage by
|
|
|
|
// right-clicking. The original didn't do this, but it feels natural to me.
|
|
|
|
// However, I'm afraid that it'll interfer badly with parts of the game, so
|
|
|
|
// for now I'll keep it disabled.
|
|
|
|
|
|
|
|
#define RIGHT_CLICK_CLEARS_LUGGAGE 0
|
|
|
|
|
2003-10-04 08:07:03 +00:00
|
|
|
#include "base/engine.h"
|
2004-02-05 14:19:07 +00:00
|
|
|
|
2005-01-10 22:06:49 +00:00
|
|
|
#include "common/util.h"
|
2004-12-27 22:08:20 +00:00
|
|
|
|
2003-11-01 16:55:20 +00:00
|
|
|
#include "sword2/build_display.h"
|
2004-02-05 14:19:07 +00:00
|
|
|
#include "sword2/header.h"
|
2003-11-02 15:58:45 +00:00
|
|
|
#include "sword2/icons.h"
|
|
|
|
#include "sword2/object.h"
|
2003-11-03 07:47:42 +00:00
|
|
|
#include "sword2/save_rest.h"
|
2003-07-28 01:44:38 +00:00
|
|
|
|
Began what I hope is the final major restructuring of the BS2 engine.
In this first step, I have moved all opcode functions into functions.cpp,
instead of having them scattered all over the place.
To get things to compile again, I had to rewrite the overly complicated
sound effects handling. It's much simpler now.
The next step will be to move any non-trivial code out of the opcode
functions and into the appropriate object. This, I hope, will make it
easier to create well-separated objects, instead of the current mess.
I also want to tear down the artificial boundary between the main directory
and the "driver" directory. We already have a cross-platform layer; there's
no need to have yet another one. (Actually, the rewriting of the sound
effects code took one first step in this direction.)
At the final stage, I'd like to get rid of the "drivers" directory
completely, but I'll probably need some help with that if I want to
preserve the CVS history of the code.
Things will probably be a bit bumpy along the way, but I seem to have
reached a point of relative stability again, which is why I'm commiting
this now.
svn-id: r16668
2005-01-28 16:33:14 +00:00
|
|
|
#define MAX_starts 100
|
|
|
|
#define MAX_description 100
|
|
|
|
|
2003-11-10 01:04:12 +00:00
|
|
|
class GameDetector;
|
2005-01-10 22:06:49 +00:00
|
|
|
class OSystem;
|
2003-11-10 01:04:12 +00:00
|
|
|
|
|
|
|
namespace Sword2 {
|
|
|
|
|
2003-10-28 17:07:25 +00:00
|
|
|
enum {
|
|
|
|
GF_DEMO = 1 << 0
|
2003-10-04 00:52:27 +00:00
|
|
|
};
|
|
|
|
|
2004-11-14 15:00:01 +00:00
|
|
|
class MemoryManager;
|
2004-02-05 14:19:07 +00:00
|
|
|
class ResourceManager;
|
|
|
|
class Sound;
|
2005-02-19 14:02:16 +00:00
|
|
|
class Screen;
|
|
|
|
class Mouse;
|
2004-02-05 14:19:07 +00:00
|
|
|
class Logic;
|
|
|
|
class FontRenderer;
|
|
|
|
class Gui;
|
|
|
|
class Debugger;
|
|
|
|
|
2004-05-09 13:32:04 +00:00
|
|
|
enum {
|
|
|
|
RD_LEFTBUTTONDOWN = 0x01,
|
|
|
|
RD_LEFTBUTTONUP = 0x02,
|
|
|
|
RD_RIGHTBUTTONDOWN = 0x04,
|
|
|
|
RD_RIGHTBUTTONUP = 0x08,
|
|
|
|
RD_WHEELUP = 0x10,
|
|
|
|
RD_WHEELDOWN = 0x20,
|
|
|
|
RD_KEYDOWN = 0x40,
|
|
|
|
RD_MOUSEMOVE = 0x80
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MouseEvent {
|
|
|
|
bool pending;
|
|
|
|
uint16 buttons;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct KeyboardEvent {
|
|
|
|
bool pending;
|
|
|
|
uint16 ascii;
|
|
|
|
int keycode;
|
|
|
|
int modifiers;
|
|
|
|
};
|
|
|
|
|
2005-02-22 07:37:50 +00:00
|
|
|
struct StartUp {
|
|
|
|
char description[MAX_description];
|
|
|
|
|
|
|
|
// id of screen manager object
|
|
|
|
uint32 start_res_id;
|
|
|
|
|
|
|
|
// Tell the manager which startup you want (if there are more than 1)
|
|
|
|
// (i.e more than 1 entrance to a screen and/or separate game boots)
|
|
|
|
uint32 key;
|
|
|
|
};
|
|
|
|
|
2003-10-04 01:09:29 +00:00
|
|
|
class Sword2Engine : public Engine {
|
2003-10-12 14:40:04 +00:00
|
|
|
private:
|
2004-05-09 13:32:04 +00:00
|
|
|
uint32 _eventFilter;
|
|
|
|
|
|
|
|
// The event "buffers"
|
|
|
|
MouseEvent _mouseEvent;
|
|
|
|
KeyboardEvent _keyboardEvent;
|
|
|
|
|
2003-10-12 14:40:04 +00:00
|
|
|
uint32 _bootParam;
|
|
|
|
int32 _saveSlot;
|
|
|
|
|
2004-11-15 08:22:16 +00:00
|
|
|
void getPlayerStructures();
|
|
|
|
void putPlayerStructures();
|
2003-11-03 07:47:42 +00:00
|
|
|
|
2004-04-23 07:02:11 +00:00
|
|
|
uint32 saveData(uint16 slotNo, byte *buffer, uint32 bufferSize);
|
|
|
|
uint32 restoreData(uint16 slotNo, byte *buffer, uint32 bufferSize);
|
2003-11-03 07:47:42 +00:00
|
|
|
|
2004-04-23 07:02:11 +00:00
|
|
|
uint32 calcChecksum(byte *buffer, uint32 size);
|
2003-11-03 07:47:42 +00:00
|
|
|
|
2004-11-15 08:22:16 +00:00
|
|
|
void pauseGame();
|
|
|
|
void unpauseGame();
|
2003-11-08 15:47:51 +00:00
|
|
|
|
Began what I hope is the final major restructuring of the BS2 engine.
In this first step, I have moved all opcode functions into functions.cpp,
instead of having them scattered all over the place.
To get things to compile again, I had to rewrite the overly complicated
sound effects handling. It's much simpler now.
The next step will be to move any non-trivial code out of the opcode
functions and into the appropriate object. This, I hope, will make it
easier to create well-separated objects, instead of the current mess.
I also want to tear down the artificial boundary between the main directory
and the "driver" directory. We already have a cross-platform layer; there's
no need to have yet another one. (Actually, the rewriting of the sound
effects code took one first step in this direction.)
At the final stage, I'd like to get rid of the "drivers" directory
completely, but I'll probably need some help with that if I want to
preserve the CVS history of the code.
Things will probably be a bit bumpy along the way, but I seem to have
reached a point of relative stability again, which is why I'm commiting
this now.
svn-id: r16668
2005-01-28 16:33:14 +00:00
|
|
|
uint32 _totalStartups;
|
|
|
|
uint32 _totalScreenManagers;
|
|
|
|
uint32 _startRes;
|
|
|
|
|
2005-02-20 15:38:48 +00:00
|
|
|
bool _useSubtitles;
|
|
|
|
|
Began what I hope is the final major restructuring of the BS2 engine.
In this first step, I have moved all opcode functions into functions.cpp,
instead of having them scattered all over the place.
To get things to compile again, I had to rewrite the overly complicated
sound effects handling. It's much simpler now.
The next step will be to move any non-trivial code out of the opcode
functions and into the appropriate object. This, I hope, will make it
easier to create well-separated objects, instead of the current mess.
I also want to tear down the artificial boundary between the main directory
and the "driver" directory. We already have a cross-platform layer; there's
no need to have yet another one. (Actually, the rewriting of the sound
effects code took one first step in this direction.)
At the final stage, I'd like to get rid of the "drivers" directory
completely, but I'll probably need some help with that if I want to
preserve the CVS history of the code.
Things will probably be a bit bumpy along the way, but I seem to have
reached a point of relative stability again, which is why I'm commiting
this now.
svn-id: r16668
2005-01-28 16:33:14 +00:00
|
|
|
StartUp _startList[MAX_starts];
|
|
|
|
|
2003-09-17 21:06:16 +00:00
|
|
|
public:
|
2003-10-04 01:09:29 +00:00
|
|
|
Sword2Engine(GameDetector *detector, OSystem *syst);
|
2003-10-12 14:40:04 +00:00
|
|
|
~Sword2Engine();
|
2004-11-23 00:03:25 +00:00
|
|
|
int go();
|
2004-11-24 00:14:21 +00:00
|
|
|
int init(GameDetector &detector);
|
2004-11-15 08:22:16 +00:00
|
|
|
|
2005-02-20 15:38:48 +00:00
|
|
|
void registerDefaultSettings();
|
|
|
|
void readSettings();
|
|
|
|
void writeSettings();
|
|
|
|
|
2004-11-15 08:22:16 +00:00
|
|
|
void setupPersistentResources();
|
2004-01-08 13:03:50 +00:00
|
|
|
|
2005-02-20 15:38:48 +00:00
|
|
|
bool getSubtitles() { return _useSubtitles; }
|
|
|
|
void setSubtitles(bool b) { _useSubtitles = b; }
|
|
|
|
|
2004-01-08 13:03:50 +00:00
|
|
|
bool _quit;
|
|
|
|
|
2003-09-17 21:06:16 +00:00
|
|
|
uint32 _features;
|
2004-11-15 08:22:16 +00:00
|
|
|
Common::String _targetName; // target name for saves
|
2003-10-26 15:42:49 +00:00
|
|
|
|
2003-11-16 14:18:29 +00:00
|
|
|
MemoryManager *_memory;
|
|
|
|
ResourceManager *_resman;
|
2003-10-04 01:09:29 +00:00
|
|
|
Sound *_sound;
|
2005-02-19 14:02:16 +00:00
|
|
|
Screen *_screen;
|
|
|
|
Mouse *_mouse;
|
2003-11-15 09:38:00 +00:00
|
|
|
Logic *_logic;
|
2003-11-16 14:18:29 +00:00
|
|
|
FontRenderer *_fontRenderer;
|
2003-10-26 15:42:49 +00:00
|
|
|
|
|
|
|
Debugger *_debugger;
|
|
|
|
|
2003-10-08 18:02:53 +00:00
|
|
|
Common::RandomSource _rnd;
|
2003-09-20 18:33:24 +00:00
|
|
|
|
2003-10-11 12:26:53 +00:00
|
|
|
uint32 _speechFontId;
|
|
|
|
uint32 _controlsFontId;
|
|
|
|
uint32 _redFontId;
|
|
|
|
|
2004-05-09 13:32:04 +00:00
|
|
|
uint32 setEventFilter(uint32 filter);
|
|
|
|
|
2004-11-15 08:22:16 +00:00
|
|
|
void parseEvents();
|
2004-05-09 13:32:04 +00:00
|
|
|
|
2004-11-15 08:22:16 +00:00
|
|
|
bool checkForMouseEvents();
|
|
|
|
MouseEvent *mouseEvent();
|
|
|
|
KeyboardEvent *keyboardEvent();
|
2004-05-09 13:32:04 +00:00
|
|
|
|
2003-11-02 15:58:45 +00:00
|
|
|
bool _wantSfxDebug;
|
|
|
|
|
|
|
|
int32 _gameCycle;
|
2004-11-16 09:15:25 +00:00
|
|
|
|
|
|
|
#ifdef SWORD2_DEBUG
|
2003-11-02 15:58:45 +00:00
|
|
|
bool _renderSkip;
|
2004-11-16 09:15:25 +00:00
|
|
|
bool _stepOneCycle;
|
|
|
|
#endif
|
2003-11-02 15:58:45 +00:00
|
|
|
|
2004-06-10 06:41:08 +00:00
|
|
|
#if RIGHT_CLICK_CLEARS_LUGGAGE
|
2004-11-15 08:22:16 +00:00
|
|
|
bool heldIsInInventory();
|
2004-06-10 06:41:08 +00:00
|
|
|
#endif
|
|
|
|
|
2004-04-23 07:02:11 +00:00
|
|
|
byte *fetchPalette(byte *screenFile);
|
|
|
|
ScreenHeader *fetchScreenHeader(byte *screenFile);
|
|
|
|
LayerHeader *fetchLayerHeader(byte *screenFile, uint16 layerNo);
|
|
|
|
byte *fetchShadingMask(byte *screenFile);
|
|
|
|
|
|
|
|
AnimHeader *fetchAnimHeader(byte *animFile);
|
|
|
|
CdtEntry *fetchCdtEntry(byte *animFile, uint16 frameNo);
|
|
|
|
FrameHeader *fetchFrameHeader(byte *animFile, uint16 frameNo);
|
|
|
|
Parallax *fetchBackgroundParallaxLayer(byte *screenFile, int layer);
|
|
|
|
Parallax *fetchBackgroundLayer(byte *screenFile);
|
|
|
|
Parallax *fetchForegroundParallaxLayer(byte *screenFile, int layer);
|
|
|
|
byte *fetchTextLine(byte *file, uint32 text_line);
|
|
|
|
bool checkTextLine(byte *file, uint32 text_line);
|
|
|
|
byte *fetchPaletteMatchTable(byte *screenFile);
|
2004-04-24 12:29:35 +00:00
|
|
|
byte *fetchObjectName(int32 resourceId, byte *buf);
|
2003-11-03 07:47:42 +00:00
|
|
|
|
|
|
|
// savegame file header
|
|
|
|
|
2004-04-26 07:37:25 +00:00
|
|
|
#if !defined(__GNUC__)
|
|
|
|
#pragma START_PACK_STRUCTS
|
|
|
|
#endif
|
|
|
|
|
2003-11-16 14:18:29 +00:00
|
|
|
struct SaveGameHeader {
|
2003-11-03 07:47:42 +00:00
|
|
|
// sum of all bytes in file, excluding this uint32
|
|
|
|
uint32 checksum;
|
|
|
|
|
|
|
|
// player's description of savegame
|
|
|
|
char description[SAVE_DESCRIPTION_LEN];
|
|
|
|
|
|
|
|
uint32 varLength; // length of global variables resource
|
|
|
|
uint32 screenId; // resource id of screen file
|
|
|
|
uint32 runListId; // resource id of run list
|
|
|
|
uint32 feet_x; // copy of _thisScreen.feet_x
|
|
|
|
uint32 feet_y; // copy of _thisScreen.feet_y
|
|
|
|
uint32 music_id; // copy of 'looping_music_id'
|
2003-12-28 15:08:12 +00:00
|
|
|
ObjectHub player_hub; // copy of player object's object_hub structure
|
|
|
|
ObjectLogic logic; // copy of player character logic structure
|
2004-04-26 07:37:25 +00:00
|
|
|
ObjectGraphic graphic; // copy of player character graphic structure
|
|
|
|
ObjectMega mega; // copy of player character mega structure
|
|
|
|
} GCC_PACK;
|
2003-11-03 07:47:42 +00:00
|
|
|
|
2004-04-26 07:37:25 +00:00
|
|
|
#if !defined(__GNUC__)
|
|
|
|
#pragma END_PACK_STRUCTS
|
|
|
|
#endif
|
2003-11-03 07:47:42 +00:00
|
|
|
|
2003-11-16 14:18:29 +00:00
|
|
|
SaveGameHeader _saveGameHeader;
|
2003-11-03 07:47:42 +00:00
|
|
|
|
2004-04-23 07:02:11 +00:00
|
|
|
uint32 saveGame(uint16 slotNo, byte *description);
|
2003-11-03 07:47:42 +00:00
|
|
|
uint32 restoreGame(uint16 slotNo);
|
2004-04-23 07:02:11 +00:00
|
|
|
uint32 getSaveDescription(uint16 slotNo, byte *description);
|
2004-11-15 08:22:16 +00:00
|
|
|
bool saveExists();
|
2003-11-03 07:47:42 +00:00
|
|
|
bool saveExists(uint16 slotNo);
|
2004-04-23 07:02:11 +00:00
|
|
|
void fillSaveBuffer(byte *buffer, uint32 size, byte *desc);
|
|
|
|
uint32 restoreFromBuffer(byte *buffer, uint32 size);
|
2004-11-15 08:22:16 +00:00
|
|
|
uint32 findBufferSize();
|
2003-11-03 07:47:42 +00:00
|
|
|
|
2003-11-08 15:47:51 +00:00
|
|
|
bool _gamePaused;
|
|
|
|
bool _graphicsLevelFudged;
|
|
|
|
|
2004-11-15 08:22:16 +00:00
|
|
|
void startGame();
|
|
|
|
void gameCycle();
|
|
|
|
void closeGame();
|
2005-02-20 15:38:48 +00:00
|
|
|
void restartGame();
|
2003-11-08 15:47:51 +00:00
|
|
|
|
2003-11-11 10:30:25 +00:00
|
|
|
void sleepUntil(uint32 time);
|
2003-11-08 15:47:51 +00:00
|
|
|
|
2003-09-17 21:06:16 +00:00
|
|
|
void errorString(const char *buf_input, char *buf_output);
|
2004-11-15 08:22:16 +00:00
|
|
|
void initialiseFontResourceFlags();
|
2003-10-11 12:26:53 +00:00
|
|
|
void initialiseFontResourceFlags(uint8 language);
|
2005-01-10 22:06:49 +00:00
|
|
|
|
Began what I hope is the final major restructuring of the BS2 engine.
In this first step, I have moved all opcode functions into functions.cpp,
instead of having them scattered all over the place.
To get things to compile again, I had to rewrite the overly complicated
sound effects handling. It's much simpler now.
The next step will be to move any non-trivial code out of the opcode
functions and into the appropriate object. This, I hope, will make it
easier to create well-separated objects, instead of the current mess.
I also want to tear down the artificial boundary between the main directory
and the "driver" directory. We already have a cross-platform layer; there's
no need to have yet another one. (Actually, the rewriting of the sound
effects code took one first step in this direction.)
At the final stage, I'd like to get rid of the "drivers" directory
completely, but I'll probably need some help with that if I want to
preserve the CVS history of the code.
Things will probably be a bit bumpy along the way, but I seem to have
reached a point of relative stability again, which is why I'm commiting
this now.
svn-id: r16668
2005-01-28 16:33:14 +00:00
|
|
|
bool initStartMenu();
|
|
|
|
void registerStartPoint(int32 key, char *name);
|
2005-02-22 07:37:50 +00:00
|
|
|
|
|
|
|
uint32 getNumStarts() { return _totalStartups; }
|
|
|
|
uint32 getNumScreenManagers() { return _totalScreenManagers; }
|
|
|
|
StartUp *getStartList() { return _startList; }
|
|
|
|
|
|
|
|
void runStart(int start);
|
2005-01-10 22:06:49 +00:00
|
|
|
|
|
|
|
// Convenience alias for OSystem::getMillis().
|
|
|
|
// This is a bit hackish, of course :-).
|
|
|
|
uint32 getMillis();
|
2003-07-28 01:44:38 +00:00
|
|
|
};
|
|
|
|
|
2003-10-04 00:52:27 +00:00
|
|
|
} // End of namespace Sword2
|
|
|
|
|
2003-07-28 01:44:38 +00:00
|
|
|
#endif
|