2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2003-07-28 01:44:38 +00:00
|
|
|
*
|
2007-05-31 20:28:29 +00:00
|
|
|
* Additional copyright for this file:
|
|
|
|
* Copyright (C) 1994-1998 Revolution Software Ltd.
|
|
|
|
*
|
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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-07-28 01:44:38 +00:00
|
|
|
*
|
2006-02-09 15:12:44 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2003-07-28 01:44:38 +00:00
|
|
|
*/
|
|
|
|
|
2006-02-12 19:57:23 +00:00
|
|
|
#ifndef SWORD2_H
|
|
|
|
#define SWORD2_H
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2007-01-03 07:56:24 +00:00
|
|
|
#define FRAMES_PER_SECOND 12
|
|
|
|
|
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
|
|
|
|
|
2006-09-23 00:42:35 +00:00
|
|
|
#include "engines/engine.h"
|
2004-02-05 14:19:07 +00:00
|
|
|
|
2007-06-22 23:03:12 +00:00
|
|
|
#include "common/events.h"
|
2005-01-10 22:06:49 +00:00
|
|
|
#include "common/util.h"
|
2004-12-27 22:08:20 +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
|
|
|
|
|
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,
|
2007-03-18 12:53:28 +00:00
|
|
|
RD_KEYDOWN = 0x40
|
2004-05-09 13:32:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct MouseEvent {
|
|
|
|
bool pending;
|
|
|
|
uint16 buttons;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct KeyboardEvent {
|
|
|
|
bool pending;
|
2007-06-22 23:03:12 +00:00
|
|
|
Common::KeyState kbd;
|
2004-05-09 13:32:04 +00:00
|
|
|
};
|
|
|
|
|
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:
|
2005-07-09 13:21:21 +00:00
|
|
|
uint32 _inputEventFilter;
|
2004-05-09 13:32:04 +00:00
|
|
|
|
|
|
|
// 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;
|
2007-01-03 07:36:44 +00:00
|
|
|
int _gameSpeed;
|
2005-02-20 15:38:48 +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
|
|
|
StartUp _startList[MAX_starts];
|
|
|
|
|
2003-09-17 21:06:16 +00:00
|
|
|
public:
|
2006-04-15 20:36:41 +00:00
|
|
|
Sword2Engine(OSystem *syst);
|
2003-10-12 14:40:04 +00:00
|
|
|
~Sword2Engine();
|
2004-11-23 00:03:25 +00:00
|
|
|
int go();
|
2006-04-15 20:36:41 +00:00
|
|
|
int init();
|
2004-11-15 08:22:16 +00:00
|
|
|
|
2007-01-03 07:36:44 +00:00
|
|
|
int getFramesPerSecond();
|
|
|
|
|
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;
|
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;
|
|
|
|
|
2005-07-09 13:21:21 +00:00
|
|
|
uint32 setInputEventFilter(uint32 filter);
|
2004-05-09 13:32:04 +00:00
|
|
|
|
2005-07-09 13:21:21 +00:00
|
|
|
void parseInputEvents();
|
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);
|
Applied my own patch #1341495, in an attempt to fix alignment issues
reported by Crilith.
To elaborate a bit, the engine no longer accesses resource data through
packed structs. Instead it uses memory streams and the READ/WRITE
functions.
If data is mainly read, not written, I have replaced the old struct with a
new one with a read() function to read the whole thing from memory into the
struct's variables, and a write() function to dump the struct's variables
to memory. In fact, most of these write() functions remain unused.
If data is both read and written, I have replaced the struct with a class
with individual get/set functions to replace the old variables. This
manipulates memory directly.
Since I'm fairly sure that these structs are frequently stored as local
variables for a script, all script variables (both local and global) are
stored as little-endian and accessed through the READ/WRITE functions,
rather than being treated as arrays of 32-bit integers.
On a positive note, the functions for doing endian conversion of resources
and save games have been removed, and some general cleanups have been made
to assist in the rewrite.
Initial reports indicate that this patch indeed fixes alignment issues, and
that I have not - surprisingly - broken the game on big-endian platforms.
At least not in any immediately obvious way. And there's still plenty of
time to fix regressions before 0.9.0, too.
svn-id: r19366
2005-10-29 21:24:54 +00:00
|
|
|
byte *fetchScreenHeader(byte *screenFile);
|
|
|
|
byte *fetchLayerHeader(byte *screenFile, uint16 layerNo);
|
2004-04-23 07:02:11 +00:00
|
|
|
byte *fetchShadingMask(byte *screenFile);
|
|
|
|
|
Applied my own patch #1341495, in an attempt to fix alignment issues
reported by Crilith.
To elaborate a bit, the engine no longer accesses resource data through
packed structs. Instead it uses memory streams and the READ/WRITE
functions.
If data is mainly read, not written, I have replaced the old struct with a
new one with a read() function to read the whole thing from memory into the
struct's variables, and a write() function to dump the struct's variables
to memory. In fact, most of these write() functions remain unused.
If data is both read and written, I have replaced the struct with a class
with individual get/set functions to replace the old variables. This
manipulates memory directly.
Since I'm fairly sure that these structs are frequently stored as local
variables for a script, all script variables (both local and global) are
stored as little-endian and accessed through the READ/WRITE functions,
rather than being treated as arrays of 32-bit integers.
On a positive note, the functions for doing endian conversion of resources
and save games have been removed, and some general cleanups have been made
to assist in the rewrite.
Initial reports indicate that this patch indeed fixes alignment issues, and
that I have not - surprisingly - broken the game on big-endian platforms.
At least not in any immediately obvious way. And there's still plenty of
time to fix regressions before 0.9.0, too.
svn-id: r19366
2005-10-29 21:24:54 +00:00
|
|
|
byte *fetchAnimHeader(byte *animFile);
|
|
|
|
byte *fetchCdtEntry(byte *animFile, uint16 frameNo);
|
|
|
|
byte *fetchFrameHeader(byte *animFile, uint16 frameNo);
|
|
|
|
byte *fetchBackgroundParallaxLayer(byte *screenFile, int layer);
|
|
|
|
byte *fetchBackgroundLayer(byte *screenFile);
|
|
|
|
byte *fetchForegroundParallaxLayer(byte *screenFile, int layer);
|
2004-04-23 07:02:11 +00:00
|
|
|
byte *fetchTextLine(byte *file, uint32 text_line);
|
|
|
|
bool checkTextLine(byte *file, uint32 text_line);
|
|
|
|
byte *fetchPaletteMatchTable(byte *screenFile);
|
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
|
|
|
uint32 restoreFromBuffer(byte *buffer, uint32 size);
|
2006-07-22 09:05:13 +00:00
|
|
|
char *getSaveFileName(uint16 slotNo);
|
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
|
|
|
|
2006-09-16 19:31:23 +00:00
|
|
|
GUI::Debugger *getDebugger();
|
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
|