2001-10-09 14:30:12 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2001 Ludvig Strigeus
|
2005-01-01 16:09:25 +00:00
|
|
|
* Copyright (C) 2001-2005 The ScummVM project
|
2001-10-09 14:30:12 +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.
|
|
|
|
*
|
2001-11-06 20:00:47 +00:00
|
|
|
* $Header$
|
2001-10-09 14:30:12 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-05-14 19:11:20 +00:00
|
|
|
#ifndef SCUMM_H
|
|
|
|
#define SCUMM_H
|
|
|
|
|
2003-09-18 02:07:18 +00:00
|
|
|
#include "base/engine.h"
|
2002-09-13 12:20:55 +00:00
|
|
|
#include "common/file.h"
|
2003-05-15 21:57:38 +00:00
|
|
|
#include "common/rect.h"
|
2002-12-24 16:10:31 +00:00
|
|
|
#include "common/str.h"
|
2005-05-09 00:09:01 +00:00
|
|
|
#include "graphics/surface.h"
|
2003-06-15 01:42:19 +00:00
|
|
|
|
2003-09-07 16:16:19 +00:00
|
|
|
#include "scumm/gfx.h"
|
2003-09-11 10:32:15 +00:00
|
|
|
#include "scumm/script.h"
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2003-11-10 23:40:48 +00:00
|
|
|
namespace GUI {
|
|
|
|
class Dialog;
|
|
|
|
}
|
|
|
|
using GUI::Dialog;
|
2003-06-25 23:25:52 +00:00
|
|
|
class GameDetector;
|
2005-05-10 23:17:38 +00:00
|
|
|
namespace Common {
|
|
|
|
class InSaveFile;
|
|
|
|
class OutSaveFile;
|
|
|
|
}
|
2004-01-10 05:20:15 +00:00
|
|
|
|
2003-10-03 18:33:57 +00:00
|
|
|
namespace Scumm {
|
|
|
|
|
|
|
|
class Actor;
|
2005-03-27 01:07:22 +00:00
|
|
|
class BaseCostumeLoader;
|
2003-10-03 18:33:57 +00:00
|
|
|
class BaseCostumeRenderer;
|
2005-04-10 12:59:17 +00:00
|
|
|
class BaseScummFile;
|
2003-10-03 18:33:57 +00:00
|
|
|
class CharsetRenderer;
|
2002-04-14 18:13:08 +00:00
|
|
|
class IMuse;
|
2002-09-29 07:08:31 +00:00
|
|
|
class IMuseDigital;
|
2003-12-06 05:47:24 +00:00
|
|
|
class Insane;
|
2003-09-07 16:16:19 +00:00
|
|
|
class MusicEngine;
|
2003-10-02 22:42:03 +00:00
|
|
|
class ScummEngine;
|
2002-12-15 00:39:33 +00:00
|
|
|
class ScummDebugger;
|
2002-12-11 01:25:15 +00:00
|
|
|
class Serializer;
|
2003-06-25 23:25:52 +00:00
|
|
|
class Sound;
|
2003-07-02 13:47:03 +00:00
|
|
|
|
|
|
|
struct Box;
|
|
|
|
struct BoxCoords;
|
2002-07-16 21:03:14 +00:00
|
|
|
struct FindObjectInRoom;
|
2003-10-28 17:07:25 +00:00
|
|
|
struct ScummGameSettings;
|
2002-03-06 19:58:06 +00:00
|
|
|
|
2002-08-18 17:48:18 +00:00
|
|
|
// Use g_scumm from error() ONLY
|
2003-10-02 22:42:03 +00:00
|
|
|
extern ScummEngine *g_scumm;
|
2002-04-12 10:34:46 +00:00
|
|
|
|
2001-11-14 18:40:39 +00:00
|
|
|
/* System Wide Constants */
|
|
|
|
enum {
|
2003-05-18 23:46:30 +00:00
|
|
|
NUM_SENTENCE = 6,
|
2005-04-20 19:59:18 +00:00
|
|
|
NUM_SHADOW_PALETTE = 8
|
2001-11-14 18:40:39 +00:00
|
|
|
};
|
2001-10-26 17:34:50 +00:00
|
|
|
|
2005-04-03 22:10:10 +00:00
|
|
|
/**
|
|
|
|
* SCUMM feature flags define for every game which specific set of engine
|
|
|
|
* features are used by that game.
|
|
|
|
* Note that some of them could be replaced by checks for the SCUMM version.
|
|
|
|
*/
|
2003-06-15 01:42:19 +00:00
|
|
|
enum GameFeatures {
|
2005-04-03 22:10:10 +00:00
|
|
|
/** Games with the new camera system (ScummEngine_v7 and subclasses). */
|
2003-06-15 01:42:19 +00:00
|
|
|
GF_NEW_CAMERA = 1 << 1,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
|
|
|
/** Games with the AKOS custome system (ScummEngine_v7 and subclasses, HE games). */
|
2003-06-15 01:42:19 +00:00
|
|
|
GF_NEW_COSTUMES = 1 << 2,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
|
|
|
/** Games with digital IMUSE (ScummEngine_v7 and subclasses). */
|
2003-06-15 01:42:19 +00:00
|
|
|
GF_DIGI_IMUSE = 1 << 3,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
|
|
|
/** Games using XOR encrypted data files. */
|
2003-06-15 01:42:19 +00:00
|
|
|
GF_USE_KEY = 1 << 4,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
|
|
|
/** Small header games (ScummEngine_v4 and subclasses). */
|
2005-04-20 01:59:09 +00:00
|
|
|
GF_SMALL_HEADER = 1 << 5,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
|
|
|
/** Old bundle games (ScummEngine_v3old and subclasses). */
|
2005-04-20 01:59:09 +00:00
|
|
|
GF_OLD_BUNDLE = 1 << 6,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
|
|
|
/** EGA games. */
|
2005-04-20 01:59:09 +00:00
|
|
|
GF_16COLOR = 1 << 7,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
2005-04-20 19:59:18 +00:00
|
|
|
/** VGA versions of V3 games. Equivalent to (version == 3 && not GF_16COLOR) */
|
2005-04-20 01:59:09 +00:00
|
|
|
GF_OLD256 = 1 << 8,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
|
|
|
/** Games which have Audio CD tracks. */
|
2005-04-20 01:59:09 +00:00
|
|
|
GF_AUDIOTRACKS = 1 << 9,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
|
|
|
/** Games without actor scaling (ScummEngine_v3 and subclasses). */
|
2005-04-20 01:59:09 +00:00
|
|
|
GF_NO_SCALING = 1 << 10,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Games using only very few local variables in scripts.
|
|
|
|
* Apparently that is only the case for 256 color version of Indy3.
|
|
|
|
*/
|
2005-04-20 01:59:09 +00:00
|
|
|
GF_FEW_LOCALS = 1 << 11,
|
2005-04-03 22:10:10 +00:00
|
|
|
|
2005-04-20 03:13:06 +00:00
|
|
|
/** HE games without cursor resources */
|
|
|
|
GF_HE_CURSORLESS = 1 << 12,
|
|
|
|
|
2005-04-27 07:57:28 +00:00
|
|
|
/** HE games for which localized versions exist */
|
2005-05-01 14:22:00 +00:00
|
|
|
GF_HE_LOCALIZED = 1 << 13,
|
|
|
|
|
2005-05-10 22:31:48 +00:00
|
|
|
/**
|
|
|
|
* HE Games with more global scripts and different sprite handling
|
|
|
|
* i.e. read it as HE version 9.85. Used for HE98 only.
|
|
|
|
*/
|
|
|
|
GF_HE_985 = 1 << 14,
|
|
|
|
|
2005-05-01 14:22:00 +00:00
|
|
|
/** HE games with 16 bit color */
|
2005-05-10 22:31:48 +00:00
|
|
|
GF_16BIT_COLOR = 1 << 15,
|
2005-04-27 05:05:10 +00:00
|
|
|
|
2005-04-20 01:44:52 +00:00
|
|
|
/** Games with multiple versions */
|
2005-05-10 22:31:48 +00:00
|
|
|
GF_MULTIPLE_VERSIONS = 1 << 16,
|
2003-11-28 22:29:56 +00:00
|
|
|
|
2005-04-20 18:21:30 +00:00
|
|
|
/** A demo, not a full blown game. */
|
2005-05-10 22:31:48 +00:00
|
|
|
GF_DEMO = 1 << 17
|
2003-06-15 01:42:19 +00:00
|
|
|
};
|
|
|
|
|
2004-01-10 05:20:15 +00:00
|
|
|
/* SCUMM Debug Channels */
|
|
|
|
void CDECL debugC(int level, const char *s, ...);
|
|
|
|
|
|
|
|
struct dbgChannelDesc {
|
|
|
|
const char *channel, *desc;
|
|
|
|
uint32 flag;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
2004-01-10 11:01:47 +00:00
|
|
|
DEBUG_GENERAL = 1 << 0, // General debug
|
|
|
|
DEBUG_SCRIPTS = 1 << 2, // Track script execution (start/stop/pause)
|
|
|
|
DEBUG_OPCODES = 1 << 3, // Track opcode invocations
|
|
|
|
DEBUG_VARS = 1 << 4, // Track variable changes
|
|
|
|
DEBUG_RESOURCE = 1 << 5, // Track resource loading / allocation
|
|
|
|
DEBUG_IMUSE = 1 << 6, // Track iMUSE events
|
|
|
|
DEBUG_SOUND = 1 << 7, // General Sound Debug
|
2004-02-18 05:20:47 +00:00
|
|
|
DEBUG_ACTORS = 1 << 8, // General Actor Debug
|
2004-08-22 09:14:19 +00:00
|
|
|
DEBUG_INSANE = 1 << 9, // Track INSANE
|
|
|
|
DEBUG_SMUSH = 1 << 10 // Track SMUSH
|
2004-01-10 05:20:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Debug channel lookup table for Debugger console
|
|
|
|
static const dbgChannelDesc debugChannels[] = {
|
|
|
|
{"SCRIPTS", "Track script execution", DEBUG_SCRIPTS},
|
|
|
|
{"OPCODES", "Track opcode execution", DEBUG_OPCODES},
|
|
|
|
{"IMUSE", "Track iMUSE events", DEBUG_IMUSE},
|
|
|
|
{"RESOURCE", "Track resource loading/management", DEBUG_RESOURCE},
|
2004-01-10 11:01:47 +00:00
|
|
|
{"VARS", "Track variable changes", DEBUG_VARS},
|
2004-02-18 05:20:47 +00:00
|
|
|
{"ACTORS", "Actor-related debug", DEBUG_ACTORS},
|
2004-03-29 11:02:45 +00:00
|
|
|
{"SOUND", "Sound related debug", DEBUG_SOUND},
|
2004-08-22 09:14:19 +00:00
|
|
|
{"INSANE", "Track INSANE", DEBUG_INSANE},
|
|
|
|
{"SMUSH", "Track SMUSH", DEBUG_SMUSH}
|
2004-01-10 05:20:15 +00:00
|
|
|
};
|
|
|
|
|
2001-12-11 13:34:15 +00:00
|
|
|
struct MemBlkHeader {
|
|
|
|
uint32 size;
|
|
|
|
};
|
|
|
|
|
2002-11-29 15:13:49 +00:00
|
|
|
struct VerbSlot;
|
2003-09-11 10:32:15 +00:00
|
|
|
struct ObjectData;
|
2003-01-16 00:40:19 +00:00
|
|
|
|
2003-06-17 07:11:58 +00:00
|
|
|
struct V2MouseoverBox {
|
2003-10-02 17:43:02 +00:00
|
|
|
Common::Rect rect;
|
2003-06-17 07:11:58 +00:00
|
|
|
byte color;
|
|
|
|
byte hicolor;
|
|
|
|
};
|
|
|
|
|
2001-11-05 19:21:49 +00:00
|
|
|
enum ResTypes {
|
2001-11-10 19:12:32 +00:00
|
|
|
rtFirst = 1,
|
2001-11-05 19:21:49 +00:00
|
|
|
rtRoom = 1,
|
|
|
|
rtScript = 2,
|
|
|
|
rtCostume = 3,
|
|
|
|
rtSound = 4,
|
|
|
|
rtInventory = 5,
|
|
|
|
rtCharset = 6,
|
|
|
|
rtString = 7,
|
|
|
|
rtVerb = 8,
|
|
|
|
rtActorName = 9,
|
|
|
|
rtBuffer = 10,
|
|
|
|
rtScaleTable = 11,
|
|
|
|
rtTemp = 12,
|
|
|
|
rtFlObject = 13,
|
|
|
|
rtMatrix = 14,
|
|
|
|
rtBox = 15,
|
|
|
|
rtObjectName = 16,
|
2002-07-04 15:48:17 +00:00
|
|
|
rtRoomScripts = 17,
|
2004-08-24 02:02:56 +00:00
|
|
|
rtRoomImage = 18,
|
2004-06-26 12:57:11 +00:00
|
|
|
rtImage = 19,
|
2004-09-07 13:23:26 +00:00
|
|
|
rtTalkie = 20,
|
|
|
|
rtLast = 20,
|
|
|
|
rtNumTypes = 21
|
2001-11-12 20:50:36 +00:00
|
|
|
};
|
2001-11-05 19:21:49 +00:00
|
|
|
|
2002-07-13 14:07:37 +00:00
|
|
|
enum {
|
|
|
|
LIGHTMODE_dark = 0,
|
|
|
|
LIGHTMODE_actor_base = 1,
|
|
|
|
LIGHTMODE_screen = 2,
|
|
|
|
LIGHTMODE_flashlight = 4,
|
|
|
|
LIGHTMODE_actor_color = 8
|
|
|
|
};
|
|
|
|
|
2001-11-14 20:09:39 +00:00
|
|
|
enum {
|
|
|
|
MBS_LEFT_CLICK = 0x8000,
|
|
|
|
MBS_RIGHT_CLICK = 0x4000,
|
2002-07-13 11:56:04 +00:00
|
|
|
MBS_MOUSE_MASK = (MBS_LEFT_CLICK | MBS_RIGHT_CLICK),
|
2001-11-14 20:09:39 +00:00
|
|
|
MBS_MAX_KEY = 0x0200
|
|
|
|
};
|
|
|
|
|
2003-03-01 22:04:48 +00:00
|
|
|
enum ScummGameId {
|
2003-10-28 17:07:25 +00:00
|
|
|
GID_TENTACLE,
|
2003-03-01 22:04:48 +00:00
|
|
|
GID_MONKEY2,
|
|
|
|
GID_INDY4,
|
|
|
|
GID_MONKEY,
|
|
|
|
GID_SAMNMAX,
|
|
|
|
GID_MONKEY_EGA,
|
2003-08-13 02:21:36 +00:00
|
|
|
GID_PASS,
|
2003-03-01 22:04:48 +00:00
|
|
|
GID_LOOM256,
|
|
|
|
GID_ZAK256,
|
2003-04-06 19:41:34 +00:00
|
|
|
GID_INDY3,
|
2003-03-01 22:04:48 +00:00
|
|
|
GID_LOOM,
|
|
|
|
GID_FT,
|
|
|
|
GID_DIG,
|
|
|
|
GID_MONKEY_VGA,
|
|
|
|
GID_CMI,
|
|
|
|
GID_MANIAC,
|
|
|
|
GID_ZAK,
|
2004-06-03 01:28:22 +00:00
|
|
|
GID_MONKEY_SEGA,
|
|
|
|
GID_HEGAME, // Generic name for all HE games with default behaviour
|
2003-12-30 05:39:57 +00:00
|
|
|
GID_FBEAR,
|
2004-09-17 05:43:37 +00:00
|
|
|
GID_FUNPACK,
|
2005-04-29 01:08:58 +00:00
|
|
|
GID_FREDDI2,
|
2005-05-10 22:31:48 +00:00
|
|
|
GID_FREDDICOVE,
|
|
|
|
GID_PUTTRACE,
|
2005-05-12 01:21:04 +00:00
|
|
|
GID_FUNSHOP, // Used for all three funshops
|
|
|
|
GID_FOOTBALL
|
2003-03-01 22:04:48 +00:00
|
|
|
};
|
|
|
|
|
2001-10-16 10:01:48 +00:00
|
|
|
struct SentenceTab {
|
2003-04-28 03:13:49 +00:00
|
|
|
byte verb;
|
2003-05-22 14:10:20 +00:00
|
|
|
byte preposition;
|
2003-05-16 02:16:59 +00:00
|
|
|
uint16 objectA;
|
|
|
|
uint16 objectB;
|
2002-12-09 01:27:40 +00:00
|
|
|
uint8 freezeCount;
|
2001-10-16 10:01:48 +00:00
|
|
|
};
|
|
|
|
|
2004-04-03 19:41:31 +00:00
|
|
|
struct StringSlot {
|
|
|
|
int16 xpos;
|
|
|
|
int16 ypos;
|
2001-11-07 18:10:52 +00:00
|
|
|
int16 right;
|
2005-03-18 15:04:37 +00:00
|
|
|
int16 height;
|
2004-04-03 19:41:31 +00:00
|
|
|
byte color;
|
|
|
|
byte charset;
|
|
|
|
bool center;
|
|
|
|
bool overhead;
|
|
|
|
bool no_talk_anim;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct StringTab : StringSlot {
|
2004-04-05 23:54:58 +00:00
|
|
|
// The 'default' values for this string slot. This is used so that the
|
|
|
|
// string slot can temporarily be set to different values, and then be
|
|
|
|
// easily reset to a previously set default.
|
|
|
|
StringSlot _default;
|
2004-04-03 19:41:31 +00:00
|
|
|
|
2004-04-05 23:54:58 +00:00
|
|
|
void saveDefault() {
|
2004-04-03 19:41:31 +00:00
|
|
|
StringSlot &s = *this;
|
2004-04-05 23:54:58 +00:00
|
|
|
_default = s;
|
2004-04-03 19:41:31 +00:00
|
|
|
}
|
|
|
|
|
2004-04-05 23:54:58 +00:00
|
|
|
void loadDefault() {
|
2004-04-03 19:41:31 +00:00
|
|
|
StringSlot &s = *this;
|
2004-04-05 23:54:58 +00:00
|
|
|
s = _default;
|
2004-04-03 19:41:31 +00:00
|
|
|
}
|
2001-10-16 10:01:48 +00:00
|
|
|
};
|
|
|
|
|
2004-04-03 19:41:31 +00:00
|
|
|
|
|
|
|
|
2001-11-12 20:50:36 +00:00
|
|
|
enum WhereIsObject {
|
|
|
|
WIO_NOT_FOUND = -1,
|
|
|
|
WIO_INVENTORY = 0,
|
|
|
|
WIO_ROOM = 1,
|
|
|
|
WIO_GLOBAL = 2,
|
|
|
|
WIO_LOCAL = 3,
|
2002-03-10 07:48:01 +00:00
|
|
|
WIO_FLOBJECT = 4
|
2001-11-12 20:50:36 +00:00
|
|
|
};
|
|
|
|
|
2003-05-30 22:57:19 +00:00
|
|
|
struct LangIndexNode {
|
2003-05-30 23:24:29 +00:00
|
|
|
char tag[12+1];
|
2003-02-14 16:01:55 +00:00
|
|
|
int32 offset;
|
|
|
|
};
|
|
|
|
|
2004-09-18 00:36:17 +00:00
|
|
|
struct AuxBlock {
|
|
|
|
bool visible;
|
|
|
|
Common::Rect r;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct AuxEntry {
|
|
|
|
int actorNum;
|
|
|
|
int subIndex;
|
|
|
|
};
|
|
|
|
|
2005-03-31 21:39:31 +00:00
|
|
|
class ResourceManager {
|
|
|
|
friend class ScummDebugger;
|
|
|
|
friend class ScummEngine;
|
|
|
|
protected:
|
|
|
|
ScummEngine *_vm;
|
|
|
|
|
|
|
|
public:
|
|
|
|
byte mode[rtNumTypes];
|
|
|
|
uint16 num[rtNumTypes];
|
|
|
|
uint32 tags[rtNumTypes];
|
|
|
|
const char *name[rtNumTypes];
|
|
|
|
byte **address[rtNumTypes];
|
|
|
|
byte *flags[rtNumTypes];
|
|
|
|
byte *roomno[rtNumTypes];
|
|
|
|
uint32 *roomoffs[rtNumTypes];
|
|
|
|
uint32 *globsize[rtNumTypes];
|
|
|
|
|
|
|
|
uint32 _allocatedSize;
|
|
|
|
uint32 _maxHeapThreshold, _minHeapThreshold;
|
|
|
|
byte _expireCounter;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ResourceManager(ScummEngine *vm);
|
|
|
|
|
2005-04-06 17:31:35 +00:00
|
|
|
byte *createResource(int type, int index, uint32 size);
|
2005-03-31 21:39:31 +00:00
|
|
|
void nukeResource(int type, int i);
|
|
|
|
|
|
|
|
void freeResources();
|
|
|
|
|
|
|
|
bool validateResource(const char *str, int type, int index) const;
|
|
|
|
bool isResourceLoaded(int type, int index) const;
|
|
|
|
|
|
|
|
void lock(int type, int i);
|
|
|
|
void unlock(int type, int i);
|
|
|
|
|
|
|
|
void setResourceCounter(int type, int index, byte flag);
|
|
|
|
void increaseResourceCounter();
|
2005-04-06 17:31:35 +00:00
|
|
|
|
|
|
|
void resourceStats();
|
|
|
|
void expireResources(uint32 size);
|
2005-03-31 21:39:31 +00:00
|
|
|
};
|
|
|
|
|
2003-10-02 22:42:03 +00:00
|
|
|
class ScummEngine : public Engine {
|
2003-02-08 00:38:17 +00:00
|
|
|
friend class ScummDebugger;
|
2003-03-17 12:32:46 +00:00
|
|
|
friend class SmushPlayer;
|
2003-12-06 05:47:24 +00:00
|
|
|
friend class Insane;
|
2004-01-08 21:21:40 +00:00
|
|
|
friend class CharsetRenderer;
|
2005-04-06 17:31:35 +00:00
|
|
|
friend class ResourceManager;
|
2004-01-08 21:21:40 +00:00
|
|
|
|
2003-03-07 15:38:11 +00:00
|
|
|
void errorString(const char *buf_input, char *buf_output);
|
2002-03-20 17:51:07 +00:00
|
|
|
public:
|
2002-04-12 21:26:59 +00:00
|
|
|
/* Put often used variables at the top.
|
|
|
|
* That results in a shorter form of the opcode
|
|
|
|
* on some architectures. */
|
2002-04-14 18:13:08 +00:00
|
|
|
IMuse *_imuse;
|
2002-09-29 07:08:31 +00:00
|
|
|
IMuseDigital *_imuseDigital;
|
2003-09-07 16:16:19 +00:00
|
|
|
MusicEngine *_musicEngine;
|
2003-06-25 23:25:52 +00:00
|
|
|
Sound *_sound;
|
|
|
|
|
|
|
|
VerbSlot *_verbs;
|
|
|
|
ObjectData *_objs;
|
|
|
|
ScummDebugger *_debugger;
|
2003-06-04 23:03:23 +00:00
|
|
|
|
2003-10-13 12:56:53 +00:00
|
|
|
// Core variables
|
|
|
|
byte _gameId;
|
2003-06-06 23:55:00 +00:00
|
|
|
byte _version;
|
2005-04-20 01:49:01 +00:00
|
|
|
uint8 _heversion;
|
2003-06-04 23:03:23 +00:00
|
|
|
uint32 _features; // Should only be accessed for reading (TODO enforce it compiler-wise with making it private and creating an accessor)
|
2005-04-20 09:53:13 +00:00
|
|
|
Common::Platform _platform;
|
2004-09-10 12:13:03 +00:00
|
|
|
uint8 _gameMD5[16];
|
2003-10-13 12:56:53 +00:00
|
|
|
|
|
|
|
/** Random number generator */
|
|
|
|
Common::RandomSource _rnd;
|
|
|
|
|
|
|
|
/** Graphics manager */
|
|
|
|
Gdi gdi;
|
2004-11-27 17:50:23 +00:00
|
|
|
|
2003-10-13 12:56:53 +00:00
|
|
|
/** Central resource data. */
|
2005-03-31 21:39:31 +00:00
|
|
|
ResourceManager res;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2005-03-31 21:39:31 +00:00
|
|
|
protected:
|
2003-09-11 10:32:15 +00:00
|
|
|
VirtualMachineState vm;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2003-06-25 23:25:52 +00:00
|
|
|
public:
|
2003-02-08 01:27:21 +00:00
|
|
|
// Constructor / Destructor
|
2004-09-10 12:13:03 +00:00
|
|
|
ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameSettings &gs, uint8 md5sum[16]);
|
2003-10-02 22:42:03 +00:00
|
|
|
virtual ~ScummEngine();
|
2002-03-21 00:40:18 +00:00
|
|
|
|
2005-04-10 01:23:33 +00:00
|
|
|
/** Startup function, main loop. */
|
2004-11-23 00:03:25 +00:00
|
|
|
int go();
|
2004-09-20 22:04:06 +00:00
|
|
|
|
2003-02-08 01:27:21 +00:00
|
|
|
// Init functions
|
2004-11-24 00:14:21 +00:00
|
|
|
int init(GameDetector &detector);
|
2004-09-20 22:04:06 +00:00
|
|
|
|
2003-02-08 01:27:21 +00:00
|
|
|
virtual void setupScummVars();
|
2005-04-20 20:34:44 +00:00
|
|
|
virtual void initScummVars();
|
2002-12-29 19:54:11 +00:00
|
|
|
|
2004-09-20 22:04:06 +00:00
|
|
|
virtual void scummInit();
|
|
|
|
|
|
|
|
void loadCJKFont();
|
|
|
|
void setupMusic(int midi);
|
2004-11-28 21:24:02 +00:00
|
|
|
void setupVolumes();
|
2002-12-29 19:54:11 +00:00
|
|
|
|
2003-02-08 01:27:21 +00:00
|
|
|
// Scumm main loop
|
|
|
|
int scummLoop(int delta);
|
2003-03-06 17:58:13 +00:00
|
|
|
|
2003-02-08 01:27:21 +00:00
|
|
|
// Event handling
|
2003-03-17 12:32:46 +00:00
|
|
|
void parseEvents();
|
2002-12-29 19:54:11 +00:00
|
|
|
void waitForTimer(int msec_delay);
|
2004-01-25 12:20:59 +00:00
|
|
|
void processKbd(bool smushMode);
|
2003-05-13 23:33:01 +00:00
|
|
|
void clearClickedStatus();
|
2002-12-29 19:54:11 +00:00
|
|
|
|
2003-02-08 01:27:21 +00:00
|
|
|
// Misc utility functions
|
2004-01-10 05:20:15 +00:00
|
|
|
uint32 _debugFlags;
|
2003-10-12 19:10:17 +00:00
|
|
|
const char *getGameName() const { return _gameName.c_str(); }
|
2003-02-08 01:27:21 +00:00
|
|
|
|
|
|
|
// Cursor/palette
|
2002-12-29 19:54:11 +00:00
|
|
|
void updateCursor();
|
2004-09-18 20:29:13 +00:00
|
|
|
virtual void animateCursor() {}
|
2005-04-07 10:43:51 +00:00
|
|
|
virtual void updatePalette();
|
2002-12-29 19:54:11 +00:00
|
|
|
|
2004-06-27 21:06:04 +00:00
|
|
|
/**
|
|
|
|
* Flag which signals that the SMUSH video playback should end now
|
|
|
|
* (e.g. because it was aborted by the user or it's simply finished).
|
|
|
|
*/
|
|
|
|
bool _smushVideoShouldFinish;
|
|
|
|
/** This flag is a hack to allow the pause dialog to pause SMUSH playback, too. */
|
2003-12-25 02:55:00 +00:00
|
|
|
bool _smushPaused;
|
2004-06-27 21:06:04 +00:00
|
|
|
/** This flag tells IMuseDigital that INSANE is running. */
|
2004-06-20 21:01:32 +00:00
|
|
|
bool _insaneRunning;
|
|
|
|
|
2004-06-27 21:06:04 +00:00
|
|
|
protected:
|
|
|
|
Insane *_insane;
|
|
|
|
|
|
|
|
public:
|
2003-06-02 02:25:24 +00:00
|
|
|
void pauseGame();
|
|
|
|
void restart();
|
|
|
|
void shutDown();
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2003-06-08 12:11:14 +00:00
|
|
|
/** We keep running until this is set to true. */
|
|
|
|
bool _quit;
|
|
|
|
|
2003-07-28 01:36:16 +00:00
|
|
|
protected:
|
2002-09-19 21:45:56 +00:00
|
|
|
Dialog *_pauseDialog;
|
2004-07-20 11:30:15 +00:00
|
|
|
Dialog *_versionDialog;
|
2003-11-03 23:26:13 +00:00
|
|
|
Dialog *_mainMenuDialog;
|
2002-09-19 21:45:56 +00:00
|
|
|
|
2003-09-11 10:32:15 +00:00
|
|
|
int runDialog(Dialog &dialog);
|
2005-04-17 22:40:45 +00:00
|
|
|
void confirmExitDialog();
|
|
|
|
void confirmRestartDialog();
|
2002-09-19 21:45:56 +00:00
|
|
|
void pauseDialog();
|
2004-07-20 11:30:15 +00:00
|
|
|
void versionDialog();
|
2003-11-03 23:26:13 +00:00
|
|
|
void mainMenuDialog();
|
2005-04-17 22:40:45 +00:00
|
|
|
|
2004-03-28 13:28:44 +00:00
|
|
|
char displayMessage(const char *altButton, const char *message, ...);
|
2002-09-19 21:45:56 +00:00
|
|
|
|
2003-02-08 01:27:21 +00:00
|
|
|
byte _fastMode;
|
2003-01-16 12:47:34 +00:00
|
|
|
|
2005-04-17 22:40:45 +00:00
|
|
|
byte _numActors;
|
2003-05-13 23:42:41 +00:00
|
|
|
Actor *_actors; // Has _numActors elements
|
2005-04-30 22:01:16 +00:00
|
|
|
Actor **_sortedActors;
|
2002-03-20 17:51:07 +00:00
|
|
|
|
2004-08-01 13:57:00 +00:00
|
|
|
byte *_arraySlot;
|
2002-03-20 17:51:07 +00:00
|
|
|
uint16 *_inventory;
|
|
|
|
uint16 *_newNames;
|
2003-02-08 00:38:17 +00:00
|
|
|
public:
|
2003-05-08 15:48:50 +00:00
|
|
|
// VAR is a wrapper around scummVar, which attempts to include additional
|
|
|
|
// useful information should an illegal var access be detected.
|
|
|
|
#define VAR(x) scummVar(x, #x, __FILE__, __LINE__)
|
2003-05-24 22:17:45 +00:00
|
|
|
int32& scummVar(byte var, const char *varName, const char *file, int line)
|
2003-05-08 15:48:50 +00:00
|
|
|
{
|
2003-05-13 23:33:01 +00:00
|
|
|
if (var == 0xFF) {
|
2004-03-15 03:36:18 +00:00
|
|
|
error("Illegal access to variable %s in file %s, line %d", varName, file, line);
|
2003-05-13 23:33:01 +00:00
|
|
|
}
|
2003-05-08 15:48:50 +00:00
|
|
|
return _scummVars[var];
|
|
|
|
}
|
2004-01-08 21:21:40 +00:00
|
|
|
int32 scummVar(byte var, const char *varName, const char *file, int line) const
|
|
|
|
{
|
|
|
|
if (var == 0xFF) {
|
2004-03-15 03:36:18 +00:00
|
|
|
error("Illegal access to variable %s in file %s, line %d", varName, file, line);
|
2004-01-08 21:21:40 +00:00
|
|
|
}
|
|
|
|
return _scummVars[var];
|
|
|
|
}
|
2003-05-08 15:48:50 +00:00
|
|
|
|
2003-02-08 00:38:17 +00:00
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
int16 _varwatch;
|
2004-08-26 23:15:39 +00:00
|
|
|
int32 *_roomVars;
|
2003-05-08 15:48:50 +00:00
|
|
|
int32 *_scummVars;
|
2002-03-20 17:51:07 +00:00
|
|
|
byte *_bitVars;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
/* Global resource tables */
|
|
|
|
int _numVariables, _numBitVariables, _numLocalObjects;
|
|
|
|
int _numGlobalObjects, _numArray, _numVerbs, _numFlObject;
|
2004-09-04 23:35:14 +00:00
|
|
|
int _numInventory;
|
2003-12-26 23:11:35 +00:00
|
|
|
int _numNewNames, _numGlobalScripts;
|
2004-10-24 06:58:41 +00:00
|
|
|
int _numRoomVariables;
|
2004-10-04 02:23:02 +00:00
|
|
|
int _numPalettes, _numSprites, _numTalkies, _numUnk;
|
2005-05-05 14:30:37 +00:00
|
|
|
int _HEHeapSize;
|
2003-02-08 00:38:17 +00:00
|
|
|
public:
|
2004-09-17 05:43:37 +00:00
|
|
|
int _numLocalScripts, _numImages, _numRooms, _numScripts, _numSounds; // Used by HE games
|
2003-02-08 00:38:17 +00:00
|
|
|
int _numCostumes; // FIXME - should be protected, used by Actor::remapActorPalette
|
2003-12-26 23:11:35 +00:00
|
|
|
int _numCharsets; // FIXME - should be protected, used by CharsetRenderer
|
2003-06-05 02:44:18 +00:00
|
|
|
|
2005-03-27 01:07:22 +00:00
|
|
|
BaseCostumeLoader *_costumeLoader;
|
|
|
|
BaseCostumeRenderer *_costumeRenderer;
|
2005-03-13 23:18:59 +00:00
|
|
|
|
2005-03-16 03:20:32 +00:00
|
|
|
int _NESCostumeSet;
|
2005-03-24 03:22:32 +00:00
|
|
|
void NES_loadCostumeSet(int n);
|
|
|
|
byte *_NEScostdesc, *_NEScostlens, *_NEScostoffs, *_NEScostdata;
|
|
|
|
byte _NESPatTable[2][4096];
|
|
|
|
byte _NESPalette[2][16];
|
2005-03-16 03:20:32 +00:00
|
|
|
byte _NESBaseTiles;
|
2003-02-08 00:38:17 +00:00
|
|
|
|
2005-03-24 03:22:32 +00:00
|
|
|
int _NESStartStrip;
|
|
|
|
|
2003-02-08 00:38:17 +00:00
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
/* Current objects - can go in their respective classes */
|
|
|
|
byte _curActor;
|
|
|
|
int _curVerb;
|
|
|
|
int _curVerbSlot;
|
|
|
|
int _curPalIndex;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2003-05-24 22:17:45 +00:00
|
|
|
public:
|
|
|
|
byte _currentRoom; // FIXME - should be protected but Actor::isInCurrentRoom uses it
|
|
|
|
int _roomResource; // FIXME - should be protected but Sound::pauseSounds uses it
|
2003-02-08 00:38:17 +00:00
|
|
|
bool _egoPositioned; // Used by Actor::putActor, hence public
|
2003-05-24 22:17:45 +00:00
|
|
|
|
2005-04-09 11:59:43 +00:00
|
|
|
int generateSubstResFileName(const char *filename, char *buf, int bufsize);
|
2005-02-11 03:45:10 +00:00
|
|
|
int _substResFileNameIndex;
|
2005-01-29 17:58:47 +00:00
|
|
|
|
2003-02-08 00:38:17 +00:00
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
int _keyPressed;
|
2001-10-09 14:30:12 +00:00
|
|
|
uint16 _lastKeyHit;
|
2003-12-05 00:02:01 +00:00
|
|
|
bool _keyDownMap[512]; // FIXME - 512 is a guess. it's max(kbd.ascii)
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2003-10-02 17:43:02 +00:00
|
|
|
Common::Point _mouse;
|
|
|
|
Common::Point _virtualMouse;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2005-04-20 23:33:35 +00:00
|
|
|
uint16 _mouseAndKeyboardStat;
|
2003-05-13 23:33:01 +00:00
|
|
|
byte _leftBtnPressed, _rightBtnPressed;
|
2001-11-05 19:21:49 +00:00
|
|
|
|
2003-06-06 22:51:33 +00:00
|
|
|
/** The bootparam, to be passed to the script 1, the bootscript. */
|
|
|
|
int _bootParam;
|
|
|
|
|
2003-05-13 23:33:01 +00:00
|
|
|
// Various options useful for debugging
|
|
|
|
bool _dumpScripts;
|
|
|
|
bool _hexdumpScripts;
|
|
|
|
bool _showStack;
|
|
|
|
uint16 _debugMode;
|
2001-11-09 18:54:15 +00:00
|
|
|
|
2003-05-24 22:17:45 +00:00
|
|
|
// Save/Load class - some of this may be GUI
|
2002-03-20 17:51:07 +00:00
|
|
|
byte _saveLoadFlag, _saveLoadSlot;
|
2002-12-13 03:23:17 +00:00
|
|
|
uint32 _lastSaveTime;
|
2004-01-31 22:12:35 +00:00
|
|
|
bool _saveTemporaryState;
|
2001-11-09 18:54:15 +00:00
|
|
|
char _saveLoadName[32];
|
|
|
|
|
2004-06-25 21:48:12 +00:00
|
|
|
bool saveState(int slot, bool compat);
|
|
|
|
bool loadState(int slot, bool compat);
|
2005-04-26 13:33:17 +00:00
|
|
|
virtual void saveOrLoad(Serializer *s, uint32 savegameVersion);
|
2003-12-27 00:10:20 +00:00
|
|
|
void saveLoadResource(Serializer *ser, int type, int index); // "Obsolete"
|
|
|
|
void saveResource(Serializer *ser, int type, int index);
|
|
|
|
void loadResource(Serializer *ser, int type, int index);
|
2005-03-15 21:20:44 +00:00
|
|
|
void makeSavegameName(char *out, int slot, bool temporary);
|
2001-11-14 18:40:39 +00:00
|
|
|
|
2003-12-05 00:02:01 +00:00
|
|
|
int getKeyState(int key);
|
|
|
|
|
2003-02-08 01:27:21 +00:00
|
|
|
public:
|
2004-06-25 22:39:21 +00:00
|
|
|
bool getSavegameName(int slot, char *desc);
|
|
|
|
void listSavegames(bool *marks, int num);
|
2003-02-08 01:27:21 +00:00
|
|
|
|
2005-03-15 21:20:44 +00:00
|
|
|
void requestSave(int slot, const char *name, bool temporary = false);
|
2003-02-08 01:27:21 +00:00
|
|
|
void requestLoad(int slot);
|
2001-10-16 10:01:48 +00:00
|
|
|
|
2005-05-09 00:09:01 +00:00
|
|
|
// thumbnail stuff
|
|
|
|
public:
|
|
|
|
Graphics::Surface *loadThumbnailFromSlot(int slot);
|
|
|
|
|
|
|
|
protected:
|
2005-05-10 23:17:38 +00:00
|
|
|
Graphics::Surface *loadThumbnail(Common::InSaveFile *file);
|
|
|
|
void saveThumbnail(Common::OutSaveFile *file);
|
2005-05-09 00:09:01 +00:00
|
|
|
|
2003-02-08 01:27:21 +00:00
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
/* Script VM - should be in Script class */
|
2005-04-29 15:08:31 +00:00
|
|
|
uint32 _localScriptOffsets[1024];
|
2003-05-21 16:28:02 +00:00
|
|
|
const byte *_scriptPointer, *_scriptOrgPointer;
|
2003-09-11 10:32:15 +00:00
|
|
|
byte _opcode, _currentScript;
|
2002-03-20 17:51:07 +00:00
|
|
|
uint16 _curExecScript;
|
2004-04-05 00:24:26 +00:00
|
|
|
const byte * const *_lastCodePtr;
|
2002-03-20 17:51:07 +00:00
|
|
|
int _resultVarNumber, _scummStackPos;
|
2004-01-08 20:37:26 +00:00
|
|
|
int _vmStack[150];
|
2003-02-08 01:27:21 +00:00
|
|
|
int _keyScriptKey, _keyScriptNo;
|
2002-03-20 17:51:07 +00:00
|
|
|
|
2002-12-16 12:12:31 +00:00
|
|
|
virtual void setupOpcodes() = 0;
|
2003-05-14 20:37:53 +00:00
|
|
|
virtual void executeOpcode(byte i) = 0;
|
|
|
|
virtual const char *getOpcodeDesc(byte i) = 0;
|
2002-12-16 12:12:31 +00:00
|
|
|
|
2002-12-25 14:46:39 +00:00
|
|
|
void initializeLocals(int slot, int *vars);
|
2002-03-20 17:51:07 +00:00
|
|
|
int getScriptSlot();
|
2003-02-06 21:32:20 +00:00
|
|
|
|
2003-05-13 23:33:01 +00:00
|
|
|
void startScene(int room, Actor *a, int b);
|
|
|
|
void startManiac();
|
|
|
|
|
2003-02-06 21:32:20 +00:00
|
|
|
public:
|
2005-02-28 13:23:10 +00:00
|
|
|
void runScript(int script, bool freezeResistant, bool recursive, int *lvarptr, int cycle = 0);
|
2003-05-20 20:58:26 +00:00
|
|
|
void stopScript(int script);
|
2005-04-05 11:06:03 +00:00
|
|
|
void nukeArrays(byte scriptSlot);
|
2003-02-06 21:32:20 +00:00
|
|
|
|
|
|
|
protected:
|
2005-02-28 13:23:10 +00:00
|
|
|
void runObjectScript(int script, int entry, bool freezeResistant, bool recursive, int *vars, int slot = -1, int cycle = 0);
|
2002-03-20 17:51:07 +00:00
|
|
|
void runScriptNested(int script);
|
2003-05-24 22:17:45 +00:00
|
|
|
void executeScript();
|
2002-03-20 17:51:07 +00:00
|
|
|
void updateScriptPtr();
|
2005-04-20 23:53:29 +00:00
|
|
|
virtual void runInventoryScript(int i);
|
2003-05-24 22:17:45 +00:00
|
|
|
void checkAndRunSentenceScript();
|
|
|
|
void runExitScript();
|
|
|
|
void runEntryScript();
|
|
|
|
void runAllScripts();
|
|
|
|
void freezeScripts(int scr);
|
|
|
|
void unfreezeScripts();
|
|
|
|
|
2003-06-25 23:25:52 +00:00
|
|
|
bool isScriptInUse(int script) const;
|
|
|
|
bool isRoomScriptRunning(int script) const;
|
2004-08-22 09:38:18 +00:00
|
|
|
bool isScriptRunning(int script) const;
|
2003-05-24 22:17:45 +00:00
|
|
|
|
|
|
|
void killAllScriptsExceptCurrent();
|
|
|
|
void killScriptsAndResources();
|
|
|
|
void decreaseScriptDelay(int amount);
|
|
|
|
|
|
|
|
void stopObjectCode();
|
|
|
|
void stopObjectScript(int script);
|
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
void getScriptBaseAddress();
|
|
|
|
void getScriptEntryPoint();
|
2003-05-24 22:17:45 +00:00
|
|
|
int getVerbEntrypoint(int obj, int entry);
|
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
byte fetchScriptByte();
|
2002-12-23 00:23:36 +00:00
|
|
|
virtual uint fetchScriptWord();
|
|
|
|
virtual int fetchScriptWordSigned();
|
2002-03-20 17:51:07 +00:00
|
|
|
void ignoreScriptWord() { fetchScriptWord(); }
|
|
|
|
void ignoreScriptByte() { fetchScriptByte(); }
|
2003-05-04 02:27:22 +00:00
|
|
|
virtual void getResultPos();
|
2002-03-20 17:51:07 +00:00
|
|
|
void setResult(int result);
|
|
|
|
void push(int a);
|
|
|
|
int pop();
|
2003-05-13 23:33:01 +00:00
|
|
|
virtual int readVar(uint var);
|
2002-12-23 18:30:12 +00:00
|
|
|
virtual void writeVar(uint var, int value);
|
2002-03-20 17:51:07 +00:00
|
|
|
|
2003-05-20 20:58:26 +00:00
|
|
|
void beginCutscene(int *args);
|
2002-03-20 17:51:07 +00:00
|
|
|
void endCutscene();
|
2003-05-20 20:58:26 +00:00
|
|
|
void abortCutscene();
|
2002-03-20 17:51:07 +00:00
|
|
|
void beginOverride();
|
|
|
|
void endOverride();
|
2003-05-24 22:17:45 +00:00
|
|
|
|
2004-09-05 09:36:51 +00:00
|
|
|
void copyScriptString(byte *dst);
|
2002-12-28 01:57:19 +00:00
|
|
|
int resStrLen(const byte *src) const;
|
2002-03-20 17:51:07 +00:00
|
|
|
void doSentence(int c, int b, int a);
|
|
|
|
|
|
|
|
/* Should be in Resource class */
|
2005-03-30 21:59:12 +00:00
|
|
|
BaseScummFile *_fileHandle;
|
2002-03-20 17:51:07 +00:00
|
|
|
uint32 _fileOffset;
|
2004-07-26 17:14:57 +00:00
|
|
|
public:
|
|
|
|
/** The name of the (macintosh/rescumm style) container file, if any. */
|
|
|
|
Common::String _containerFile;
|
2004-07-26 23:15:01 +00:00
|
|
|
|
2005-03-30 21:59:12 +00:00
|
|
|
bool openFile(BaseScummFile &file, const char *filename);
|
2004-07-26 17:14:57 +00:00
|
|
|
|
|
|
|
protected:
|
2003-05-13 23:33:01 +00:00
|
|
|
int _resourceHeaderSize;
|
2003-10-12 19:10:17 +00:00
|
|
|
Common::String _gameName; // This is the name we use for opening resource files
|
|
|
|
Common::String _targetName; // This is the game the user calls it, so use for saving
|
2002-03-20 17:51:07 +00:00
|
|
|
byte _resourceMapper[128];
|
2005-02-14 03:12:41 +00:00
|
|
|
byte *_heV7DiskOffsets;
|
2004-09-18 23:48:48 +00:00
|
|
|
uint32 *_heV7RoomIntOffsets;
|
2004-06-23 01:36:57 +00:00
|
|
|
const byte *_resourceLastSearchBuf; // FIXME: need to put it to savefile?
|
|
|
|
uint32 _resourceLastSearchSize; // FIXME: need to put it to savefile?
|
2002-03-16 05:33:25 +00:00
|
|
|
|
2005-02-20 13:07:57 +00:00
|
|
|
virtual void allocateArrays();
|
2001-10-09 14:30:12 +00:00
|
|
|
void openRoom(int room);
|
2002-12-22 21:58:16 +00:00
|
|
|
void closeRoom();
|
2001-10-09 14:30:12 +00:00
|
|
|
void deleteRoomOffsets();
|
2005-04-03 22:56:02 +00:00
|
|
|
virtual void readRoomsOffsets();
|
2003-01-02 10:36:17 +00:00
|
|
|
void askForDisk(const char *filename, int disknum);
|
2003-07-28 16:55:06 +00:00
|
|
|
bool openResourceFile(const char *filename, byte encByte);
|
2003-02-08 00:38:17 +00:00
|
|
|
|
2003-05-21 18:09:49 +00:00
|
|
|
void loadPtrToResource(int type, int i, const byte *ptr);
|
2005-04-03 22:10:10 +00:00
|
|
|
virtual void readResTypeList(int id, uint32 tag, const char *name);
|
2001-10-09 14:30:12 +00:00
|
|
|
void allocResTypeData(int id, uint32 tag, int num, const char *name, int mode);
|
2005-04-06 17:31:35 +00:00
|
|
|
// byte *createResource(int type, int index, uint32 size);
|
2003-03-07 21:38:46 +00:00
|
|
|
int loadResource(int type, int i);
|
2005-03-31 21:39:31 +00:00
|
|
|
// void nukeResource(int type, int i);
|
2003-07-21 21:28:47 +00:00
|
|
|
int getResourceSize(int type, int idx);
|
2003-03-07 21:38:46 +00:00
|
|
|
|
|
|
|
public:
|
2001-10-09 14:30:12 +00:00
|
|
|
byte *getResourceAddress(int type, int i);
|
2005-04-09 20:22:31 +00:00
|
|
|
virtual byte *getStringAddress(int i);
|
2002-04-21 19:38:00 +00:00
|
|
|
byte *getStringAddressVar(int i);
|
2001-10-09 14:30:12 +00:00
|
|
|
void ensureResourceLoaded(int type, int i);
|
|
|
|
int getResourceRoomNr(int type, int index);
|
2003-03-07 21:38:46 +00:00
|
|
|
|
|
|
|
protected:
|
2001-10-09 14:30:12 +00:00
|
|
|
int readSoundResource(int type, int index);
|
2003-08-05 05:21:57 +00:00
|
|
|
int convert_extraflags(byte *ptr, byte * src_ptr);
|
2003-09-09 00:13:19 +00:00
|
|
|
void convertMac0Resource(int type, int index, byte *ptr, int size);
|
|
|
|
void convertADResource(int type, int index, byte *ptr, int size);
|
2002-09-21 13:48:03 +00:00
|
|
|
int readSoundResourceSmallHeader(int type, int index);
|
2003-06-25 23:49:54 +00:00
|
|
|
bool isResourceInUse(int type, int i) const;
|
2005-04-26 10:58:49 +00:00
|
|
|
virtual void loadRoomSubBlocks();
|
2005-04-03 15:06:08 +00:00
|
|
|
virtual void initRoomSubBlocks();
|
2003-01-26 10:57:01 +00:00
|
|
|
void clearRoomObjects();
|
2005-04-03 15:06:08 +00:00
|
|
|
virtual void loadRoomObjects();
|
2003-04-12 02:09:00 +00:00
|
|
|
|
2004-01-19 20:27:31 +00:00
|
|
|
virtual void readArrayFromIndexFile();
|
2005-04-09 20:26:51 +00:00
|
|
|
virtual void readMAXS(int blockSize) = 0;
|
2005-04-03 23:53:34 +00:00
|
|
|
virtual void readGlobalObjects();
|
2002-03-23 22:03:35 +00:00
|
|
|
virtual void readIndexFile();
|
2005-04-17 22:59:43 +00:00
|
|
|
virtual void readIndexBlock(uint32 block, uint32 itemsize);
|
2002-03-25 02:09:05 +00:00
|
|
|
virtual void loadCharset(int i);
|
2002-03-20 17:51:07 +00:00
|
|
|
void nukeCharset(int i);
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2003-03-07 21:38:46 +00:00
|
|
|
int _lastLoadedRoom;
|
|
|
|
public:
|
2003-05-28 20:01:47 +00:00
|
|
|
const byte *findResourceData(uint32 tag, const byte *ptr);
|
2004-06-23 01:36:57 +00:00
|
|
|
const byte *findResource(uint32 tag, const byte *ptr);
|
2003-05-26 13:14:57 +00:00
|
|
|
int getResourceDataSize(const byte *ptr) const;
|
2003-05-28 20:01:47 +00:00
|
|
|
void dumpResource(const char *tag, int index, const byte *ptr, int length = -1);
|
2003-03-06 17:58:13 +00:00
|
|
|
|
2003-03-07 21:38:46 +00:00
|
|
|
public:
|
2002-03-20 17:51:07 +00:00
|
|
|
/* Should be in Object class */
|
|
|
|
byte OF_OWNER_ROOM;
|
|
|
|
int getInventorySlot();
|
|
|
|
int findInventory(int owner, int index);
|
|
|
|
int getInventoryCount(int owner);
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2003-05-13 23:33:01 +00:00
|
|
|
protected:
|
|
|
|
byte *_objectOwnerTable, *_objectRoomTable, *_objectStateTable;
|
2004-09-06 05:50:32 +00:00
|
|
|
int _numObjectsInRoom;
|
2003-05-13 23:33:01 +00:00
|
|
|
|
2005-04-30 15:04:16 +00:00
|
|
|
public:
|
|
|
|
uint32 *_classData;
|
|
|
|
|
|
|
|
protected:
|
2005-04-01 13:05:40 +00:00
|
|
|
virtual void setupRoomObject(ObjectData *od, const byte *room, const byte *searchptr = NULL);
|
2004-01-11 20:42:40 +00:00
|
|
|
void markObjectRectAsDirty(int obj);
|
2002-03-20 17:51:07 +00:00
|
|
|
void loadFlObject(uint object, uint room);
|
|
|
|
void nukeFlObjects(int min, int max);
|
|
|
|
int findFlObjectSlot();
|
2003-01-12 07:30:17 +00:00
|
|
|
int findLocalObjectSlot();
|
2002-03-20 17:51:07 +00:00
|
|
|
void addObjectToInventory(uint obj, uint room);
|
2005-04-27 14:30:32 +00:00
|
|
|
void updateObjectStates();
|
2003-05-13 23:33:01 +00:00
|
|
|
public:
|
2003-06-25 23:25:52 +00:00
|
|
|
bool getClass(int obj, int cls) const; // Used in actor.cpp, hence public
|
2003-05-13 23:33:01 +00:00
|
|
|
protected:
|
2001-10-09 14:30:12 +00:00
|
|
|
void putClass(int obj, int cls, bool set);
|
|
|
|
int getState(int obj);
|
|
|
|
void putState(int obj, int state);
|
2002-03-20 17:51:07 +00:00
|
|
|
void setObjectState(int obj, int state, int x, int y);
|
2003-06-25 23:25:52 +00:00
|
|
|
int getOwner(int obj) const;
|
2001-10-09 14:30:12 +00:00
|
|
|
void putOwner(int obj, int owner);
|
2002-03-20 17:51:07 +00:00
|
|
|
void setOwnerOf(int obj, int owner);
|
|
|
|
void clearOwnerOf(int obj);
|
2003-06-25 23:25:52 +00:00
|
|
|
int getObjectRoom(int obj) const;
|
2002-03-20 17:51:07 +00:00
|
|
|
int getObjX(int obj);
|
|
|
|
int getObjY(int obj);
|
2002-07-16 18:51:27 +00:00
|
|
|
void getObjectXYPos(int object, int &x, int &y) { int dir; getObjectXYPos(object, x, y, dir); }
|
|
|
|
void getObjectXYPos(int object, int &x, int &y, int &dir);
|
2002-03-20 17:51:07 +00:00
|
|
|
int getObjOldDir(int obj);
|
|
|
|
int getObjNewDir(int obj);
|
2003-06-25 23:25:52 +00:00
|
|
|
int getObjectIndex(int object) const;
|
2004-06-21 02:33:23 +00:00
|
|
|
int getObjectImageCount(int object);
|
2003-06-25 23:25:52 +00:00
|
|
|
int whereIsObject(int object) const;
|
2002-03-20 17:51:07 +00:00
|
|
|
int findObject(int x, int y);
|
|
|
|
void findObjectInRoom(FindObjectInRoom *fo, byte findWhat, uint object, uint room);
|
2003-05-13 23:33:01 +00:00
|
|
|
public:
|
|
|
|
int getObjectOrActorXY(int object, int &x, int &y); // Used in actor.cpp, hence public
|
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
int getObjActToObjActDist(int a, int b); // Not sure how to handle
|
2003-05-31 12:17:58 +00:00
|
|
|
const byte *getObjOrActorName(int obj); // these three..
|
2004-03-17 01:50:15 +00:00
|
|
|
void setObjectName(int obj);
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
void addObjectToDrawQue(int object);
|
2004-09-06 01:10:31 +00:00
|
|
|
void removeObjectFromDrawQue(int object);
|
2002-03-20 17:51:07 +00:00
|
|
|
void clearDrawObjectQueue();
|
|
|
|
void processDrawQue();
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2005-04-28 22:34:56 +00:00
|
|
|
virtual void clearDrawQueues();
|
|
|
|
|
2003-06-25 23:25:52 +00:00
|
|
|
uint32 getOBCDOffs(int object) const;
|
|
|
|
byte *getOBCDFromObject(int obj);
|
2003-06-26 01:46:41 +00:00
|
|
|
const byte *getOBIMFromObject(const ObjectData &od);
|
|
|
|
const byte *getObjectImage(const byte *ptr, int state);
|
2005-04-17 23:19:16 +00:00
|
|
|
virtual int getObjectIdFromOBIM(const byte *obim);
|
2003-06-26 01:46:41 +00:00
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
int getDistanceBetween(bool is_obj_1, int b, int c, bool is_obj_2, int e, int f);
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2003-02-08 00:38:17 +00:00
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
/* Should be in Verb class */
|
2002-05-07 18:44:34 +00:00
|
|
|
uint16 _verbMouseOver;
|
2003-05-13 23:33:01 +00:00
|
|
|
int _inventoryOffset;
|
|
|
|
int8 _userPut;
|
2003-05-21 07:22:43 +00:00
|
|
|
uint16 _userState;
|
2003-05-13 23:33:01 +00:00
|
|
|
|
2005-04-28 01:04:42 +00:00
|
|
|
virtual void handleMouseOver(bool updateInventory);
|
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
void redrawVerbs();
|
|
|
|
void checkExecVerbs();
|
|
|
|
void verbMouseOver(int verb);
|
2004-09-26 07:30:29 +00:00
|
|
|
int findVerbAtPos(int x, int y) const;
|
2002-03-20 17:51:07 +00:00
|
|
|
void drawVerb(int verb, int mode);
|
|
|
|
void runInputScript(int a, int cmd, int mode);
|
|
|
|
void restoreVerbBG(int verb);
|
2002-08-14 09:53:34 +00:00
|
|
|
void drawVerbBitmap(int verb, int x, int y);
|
2003-06-25 23:49:54 +00:00
|
|
|
int getVerbSlot(int id, int mode) const;
|
2001-10-09 14:30:12 +00:00
|
|
|
void killVerb(int slot);
|
2001-11-06 20:00:47 +00:00
|
|
|
void setVerbObject(uint room, uint object, uint verb);
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2003-02-08 00:38:17 +00:00
|
|
|
public:
|
2002-03-20 17:51:07 +00:00
|
|
|
/* Should be in Actor class */
|
2003-06-25 23:49:54 +00:00
|
|
|
Actor *derefActor(int id, const char *errmsg = 0) const;
|
|
|
|
Actor *derefActorSafe(int id, const char *errmsg) const;
|
2001-10-09 19:02:28 +00:00
|
|
|
|
2003-06-25 23:25:52 +00:00
|
|
|
int getAngleFromPos(int x, int y) const;
|
2001-10-16 10:01:48 +00:00
|
|
|
|
2003-05-24 22:17:45 +00:00
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
void walkActors();
|
|
|
|
void playActorSounds();
|
2005-04-02 14:24:43 +00:00
|
|
|
void redrawAllActors();
|
2003-05-30 00:55:21 +00:00
|
|
|
void setActorRedrawFlags();
|
2004-07-05 06:25:01 +00:00
|
|
|
void putActors();
|
2003-05-24 22:17:45 +00:00
|
|
|
void showActors();
|
2004-07-26 15:14:10 +00:00
|
|
|
void setupV1ActorTalkColor();
|
2002-03-20 17:51:07 +00:00
|
|
|
void resetActorBgs();
|
2005-04-28 00:45:06 +00:00
|
|
|
virtual void processActors();
|
2003-02-27 10:17:29 +00:00
|
|
|
void processUpperActors();
|
2002-03-20 17:51:07 +00:00
|
|
|
int getActorFromPos(int x, int y);
|
|
|
|
|
2004-09-18 00:36:17 +00:00
|
|
|
public:
|
|
|
|
/* Actor AuxQueue stuff (HE) */
|
|
|
|
AuxBlock _auxBlocks[16];
|
|
|
|
uint16 _auxBlocksNum;
|
|
|
|
AuxEntry _auxEntries[16];
|
|
|
|
uint16 _auxEntriesNum;
|
|
|
|
|
|
|
|
void queueAuxBlock(Actor *a);
|
|
|
|
void queueAuxEntry(int actorNum, int subIndex);
|
|
|
|
|
2003-05-24 22:17:45 +00:00
|
|
|
public:
|
2002-03-20 17:51:07 +00:00
|
|
|
/* Actor talking stuff */
|
2004-10-12 14:40:32 +00:00
|
|
|
byte _actorToPrintStrFor, _V1TalkingActor;
|
2002-03-20 17:51:07 +00:00
|
|
|
int _sentenceNum;
|
2003-05-18 23:46:30 +00:00
|
|
|
SentenceTab _sentence[NUM_SENTENCE];
|
2002-09-22 01:17:53 +00:00
|
|
|
StringTab _string[6];
|
2003-05-25 00:47:36 +00:00
|
|
|
int16 _talkDelay;
|
2005-03-25 00:37:14 +00:00
|
|
|
int _NES_lastTalkingActor;
|
|
|
|
int _NES_talkColor;
|
|
|
|
|
2005-04-28 22:17:23 +00:00
|
|
|
virtual void actorTalk(const byte *msg);
|
2003-02-08 01:27:21 +00:00
|
|
|
void stopTalk();
|
2004-03-15 03:33:08 +00:00
|
|
|
int getTalkingActor(); // Wrapper around VAR_TALK_ACTOR for V1 Maniac
|
|
|
|
void setTalkingActor(int variable);
|
2004-01-16 10:45:56 +00:00
|
|
|
|
2005-03-15 21:48:06 +00:00
|
|
|
// Generic costume code
|
|
|
|
bool isCostumeInUse(int i) const;
|
|
|
|
|
2003-02-08 01:27:21 +00:00
|
|
|
// Akos Class
|
2004-09-21 21:10:23 +00:00
|
|
|
struct {
|
|
|
|
int16 cmd;
|
|
|
|
int16 actor;
|
|
|
|
int16 param1;
|
|
|
|
int16 param2;
|
|
|
|
} _akosQueue[32];
|
|
|
|
int16 _akosQueuePos;
|
|
|
|
|
2004-09-04 10:29:06 +00:00
|
|
|
Common::Rect _actorClipOverride;
|
2004-09-04 08:13:48 +00:00
|
|
|
|
2003-05-28 20:01:47 +00:00
|
|
|
bool akos_increaseAnims(const byte *akos, Actor *a);
|
|
|
|
bool akos_increaseAnim(Actor *a, int i, const byte *aksq, const uint16 *akfo, int numakfo);
|
2002-04-12 10:34:46 +00:00
|
|
|
void akos_queCommand(byte cmd, Actor *a, int param_1, int param_2);
|
2005-05-15 01:03:31 +00:00
|
|
|
virtual void akos_processQueue();
|
2001-10-16 10:01:48 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
/* Should be in Graphics class? */
|
|
|
|
uint16 _screenB, _screenH;
|
2003-05-25 00:47:36 +00:00
|
|
|
public:
|
2004-09-25 23:14:09 +00:00
|
|
|
int _roomHeight, _roomWidth;
|
2003-05-25 00:47:36 +00:00
|
|
|
int _screenHeight, _screenWidth;
|
2002-03-20 17:51:07 +00:00
|
|
|
VirtScreen virtscr[4]; // Virtual screen areas
|
|
|
|
CameraData camera; // 'Camera' - viewport
|
2004-09-29 21:45:52 +00:00
|
|
|
|
|
|
|
int _screenStartStrip, _screenEndStrip;
|
|
|
|
int _screenTop;
|
|
|
|
|
2005-02-20 00:17:22 +00:00
|
|
|
Common::RenderMode _renderMode;
|
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
ColorCycle _colorCycle[16]; // Palette cycles
|
2001-10-16 10:01:48 +00:00
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
uint32 _ENCD_offs, _EXCD_offs;
|
2004-08-22 06:16:16 +00:00
|
|
|
uint32 _CLUT_offs, _EPAL_offs;
|
2002-03-20 17:51:07 +00:00
|
|
|
uint32 _IM00_offs, _PALS_offs;
|
2001-10-16 10:01:48 +00:00
|
|
|
|
2002-05-14 18:14:16 +00:00
|
|
|
//ender: fullscreen
|
2004-09-18 22:42:45 +00:00
|
|
|
bool _fullRedraw, _bgNeedsRedraw;
|
2002-03-20 17:51:07 +00:00
|
|
|
bool _screenEffectFlag, _completeScreenRedraw;
|
2001-10-16 10:01:48 +00:00
|
|
|
|
2002-12-04 22:31:36 +00:00
|
|
|
struct {
|
|
|
|
int hotspotX, hotspotY, width, height;
|
|
|
|
byte animate, animateIndex;
|
|
|
|
int8 state;
|
|
|
|
} _cursor;
|
2002-12-25 03:48:27 +00:00
|
|
|
byte _grabbedCursor[8192];
|
2002-12-04 13:36:27 +00:00
|
|
|
byte _currentCursor;
|
2001-10-16 10:01:48 +00:00
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
byte _newEffect, _switchRoomEffect2, _switchRoomEffect;
|
|
|
|
bool _doEffect;
|
2004-09-05 15:44:29 +00:00
|
|
|
|
|
|
|
byte *_scrollBuffer;
|
2002-08-19 17:23:48 +00:00
|
|
|
|
2002-11-10 17:19:43 +00:00
|
|
|
struct {
|
|
|
|
int x, y, w, h;
|
|
|
|
byte *buffer;
|
2003-05-15 22:48:06 +00:00
|
|
|
uint16 xStrips, yStrips;
|
|
|
|
bool isDrawn;
|
2002-11-10 17:19:43 +00:00
|
|
|
} _flashlight;
|
2003-06-04 21:45:29 +00:00
|
|
|
|
2004-01-08 21:21:40 +00:00
|
|
|
public:
|
|
|
|
bool isLightOn() const;
|
|
|
|
|
|
|
|
protected:
|
2004-01-04 14:49:14 +00:00
|
|
|
void initScreens(int b, int h);
|
2005-04-26 15:52:55 +00:00
|
|
|
void initVirtScreen(VirtScreenNumber slot, int top, int width, int height, bool twobufs, bool scrollable);
|
2002-04-23 23:58:31 +00:00
|
|
|
void initBGBuffers(int height);
|
2003-05-28 20:01:47 +00:00
|
|
|
void initCycl(const byte *ptr); // Color cycle
|
2002-04-19 15:02:16 +00:00
|
|
|
|
2005-03-16 03:20:32 +00:00
|
|
|
void decodeNESBaseTiles();
|
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
void drawObject(int obj, int arg);
|
|
|
|
void drawRoomObjects(int arg);
|
|
|
|
void drawRoomObject(int i, int arg);
|
|
|
|
void drawBox(int x, int y, int x2, int y2, int color);
|
|
|
|
|
2005-03-24 03:22:32 +00:00
|
|
|
void restoreBG(Common::Rect rect, byte backcolor = 0);
|
2002-03-20 17:51:07 +00:00
|
|
|
void redrawBGStrip(int start, int num);
|
2004-09-03 17:27:40 +00:00
|
|
|
virtual void redrawBGAreas();
|
2001-11-05 19:21:49 +00:00
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
void cameraMoved();
|
|
|
|
void setCameraAtEx(int at);
|
2003-05-29 12:55:28 +00:00
|
|
|
virtual void setCameraAt(int pos_x, int pos_y);
|
|
|
|
virtual void setCameraFollows(Actor *a);
|
2003-05-29 23:44:24 +00:00
|
|
|
virtual void moveCamera();
|
|
|
|
virtual void panCameraTo(int x, int y);
|
2003-10-02 17:43:02 +00:00
|
|
|
void clampCameraPos(Common::Point *pt);
|
2003-05-29 12:55:28 +00:00
|
|
|
void actorFollowCamera(int act);
|
2001-11-06 20:00:47 +00:00
|
|
|
|
2004-10-04 04:04:37 +00:00
|
|
|
const byte *getPalettePtr(int palindex, int room);
|
2005-03-13 23:18:59 +00:00
|
|
|
void setupNESPalette();
|
2003-07-11 09:38:46 +00:00
|
|
|
void setupAmigaPalette();
|
2005-02-20 00:17:22 +00:00
|
|
|
void setupHercPalette();
|
|
|
|
void setupCGAPalette();
|
2003-05-03 20:49:53 +00:00
|
|
|
void setupEGAPalette();
|
2003-07-14 06:44:47 +00:00
|
|
|
void setupV1ManiacPalette();
|
|
|
|
void setupV1ZakPalette();
|
2005-04-17 12:55:42 +00:00
|
|
|
void setPalette(int pal);
|
|
|
|
void setRoomPalette(int pal, int room);
|
2005-04-07 10:43:51 +00:00
|
|
|
virtual void setPaletteFromPtr(const byte *ptr, int numcolor = -1);
|
|
|
|
virtual void setPalColor(int index, int r, int g, int b);
|
2002-03-20 17:51:07 +00:00
|
|
|
void setDirtyColors(int min, int max);
|
2003-05-28 20:01:47 +00:00
|
|
|
const byte *findPalInPals(const byte *pal, int index);
|
2002-03-20 17:51:07 +00:00
|
|
|
void swapPalColors(int a, int b);
|
2005-04-07 10:43:51 +00:00
|
|
|
virtual void copyPalColor(int dst, int src);
|
2002-03-20 17:51:07 +00:00
|
|
|
void cyclePalette();
|
|
|
|
void stopCycle(int i);
|
2003-12-17 17:12:09 +00:00
|
|
|
virtual void palManipulateInit(int resID, int start, int end, int time);
|
2002-03-20 17:51:07 +00:00
|
|
|
void palManipulate();
|
2003-05-25 00:47:36 +00:00
|
|
|
public:
|
2004-09-21 13:54:30 +00:00
|
|
|
int remapPaletteColor(int r, int g, int b, int threshold); // Used by Actor::remapActorPalette
|
2003-05-25 00:47:36 +00:00
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
void moveMemInPalRes(int start, int end, byte direction);
|
2002-12-09 02:14:17 +00:00
|
|
|
void setupShadowPalette(int slot, int redScale, int greenScale, int blueScale, int startColor, int endColor);
|
2004-08-14 02:44:16 +00:00
|
|
|
void setupShadowPalette(int redScale, int greenScale, int blueScale, int startColor, int endColor, int start, int end);
|
2005-04-07 10:43:51 +00:00
|
|
|
virtual void darkenPalette(int redScale, int greenScale, int blueScale, int startColor, int endColor);
|
2001-11-06 20:00:47 +00:00
|
|
|
|
2003-08-24 17:37:28 +00:00
|
|
|
void setupCursor();
|
2001-11-06 21:41:56 +00:00
|
|
|
|
2004-08-22 23:38:00 +00:00
|
|
|
void setCursorFromBuffer(byte *ptr, int width, int height, int pitch);
|
2001-11-07 18:10:52 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
public:
|
2004-01-08 03:24:41 +00:00
|
|
|
void markRectAsDirty(VirtScreenNumber virt, int left, int right, int top, int bottom, int dirtybit = 0);
|
2004-09-30 23:49:46 +00:00
|
|
|
void markRectAsDirty(VirtScreenNumber virt, const Common::Rect& rect, int dirtybit = 0) {
|
2004-01-08 03:24:41 +00:00
|
|
|
markRectAsDirty(virt, rect.left, rect.right, rect.top, rect.bottom, dirtybit);
|
|
|
|
}
|
2003-05-25 00:47:36 +00:00
|
|
|
protected:
|
2005-03-25 01:27:28 +00:00
|
|
|
// Screen rendering
|
|
|
|
byte *_compositeBuf;
|
|
|
|
byte *_herculesBuf;
|
2005-04-28 22:34:56 +00:00
|
|
|
virtual void drawDirtyScreenParts();
|
2004-01-03 22:45:23 +00:00
|
|
|
void updateDirtyScreen(VirtScreenNumber slot);
|
2005-03-25 01:27:28 +00:00
|
|
|
void drawStripToScreen(VirtScreen *vs, int x, int w, int t, int b);
|
2005-03-28 20:18:36 +00:00
|
|
|
void ditherCGA(byte *dst, int dstPitch, int x, int y, int width, int height) const;
|
|
|
|
void ditherHerc(byte *src, byte *hercbuf, int srcPitch, int *x, int *y, int *width, int *height) const;
|
2001-11-09 18:54:15 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
public:
|
2002-03-20 17:51:07 +00:00
|
|
|
VirtScreen *findVirtScreen(int y);
|
2003-06-01 14:30:26 +00:00
|
|
|
byte *getMaskBuffer(int x, int y, int z);
|
2003-02-08 01:27:21 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
protected:
|
2002-08-19 17:23:48 +00:00
|
|
|
void drawFlashlight();
|
|
|
|
|
2002-07-13 14:07:37 +00:00
|
|
|
void fadeIn(int effect);
|
2002-08-19 17:23:48 +00:00
|
|
|
void fadeOut(int effect);
|
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
void unkScreenEffect5(int a);
|
2002-08-31 21:23:28 +00:00
|
|
|
void unkScreenEffect6();
|
2002-08-31 13:29:10 +00:00
|
|
|
void transitionEffect(int a);
|
|
|
|
void dissolveEffect(int width, int height);
|
|
|
|
void scrollEffect(int dir);
|
2001-11-11 16:54:45 +00:00
|
|
|
|
2002-11-06 14:19:50 +00:00
|
|
|
// bomp
|
2003-05-25 00:47:36 +00:00
|
|
|
public:
|
2003-05-28 21:28:30 +00:00
|
|
|
byte *_bompActorPalettePtr;
|
2003-06-01 13:09:30 +00:00
|
|
|
void drawBomp(const BompDrawData &bd, bool mirror);
|
2002-11-06 15:29:49 +00:00
|
|
|
|
2003-05-30 19:00:33 +00:00
|
|
|
protected:
|
2003-02-08 02:00:22 +00:00
|
|
|
bool _shakeEnabled;
|
2002-03-20 17:51:07 +00:00
|
|
|
uint _shakeFrame;
|
2003-02-08 02:00:22 +00:00
|
|
|
void setShake(int mode);
|
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
int _drawObjectQueNr;
|
2003-12-30 06:24:47 +00:00
|
|
|
byte _drawObjectQue[200];
|
2002-12-15 23:40:37 +00:00
|
|
|
|
2003-01-14 10:06:56 +00:00
|
|
|
/* For each of the 410 screen strips, gfxUsageBits contains a
|
|
|
|
* bitmask. The lower 80 bits each correspond to one actor and
|
|
|
|
* signify if any part of that actor is currently contained in
|
|
|
|
* that strip.
|
|
|
|
*
|
|
|
|
* If the leftmost bit is set, the strip (background) is dirty
|
|
|
|
* needs to be redrawn.
|
|
|
|
*
|
|
|
|
* The second leftmost bit is set by removeBlastObject() and
|
|
|
|
* restoreBG(), but I'm not yet sure why.
|
2002-12-15 23:40:37 +00:00
|
|
|
*/
|
2003-01-14 10:06:56 +00:00
|
|
|
uint32 gfxUsageBits[410 * 3];
|
2002-12-15 23:40:37 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
void upgradeGfxUsageBits();
|
|
|
|
void setGfxUsageBit(int strip, int bit);
|
|
|
|
void clearGfxUsageBit(int strip, int bit);
|
|
|
|
bool testGfxUsageBit(int strip, int bit);
|
|
|
|
bool testGfxAnyUsageBits(int strip);
|
|
|
|
bool testGfxOtherUsageBits(int strip, int bit);
|
|
|
|
|
|
|
|
public:
|
2005-04-07 10:43:51 +00:00
|
|
|
uint8 *_hePalettes;
|
2004-07-11 09:15:14 +00:00
|
|
|
byte _HEV7ActorPalette[256];
|
2003-10-12 17:33:29 +00:00
|
|
|
byte _roomPalette[256];
|
2002-03-20 17:51:07 +00:00
|
|
|
byte *_shadowPalette;
|
2005-04-28 00:45:06 +00:00
|
|
|
bool _skipDrawObject;
|
2004-08-26 14:28:42 +00:00
|
|
|
int _timers[4];
|
2005-03-12 00:47:17 +00:00
|
|
|
int _voiceMode;
|
2003-08-13 15:37:28 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
protected:
|
2002-03-20 17:51:07 +00:00
|
|
|
int _shadowPaletteSize;
|
2002-11-06 15:29:49 +00:00
|
|
|
byte _currentPalette[3 * 256];
|
2005-04-19 04:12:49 +00:00
|
|
|
byte _darkenPalette[3 * 256];
|
2002-04-19 15:02:16 +00:00
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
int _palDirtyMin, _palDirtyMax;
|
2001-11-26 19:57:57 +00:00
|
|
|
|
2004-01-25 12:20:59 +00:00
|
|
|
byte _palManipStart, _palManipEnd;
|
|
|
|
uint16 _palManipCounter;
|
|
|
|
byte *_palManipPalette;
|
|
|
|
byte *_palManipIntermediatePal;
|
|
|
|
|
2002-08-14 20:43:56 +00:00
|
|
|
byte _haveMsg;
|
|
|
|
bool _useTalkAnims;
|
|
|
|
uint16 _defaultTalkDelay;
|
2004-09-20 22:04:06 +00:00
|
|
|
int _tempMusic;
|
2002-08-14 20:43:56 +00:00
|
|
|
int _saveSound;
|
2003-10-02 14:37:40 +00:00
|
|
|
bool _native_mt32;
|
2005-04-13 00:11:49 +00:00
|
|
|
bool _enable_gs;
|
2004-11-15 03:57:22 +00:00
|
|
|
int _midi;
|
2003-10-05 17:32:38 +00:00
|
|
|
int _midiDriver; // Use the MD_ values from mididrv.h
|
2003-12-11 06:08:43 +00:00
|
|
|
bool _copyProtection;
|
2003-10-05 17:32:38 +00:00
|
|
|
bool _demoMode;
|
|
|
|
bool _confirmExit;
|
2001-11-26 19:57:57 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
public:
|
2002-03-20 17:51:07 +00:00
|
|
|
uint16 _extraBoxFlags[65];
|
2001-11-26 19:57:57 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
byte getNumBoxes();
|
|
|
|
byte *getBoxMatrixBaseAddr();
|
|
|
|
int getPathToDestBox(byte from, byte to);
|
2003-10-02 17:43:02 +00:00
|
|
|
void getGates(int trap1, int trap2, Common::Point gateA[2], Common::Point gateB[2]);
|
2003-05-25 00:47:36 +00:00
|
|
|
bool inBoxQuickReject(int box, int x, int y, int threshold);
|
2003-07-02 13:47:03 +00:00
|
|
|
int getClosestPtOnBox(int box, int x, int y, int16& outX, int16& outY);
|
2003-05-25 00:47:36 +00:00
|
|
|
int getSpecialBox(int param1, int param2);
|
|
|
|
|
|
|
|
void setBoxFlags(int box, int val);
|
|
|
|
void setBoxScale(int box, int b);
|
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
bool checkXYInBoxBounds(int box, int x, int y);
|
|
|
|
uint distanceFromPt(int x, int y, int ptx, int pty);
|
|
|
|
void getBoxCoordinates(int boxnum, BoxCoords *bc);
|
|
|
|
byte getMaskFromBox(int box);
|
|
|
|
Box *getBoxBaseAddr(int box);
|
|
|
|
byte getBoxFlags(int box);
|
|
|
|
int getBoxScale(int box);
|
2003-03-06 17:58:13 +00:00
|
|
|
|
2003-01-13 01:29:45 +00:00
|
|
|
int getScale(int box, int x, int y);
|
2004-11-05 05:13:56 +00:00
|
|
|
int getScaleFromSlot(int slot, int x, int y);
|
2003-01-13 01:29:45 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
protected:
|
2003-09-09 16:55:25 +00:00
|
|
|
// Scaling slots/items
|
2003-01-13 01:29:45 +00:00
|
|
|
struct ScaleSlot {
|
|
|
|
int x1, y1, scale1;
|
|
|
|
int x2, y2, scale2;
|
|
|
|
};
|
2003-09-09 16:55:25 +00:00
|
|
|
ScaleSlot _scaleSlots[20];
|
2003-01-13 01:29:45 +00:00
|
|
|
void setScaleSlot(int slot, int x1, int y1, int scale1, int x2, int y2, int scale2);
|
2003-01-13 14:04:41 +00:00
|
|
|
void setBoxScaleSlot(int box, int slot);
|
2003-09-09 16:55:25 +00:00
|
|
|
void convertScaleTableToScaleSlot(int slot);
|
2003-01-13 01:29:45 +00:00
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
void createBoxMatrix();
|
2003-05-25 00:47:36 +00:00
|
|
|
bool areBoxesNeighbours(int i, int j);
|
2001-11-26 19:57:57 +00:00
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
/* String class */
|
2004-01-08 21:21:40 +00:00
|
|
|
public:
|
2002-12-25 21:04:47 +00:00
|
|
|
CharsetRenderer *_charset;
|
2002-12-26 00:21:19 +00:00
|
|
|
byte _charsetColorMap[16];
|
2003-05-25 00:47:36 +00:00
|
|
|
protected:
|
2004-01-25 12:20:59 +00:00
|
|
|
byte _charsetColor;
|
2002-04-26 18:52:33 +00:00
|
|
|
byte _charsetData[15][16];
|
2002-12-25 21:04:47 +00:00
|
|
|
|
2002-12-26 00:21:19 +00:00
|
|
|
int _charsetBufPos;
|
|
|
|
byte _charsetBuffer[512];
|
|
|
|
|
2004-04-04 00:29:13 +00:00
|
|
|
bool _keepText;
|
|
|
|
|
2005-05-05 13:16:50 +00:00
|
|
|
virtual void initCharset(int charset);
|
2004-01-08 21:21:40 +00:00
|
|
|
|
2004-09-18 20:50:15 +00:00
|
|
|
void printString(int m, const byte *msg);
|
|
|
|
|
2002-03-20 17:51:07 +00:00
|
|
|
void CHARSET_1();
|
2004-03-15 03:09:48 +00:00
|
|
|
void drawString(int a, const byte *msg);
|
|
|
|
void unkMessage1(const byte *msg);
|
2004-11-22 22:32:46 +00:00
|
|
|
void showMessageDialog(const byte *msg);
|
2004-04-04 00:29:13 +00:00
|
|
|
|
|
|
|
int addMessageToStack(const byte *msg, byte *dst, int dstSize);
|
|
|
|
int addIntToStack(byte *dst, int dstSize, int var);
|
|
|
|
int addVerbToStack(byte *dst, int dstSize, int var);
|
|
|
|
int addNameToStack(byte *dst, int dstSize, int var);
|
|
|
|
int addStringToStack(byte *dst, int dstSize, int var);
|
|
|
|
|
2005-04-28 22:17:23 +00:00
|
|
|
virtual void loadLanguageBundle() {}
|
|
|
|
|
2003-05-25 20:38:44 +00:00
|
|
|
public:
|
2005-04-28 22:17:23 +00:00
|
|
|
Common::Language _language; // Accessed by a hack in NutRenderer::loadFont
|
|
|
|
|
|
|
|
// Used by class ScummDialog:
|
|
|
|
virtual void translateText(const byte *text, byte *trans_buff);
|
2003-06-04 14:37:43 +00:00
|
|
|
|
|
|
|
// Somewhat hackish stuff for 2 byte support (Chinese/Japanese/Korean)
|
2004-09-18 22:42:45 +00:00
|
|
|
bool _useCJKMode;
|
2003-06-04 14:37:43 +00:00
|
|
|
int _2byteHeight;
|
|
|
|
int _2byteWidth;
|
|
|
|
byte *get2byteCharPtr(int idx);
|
2003-06-14 11:52:34 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
protected:
|
2003-06-14 11:52:34 +00:00
|
|
|
byte *_2byteFontPtr;
|
2003-05-25 00:47:36 +00:00
|
|
|
|
2005-04-10 12:59:17 +00:00
|
|
|
uint32 fileReadDword();
|
2001-11-27 17:56:04 +00:00
|
|
|
|
2003-05-25 00:47:36 +00:00
|
|
|
public:
|
2003-01-14 10:06:56 +00:00
|
|
|
|
2002-12-16 12:12:31 +00:00
|
|
|
/* Scumm Vars */
|
2003-01-29 04:38:55 +00:00
|
|
|
byte VAR_LANGUAGE;
|
2002-12-21 12:34:17 +00:00
|
|
|
byte VAR_KEYPRESS;
|
2004-01-09 22:10:32 +00:00
|
|
|
byte VAR_SYNC;
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_EGO;
|
|
|
|
byte VAR_CAMERA_POS_X;
|
|
|
|
byte VAR_HAVE_MSG;
|
|
|
|
byte VAR_ROOM;
|
|
|
|
byte VAR_OVERRIDE;
|
|
|
|
byte VAR_MACHINE_SPEED;
|
|
|
|
byte VAR_ME;
|
|
|
|
byte VAR_NUM_ACTOR;
|
|
|
|
byte VAR_CURRENT_LIGHTS;
|
2005-04-20 23:13:11 +00:00
|
|
|
byte VAR_CURRENTDRIVE;
|
2002-12-26 01:15:25 +00:00
|
|
|
byte VAR_CURRENTDISK;
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_TMR_1;
|
|
|
|
byte VAR_TMR_2;
|
|
|
|
byte VAR_TMR_3;
|
2003-05-01 00:04:05 +00:00
|
|
|
byte VAR_MUSIC_TIMER;
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_ACTOR_RANGE_MIN;
|
|
|
|
byte VAR_ACTOR_RANGE_MAX;
|
|
|
|
byte VAR_CAMERA_MIN_X;
|
|
|
|
byte VAR_CAMERA_MAX_X;
|
|
|
|
byte VAR_TIMER_NEXT;
|
|
|
|
byte VAR_VIRT_MOUSE_X;
|
|
|
|
byte VAR_VIRT_MOUSE_Y;
|
|
|
|
byte VAR_ROOM_RESOURCE;
|
|
|
|
byte VAR_LAST_SOUND;
|
|
|
|
byte VAR_CUTSCENEEXIT_KEY;
|
|
|
|
byte VAR_OPTIONS_KEY;
|
|
|
|
byte VAR_TALK_ACTOR;
|
|
|
|
byte VAR_CAMERA_FAST_X;
|
|
|
|
byte VAR_SCROLL_SCRIPT;
|
|
|
|
byte VAR_ENTRY_SCRIPT;
|
|
|
|
byte VAR_ENTRY_SCRIPT2;
|
|
|
|
byte VAR_EXIT_SCRIPT;
|
|
|
|
byte VAR_EXIT_SCRIPT2;
|
|
|
|
byte VAR_VERB_SCRIPT;
|
|
|
|
byte VAR_SENTENCE_SCRIPT;
|
2003-06-14 12:23:30 +00:00
|
|
|
byte VAR_INVENTORY_SCRIPT;
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_CUTSCENE_START_SCRIPT;
|
|
|
|
byte VAR_CUTSCENE_END_SCRIPT;
|
|
|
|
byte VAR_CHARINC;
|
|
|
|
byte VAR_WALKTO_OBJ;
|
|
|
|
byte VAR_DEBUGMODE;
|
|
|
|
byte VAR_HEAPSPACE;
|
|
|
|
byte VAR_RESTART_KEY;
|
|
|
|
byte VAR_PAUSE_KEY;
|
|
|
|
byte VAR_MOUSE_X;
|
|
|
|
byte VAR_MOUSE_Y;
|
|
|
|
byte VAR_TIMER;
|
|
|
|
byte VAR_TMR_4;
|
|
|
|
byte VAR_SOUNDCARD;
|
|
|
|
byte VAR_VIDEOMODE;
|
2003-11-03 23:26:13 +00:00
|
|
|
byte VAR_MAINMENU_KEY;
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_FIXEDDISK;
|
|
|
|
byte VAR_CURSORSTATE;
|
|
|
|
byte VAR_USERPUT;
|
|
|
|
byte VAR_SOUNDRESULT;
|
|
|
|
byte VAR_TALKSTOP_KEY;
|
2004-07-24 04:36:54 +00:00
|
|
|
byte VAR_FADE_DELAY;
|
2003-06-12 16:38:43 +00:00
|
|
|
byte VAR_NOSUBTITLES;
|
2003-03-06 17:58:13 +00:00
|
|
|
|
2005-04-20 23:13:11 +00:00
|
|
|
// V5+
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_SOUNDPARAM;
|
|
|
|
byte VAR_SOUNDPARAM2;
|
|
|
|
byte VAR_SOUNDPARAM3;
|
|
|
|
byte VAR_MOUSEPRESENT;
|
2004-07-24 11:15:59 +00:00
|
|
|
byte VAR_MEMORY_PERFORMANCE;
|
|
|
|
byte VAR_VIDEO_PERFORMANCE;
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_ROOM_FLAG;
|
|
|
|
byte VAR_GAME_LOADED;
|
|
|
|
byte VAR_NEW_ROOM;
|
|
|
|
|
2005-04-20 23:13:11 +00:00
|
|
|
// V4/V5
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_V5_TALK_STRING_Y;
|
|
|
|
|
2005-04-20 23:13:11 +00:00
|
|
|
// V6+
|
2004-10-04 14:28:43 +00:00
|
|
|
byte VAR_ROOM_WIDTH;
|
|
|
|
byte VAR_ROOM_HEIGHT;
|
2005-05-09 02:38:58 +00:00
|
|
|
byte VAR_SUBTITLES;
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_V6_EMSSPACE;
|
|
|
|
|
2005-04-20 23:13:11 +00:00
|
|
|
// V7/V8 (=GF_NEW_CAMERA) specific variables
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_CAMERA_POS_Y;
|
|
|
|
byte VAR_CAMERA_MIN_Y;
|
|
|
|
byte VAR_CAMERA_MAX_Y;
|
|
|
|
byte VAR_CAMERA_THRESHOLD_X;
|
|
|
|
byte VAR_CAMERA_THRESHOLD_Y;
|
|
|
|
byte VAR_CAMERA_SPEED_X;
|
|
|
|
byte VAR_CAMERA_SPEED_Y;
|
|
|
|
byte VAR_CAMERA_ACCEL_X;
|
|
|
|
byte VAR_CAMERA_ACCEL_Y;
|
|
|
|
byte VAR_CAMERA_DEST_X;
|
|
|
|
byte VAR_CAMERA_DEST_Y;
|
|
|
|
byte VAR_CAMERA_FOLLOWED_ACTOR;
|
|
|
|
|
2005-04-20 23:13:11 +00:00
|
|
|
// V7/V8 specific variables
|
|
|
|
byte VAR_VERSION_KEY;
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_DEFAULT_TALK_DELAY;
|
2005-04-20 23:13:11 +00:00
|
|
|
byte VAR_CUSTOMSCALETABLE;
|
|
|
|
byte VAR_BLAST_ABOVE_TEXT;
|
|
|
|
byte VAR_VOICE_MODE;
|
|
|
|
byte VAR_MUSIC_BUNDLE_LOADED;
|
|
|
|
byte VAR_VOICE_BUNDLE_LOADED;
|
|
|
|
|
|
|
|
byte VAR_LEFTBTN_DOWN; // V7
|
|
|
|
byte VAR_RIGHTBTN_DOWN; // V7
|
|
|
|
byte VAR_LEFTBTN_HOLD; // V6/V72HE/V7
|
|
|
|
byte VAR_RIGHTBTN_HOLD; // V6/V72HE/V7
|
|
|
|
byte VAR_MOUSE_BUTTONS; // V8
|
|
|
|
byte VAR_MOUSE_HOLD; // V8
|
|
|
|
byte VAR_SAVELOAD_SCRIPT; // V6/V7 (not HE)
|
|
|
|
byte VAR_SAVELOAD_SCRIPT2; // V6/V7 (not HE)
|
|
|
|
|
|
|
|
// V6/V7 specific variables (actually, they are only used in FT and Sam, it seems?)
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_CHARSET_MASK;
|
|
|
|
|
2005-04-20 23:13:11 +00:00
|
|
|
// V6 specific variables
|
2002-12-16 12:12:31 +00:00
|
|
|
byte VAR_V6_SOUNDMODE;
|
2003-05-17 06:14:08 +00:00
|
|
|
|
2005-04-20 23:13:11 +00:00
|
|
|
// V1/V2 specific variables
|
2003-05-18 23:37:44 +00:00
|
|
|
byte VAR_CHARCOUNT;
|
2003-05-17 18:42:31 +00:00
|
|
|
byte VAR_VERB_ALLOWED;
|
|
|
|
byte VAR_ACTIVE_VERB;
|
|
|
|
byte VAR_ACTIVE_OBJECT1;
|
|
|
|
byte VAR_ACTIVE_OBJECT2;
|
2003-05-17 06:14:08 +00:00
|
|
|
byte VAR_CLICK_AREA;
|
2004-02-20 15:04:51 +00:00
|
|
|
|
2005-04-20 23:13:11 +00:00
|
|
|
// HE specific variables
|
2005-04-21 03:29:31 +00:00
|
|
|
byte VAR_SKIP_RESET_TALK_ACTOR;
|
2004-09-10 10:39:10 +00:00
|
|
|
byte VAR_MUSIC_CHANNEL;
|
|
|
|
byte VAR_SOUND_CHANNEL;
|
|
|
|
|
2005-02-28 13:23:10 +00:00
|
|
|
byte VAR_SCRIPT_CYCLE;
|
|
|
|
byte VAR_NUM_SCRIPT_CYCLES;
|
|
|
|
|
2005-04-20 20:34:44 +00:00
|
|
|
byte VAR_KEY_STATE; // Used in parseEvents()
|
2005-04-16 14:59:15 +00:00
|
|
|
byte VAR_MOUSE_STATE;
|
2005-04-20 23:13:11 +00:00
|
|
|
|
|
|
|
// Exists both in V7 and in V72HE:
|
|
|
|
byte VAR_NUM_GLOBAL_OBJS;
|
2002-12-16 12:12:31 +00:00
|
|
|
};
|
|
|
|
|
2003-10-03 18:33:57 +00:00
|
|
|
} // End of namespace Scumm
|
2002-07-22 18:11:48 +00:00
|
|
|
|
2002-05-14 19:11:20 +00:00
|
|
|
#endif
|