2002-04-14 18:13:08 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2006-05-05 00:42:37 +00:00
|
|
|
* Copyright (C) 2001 Ludvig Strigeus
|
2006-01-18 17:39:49 +00:00
|
|
|
* Copyright (C) 2001-2006 The ScummVM project
|
2002-04-14 18:13:08 +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.
|
2002-04-14 18:13:08 +00:00
|
|
|
*
|
2006-02-11 12:46:41 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2002-04-12 21:26:59 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-09-29 08:14:27 +00:00
|
|
|
#ifndef AGOS_AGOS_H
|
|
|
|
#define AGOS_AGOS_H
|
2002-08-18 16:21:34 +00:00
|
|
|
|
2006-09-23 00:42:35 +00:00
|
|
|
#include "engines/engine.h"
|
2006-03-16 03:15:05 +00:00
|
|
|
|
|
|
|
#include "common/rect.h"
|
2002-12-01 15:36:36 +00:00
|
|
|
#include "common/util.h"
|
2006-03-16 03:15:05 +00:00
|
|
|
|
2006-09-29 08:14:27 +00:00
|
|
|
#include "agos/animation.h"
|
|
|
|
#include "agos/midi.h"
|
|
|
|
#include "agos/sound.h"
|
|
|
|
#include "agos/vga.h"
|
2006-10-19 05:37:22 +00:00
|
|
|
|
2006-09-29 09:44:30 +00:00
|
|
|
namespace AGOS {
|
2003-10-03 19:42:27 +00:00
|
|
|
|
2006-10-27 11:43:17 +00:00
|
|
|
/* Enable and set to zone number number to dump */
|
2002-04-12 21:26:59 +00:00
|
|
|
//#define DUMP_FILE_NR 8
|
|
|
|
//#define DUMP_BITMAPS_FILE_NR 8
|
|
|
|
|
2006-10-16 04:31:09 +00:00
|
|
|
uint fileReadItemID(Common::SeekableReadStream *in);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2003-03-06 19:16:24 +00:00
|
|
|
#define CHECK_BOUNDS(x, y) assert((uint)(x) < ARRAYSIZE(y))
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2002-08-18 16:21:34 +00:00
|
|
|
struct Child;
|
2006-04-06 14:01:52 +00:00
|
|
|
struct SubObject;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2002-08-18 16:21:34 +00:00
|
|
|
struct Item;
|
2006-04-05 02:45:28 +00:00
|
|
|
struct WindowBlock;
|
2002-08-18 16:21:34 +00:00
|
|
|
struct Subroutine;
|
|
|
|
struct SubroutineLine;
|
|
|
|
struct TimeEvent;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2004-03-14 17:50:40 +00:00
|
|
|
struct TextLocation {
|
|
|
|
int16 x, y, width;
|
|
|
|
TextLocation() { memset(this, 0, sizeof(*this)); }
|
2002-04-12 21:26:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct HitArea {
|
|
|
|
uint16 x, y;
|
|
|
|
uint16 width, height;
|
|
|
|
uint16 flags;
|
|
|
|
uint16 id;
|
2006-04-09 04:53:31 +00:00
|
|
|
uint16 data;
|
2006-04-05 02:45:28 +00:00
|
|
|
WindowBlock *window;
|
2002-04-12 21:26:59 +00:00
|
|
|
Item *item_ptr;
|
2006-03-16 07:08:05 +00:00
|
|
|
uint16 verb;
|
|
|
|
uint16 priority;
|
2003-05-20 14:34:07 +00:00
|
|
|
HitArea() { memset(this, 0, sizeof(*this)); }
|
2002-04-12 21:26:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct VgaPointersEntry {
|
|
|
|
byte *vgaFile1;
|
2006-04-20 00:42:54 +00:00
|
|
|
byte *vgaFile1End;
|
2002-04-12 21:26:59 +00:00
|
|
|
byte *vgaFile2;
|
2006-04-20 00:42:54 +00:00
|
|
|
byte *vgaFile2End;
|
2005-11-14 12:01:31 +00:00
|
|
|
byte *sfxFile;
|
2006-04-20 00:42:54 +00:00
|
|
|
byte *sfxFileEnd;
|
2003-05-20 14:34:07 +00:00
|
|
|
VgaPointersEntry() { memset(this, 0, sizeof(*this)); }
|
2002-04-12 21:26:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct VgaSprite {
|
|
|
|
uint16 id;
|
2007-05-09 15:36:05 +00:00
|
|
|
int16 image;
|
2005-10-05 11:37:26 +00:00
|
|
|
uint16 palette;
|
2007-05-09 15:36:05 +00:00
|
|
|
int16 x, y;
|
2005-05-06 12:23:19 +00:00
|
|
|
uint16 flags;
|
2002-11-28 00:22:24 +00:00
|
|
|
uint16 priority;
|
2006-04-10 23:44:17 +00:00
|
|
|
uint16 windowNum, zoneNum;
|
2003-05-20 14:34:07 +00:00
|
|
|
VgaSprite() { memset(this, 0, sizeof(*this)); }
|
2002-04-12 21:26:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct VgaSleepStruct {
|
|
|
|
uint16 ident;
|
2004-12-18 01:33:21 +00:00
|
|
|
const byte *code_ptr;
|
2002-04-12 21:26:59 +00:00
|
|
|
uint16 sprite_id;
|
|
|
|
uint16 cur_vga_file;
|
2003-05-20 14:34:07 +00:00
|
|
|
VgaSleepStruct() { memset(this, 0, sizeof(*this)); }
|
2002-04-12 21:26:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct VgaTimerEntry {
|
2006-04-20 08:58:30 +00:00
|
|
|
int16 delay;
|
2004-12-18 01:33:21 +00:00
|
|
|
const byte *script_pointer;
|
2002-04-12 21:26:59 +00:00
|
|
|
uint16 sprite_id;
|
|
|
|
uint16 cur_vga_file;
|
2007-05-13 08:46:48 +00:00
|
|
|
uint8 type;
|
2003-05-20 14:34:07 +00:00
|
|
|
VgaTimerEntry() { memset(this, 0, sizeof(*this)); }
|
2002-04-12 21:26:59 +00:00
|
|
|
};
|
|
|
|
|
2007-05-09 15:36:05 +00:00
|
|
|
struct AnimTable {
|
|
|
|
const byte *srcPtr;
|
|
|
|
int16 x;
|
|
|
|
int16 y;
|
|
|
|
uint16 width;
|
|
|
|
uint16 height;
|
|
|
|
uint16 window;
|
|
|
|
uint16 id;
|
|
|
|
AnimTable() { memset(this, 0, sizeof(*this)); }
|
|
|
|
};
|
|
|
|
|
2006-03-28 13:33:18 +00:00
|
|
|
enum SIMONGameType {
|
2006-10-06 05:13:09 +00:00
|
|
|
GType_ELVIRA1 = 0,
|
2006-09-28 23:22:07 +00:00
|
|
|
GType_ELVIRA2 = 1,
|
|
|
|
GType_WW = 2,
|
|
|
|
GType_SIMON1 = 3,
|
|
|
|
GType_SIMON2 = 4,
|
|
|
|
GType_FF = 6,
|
|
|
|
GType_PP = 7
|
2005-11-12 06:01:24 +00:00
|
|
|
};
|
|
|
|
|
2007-01-21 16:57:13 +00:00
|
|
|
struct AGOSGameDescription;
|
2006-10-02 23:31:14 +00:00
|
|
|
|
2002-08-18 16:21:34 +00:00
|
|
|
struct GameSpecificSettings;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2004-01-27 16:28:39 +00:00
|
|
|
class Debugger;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-04-15 12:04:47 +00:00
|
|
|
// This is to help devices with small memory (PDA, smartphones, ...)
|
|
|
|
// to save a bit of memory used by opcode names in the AGOS engine.
|
|
|
|
|
|
|
|
#ifndef REDUCE_MEMORY_USAGE
|
|
|
|
# define _OPCODE(ver, x) { &ver::x, #x }
|
|
|
|
#else
|
|
|
|
# define _OPCODE(ver, x) { &ver::x, "" }
|
|
|
|
#endif
|
|
|
|
|
2006-09-29 09:44:30 +00:00
|
|
|
class AGOSEngine : public Engine {
|
2004-01-27 16:28:39 +00:00
|
|
|
friend class Debugger;
|
2006-04-17 13:48:44 +00:00
|
|
|
friend class MoviePlayer;
|
2004-01-27 16:28:39 +00:00
|
|
|
|
2006-09-16 19:31:23 +00:00
|
|
|
GUI::Debugger *getDebugger();
|
2005-11-05 18:47:03 +00:00
|
|
|
|
2007-04-15 05:04:48 +00:00
|
|
|
public:
|
2007-04-15 12:04:47 +00:00
|
|
|
virtual void setupOpcodes();
|
2007-04-15 14:32:58 +00:00
|
|
|
int _numOpcodes, _opcode;
|
2006-04-06 17:56:41 +00:00
|
|
|
|
2006-09-29 09:44:30 +00:00
|
|
|
typedef void (AGOSEngine::*VgaOpcodeProc) ();
|
2006-10-02 14:32:28 +00:00
|
|
|
|
2005-11-05 18:47:03 +00:00
|
|
|
void setupVgaOpcodes();
|
2006-10-08 00:41:29 +00:00
|
|
|
VgaOpcodeProc _vga_opcode_table[100];
|
2006-10-02 14:32:28 +00:00
|
|
|
uint _numVideoOpcodes;
|
|
|
|
|
2007-04-15 05:04:48 +00:00
|
|
|
virtual void setupVideoOpcodes(VgaOpcodeProc *op);
|
2005-11-12 06:01:24 +00:00
|
|
|
|
2006-10-08 00:21:40 +00:00
|
|
|
const AGOSGameDescription *_gameDescription;
|
2005-11-12 06:01:24 +00:00
|
|
|
|
|
|
|
bool initGame(void);
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void setupGame();
|
2005-11-12 06:01:24 +00:00
|
|
|
|
2007-01-21 16:57:13 +00:00
|
|
|
int getGameId() const;
|
|
|
|
int getGameType() const;
|
|
|
|
uint32 getFeatures() const;
|
|
|
|
const char *getExtra() const;
|
|
|
|
Common::Language getLanguage() const;
|
|
|
|
Common::Platform getPlatform() const;
|
|
|
|
const char *getFileName(int type) const;
|
2005-11-12 06:01:24 +00:00
|
|
|
|
2003-06-15 11:52:42 +00:00
|
|
|
protected:
|
2003-01-04 19:11:45 +00:00
|
|
|
void playSting(uint a);
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
const byte *_vcPtr; /* video code ptr */
|
2004-12-18 01:33:21 +00:00
|
|
|
uint16 _vc_get_out_of_code;
|
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
uint32 *_gameOffsetsPtr;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-11-07 01:02:24 +00:00
|
|
|
uint _numBitArray1, _numBitArray2, _numBitArray3;
|
2006-11-05 06:26:45 +00:00
|
|
|
uint _numItemStore, _numVars;
|
2006-05-04 02:23:52 +00:00
|
|
|
uint _vgaBaseDelay;
|
2006-10-05 01:17:59 +00:00
|
|
|
|
|
|
|
uint _musicIndexBase;
|
|
|
|
uint _soundIndexBase;
|
2006-05-04 02:23:52 +00:00
|
|
|
uint _tableIndexBase;
|
|
|
|
uint _textIndexBase;
|
2006-10-05 01:17:59 +00:00
|
|
|
|
|
|
|
uint _itemMemSize;
|
2006-05-04 02:23:52 +00:00
|
|
|
uint _tableMemSize;
|
2006-10-05 01:17:59 +00:00
|
|
|
uint _vgaMemSize;
|
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
const GameSpecificSettings *gss;
|
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
byte _keyPressed;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2002-10-30 23:52:19 +00:00
|
|
|
typedef enum {
|
|
|
|
FORMAT_NONE,
|
|
|
|
FORMAT_MP3,
|
|
|
|
FORMAT_WAV,
|
|
|
|
FORMAT_VOC
|
|
|
|
} SoundFormat;
|
|
|
|
|
2005-05-10 22:56:25 +00:00
|
|
|
Common::File *_gameFile;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
byte *_strippedTxtMem;
|
2006-04-24 06:02:47 +00:00
|
|
|
byte *_textMem;
|
2005-05-06 11:37:33 +00:00
|
|
|
uint _textSize;
|
|
|
|
uint _stringTabNum, _stringTabPos, _stringtab_numalloc;
|
|
|
|
byte **_stringTabPtr;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
Item **_itemArrayPtr;
|
|
|
|
uint _itemArraySize;
|
|
|
|
uint _itemArrayInited;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
byte *_itemHeapPtr;
|
|
|
|
uint _itemHeapCurPos;
|
|
|
|
uint _itemHeapSize;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
byte *_iconFilePtr;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
const byte *_codePtr;
|
2002-07-07 19:06:48 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
byte **_localStringtable;
|
|
|
|
uint _stringIdLocalMin, _stringIdLocalMax;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-15 04:15:48 +00:00
|
|
|
byte *_menuBase;
|
2006-09-20 06:39:27 +00:00
|
|
|
byte *_roomsList;
|
|
|
|
|
2006-09-19 11:59:13 +00:00
|
|
|
byte *_xtblList;
|
|
|
|
byte *_xtablesHeapPtrOrg;
|
|
|
|
uint _xtablesHeapCurPosOrg;
|
|
|
|
Subroutine *_xsubroutineListOrg;
|
|
|
|
|
|
|
|
byte *_tblList;
|
2005-05-06 11:37:33 +00:00
|
|
|
byte *_tablesHeapPtr, *_tablesHeapPtrOrg, *_tablesheapPtrNew;
|
|
|
|
uint _tablesHeapSize, _tablesHeapCurPos, _tablesHeapCurPosOrg;
|
|
|
|
uint _tablesHeapCurPosNew;
|
2006-09-19 11:59:13 +00:00
|
|
|
Subroutine *_subroutineListOrg;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-09-19 11:59:13 +00:00
|
|
|
Subroutine *_subroutineList;
|
2003-12-23 08:59:30 +00:00
|
|
|
uint _subroutine;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
uint _dxSurfacePitch;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
uint _recursionDepth;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
uint32 _lastVgaTick;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-10-05 11:37:26 +00:00
|
|
|
uint16 _marks;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
bool _scriptVar2;
|
|
|
|
bool _runScriptReturn1;
|
2006-04-07 09:37:44 +00:00
|
|
|
bool _runScriptCondition[40];
|
|
|
|
int _runScriptReturn[40];
|
2005-05-06 11:37:33 +00:00
|
|
|
bool _skipVgaWait;
|
|
|
|
bool _noParentNotify;
|
2005-11-10 00:53:00 +00:00
|
|
|
bool _beardLoaded;
|
2006-10-24 08:11:43 +00:00
|
|
|
bool _litBoxFlag;
|
2005-05-06 11:37:33 +00:00
|
|
|
bool _mortalFlag;
|
2007-05-13 08:46:48 +00:00
|
|
|
bool _displayScreen;
|
2006-05-02 18:15:00 +00:00
|
|
|
bool _updateScreen;
|
2005-05-06 11:37:33 +00:00
|
|
|
bool _syncFlag2;
|
|
|
|
bool _inCallBack;
|
|
|
|
bool _cepeFlag;
|
|
|
|
byte _copyPartialMode;
|
|
|
|
bool _fastMode;
|
2006-04-15 22:37:48 +00:00
|
|
|
bool _useBackGround;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-09 15:36:05 +00:00
|
|
|
bool _backFlag;
|
|
|
|
|
2002-12-06 14:40:40 +00:00
|
|
|
uint16 _debugMode;
|
2003-01-29 10:08:56 +00:00
|
|
|
uint16 _language;
|
2007-02-21 11:46:35 +00:00
|
|
|
bool _copyProtection;
|
2003-12-10 00:54:53 +00:00
|
|
|
bool _pause;
|
2005-05-06 11:37:33 +00:00
|
|
|
bool _startMainScript;
|
|
|
|
bool _continousMainScript;
|
|
|
|
bool _startVgaScript;
|
|
|
|
bool _continousVgaScript;
|
|
|
|
bool _dumpImages;
|
2003-10-30 01:05:08 +00:00
|
|
|
bool _speech;
|
2003-03-07 12:29:33 +00:00
|
|
|
bool _subtitles;
|
2005-05-06 11:37:33 +00:00
|
|
|
bool _vgaVar9;
|
2006-04-21 07:42:40 +00:00
|
|
|
int16 _chanceModifier;
|
2006-03-16 07:08:05 +00:00
|
|
|
bool _restoreWindow6;
|
2006-04-07 09:04:36 +00:00
|
|
|
int _scrollX, _scrollXMax, _scrollWidth;
|
|
|
|
int _scrollY, _scrollYMax, _scrollHeight;
|
2005-10-09 09:03:37 +00:00
|
|
|
int _scrollCount, _scrollFlag;
|
2005-10-05 11:37:26 +00:00
|
|
|
const byte *_scrollImage;
|
2006-04-08 07:13:07 +00:00
|
|
|
byte _boxStarHeight;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-07 03:02:56 +00:00
|
|
|
char _boxBuffer[310];
|
2007-05-07 13:03:02 +00:00
|
|
|
char *_boxBufferPtr;
|
2006-10-07 03:02:56 +00:00
|
|
|
int _boxLineCount;
|
|
|
|
int _lineCounts[6];
|
|
|
|
char *_linePtrs[6];
|
|
|
|
int _boxCR;
|
|
|
|
|
2006-10-25 05:32:15 +00:00
|
|
|
SubroutineLine *_classLine;
|
2006-10-07 03:02:56 +00:00
|
|
|
uint _classMask, _classMode1, _classMode2;
|
2006-10-25 05:32:15 +00:00
|
|
|
Item *_findNextPtr;
|
|
|
|
Subroutine *_currentTable;
|
|
|
|
SubroutineLine *_currentLine;
|
|
|
|
|
2006-10-07 03:02:56 +00:00
|
|
|
int _agosMenu;
|
|
|
|
byte _textMenu[10];
|
|
|
|
uint _superRoomNumber;
|
2006-10-22 00:55:17 +00:00
|
|
|
uint _wallOn;
|
2006-10-07 03:02:56 +00:00
|
|
|
|
|
|
|
uint16 _hyperLink, _newLines;
|
2006-02-13 10:29:25 +00:00
|
|
|
uint16 _oracleMaxScrollY, _noOracleScroll;
|
2006-04-07 01:46:43 +00:00
|
|
|
uint16 _interactY;
|
|
|
|
|
2005-11-18 22:34:41 +00:00
|
|
|
int16 _scriptVerb, _scriptNoun1, _scriptNoun2;
|
|
|
|
int16 _scriptAdj1, _scriptAdj2;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-10-19 11:32:25 +00:00
|
|
|
uint16 _curWindow;
|
2006-04-05 02:45:28 +00:00
|
|
|
WindowBlock *_textWindow;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
Item *_subjectItem, *_objectItem;
|
2006-04-19 11:54:38 +00:00
|
|
|
Item *_currentPlayer;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
Item *_hitAreaObjectItem;
|
|
|
|
HitArea *_lastHitArea;
|
2006-04-06 08:43:20 +00:00
|
|
|
HitArea *_lastNameOn;
|
2005-05-06 11:37:33 +00:00
|
|
|
HitArea *_lastHitArea3;
|
|
|
|
Item *_hitAreaSubjectItem;
|
2006-10-22 13:04:34 +00:00
|
|
|
HitArea *_currentBox, *_currentVerbBox, *_lastVerbOn;
|
2005-05-06 11:37:33 +00:00
|
|
|
uint _needHitAreaRecalc;
|
|
|
|
uint _verbHitArea;
|
2006-03-16 10:30:59 +00:00
|
|
|
uint16 _defaultVerb;
|
2006-04-04 23:29:24 +00:00
|
|
|
uint _iOverflow;
|
2006-10-18 11:52:55 +00:00
|
|
|
uint _nameLocked;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-22 13:04:34 +00:00
|
|
|
uint _dragAccept;
|
|
|
|
uint _dragFlag;
|
|
|
|
uint _dragMode;
|
|
|
|
uint _dragCount;
|
|
|
|
uint _dragEnd;
|
|
|
|
HitArea *_lastClickRem;
|
|
|
|
|
2005-10-05 11:37:26 +00:00
|
|
|
uint16 _windowNum;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-08 07:13:07 +00:00
|
|
|
uint _printCharCurPos, _printCharMaxPos, _printCharPixelCount;
|
2005-05-06 11:37:33 +00:00
|
|
|
uint _numLettersToPrint;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-15 06:47:26 +00:00
|
|
|
uint _numTextBoxes;
|
2006-04-15 06:42:40 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
uint _lastTime;
|
2006-09-29 11:07:38 +00:00
|
|
|
uint32 _clockStopped, _gameStoppedClock, _gameTime;
|
2006-04-09 06:06:10 +00:00
|
|
|
time_t _timeStore;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
TimeEvent *_firstTimeStruct, *_pendingDeleteTimeEvent;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-03-18 13:29:12 +00:00
|
|
|
Common::Point _mouse;
|
|
|
|
Common::Point _mouseOld;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-09-30 06:47:41 +00:00
|
|
|
byte *_mouseData;
|
2006-04-13 23:34:58 +00:00
|
|
|
byte _animatePointer;
|
2006-09-30 06:47:41 +00:00
|
|
|
byte _maxCursorWidth, _maxCursorHeight;
|
|
|
|
byte _mouseAnim, _mouseAnimMax, _mouseCursor;
|
|
|
|
byte _currentMouseAnim, _currentMouseCursor;
|
|
|
|
byte _oldMouseAnimMax, _oldMouseCursor;
|
2006-04-13 23:34:58 +00:00
|
|
|
uint _mouseHideCount;
|
2006-04-30 06:10:14 +00:00
|
|
|
bool _mouseToggle;
|
2006-04-13 23:34:58 +00:00
|
|
|
|
2006-04-08 07:13:07 +00:00
|
|
|
byte _leftButtonDown;
|
2006-10-22 13:04:34 +00:00
|
|
|
byte _leftButton, _leftButtonCount, _leftButtonOld;
|
2006-04-08 07:13:07 +00:00
|
|
|
byte _rightButtonDown;
|
2007-05-09 15:36:05 +00:00
|
|
|
bool _clickOnly;
|
2006-04-08 07:13:07 +00:00
|
|
|
bool _noRightClick;
|
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
Item *_dummyItem1;
|
|
|
|
Item *_dummyItem2;
|
|
|
|
Item *_dummyItem3;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
volatile uint16 _lockWord;
|
|
|
|
uint16 _scrollUpHitArea;
|
|
|
|
uint16 _scrollDownHitArea;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-05-05 05:53:36 +00:00
|
|
|
bool _fastFadeOutFlag;
|
|
|
|
bool _unkPalFlag;
|
2006-10-08 07:42:34 +00:00
|
|
|
bool _usePaletteDelay;
|
2006-05-05 05:53:36 +00:00
|
|
|
byte _paletteFlag;
|
2006-10-08 07:42:34 +00:00
|
|
|
int _bottomPalette;
|
2006-05-05 05:53:36 +00:00
|
|
|
uint _fastFadeCount;
|
|
|
|
volatile uint16 _fastFadeInFlag;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-03-22 23:38:16 +00:00
|
|
|
int _screenWidth, _screenHeight;
|
2005-10-07 07:36:09 +00:00
|
|
|
|
2006-04-20 00:54:30 +00:00
|
|
|
uint16 _noOverWrite;
|
2006-04-10 23:44:17 +00:00
|
|
|
bool _rejectBlock;
|
2006-04-20 00:54:30 +00:00
|
|
|
|
2006-09-30 13:02:31 +00:00
|
|
|
bool _exitCutscene, _picture8600;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
uint _soundFileId;
|
|
|
|
int16 _lastMusicPlayed;
|
|
|
|
int16 _nextMusicToPlay;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
bool _showPreposition;
|
|
|
|
bool _showMessageFlag;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-13 08:46:48 +00:00
|
|
|
uint _copyScnFlag, _vgaSpriteChanged;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-03 13:20:23 +00:00
|
|
|
byte *_block, *_blockEnd;
|
2006-05-13 08:24:47 +00:00
|
|
|
byte *_vgaMemPtr, *_vgaMemEnd, *_vgaMemBase;
|
|
|
|
byte *_vgaFrozenBase, *_vgaRealBase;
|
|
|
|
byte *_zoneBuffers;
|
2002-07-07 19:06:48 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
byte *_curVgaFile1;
|
|
|
|
byte *_curVgaFile2;
|
2005-11-14 12:01:31 +00:00
|
|
|
byte *_curSfxFile;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-03-23 04:49:03 +00:00
|
|
|
uint16 _syncCount, _timer5, _timer4;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-16 05:57:26 +00:00
|
|
|
int16 _iconToggleCount, _voiceCount;
|
|
|
|
uint32 _lastTickCount, _thisTickCount;
|
|
|
|
uint32 _startSecondCount, _tSecondCount;
|
|
|
|
|
2007-05-13 10:07:55 +00:00
|
|
|
uint16 _frameCount;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-10 23:44:17 +00:00
|
|
|
uint16 _zoneNumber;
|
2006-06-01 12:06:53 +00:00
|
|
|
uint16 _vgaWaitFor, _lastVgaWaitFor;
|
|
|
|
uint16 _vgaCurSpriteId, _vgaCurZoneNum;
|
2006-03-16 03:15:05 +00:00
|
|
|
uint16 _vgaCurSpritePriority;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-11-15 08:12:32 +00:00
|
|
|
int16 _baseY;
|
|
|
|
float _scale;
|
2006-03-16 03:15:05 +00:00
|
|
|
Common::Rect _feebleRect;
|
|
|
|
int _scaleX, _scaleY, _scaleWidth, _scaleHeight;
|
2005-11-15 08:12:32 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
VgaTimerEntry *_nextVgaTimerToProcess;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-04 03:29:14 +00:00
|
|
|
Item *_objectArray[50];
|
|
|
|
Item *_itemStore[50];
|
2002-07-07 19:06:48 +00:00
|
|
|
|
2006-09-29 00:50:22 +00:00
|
|
|
uint16 _shortText[40];
|
|
|
|
uint16 _shortTextX[40];
|
|
|
|
uint16 _shortTextY[40];
|
|
|
|
uint16 _longText[40];
|
|
|
|
uint16 _longSound[40];
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-09-28 23:22:07 +00:00
|
|
|
uint16 _bitArray[128];
|
2006-04-21 06:37:28 +00:00
|
|
|
uint16 _bitArrayTwo[16];
|
|
|
|
uint16 _bitArrayThree[16];
|
2006-09-28 23:22:07 +00:00
|
|
|
int16 *_variableArray;
|
|
|
|
int16 *_variableArray2;
|
2006-04-15 22:14:39 +00:00
|
|
|
int16 *_variableArrayPtr;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-08 01:46:38 +00:00
|
|
|
WindowBlock *_dummyWindow;
|
2007-05-22 10:31:51 +00:00
|
|
|
WindowBlock *_windowArray[80];
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
byte _fcsData1[8];
|
|
|
|
bool _fcsData2[8];
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
TextLocation _textLocation1, _textLocation2, _textLocation3, _textLocation4;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
int _freeStringSlot;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
byte _stringReturnBuffer[2][180];
|
|
|
|
|
2006-04-15 06:35:40 +00:00
|
|
|
HitArea _hitAreas[250];
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-09 15:36:05 +00:00
|
|
|
AnimTable _screenAnim1[60];
|
2005-10-09 12:12:24 +00:00
|
|
|
VgaPointersEntry _vgaBufferPointers[450];
|
2006-10-02 10:43:07 +00:00
|
|
|
VgaSprite _vgaSprites[200];
|
2006-10-14 14:29:14 +00:00
|
|
|
VgaSleepStruct _waitEndTable[60];
|
2007-05-09 15:36:05 +00:00
|
|
|
VgaSleepStruct _waitSyncTable[60];
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-11-14 10:31:19 +00:00
|
|
|
const uint16 *_pathFindArray[100];
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-11-18 14:16:28 +00:00
|
|
|
uint8 _pathValues[400];
|
2006-05-03 06:07:26 +00:00
|
|
|
uint16 _PVCount;
|
|
|
|
uint16 _GPVCount;
|
2005-11-18 14:15:03 +00:00
|
|
|
|
2005-11-18 14:16:28 +00:00
|
|
|
uint8 _pathValues1[400];
|
2006-05-03 06:07:26 +00:00
|
|
|
uint16 _PVCount1;
|
|
|
|
uint16 _GPVCount1;
|
2005-11-18 14:15:03 +00:00
|
|
|
|
2006-05-05 05:53:36 +00:00
|
|
|
uint8 _currentPalette[1024];
|
|
|
|
uint8 _displayPalette[1024];
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-02-08 23:37:17 +00:00
|
|
|
byte *_planarBuf;
|
2006-10-11 01:51:10 +00:00
|
|
|
byte _videoBuf1[32000];
|
2006-10-09 13:00:25 +00:00
|
|
|
uint16 _videoWindows[128];
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-09 15:36:05 +00:00
|
|
|
uint16 _window3Flag;
|
|
|
|
uint16 _window4Flag;
|
|
|
|
uint16 _window6Flag;
|
|
|
|
byte *_window4BackScn;
|
|
|
|
byte *_window6BackScn;
|
|
|
|
|
|
|
|
uint16 _moveXMin, _moveYMin;
|
|
|
|
uint16 _moveXMax, _moveYMax;
|
|
|
|
|
2006-10-02 10:43:07 +00:00
|
|
|
VgaTimerEntry _vgaTimerList[205];
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-06 10:47:37 +00:00
|
|
|
WindowBlock *_windowList;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
byte _lettersToPrintBuf[80];
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-04-14 12:03:46 +00:00
|
|
|
MidiPlayer _midi;
|
2005-12-29 21:21:16 +00:00
|
|
|
bool _native_mt32;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
int _vgaTickCounter;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-17 12:05:45 +00:00
|
|
|
MoviePlayer *_moviePlay;
|
2006-10-23 01:37:59 +00:00
|
|
|
Audio::SoundHandle _modHandle;
|
2006-04-17 12:05:45 +00:00
|
|
|
|
2004-01-03 01:28:00 +00:00
|
|
|
Sound *_sound;
|
2002-04-14 18:13:08 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
bool _effectsPaused;
|
|
|
|
bool _ambientPaused;
|
|
|
|
bool _musicPaused;
|
2002-11-17 17:15:29 +00:00
|
|
|
|
2004-01-27 16:28:39 +00:00
|
|
|
Debugger *_debugger;
|
|
|
|
|
2007-05-22 10:31:51 +00:00
|
|
|
uint _saveGameNameLen;
|
|
|
|
uint _saveLoadRowCurPos;
|
|
|
|
uint _numSaveGameRows;
|
2005-05-06 11:37:33 +00:00
|
|
|
bool _saveDialogFlag;
|
|
|
|
bool _saveOrLoad;
|
2006-06-02 08:06:50 +00:00
|
|
|
bool _saveLoadEdit;
|
2002-04-16 12:07:19 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
byte _saveLoadType, _saveLoadSlot;
|
2006-04-15 06:35:40 +00:00
|
|
|
char _saveLoadName[108];
|
2003-12-11 02:09:18 +00:00
|
|
|
|
2006-09-30 07:00:42 +00:00
|
|
|
bool _oopsValid;
|
|
|
|
|
2006-04-15 22:37:48 +00:00
|
|
|
byte *_backGroundBuf;
|
|
|
|
byte *_frontBuf;
|
|
|
|
byte *_backBuf;
|
2006-04-24 02:11:04 +00:00
|
|
|
byte *_scaleBuf;
|
2002-08-18 16:21:34 +00:00
|
|
|
|
2003-10-04 11:50:21 +00:00
|
|
|
Common::RandomSource _rnd;
|
2003-05-21 15:47:51 +00:00
|
|
|
|
2005-05-06 11:37:33 +00:00
|
|
|
const byte *_vc10BasePtrOld;
|
2006-04-15 06:35:40 +00:00
|
|
|
byte _hebrewCharWidths[32];
|
2003-05-21 15:47:51 +00:00
|
|
|
|
2003-06-15 11:52:42 +00:00
|
|
|
public:
|
2006-09-29 09:44:30 +00:00
|
|
|
AGOSEngine(OSystem *syst);
|
|
|
|
virtual ~AGOSEngine();
|
2002-08-18 16:21:34 +00:00
|
|
|
|
2003-06-15 11:52:42 +00:00
|
|
|
protected:
|
2005-11-10 01:18:09 +00:00
|
|
|
uint16 to16Wrapper(uint value);
|
2005-10-12 00:35:54 +00:00
|
|
|
uint16 readUint16Wrapper(const void *src);
|
2006-04-07 14:27:28 +00:00
|
|
|
uint32 readUint32Wrapper(const void *src);
|
2005-10-12 00:35:54 +00:00
|
|
|
|
2006-10-16 04:31:09 +00:00
|
|
|
int allocGamePcVars(Common::SeekableReadStream *in);
|
2006-04-06 14:01:52 +00:00
|
|
|
void createPlayer();
|
2002-04-12 21:26:59 +00:00
|
|
|
void allocateStringTable(int num);
|
|
|
|
void setupStringTable(byte *mem, int num);
|
|
|
|
void setupLocalStringTable(byte *mem, int num);
|
2006-10-16 04:31:09 +00:00
|
|
|
void readGamePcText(Common::SeekableReadStream *in);
|
|
|
|
void readItemChildren(Common::SeekableReadStream *in, Item *item, uint tmp);
|
|
|
|
void readItemFromGamePc(Common::SeekableReadStream *in, Item *item);
|
2006-04-22 02:14:42 +00:00
|
|
|
void loadGamePcFile();
|
2006-10-16 04:31:09 +00:00
|
|
|
void readGamePcFile(Common::SeekableReadStream *in);
|
2006-04-14 04:22:49 +00:00
|
|
|
void decompressData(const char *srcName, byte *dst, uint32 offset, uint32 srcSize, uint32 dstSize);
|
2006-03-22 06:21:17 +00:00
|
|
|
void loadOffsets(const char *filename, int number, uint32 &file, uint32 &offset, uint32 &compressedSize, uint32 &size);
|
2006-04-23 15:42:02 +00:00
|
|
|
void loadSound(uint sound, int pan, int vol, uint type);
|
2006-04-14 05:13:59 +00:00
|
|
|
void loadVoice(uint speechId);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-16 05:57:26 +00:00
|
|
|
void loadSoundFile(const char *filename);
|
|
|
|
|
2006-10-06 14:44:39 +00:00
|
|
|
int getUserFlag(Item *item, int a);
|
2006-10-24 07:44:37 +00:00
|
|
|
int getUserFlag1(Item *item, int a);
|
2006-10-06 14:44:39 +00:00
|
|
|
int getUserItem(Item *item, int n);
|
|
|
|
void setUserFlag(Item *item, int a, int b);
|
|
|
|
void setUserItem(Item *item, int n, int m);
|
|
|
|
|
2006-05-05 05:59:03 +00:00
|
|
|
void paletteFadeOut(byte *palPtr, uint num, uint size);
|
2005-08-11 18:08:55 +00:00
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
byte *allocateItem(uint size);
|
|
|
|
byte *allocateTable(uint size);
|
2002-04-13 21:06:48 +00:00
|
|
|
void alignTableMem();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
Child *findChildOfType(Item *i, uint child);
|
|
|
|
Child *allocateChildBlock(Item *i, uint type, uint size);
|
|
|
|
|
|
|
|
void allocItemHeap();
|
|
|
|
void allocTablesHeap();
|
|
|
|
|
|
|
|
Subroutine *createSubroutine(uint a);
|
2006-10-16 04:31:09 +00:00
|
|
|
void readSubroutine(Common::SeekableReadStream *in, Subroutine *sub);
|
2002-04-12 21:26:59 +00:00
|
|
|
SubroutineLine *createSubroutineLine(Subroutine *sub, int a);
|
2006-10-16 04:31:09 +00:00
|
|
|
void readSubroutineLine(Common::SeekableReadStream *in, SubroutineLine *new_table, Subroutine *sub);
|
|
|
|
byte *readSingleOpcode(Common::SeekableReadStream *in, byte *ptr);
|
|
|
|
void readSubroutineBlock(Common::SeekableReadStream *in);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
Subroutine *getSubroutineByID(uint subroutine_id);
|
|
|
|
|
|
|
|
/* used in debugger */
|
2006-10-27 11:39:04 +00:00
|
|
|
void dumpAllSubroutines();
|
2002-04-12 21:26:59 +00:00
|
|
|
void dumpSubroutines();
|
|
|
|
void dumpSubroutine(Subroutine *sub);
|
|
|
|
void dumpSubroutineLine(SubroutineLine *sl, Subroutine *sub);
|
2004-12-18 02:08:32 +00:00
|
|
|
const byte *dumpOpcode(const byte *p);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
int startSubroutine(Subroutine *sub);
|
|
|
|
int startSubroutineEx(Subroutine *sub);
|
|
|
|
|
|
|
|
bool checkIfToRunSubroutineLine(SubroutineLine *sl, Subroutine *sub);
|
|
|
|
|
|
|
|
int runScript();
|
2007-04-15 12:04:47 +00:00
|
|
|
virtual void executeOpcode(int opcode) = 0;
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
byte getByte();
|
|
|
|
int getNextWord();
|
|
|
|
|
|
|
|
uint getNextVarContents();
|
2006-09-28 23:22:07 +00:00
|
|
|
uint getVarWrapper();
|
2002-04-12 21:26:59 +00:00
|
|
|
uint getVarOrWord();
|
|
|
|
uint getVarOrByte();
|
|
|
|
uint readVariable(uint variable);
|
|
|
|
void writeNextVarContents(uint16 contents);
|
|
|
|
void writeVariable(uint variable, uint16 contents);
|
|
|
|
|
|
|
|
Item *derefItem(uint item);
|
2006-10-21 01:51:59 +00:00
|
|
|
Item *getNextItemPtr();
|
|
|
|
uint getNextItemID();
|
|
|
|
uint getItem1ID() {return 1;}
|
|
|
|
uint itemPtrToID(Item *id);
|
|
|
|
Item *me();
|
|
|
|
Item *actor();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
void showMessageFormat(const char *s, ...);
|
2006-04-06 14:01:52 +00:00
|
|
|
const byte *getStringPtrByID(uint stringId);
|
|
|
|
const byte *getLocalStringByID(uint stringId);
|
2002-04-12 21:26:59 +00:00
|
|
|
uint getNextStringID();
|
|
|
|
|
|
|
|
void addTimeEvent(uint timeout, uint subroutine_id);
|
|
|
|
void delTimeEvent(TimeEvent *te);
|
|
|
|
|
2006-10-21 01:51:59 +00:00
|
|
|
Item *findInByClass(Item *i, int16 m);
|
2006-10-25 05:32:15 +00:00
|
|
|
Item *nextInByClass(Item *i, int16 m);
|
2006-10-21 01:51:59 +00:00
|
|
|
Item *findMaster(int16 a, int16 n);
|
|
|
|
Item *nextMaster(Item *item, int16 a, int16 n);
|
|
|
|
int wordMatch(Item *item, int16 a, int16 n);
|
|
|
|
|
2005-11-10 00:53:00 +00:00
|
|
|
bool isRoom(Item *item);
|
|
|
|
bool isObject(Item *item);
|
2006-10-07 01:10:32 +00:00
|
|
|
bool isPlayer(Item *item);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
void itemChildrenChanged(Item *item);
|
|
|
|
void unlinkItem(Item *item);
|
|
|
|
void linkItem(Item *item, Item *parent);
|
|
|
|
|
2006-10-21 01:51:59 +00:00
|
|
|
void setItemParent(Item *item, Item *parent);
|
|
|
|
void setItemState(Item *item, int value);
|
|
|
|
|
2006-10-27 11:04:05 +00:00
|
|
|
void stopAnimate(uint a);
|
2006-04-21 00:18:23 +00:00
|
|
|
void stopAnimateSimon2(uint a, uint b);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-14 09:57:43 +00:00
|
|
|
void enableBox(uint hitarea);
|
|
|
|
void disableBox(uint hitarea);
|
2006-03-16 07:08:05 +00:00
|
|
|
void moveBox(uint hitarea, int x, int y);
|
2006-05-03 01:11:50 +00:00
|
|
|
bool isBoxDead(uint hitarea);
|
2006-04-14 09:57:43 +00:00
|
|
|
void undefineBox(uint hitarea);
|
2006-04-08 12:06:52 +00:00
|
|
|
void defineBox(int id, int x, int y, int width, int height, int flags, int verb, Item *item_ptr);
|
2002-04-12 21:26:59 +00:00
|
|
|
HitArea *findEmptyHitArea();
|
2006-04-21 00:18:23 +00:00
|
|
|
|
2007-04-15 05:33:21 +00:00
|
|
|
virtual void resetVerbs();
|
|
|
|
virtual void setVerb(HitArea * ha);
|
2007-04-15 14:12:08 +00:00
|
|
|
virtual void hitarea_leave(HitArea * ha, bool state = false);
|
2002-04-12 21:26:59 +00:00
|
|
|
void leaveHitAreaById(uint hitarea_id);
|
|
|
|
|
By now, it should be obvious that I'm trying to get rid of the o_ functions.
This is in preparation for the next stage of the cleanup.
By now, I have merged most of the o_ opcode functions into the corresponding
o1_ opcode function. There are a few pure o_ opcode functions left, but it
makes sense to keep them separate functions since they are part of groups of
other functions. Now, to get rid of the remaining o_ functions I have:
Dropped the "o_" prefix from the following functions: o_kill_sprite_simon1(),
o_kill_sprite_simon2(), o_waitForSync(), o_freezeBottom(), o_setTextColor(),
o_fadeToBlack(), o_waitForMark(), o_unk_132_helper_3(), o_unk_132_helper(),
o_clearCharacter(), o_fileError().
Renamed o_sync() to sendSync().
Renamed o_mouseOn() to scriptMouseOn(), and moved it to items.cpp
Renamed o_mouseOff() to scriptMouseOff(), and moved it to items.cpp
svn-id: r21760
2006-04-10 09:18:07 +00:00
|
|
|
void sendSync(uint a);
|
2006-05-03 01:11:50 +00:00
|
|
|
void waitForSync(uint a);
|
2002-07-07 19:06:48 +00:00
|
|
|
|
2006-04-06 14:01:52 +00:00
|
|
|
uint getOffsetOfChild2Param(SubObject *child, uint prop);
|
By now, it should be obvious that I'm trying to get rid of the o_ functions.
This is in preparation for the next stage of the cleanup.
By now, I have merged most of the o_ opcode functions into the corresponding
o1_ opcode function. There are a few pure o_ opcode functions left, but it
makes sense to keep them separate functions since they are part of groups of
other functions. Now, to get rid of the remaining o_ functions I have:
Dropped the "o_" prefix from the following functions: o_kill_sprite_simon1(),
o_kill_sprite_simon2(), o_waitForSync(), o_freezeBottom(), o_setTextColor(),
o_fadeToBlack(), o_waitForMark(), o_unk_132_helper_3(), o_unk_132_helper(),
o_clearCharacter(), o_fileError().
Renamed o_sync() to sendSync().
Renamed o_mouseOn() to scriptMouseOn(), and moved it to items.cpp
Renamed o_mouseOff() to scriptMouseOff(), and moved it to items.cpp
svn-id: r21760
2006-04-10 09:18:07 +00:00
|
|
|
void scriptMouseOff();
|
2006-05-03 01:11:50 +00:00
|
|
|
void freezeBottom();
|
By now, it should be obvious that I'm trying to get rid of the o_ functions.
This is in preparation for the next stage of the cleanup.
By now, I have merged most of the o_ opcode functions into the corresponding
o1_ opcode function. There are a few pure o_ opcode functions left, but it
makes sense to keep them separate functions since they are part of groups of
other functions. Now, to get rid of the remaining o_ functions I have:
Dropped the "o_" prefix from the following functions: o_kill_sprite_simon1(),
o_kill_sprite_simon2(), o_waitForSync(), o_freezeBottom(), o_setTextColor(),
o_fadeToBlack(), o_waitForMark(), o_unk_132_helper_3(), o_unk_132_helper(),
o_clearCharacter(), o_fileError().
Renamed o_sync() to sendSync().
Renamed o_mouseOn() to scriptMouseOn(), and moved it to items.cpp
Renamed o_mouseOff() to scriptMouseOff(), and moved it to items.cpp
svn-id: r21760
2006-04-10 09:18:07 +00:00
|
|
|
void unfreezeBottom();
|
2002-12-04 22:40:16 +00:00
|
|
|
|
2004-03-14 17:50:40 +00:00
|
|
|
TextLocation *getTextLocation(uint a);
|
2006-10-22 07:43:11 +00:00
|
|
|
|
|
|
|
uint setVerbText(HitArea *ha);
|
|
|
|
void waitForInput();
|
2002-04-12 21:26:59 +00:00
|
|
|
void setup_cond_c_helper();
|
|
|
|
|
2006-10-21 01:51:59 +00:00
|
|
|
uint16 getBackExit(int n);
|
|
|
|
uint16 getDoorState(Item *item, uint16 d);
|
|
|
|
uint16 getExitOf(Item *item, uint16 d);
|
|
|
|
void changeDoorState(SubRoom *r, uint16 d, uint16 n);
|
|
|
|
void setDoorState(Item *i, uint16 d, uint16 n);
|
2006-10-25 08:12:05 +00:00
|
|
|
|
|
|
|
// Elvira 1 specific
|
2006-11-06 13:59:11 +00:00
|
|
|
Item *getDoorOf(Item *item, uint16 d);
|
|
|
|
Item *getExitOf_e1(Item *item, uint16 d);
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void moveDirn(Item *i, uint x);
|
2006-10-21 01:51:59 +00:00
|
|
|
|
|
|
|
int canPlace(Item *x, Item *y);
|
|
|
|
int contains(Item *a, Item *b);
|
|
|
|
int sizeContents(Item *x);
|
|
|
|
int sizeOfRec(Item *o, int d);
|
|
|
|
int sizeRec(Item *x, int d);
|
|
|
|
int weighUp(Item *x);
|
|
|
|
int weightRec(Item *x, int d);
|
|
|
|
int weightOf(Item *x);
|
|
|
|
void xPlace(Item *x, Item *y);
|
|
|
|
|
2006-10-24 07:44:37 +00:00
|
|
|
void drawMenuStrip(uint windowNum, uint menuNum);
|
|
|
|
void lightMenuStrip(int a);
|
|
|
|
void unlightMenuStrip();
|
|
|
|
void lightMenuBox(uint hitarea);
|
|
|
|
|
|
|
|
uint menuFor_e2(Item *item);
|
2006-10-16 11:20:20 +00:00
|
|
|
uint menuFor_ww(Item *item, uint id);
|
2006-10-16 08:41:50 +00:00
|
|
|
void clearMenuStrip();
|
|
|
|
void doMenuStrip(uint menuNum);
|
|
|
|
|
2005-12-08 06:12:04 +00:00
|
|
|
void mouseOff();
|
|
|
|
void mouseOn();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual bool loadTablesIntoMem(uint subr_id);
|
2006-09-19 11:59:13 +00:00
|
|
|
bool loadXTablesIntoMem(uint subr_id);
|
2006-09-28 23:22:07 +00:00
|
|
|
void loadTextIntoMem(uint stringId);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
uint loadTextFile(const char *filename, byte *dst);
|
2005-05-10 22:56:25 +00:00
|
|
|
Common::File *openTablesFile(const char *filename);
|
|
|
|
void closeTablesFile(Common::File *in);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
uint loadTextFile_simon1(const char *filename, byte *dst);
|
2005-05-10 22:56:25 +00:00
|
|
|
Common::File *openTablesFile_simon1(const char *filename);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
uint loadTextFile_gme(const char *filename, byte *dst);
|
2005-05-10 22:56:25 +00:00
|
|
|
Common::File *openTablesFile_gme(const char *filename);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
void invokeTimeEvent(TimeEvent *te);
|
|
|
|
bool kickoffTimeEvents();
|
2006-05-03 01:11:50 +00:00
|
|
|
void killAllTimers();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-12-13 00:20:11 +00:00
|
|
|
void endCutscene();
|
2002-04-12 21:26:59 +00:00
|
|
|
void runSubroutine101();
|
2006-04-08 12:06:52 +00:00
|
|
|
|
2007-04-15 05:33:21 +00:00
|
|
|
virtual void inventoryUp(WindowBlock *window);
|
|
|
|
virtual void inventoryDown(WindowBlock *window);
|
2006-04-08 12:06:52 +00:00
|
|
|
|
2006-10-11 14:03:40 +00:00
|
|
|
WindowBlock *openWindow(uint x, uint y, uint w, uint h, uint flags, uint fillColor, uint textColor);
|
2006-04-08 07:13:07 +00:00
|
|
|
uint getWindowNum(WindowBlock *window);
|
2006-05-03 01:11:50 +00:00
|
|
|
void clearWindow(WindowBlock *window);
|
|
|
|
void changeWindow(uint a);
|
|
|
|
void closeWindow(uint a);
|
2006-11-06 13:59:11 +00:00
|
|
|
void setTextColor(uint color);
|
2006-05-03 01:11:50 +00:00
|
|
|
void windowPutChar(WindowBlock *window, byte c, byte b = 0);
|
2006-11-15 13:11:53 +00:00
|
|
|
void waitWindow(WindowBlock *window);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-05-03 01:11:50 +00:00
|
|
|
HitArea *findBox(uint hitarea_id);
|
2006-04-15 07:56:55 +00:00
|
|
|
void boxController(uint x, uint y, uint mode);
|
2006-05-03 01:11:50 +00:00
|
|
|
void handleVerbClicked(uint verb);
|
2007-04-15 05:33:21 +00:00
|
|
|
virtual void clearName();
|
2006-04-06 08:21:44 +00:00
|
|
|
void displayName(HitArea * ha);
|
2006-05-03 01:11:50 +00:00
|
|
|
void resetNameWindow();
|
2006-04-06 10:47:37 +00:00
|
|
|
void displayBoxStars();
|
2006-05-03 01:11:50 +00:00
|
|
|
void invertBox(HitArea * ha, byte a, byte b, byte c, byte d);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-17 09:00:14 +00:00
|
|
|
virtual void handleMouseMoved();
|
2006-09-30 06:47:41 +00:00
|
|
|
void initMouse();
|
2007-04-15 05:04:48 +00:00
|
|
|
virtual void drawMousePointer();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void addArrows(WindowBlock *window);
|
2006-04-08 12:06:52 +00:00
|
|
|
void removeArrows(WindowBlock *window, uint num);
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void drawIcon(WindowBlock *window, uint icon, uint x, uint y);
|
2006-10-23 05:58:53 +00:00
|
|
|
bool hasIcon(Item *item);
|
2006-04-06 00:54:26 +00:00
|
|
|
uint itemGetIconNumber(Item *item);
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual uint setupIconHitArea(WindowBlock *window, uint num, uint x, uint y, Item *item_ptr);
|
2007-04-15 05:04:48 +00:00
|
|
|
|
|
|
|
virtual void drawIconArray(uint i, Item *item_ptr, int line, int classMask);
|
|
|
|
|
|
|
|
|
2006-04-08 12:06:52 +00:00
|
|
|
void removeIconArray(uint num);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-03 14:40:07 +00:00
|
|
|
void loadIconData();
|
2002-04-12 21:26:59 +00:00
|
|
|
void loadIconFile();
|
2006-10-15 04:15:48 +00:00
|
|
|
void loadMenuFile();
|
2006-04-21 00:18:23 +00:00
|
|
|
|
2006-10-11 15:10:59 +00:00
|
|
|
bool processSpecialKeys();
|
2002-04-12 21:26:59 +00:00
|
|
|
void hitarea_stuff_helper();
|
|
|
|
|
2006-04-06 10:47:37 +00:00
|
|
|
void permitInput();
|
2006-04-13 14:26:46 +00:00
|
|
|
|
|
|
|
uint getFeebleFontSize(byte chr);
|
2006-10-27 13:28:32 +00:00
|
|
|
void justifyStart();
|
2006-10-21 01:51:59 +00:00
|
|
|
void justifyOutPut(byte chr);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-03 14:02:14 +00:00
|
|
|
void loadZone(uint zoneNum);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-15 13:01:36 +00:00
|
|
|
void animate(uint16 windowNum, uint16 zoneNum, uint16 vgaSpriteId, int16 x, int16 y, uint16 palette, bool vgaScript = false);
|
2006-10-22 05:11:27 +00:00
|
|
|
void setImage(uint16 vga_res_id, bool vgaScript = false);
|
2006-10-21 00:51:32 +00:00
|
|
|
void setWindowImage(uint16 mode, uint16 vga_res_id);
|
2006-10-22 00:55:17 +00:00
|
|
|
void setWindowImageEx(uint16 mode, uint16 vga_res);
|
2006-10-21 00:51:32 +00:00
|
|
|
|
2005-12-13 00:20:11 +00:00
|
|
|
void playSpeech(uint speech_id, uint vga_sprite_id);
|
2006-05-03 01:11:50 +00:00
|
|
|
void skipSpeech();
|
2002-07-07 19:06:48 +00:00
|
|
|
|
2006-04-07 03:03:20 +00:00
|
|
|
bool printNameOf(Item *item, uint x, uint y);
|
2006-05-03 01:11:50 +00:00
|
|
|
bool printTextOf(uint a, uint x, uint y);
|
|
|
|
void printVerbOf(uint hitarea_id);
|
|
|
|
void showActionString(const byte *string);
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void printScreenText(uint vga_sprite_id, uint color, const char *string_ptr, int16 x, int16 y, int16 width);
|
2006-04-07 03:03:20 +00:00
|
|
|
|
2006-04-07 01:46:43 +00:00
|
|
|
void renderStringAmiga(uint vga_sprite_id, uint color, uint width, uint height, const char *txt);
|
|
|
|
void renderString(uint vga_sprite_id, uint color, uint width, uint height, const char *txt);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-08 01:46:38 +00:00
|
|
|
void writeChar(WindowBlock *window, int x, int y, int offs, int val);
|
|
|
|
|
2006-04-10 23:44:17 +00:00
|
|
|
byte *allocBlock(uint32 size);
|
2007-05-17 09:00:14 +00:00
|
|
|
virtual void checkNoOverWrite();
|
2006-10-03 13:20:23 +00:00
|
|
|
void checkRunningAnims();
|
2007-05-17 09:00:14 +00:00
|
|
|
virtual void checkAnims(uint a);
|
|
|
|
virtual void checkZonePtrs();
|
2006-05-03 01:11:50 +00:00
|
|
|
void setZoneBuffers();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-21 00:18:23 +00:00
|
|
|
void runVgaScript();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2003-06-15 11:52:42 +00:00
|
|
|
public:
|
2006-04-17 12:05:45 +00:00
|
|
|
bool getBitFlag(uint bit);
|
|
|
|
void setBitFlag(uint bit, bool value);
|
|
|
|
|
2006-10-27 12:55:48 +00:00
|
|
|
// Video Script Opcodes, Common
|
2005-10-05 12:16:49 +00:00
|
|
|
void vc1_fadeOut();
|
2005-05-06 13:22:48 +00:00
|
|
|
void vc2_call();
|
|
|
|
void vc3_loadSprite();
|
2005-10-05 12:16:49 +00:00
|
|
|
void vc4_fadeIn();
|
2006-10-27 12:55:48 +00:00
|
|
|
void vc5_ifEqual();
|
|
|
|
void vc6_ifObjectHere();
|
|
|
|
void vc7_ifObjectNotHere();
|
|
|
|
void vc8_ifObjectIsAt();
|
|
|
|
void vc9_ifObjectStateIs();
|
2005-05-06 13:22:48 +00:00
|
|
|
void vc10_draw();
|
|
|
|
void vc12_delay();
|
|
|
|
void vc13_addToSpriteX();
|
|
|
|
void vc14_addToSpriteY();
|
2006-04-14 09:57:43 +00:00
|
|
|
void vc15_sync();
|
|
|
|
void vc16_waitSync();
|
2005-05-06 13:22:48 +00:00
|
|
|
void vc18_jump();
|
2006-10-13 12:55:53 +00:00
|
|
|
void vc19_loop();
|
2005-10-05 12:16:49 +00:00
|
|
|
void vc20_setRepeat();
|
|
|
|
void vc21_endRepeat();
|
2006-10-13 13:16:15 +00:00
|
|
|
void vc23_setPriority();
|
2005-05-06 13:22:48 +00:00
|
|
|
void vc24_setSpriteXY();
|
|
|
|
void vc25_halt_sprite();
|
2005-10-05 12:16:49 +00:00
|
|
|
void vc26_setSubWindow();
|
2005-05-06 13:22:48 +00:00
|
|
|
void vc27_resetSprite();
|
2006-10-13 12:55:53 +00:00
|
|
|
void vc28_playSFX();
|
2005-05-06 13:22:48 +00:00
|
|
|
void vc29_stopAllSounds();
|
2005-10-05 11:37:26 +00:00
|
|
|
void vc30_setFrameRate();
|
|
|
|
void vc31_setWindow();
|
2005-10-05 12:16:49 +00:00
|
|
|
void vc33_setMouseOn();
|
|
|
|
void vc34_setMouseOff();
|
|
|
|
void vc35_clearWindow();
|
|
|
|
void vc36_setWindowImage();
|
2006-10-27 12:55:48 +00:00
|
|
|
void vc38_ifVarNotZero();
|
2005-05-06 13:22:48 +00:00
|
|
|
void vc39_setVar();
|
|
|
|
void vc40();
|
|
|
|
void vc41();
|
|
|
|
void vc42_delayIfNotEQ();
|
2006-10-27 12:55:48 +00:00
|
|
|
|
|
|
|
// Video Script Opcodes, Elvira 1
|
|
|
|
void vc17_waitEnd();
|
|
|
|
void vc22_setPaletteOld();
|
|
|
|
void vc32_saveScreen();
|
|
|
|
void vc37_pokePalette();
|
|
|
|
|
|
|
|
// Video Script Opcodes, Elvira 2
|
|
|
|
void vc43_ifBitSet();
|
|
|
|
void vc44_ifBitClear();
|
2006-10-13 23:19:07 +00:00
|
|
|
void vc45_setWindowPalette();
|
|
|
|
void vc46_setPaletteSlot1();
|
|
|
|
void vc47_setPaletteSlot2();
|
|
|
|
void vc48_setPaletteSlot3();
|
2005-05-06 13:22:48 +00:00
|
|
|
void vc49_setBit();
|
|
|
|
void vc50_clearBit();
|
2006-04-14 09:57:43 +00:00
|
|
|
void vc51_enableBox();
|
2005-05-06 13:22:48 +00:00
|
|
|
void vc52_playSound();
|
2006-10-13 12:55:53 +00:00
|
|
|
void vc53_dissolveIn();
|
|
|
|
void vc54_dissolveOut();
|
2006-04-14 09:57:43 +00:00
|
|
|
void vc55_moveBox();
|
2006-10-13 12:55:53 +00:00
|
|
|
void vc56_fullScreen();
|
2006-09-19 11:59:13 +00:00
|
|
|
void vc57_blackPalette();
|
2006-10-13 13:16:15 +00:00
|
|
|
void vc58_checkCodeWheel();
|
|
|
|
void vc58_changePriority();
|
2006-10-27 12:55:48 +00:00
|
|
|
void vc59_ifEGA();
|
|
|
|
|
|
|
|
// Video Script Opcodes, Waxworks
|
2006-10-13 13:16:15 +00:00
|
|
|
void vc60_stopAnimation();
|
2006-10-13 12:55:53 +00:00
|
|
|
void vc61();
|
2005-10-05 11:37:26 +00:00
|
|
|
void vc62_fastFadeOut();
|
|
|
|
void vc63_fastFadeIn();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-27 12:55:48 +00:00
|
|
|
// Video Script Opcodes, Simon 1
|
|
|
|
void vc11_clearPathFinder();
|
|
|
|
void vc17_setPathfinderItem();
|
|
|
|
void vc32_copyVar();
|
|
|
|
void vc37_addToSpriteY();
|
|
|
|
void vc45_setSpriteX();
|
|
|
|
void vc46_setSpriteY();
|
|
|
|
void vc47_addToVar();
|
|
|
|
void vc48_setPathFinder();
|
|
|
|
void vc59_ifSpeech();
|
|
|
|
void vc61_setMaskImage();
|
|
|
|
void vc22_setPaletteNew();
|
|
|
|
|
|
|
|
// Video Script Opcodes, Simon 2
|
|
|
|
void vc56_delayLong();
|
|
|
|
void vc59_stopAnimations();
|
|
|
|
void vc64_ifSpeech();
|
2005-10-05 11:37:26 +00:00
|
|
|
void vc65_slowFadeIn();
|
2006-10-27 12:55:48 +00:00
|
|
|
void vc66_ifEqual();
|
|
|
|
void vc67_ifLE();
|
|
|
|
void vc68_ifGE();
|
|
|
|
void vc69_playSeq();
|
|
|
|
void vc70_joinSeq();
|
|
|
|
void vc71_ifSeqWaiting();
|
|
|
|
void vc72_segue();
|
2005-10-05 11:37:26 +00:00
|
|
|
void vc73_setMark();
|
|
|
|
void vc74_clearMark();
|
2005-11-19 11:37:41 +00:00
|
|
|
|
2006-10-27 12:55:48 +00:00
|
|
|
// Video Script Opcodes, Feeble Files
|
2005-10-09 09:03:37 +00:00
|
|
|
void vc75_setScale();
|
|
|
|
void vc76_setScaleXOffs();
|
|
|
|
void vc77_setScaleYOffs();
|
2005-11-14 10:31:19 +00:00
|
|
|
void vc78_computeXY();
|
2005-11-18 12:40:03 +00:00
|
|
|
void vc79_computePosNum();
|
2005-10-09 09:03:37 +00:00
|
|
|
void vc80_setOverlayImage();
|
|
|
|
void vc81_setRandom();
|
2005-11-18 14:15:03 +00:00
|
|
|
void vc82_getPathValue();
|
2005-10-09 09:03:37 +00:00
|
|
|
void vc83_playSoundLoop();
|
|
|
|
void vc84_stopSoundLoop();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-07 09:37:44 +00:00
|
|
|
void setScriptCondition(bool cond);
|
|
|
|
bool getScriptCondition();
|
|
|
|
void setScriptReturn(int ret);
|
|
|
|
int getScriptReturn();
|
|
|
|
|
2006-10-05 05:27:10 +00:00
|
|
|
// Opcodes, common
|
2007-04-15 12:04:47 +00:00
|
|
|
void o_invalid();
|
2006-04-10 09:49:03 +00:00
|
|
|
void o_at();
|
|
|
|
void o_notAt();
|
|
|
|
void o_carried();
|
|
|
|
void o_notCarried();
|
|
|
|
void o_isAt();
|
|
|
|
void o_zero();
|
|
|
|
void o_notZero();
|
|
|
|
void o_eq();
|
|
|
|
void o_notEq();
|
|
|
|
void o_gt();
|
|
|
|
void o_lt();
|
|
|
|
void o_eqf();
|
|
|
|
void o_notEqf();
|
|
|
|
void o_ltf();
|
|
|
|
void o_gtf();
|
|
|
|
void o_chance();
|
|
|
|
void o_isRoom();
|
|
|
|
void o_isObject();
|
|
|
|
void o_state();
|
|
|
|
void o_oflag();
|
|
|
|
void o_destroy();
|
|
|
|
void o_place();
|
|
|
|
void o_copyff();
|
|
|
|
void o_clear();
|
|
|
|
void o_let();
|
|
|
|
void o_add();
|
|
|
|
void o_sub();
|
|
|
|
void o_addf();
|
|
|
|
void o_subf();
|
|
|
|
void o_mul();
|
|
|
|
void o_div();
|
|
|
|
void o_mulf();
|
|
|
|
void o_divf();
|
|
|
|
void o_mod();
|
|
|
|
void o_modf();
|
|
|
|
void o_random();
|
|
|
|
void o_goto();
|
|
|
|
void o_oset();
|
|
|
|
void o_oclear();
|
|
|
|
void o_putBy();
|
|
|
|
void o_inc();
|
|
|
|
void o_dec();
|
|
|
|
void o_setState();
|
|
|
|
void o_print();
|
|
|
|
void o_message();
|
|
|
|
void o_msg();
|
|
|
|
void o_end();
|
|
|
|
void o_done();
|
|
|
|
void o_process();
|
|
|
|
void o_when();
|
|
|
|
void o_if1();
|
|
|
|
void o_if2();
|
|
|
|
void o_isCalled();
|
|
|
|
void o_is();
|
|
|
|
void o_debug();
|
|
|
|
void o_comment();
|
|
|
|
void o_haltAnimation();
|
|
|
|
void o_restartAnimation();
|
|
|
|
void o_getParent();
|
|
|
|
void o_getNext();
|
|
|
|
void o_getChildren();
|
|
|
|
void o_picture();
|
|
|
|
void o_loadZone();
|
|
|
|
void o_killAnimate();
|
|
|
|
void o_defWindow();
|
|
|
|
void o_window();
|
|
|
|
void o_cls();
|
|
|
|
void o_closeWindow();
|
|
|
|
void o_addBox();
|
|
|
|
void o_delBox();
|
|
|
|
void o_enableBox();
|
|
|
|
void o_disableBox();
|
|
|
|
void o_moveBox();
|
|
|
|
void o_doIcons();
|
|
|
|
void o_isClass();
|
|
|
|
void o_setClass();
|
|
|
|
void o_unsetClass();
|
|
|
|
void o_waitSync();
|
|
|
|
void o_sync();
|
|
|
|
void o_defObj();
|
|
|
|
void o_here();
|
|
|
|
void o_doClassIcons();
|
2007-04-15 12:04:47 +00:00
|
|
|
void o_playTune();
|
2006-04-10 09:49:03 +00:00
|
|
|
void o_setAdjNoun();
|
|
|
|
void o_saveUserGame();
|
|
|
|
void o_loadUserGame();
|
|
|
|
void o_copysf();
|
|
|
|
void o_restoreIcons();
|
|
|
|
void o_freezeZones();
|
|
|
|
void o_placeNoIcons();
|
|
|
|
void o_clearTimers();
|
|
|
|
void o_setDollar();
|
|
|
|
void o_isBox();
|
2006-10-25 13:38:35 +00:00
|
|
|
|
2006-11-15 13:11:53 +00:00
|
|
|
int16 levelOf(Item *item);
|
|
|
|
int16 moreText(Item *i);
|
|
|
|
void lobjFunc(Item *i, const char *f);
|
|
|
|
uint confirmQuit();
|
|
|
|
uint continueOrQuit();
|
|
|
|
void printScroll();
|
2006-11-06 13:59:11 +00:00
|
|
|
void synchChain(Item *i);
|
|
|
|
|
2003-06-15 11:52:42 +00:00
|
|
|
protected:
|
2007-04-15 00:12:09 +00:00
|
|
|
bool drawImage_clip(VC10_state *state);
|
2006-11-06 08:07:47 +00:00
|
|
|
|
2007-05-15 13:01:36 +00:00
|
|
|
void drawImage_init(int16 image, uint16 palette, int16 x, int16 y, uint16 flags);
|
2007-04-15 00:12:09 +00:00
|
|
|
|
2007-05-06 09:46:43 +00:00
|
|
|
virtual void drawImage(VC10_state *state);
|
2007-05-09 15:36:05 +00:00
|
|
|
void drawBackGroundImage(VC10_state *state);
|
|
|
|
void drawVertImage(VC10_state *state);
|
|
|
|
|
|
|
|
void setMoveRect(uint16 x, uint16 y, uint16 width, uint16 height);
|
2006-11-06 08:07:47 +00:00
|
|
|
|
2006-04-07 14:27:28 +00:00
|
|
|
void horizontalScroll(VC10_state *state);
|
|
|
|
void verticalScroll(VC10_state *state);
|
|
|
|
|
2005-12-13 00:20:11 +00:00
|
|
|
int vcReadVarOrWord();
|
|
|
|
uint vcReadNextWord();
|
|
|
|
uint vcReadNextByte();
|
|
|
|
uint vcReadVar(uint var);
|
|
|
|
void vcWriteVar(uint var, int16 value);
|
|
|
|
void vcSkipNextInstruction();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-24 06:46:31 +00:00
|
|
|
int getScale(int16 y, int16 x);
|
2006-04-18 00:15:25 +00:00
|
|
|
void checkScrollX(int16 x, int16 xpos);
|
|
|
|
void checkScrollY(int16 y, int16 ypos);
|
2006-04-09 04:53:31 +00:00
|
|
|
void centreScroll();
|
2005-11-18 13:47:47 +00:00
|
|
|
|
2007-05-09 15:36:05 +00:00
|
|
|
void clearVideoWindow(uint windowNum, uint color);
|
|
|
|
void clearVideoBackGround(uint windowNum, uint color);
|
|
|
|
|
2006-10-13 23:19:07 +00:00
|
|
|
void setPaletteSlot(uint srcOffs, uint dstOffs);
|
2006-10-14 14:29:14 +00:00
|
|
|
void checkWaitEndTable();
|
2006-10-11 12:03:47 +00:00
|
|
|
|
2006-10-02 01:09:50 +00:00
|
|
|
void startOverlayAnims();
|
|
|
|
void startAnOverlayAnim();
|
|
|
|
|
2003-03-07 03:26:30 +00:00
|
|
|
bool itemIsSiblingOf(uint16 val);
|
|
|
|
bool itemIsParentOf(uint16 a, uint16 b);
|
2002-04-12 21:26:59 +00:00
|
|
|
bool vc_maybe_skip_proc_1(uint16 a, int16 b);
|
|
|
|
|
2006-09-30 07:15:19 +00:00
|
|
|
bool isVgaQueueEmpty();
|
2006-10-13 11:38:41 +00:00
|
|
|
void haltAnimation();
|
|
|
|
void restartAnimation();
|
2007-05-13 08:46:48 +00:00
|
|
|
void addVgaEvent(uint16 num, const byte *code_ptr, uint16 cur_sprite, uint16 curZoneNum, uint8 type = 0);
|
2006-04-21 00:18:23 +00:00
|
|
|
void deleteVgaEvent(VgaTimerEntry * vte);
|
|
|
|
void processVgaEvents();
|
|
|
|
void animateEvent(const byte *code_ptr, uint16 curZoneNum, uint16 cur_sprite);
|
|
|
|
void scrollEvent();
|
2005-12-13 00:20:11 +00:00
|
|
|
|
2006-04-21 00:18:23 +00:00
|
|
|
VgaSprite *findCurSprite();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-10 23:44:17 +00:00
|
|
|
bool isSpriteLoaded(uint16 id, uint16 zoneNum);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-09 06:06:10 +00:00
|
|
|
void resetWindow(WindowBlock *window);
|
2006-10-21 01:51:59 +00:00
|
|
|
void freeBox(uint index);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-06 10:47:37 +00:00
|
|
|
void windowPutChar(uint a);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-05 02:45:28 +00:00
|
|
|
void restoreWindow(WindowBlock *window);
|
|
|
|
void colorWindow(WindowBlock *window);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-08 07:13:07 +00:00
|
|
|
void restoreBlock(uint h, uint w, uint y, uint x);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-03-16 04:10:34 +00:00
|
|
|
byte *getFrontBuf();
|
2006-03-22 13:54:26 +00:00
|
|
|
byte *getBackBuf();
|
2006-04-15 22:37:48 +00:00
|
|
|
byte *getBackGround();
|
2006-03-16 04:10:34 +00:00
|
|
|
byte *getScaleBuf();
|
2006-03-16 03:15:05 +00:00
|
|
|
|
2007-02-12 04:30:24 +00:00
|
|
|
byte *convertImage(VC10_state *state, bool compressed);
|
2007-02-08 23:37:17 +00:00
|
|
|
|
2006-10-14 14:29:14 +00:00
|
|
|
bool decrunchFile(byte *src, byte *dst, uint32 size);
|
2006-10-19 11:13:28 +00:00
|
|
|
void loadVGABeardFile(uint id);
|
|
|
|
void loadVGAVideoFile(uint id, uint type);
|
|
|
|
bool loadVGASoundFile(uint id, uint type);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-15 20:36:41 +00:00
|
|
|
int init();
|
2004-11-23 00:03:25 +00:00
|
|
|
int go();
|
2006-04-21 00:18:23 +00:00
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
void openGameFile();
|
2006-04-21 00:18:23 +00:00
|
|
|
void readGameFile(void *dst, uint32 offs, uint32 size);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-16 05:57:26 +00:00
|
|
|
void dimp_idle();
|
2002-04-12 21:26:59 +00:00
|
|
|
void timer_callback();
|
2007-05-13 13:19:46 +00:00
|
|
|
virtual void timer_proc1();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-13 08:46:48 +00:00
|
|
|
virtual void animateSprites();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-05-09 15:36:05 +00:00
|
|
|
void dirtyClips();
|
|
|
|
void dirtyBackGround();
|
|
|
|
void restoreBackGround();
|
|
|
|
void saveBackGround(VgaSprite *vsp);
|
|
|
|
|
2006-10-21 01:51:59 +00:00
|
|
|
void clearSurfaces(uint num_lines);
|
2007-05-13 08:46:48 +00:00
|
|
|
void displayScreen();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-06 08:30:07 +00:00
|
|
|
void dumpVideoScript(const byte *src, bool one_opcode_only);
|
2006-10-21 01:51:59 +00:00
|
|
|
void dumpVgaFile(const byte *vga);
|
|
|
|
void dumpVgaScript(const byte *ptr, uint res, uint sprite_id);
|
|
|
|
void dumpVgaScriptAlways(const byte *ptr, uint res, uint sprite_id);
|
|
|
|
void dumpVgaBitmaps(const byte *vga, byte *vga1, int res);
|
|
|
|
void dumpSingleBitmap(int file, int image, const byte *offs, int w, int h, byte base);
|
|
|
|
void dumpBitmap(const char *filename, const byte *offs, int w, int h, int flags, const byte *palette, byte base);
|
2002-06-29 16:11:13 +00:00
|
|
|
|
2006-04-15 22:37:48 +00:00
|
|
|
void clearBackFromTop(uint lines);
|
|
|
|
void fillFrontFromBack(uint x, uint y, uint w, uint h);
|
|
|
|
void fillBackGroundFromBack(uint lines);
|
|
|
|
void fillBackFromFront(uint x, uint y, uint w, uint h);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-04-15 14:12:08 +00:00
|
|
|
virtual void print_char_helper_1(const byte *src, uint len);
|
2006-11-15 13:11:53 +00:00
|
|
|
void clsCheck(WindowBlock *window);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2005-12-13 00:20:11 +00:00
|
|
|
void quickLoadOrSave();
|
2002-04-12 21:26:59 +00:00
|
|
|
void shutdown();
|
|
|
|
|
2005-11-08 11:34:56 +00:00
|
|
|
byte *vc10_uncompressFlip(const byte *src, uint w, uint h);
|
|
|
|
byte *vc10_flip(const byte *src, uint w, uint h);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
|
|
|
Item *getNextItemPtrStrange();
|
|
|
|
|
2007-05-16 08:27:15 +00:00
|
|
|
virtual bool loadGame(const char *filename, bool restartMode = false);
|
|
|
|
virtual bool saveGame(uint slot, const char *caption);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-08 07:13:07 +00:00
|
|
|
void openTextWindow();
|
|
|
|
void tidyIconArray(uint i);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2007-04-15 14:12:08 +00:00
|
|
|
virtual void windowNewLine(WindowBlock *window);
|
2006-10-21 01:51:59 +00:00
|
|
|
void windowDrawChar(WindowBlock *window, uint x, uint y, byte chr);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2003-05-21 05:12:04 +00:00
|
|
|
void loadMusic(uint music);
|
2007-02-16 13:55:01 +00:00
|
|
|
void loadModule(uint music);
|
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
void checkTimerCallback();
|
|
|
|
void delay(uint delay);
|
2003-12-10 00:54:53 +00:00
|
|
|
void pause();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
By now, it should be obvious that I'm trying to get rid of the o_ functions.
This is in preparation for the next stage of the cleanup.
By now, I have merged most of the o_ opcode functions into the corresponding
o1_ opcode function. There are a few pure o_ opcode functions left, but it
makes sense to keep them separate functions since they are part of groups of
other functions. Now, to get rid of the remaining o_ functions I have:
Dropped the "o_" prefix from the following functions: o_kill_sprite_simon1(),
o_kill_sprite_simon2(), o_waitForSync(), o_freezeBottom(), o_setTextColor(),
o_fadeToBlack(), o_waitForMark(), o_unk_132_helper_3(), o_unk_132_helper(),
o_clearCharacter(), o_fileError().
Renamed o_sync() to sendSync().
Renamed o_mouseOn() to scriptMouseOn(), and moved it to items.cpp
Renamed o_mouseOff() to scriptMouseOff(), and moved it to items.cpp
svn-id: r21760
2006-04-10 09:18:07 +00:00
|
|
|
void waitForMark(uint i);
|
2006-04-21 00:18:23 +00:00
|
|
|
void scrollScreen();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-04-08 00:12:16 +00:00
|
|
|
void decodeColumn(byte *dst, const byte *src, int height);
|
|
|
|
void decodeRow(byte *dst, const byte *src, int width);
|
2002-04-12 21:26:59 +00:00
|
|
|
void hitarea_stuff_helper_2();
|
2005-11-13 07:04:56 +00:00
|
|
|
void fastFadeIn();
|
|
|
|
void slowFadeIn();
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2006-10-21 01:51:59 +00:00
|
|
|
void vcStopAnimation(uint file, uint sprite);
|
2002-04-16 12:07:19 +00:00
|
|
|
|
2006-06-02 08:06:50 +00:00
|
|
|
void disableFileBoxes();
|
2007-05-22 10:31:51 +00:00
|
|
|
virtual void listSaveGames(char *dst);
|
|
|
|
virtual void userGame(bool load);
|
|
|
|
virtual int userGameGetKey(bool *b, char *buf, uint maxChar);
|
2006-06-02 08:06:50 +00:00
|
|
|
void userGameBackSpace(WindowBlock *window, int x, byte b = 0);
|
By now, it should be obvious that I'm trying to get rid of the o_ functions.
This is in preparation for the next stage of the cleanup.
By now, I have merged most of the o_ opcode functions into the corresponding
o1_ opcode function. There are a few pure o_ opcode functions left, but it
makes sense to keep them separate functions since they are part of groups of
other functions. Now, to get rid of the remaining o_ functions I have:
Dropped the "o_" prefix from the following functions: o_kill_sprite_simon1(),
o_kill_sprite_simon2(), o_waitForSync(), o_freezeBottom(), o_setTextColor(),
o_fadeToBlack(), o_waitForMark(), o_unk_132_helper_3(), o_unk_132_helper(),
o_clearCharacter(), o_fileError().
Renamed o_sync() to sendSync().
Renamed o_mouseOn() to scriptMouseOn(), and moved it to items.cpp
Renamed o_mouseOff() to scriptMouseOff(), and moved it to items.cpp
svn-id: r21760
2006-04-10 09:18:07 +00:00
|
|
|
void fileError(WindowBlock *window, bool save_error);
|
2002-04-16 12:07:19 +00:00
|
|
|
|
2005-12-13 00:20:11 +00:00
|
|
|
int countSaveGames();
|
2002-04-16 12:07:19 +00:00
|
|
|
|
2006-05-03 01:11:50 +00:00
|
|
|
char *genSaveName(int slot);
|
2002-04-12 21:26:59 +00:00
|
|
|
};
|
|
|
|
|
2007-04-15 05:04:48 +00:00
|
|
|
class AGOSEngine_Elvira1 : public AGOSEngine {
|
|
|
|
public:
|
|
|
|
AGOSEngine_Elvira1(OSystem *system);
|
|
|
|
//~AGOSEngine_Elvira1();
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void setupGame();
|
2007-04-15 12:04:47 +00:00
|
|
|
virtual void setupOpcodes();
|
2007-04-15 05:04:48 +00:00
|
|
|
virtual void setupVideoOpcodes(VgaOpcodeProc *op);
|
2007-04-15 12:04:47 +00:00
|
|
|
|
|
|
|
virtual void executeOpcode(int opcode);
|
|
|
|
|
|
|
|
void oe1_present();
|
|
|
|
void oe1_notPresent();
|
|
|
|
void oe1_worn();
|
|
|
|
void oe1_notWorn();
|
|
|
|
void oe1_notCarried();
|
|
|
|
void oe1_isNotAt();
|
|
|
|
void oe1_sibling();
|
|
|
|
void oe1_notSibling();
|
|
|
|
void oe1_isIn();
|
|
|
|
void oe1_isNotIn();
|
|
|
|
void oe1_isPlayer();
|
|
|
|
void oe1_canPut();
|
|
|
|
void oe1_create();
|
|
|
|
void oe1_copyof();
|
|
|
|
void oe1_copyfo();
|
|
|
|
void oe1_whatO();
|
|
|
|
void oe1_weigh();
|
|
|
|
void oe1_setFF();
|
|
|
|
void oe1_moveDirn();
|
|
|
|
void oe1_score();
|
|
|
|
void oe1_look();
|
|
|
|
void oe1_doClass();
|
|
|
|
void oe1_pObj();
|
|
|
|
void oe1_pName();
|
|
|
|
void oe1_pcName();
|
|
|
|
void oe1_isCalled();
|
|
|
|
void oe1_cFlag();
|
|
|
|
void oe1_rescan();
|
|
|
|
void oe1_setUserItem();
|
|
|
|
void oe1_getUserItem();
|
|
|
|
void oe1_whereTo();
|
|
|
|
void oe1_doorExit();
|
|
|
|
void oe1_saveGame();
|
|
|
|
void oe1_loadGame();
|
|
|
|
void oe1_clearUserItem();
|
|
|
|
void oe1_findMaster();
|
|
|
|
void oe1_nextMaster();
|
|
|
|
void oe1_animate();
|
|
|
|
void oe1_stopAnimate();
|
|
|
|
void oe1_menu();
|
|
|
|
void oe1_enableInput();
|
|
|
|
void oe1_setTime();
|
|
|
|
void oe1_ifTime();
|
|
|
|
void oe1_playTune();
|
|
|
|
void oe1_bitClear();
|
|
|
|
void oe1_bitSet();
|
|
|
|
void oe1_bitTest();
|
|
|
|
void oe1_zoneDisk();
|
2007-05-22 10:31:51 +00:00
|
|
|
void oe1_saveUserGame();
|
|
|
|
void oe1_loadUserGame();
|
2007-04-15 12:04:47 +00:00
|
|
|
void oe1_printStats();
|
|
|
|
void oe1_stopTune();
|
|
|
|
void oe1_printPlayerDamage();
|
|
|
|
void oe1_printMonsterDamage();
|
|
|
|
void oe1_pauseGame();
|
|
|
|
void oe1_printPlayerHit();
|
|
|
|
void oe1_printMonsterHit();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
typedef void (AGOSEngine_Elvira1::*OpcodeProcElvira1) ();
|
|
|
|
struct OpcodeEntryElvira1 {
|
|
|
|
OpcodeProcElvira1 proc;
|
|
|
|
const char *desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
const OpcodeEntryElvira1 *_opcodesElvira1;
|
2007-04-15 05:04:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class AGOSEngine_Elvira2 : public AGOSEngine_Elvira1 {
|
|
|
|
public:
|
|
|
|
AGOSEngine_Elvira2(OSystem *system);
|
|
|
|
//~AGOSEngine_Elvira2();
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void setupGame();
|
2007-04-15 12:04:47 +00:00
|
|
|
virtual void setupOpcodes();
|
2007-04-15 05:04:48 +00:00
|
|
|
virtual void setupVideoOpcodes(VgaOpcodeProc *op);
|
2007-04-15 12:04:47 +00:00
|
|
|
|
|
|
|
virtual void executeOpcode(int opcode);
|
|
|
|
|
|
|
|
void oe2_moveDirn();
|
|
|
|
void oe2_doClass();
|
|
|
|
void oe2_pObj();
|
|
|
|
void oe2_drawItem();
|
|
|
|
void oe2_doTable();
|
|
|
|
void oe2_pauseGame();
|
|
|
|
void oe2_setDoorOpen();
|
|
|
|
void oe2_setDoorClosed();
|
|
|
|
void oe2_setDoorLocked();
|
|
|
|
void oe2_ifDoorOpen();
|
|
|
|
void oe2_ifDoorClosed();
|
|
|
|
void oe2_ifDoorLocked();
|
|
|
|
void oe2_storeItem();
|
|
|
|
void oe2_getItem();
|
|
|
|
void oe2_bSet();
|
|
|
|
void oe2_bClear();
|
|
|
|
void oe2_bZero();
|
|
|
|
void oe2_bNotZero();
|
|
|
|
void oe2_getOValue();
|
|
|
|
void oe2_setOValue();
|
|
|
|
void oe2_ink();
|
|
|
|
void oe2_printStats();
|
|
|
|
void oe2_setSuperRoom();
|
|
|
|
void oe2_getSuperRoom();
|
|
|
|
void oe2_setExitOpen();
|
|
|
|
void oe2_setExitClosed();
|
|
|
|
void oe2_setExitLocked();
|
|
|
|
void oe2_ifExitOpen();
|
|
|
|
void oe2_ifExitClosed();
|
|
|
|
void oe2_ifExitLocked();
|
|
|
|
void oe2_unk174();
|
|
|
|
void oe2_getDollar2();
|
|
|
|
void oe2_setSRExit();
|
|
|
|
void oe2_unk177();
|
|
|
|
void oe2_unk178();
|
|
|
|
void oe2_isAdjNoun();
|
|
|
|
void oe2_b2Set();
|
|
|
|
void oe2_b2Clear();
|
|
|
|
void oe2_b2Zero();
|
|
|
|
void oe2_b2NotZero();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
typedef void (AGOSEngine_Elvira2::*OpcodeProcElvira2) ();
|
|
|
|
struct OpcodeEntryElvira2 {
|
|
|
|
OpcodeProcElvira2 proc;
|
|
|
|
const char *desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
const OpcodeEntryElvira2 *_opcodesElvira2;
|
2007-05-07 01:11:10 +00:00
|
|
|
|
2007-05-16 09:39:36 +00:00
|
|
|
virtual bool loadGame(const char *filename, bool restartMode = false);
|
|
|
|
virtual bool saveGame(uint slot, const char *caption);
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void drawIcon(WindowBlock *window, uint icon, uint x, uint y);
|
|
|
|
|
|
|
|
virtual void addArrows(WindowBlock *window);
|
|
|
|
virtual uint setupIconHitArea(WindowBlock *window, uint num, uint x, uint y, Item *item_ptr);
|
|
|
|
|
|
|
|
virtual void moveDirn(Item *i, uint x);
|
|
|
|
|
|
|
|
int changeExitStates(SubSuperRoom *sr, int n, int d, uint16 s);
|
|
|
|
uint16 getExitState(Item *item, uint16 x, uint16 d);
|
|
|
|
void setExitState(Item *i, uint16 n, uint16 d, uint16 s);
|
|
|
|
void setSRExit(Item *i, int n, int d, uint16 s);
|
2007-04-15 05:04:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class AGOSEngine_Waxworks : public AGOSEngine_Elvira2 {
|
|
|
|
public:
|
|
|
|
AGOSEngine_Waxworks(OSystem *system);
|
|
|
|
//~AGOSEngine_Waxworks();
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void setupGame();
|
2007-04-15 12:04:47 +00:00
|
|
|
virtual void setupOpcodes();
|
2007-04-15 05:04:48 +00:00
|
|
|
virtual void setupVideoOpcodes(VgaOpcodeProc *op);
|
2007-04-15 12:04:47 +00:00
|
|
|
|
|
|
|
virtual void executeOpcode(int opcode);
|
|
|
|
|
2007-04-15 14:12:08 +00:00
|
|
|
void boxTextMessage(const char *x);
|
|
|
|
void boxTextMsg(const char *x);
|
|
|
|
void printBox();
|
|
|
|
uint16 getBoxSize();
|
|
|
|
uint16 checkFit(char *Ptr, int width, int lines);
|
|
|
|
|
2007-04-15 12:04:47 +00:00
|
|
|
void oww_goto();
|
|
|
|
void oww_addTextBox();
|
|
|
|
void oww_setShortText();
|
|
|
|
void oww_setLongText();
|
|
|
|
void oww_printLongText();
|
|
|
|
void oww_whereTo();
|
|
|
|
void oww_menu();
|
|
|
|
void oww_textMenu();
|
|
|
|
void oww_pauseGame();
|
|
|
|
void oww_boxMessage();
|
|
|
|
void oww_boxMsg();
|
|
|
|
void oww_boxLongText();
|
|
|
|
void oww_printBox();
|
|
|
|
void oww_boxPObj();
|
|
|
|
void oww_lockZones();
|
|
|
|
void oww_unlockZones();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
typedef void (AGOSEngine_Waxworks::*OpcodeProcWaxworks) ();
|
|
|
|
struct OpcodeEntryWaxworks {
|
|
|
|
OpcodeProcWaxworks proc;
|
|
|
|
const char *desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
const OpcodeEntryWaxworks *_opcodesWaxworks;
|
2007-05-07 01:11:10 +00:00
|
|
|
|
|
|
|
virtual void drawIcon(WindowBlock *window, uint icon, uint x, uint y);
|
|
|
|
|
|
|
|
virtual void addArrows(WindowBlock *window);
|
|
|
|
virtual uint setupIconHitArea(WindowBlock *window, uint num, uint x, uint y, Item *item_ptr);
|
|
|
|
|
|
|
|
virtual bool loadTablesIntoMem(uint subr_id);
|
|
|
|
|
|
|
|
bool loadRoomItems(uint item);
|
|
|
|
|
|
|
|
virtual void moveDirn(Item *i, uint x);
|
2007-04-15 05:04:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class AGOSEngine_Simon1 : public AGOSEngine_Waxworks {
|
|
|
|
public:
|
|
|
|
AGOSEngine_Simon1(OSystem *system);
|
|
|
|
//~AGOSEngine_Simon1();
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void setupGame();
|
2007-04-15 12:04:47 +00:00
|
|
|
virtual void setupOpcodes();
|
2007-04-15 05:04:48 +00:00
|
|
|
virtual void setupVideoOpcodes(VgaOpcodeProc *op);
|
2007-04-15 12:04:47 +00:00
|
|
|
|
|
|
|
virtual void executeOpcode(int opcode);
|
|
|
|
|
|
|
|
// Opcodes, Simon 1
|
|
|
|
void os1_animate();
|
|
|
|
void os1_pauseGame();
|
|
|
|
void os1_screenTextBox();
|
|
|
|
void os1_screenTextMsg();
|
|
|
|
void os1_playEffect();
|
|
|
|
void os1_screenTextPObj();
|
|
|
|
void os1_getPathPosn();
|
|
|
|
void os1_scnTxtLongText();
|
|
|
|
void os1_mouseOn();
|
|
|
|
void os1_mouseOff();
|
|
|
|
void os1_loadBeard();
|
|
|
|
void os1_unloadBeard();
|
|
|
|
void os1_unloadZone();
|
|
|
|
void os1_loadStrings();
|
|
|
|
void os1_unfreezeZones();
|
|
|
|
void os1_specialFade();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
typedef void (AGOSEngine_Simon1::*OpcodeProcSimon1) ();
|
|
|
|
struct OpcodeEntrySimon1 {
|
|
|
|
OpcodeProcSimon1 proc;
|
|
|
|
const char *desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
const OpcodeEntrySimon1 *_opcodesSimon1;
|
2007-05-06 09:46:43 +00:00
|
|
|
|
|
|
|
virtual void drawImage(VC10_state *state);
|
2007-05-09 15:36:05 +00:00
|
|
|
void drawMaskedImage(VC10_state *state);
|
|
|
|
void draw32ColorImage(VC10_state *state);
|
2007-05-07 01:11:10 +00:00
|
|
|
|
|
|
|
virtual void drawIcon(WindowBlock *window, uint icon, uint x, uint y);
|
|
|
|
|
|
|
|
virtual void addArrows(WindowBlock *window);
|
|
|
|
virtual uint setupIconHitArea(WindowBlock *window, uint num, uint x, uint y, Item *item_ptr);
|
2007-05-22 10:31:51 +00:00
|
|
|
|
|
|
|
virtual void listSaveGames(char *dst);
|
|
|
|
virtual void userGame(bool load);
|
|
|
|
virtual int userGameGetKey(bool *b, char *buf, uint maxChar);
|
2007-04-15 05:04:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class AGOSEngine_Simon2 : public AGOSEngine_Simon1 {
|
|
|
|
public:
|
|
|
|
AGOSEngine_Simon2(OSystem *system);
|
|
|
|
//~AGOSEngine_Simon2();
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void setupGame();
|
2007-04-15 12:04:47 +00:00
|
|
|
virtual void setupOpcodes();
|
2007-04-15 05:04:48 +00:00
|
|
|
virtual void setupVideoOpcodes(VgaOpcodeProc *op);
|
2007-04-15 12:04:47 +00:00
|
|
|
|
|
|
|
virtual void executeOpcode(int opcode);
|
|
|
|
|
|
|
|
void os2_printLongText();
|
|
|
|
void os2_rescan();
|
|
|
|
void os2_animate();
|
|
|
|
void os2_stopAnimate();
|
|
|
|
void os2_playTune();
|
|
|
|
void os2_screenTextPObj();
|
|
|
|
void os2_mouseOn();
|
|
|
|
void os2_mouseOff();
|
|
|
|
void os2_isShortText();
|
|
|
|
void os2_clearMarks();
|
|
|
|
void os2_waitMark();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
typedef void (AGOSEngine_Simon2::*OpcodeProcSimon2) ();
|
|
|
|
struct OpcodeEntrySimon2 {
|
|
|
|
OpcodeProcSimon2 proc;
|
|
|
|
const char *desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
const OpcodeEntrySimon2 *_opcodesSimon2;
|
2007-05-07 01:11:10 +00:00
|
|
|
|
|
|
|
virtual void drawIcon(WindowBlock *window, uint icon, uint x, uint y);
|
|
|
|
|
|
|
|
virtual void addArrows(WindowBlock *window);
|
|
|
|
virtual uint setupIconHitArea(WindowBlock *window, uint num, uint x, uint y, Item *item_ptr);
|
2007-04-15 05:04:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class AGOSEngine_Feeble : public AGOSEngine_Simon2 {
|
|
|
|
public:
|
|
|
|
AGOSEngine_Feeble(OSystem *system);
|
|
|
|
//~AGOSEngine_Feeble();
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void setupGame();
|
2007-04-15 12:04:47 +00:00
|
|
|
virtual void setupOpcodes();
|
2007-04-15 05:04:48 +00:00
|
|
|
virtual void setupVideoOpcodes(VgaOpcodeProc *op);
|
|
|
|
|
2007-04-15 12:04:47 +00:00
|
|
|
virtual void executeOpcode(int opcode);
|
|
|
|
|
|
|
|
void off_chance();
|
|
|
|
void off_jumpOut();
|
|
|
|
void off_addTextBox();
|
|
|
|
void off_printLongText();
|
|
|
|
void off_addBox();
|
|
|
|
void off_oracleTextDown();
|
|
|
|
void off_oracleTextUp();
|
|
|
|
void off_ifTime();
|
|
|
|
void off_setTime();
|
|
|
|
void off_saveUserGame();
|
|
|
|
void off_loadUserGame();
|
|
|
|
void off_listSaveGames();
|
|
|
|
void off_checkCD();
|
|
|
|
void off_screenTextBox();
|
|
|
|
void off_isAdjNoun();
|
|
|
|
void off_hyperLinkOn();
|
|
|
|
void off_hyperLinkOff();
|
|
|
|
void off_checkPaths();
|
|
|
|
void off_screenTextPObj();
|
|
|
|
void off_mouseOn();
|
|
|
|
void off_mouseOff();
|
|
|
|
void off_loadVideo();
|
|
|
|
void off_playVideo();
|
|
|
|
void off_centreScroll();
|
|
|
|
void off_resetPVCount();
|
|
|
|
void off_setPathValues();
|
|
|
|
void off_stopClock();
|
|
|
|
void off_restartClock();
|
|
|
|
void off_setColour();
|
|
|
|
void off_b3Set();
|
|
|
|
void off_b3Clear();
|
|
|
|
void off_b3Zero();
|
|
|
|
void off_b3NotZero();
|
|
|
|
|
2007-04-15 05:04:48 +00:00
|
|
|
protected:
|
2007-04-15 12:04:47 +00:00
|
|
|
typedef void (AGOSEngine_Feeble::*OpcodeProcFeeble) ();
|
|
|
|
struct OpcodeEntryFeeble {
|
|
|
|
OpcodeProcFeeble proc;
|
|
|
|
const char *desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
const OpcodeEntryFeeble *_opcodesFeeble;
|
|
|
|
|
2007-05-06 09:46:43 +00:00
|
|
|
virtual void drawImage(VC10_state *state);
|
2007-05-07 01:11:10 +00:00
|
|
|
void scaleClip(int16 h, int16 w, int16 y, int16 x, int16 scrollY);
|
2007-05-06 09:46:43 +00:00
|
|
|
|
2007-04-15 14:12:08 +00:00
|
|
|
void drawMousePart(int image, byte x, byte y);
|
|
|
|
virtual void drawMousePointer();
|
|
|
|
|
2007-05-13 08:46:48 +00:00
|
|
|
virtual void animateSprites();
|
|
|
|
void animateSpritesByY();
|
|
|
|
|
2007-05-13 13:19:46 +00:00
|
|
|
void oracleLogo();
|
|
|
|
void swapCharacterLogo();
|
|
|
|
virtual void timer_proc1();
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void addArrows(WindowBlock *window);
|
|
|
|
virtual uint setupIconHitArea(WindowBlock *window, uint num, uint x, uint y, Item *item_ptr);
|
|
|
|
|
2007-04-15 05:33:21 +00:00
|
|
|
virtual void resetVerbs();
|
|
|
|
virtual void setVerb(HitArea * ha);
|
2007-04-15 14:12:08 +00:00
|
|
|
virtual void hitarea_leave(HitArea * ha, bool state = false);
|
|
|
|
void invertBox(HitArea *ha, bool state);
|
2007-04-15 05:33:21 +00:00
|
|
|
|
2007-04-15 14:12:08 +00:00
|
|
|
virtual void windowNewLine(WindowBlock *window);
|
2007-04-15 05:33:21 +00:00
|
|
|
|
|
|
|
virtual void clearName();
|
2007-04-15 05:04:48 +00:00
|
|
|
|
2007-04-15 05:33:21 +00:00
|
|
|
virtual void drawIconArray(uint i, Item *item_ptr, int line, int classMask);
|
2007-04-15 14:12:08 +00:00
|
|
|
|
|
|
|
virtual void print_char_helper_1(const byte *src, uint len);
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void printScreenText(uint vga_sprite_id, uint color, const char *string_ptr, int16 x, int16 y, int16 width);
|
|
|
|
|
|
|
|
void printInteractText(uint16 num, const char *string);
|
|
|
|
void sendInteractText(uint16 num, const char *fmt, ...);
|
|
|
|
|
2007-04-15 14:12:08 +00:00
|
|
|
void checkLinkBox();
|
|
|
|
void hyperLinkOn(uint16 x);
|
|
|
|
void hyperLinkOff();
|
|
|
|
void linksUp();
|
|
|
|
void linksDown();
|
|
|
|
|
|
|
|
void checkUp(WindowBlock *window);
|
|
|
|
void checkDown(WindowBlock *window);
|
|
|
|
virtual void inventoryUp(WindowBlock *window);
|
|
|
|
virtual void inventoryDown(WindowBlock *window);
|
|
|
|
|
|
|
|
void oracleTextUp();
|
|
|
|
void oracleTextDown();
|
|
|
|
void scrollOracle();
|
|
|
|
void scrollOracleUp();
|
|
|
|
void scrollOracleDown();
|
|
|
|
|
|
|
|
void listSaveGames(int n);
|
|
|
|
void saveUserGame(int slot);
|
|
|
|
void windowBackSpace(WindowBlock *window);
|
2007-05-17 09:00:14 +00:00
|
|
|
|
|
|
|
virtual void checkNoOverWrite();
|
|
|
|
virtual void checkAnims(uint a);
|
|
|
|
virtual void checkZonePtrs();
|
2007-04-15 05:04:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class AGOSEngine_PuzzlePack : public AGOSEngine_Feeble {
|
|
|
|
public:
|
|
|
|
AGOSEngine_PuzzlePack(OSystem *system);
|
|
|
|
//~AGOSEngine_PuzzlePack();
|
|
|
|
|
2007-05-07 01:11:10 +00:00
|
|
|
virtual void setupGame();
|
2007-04-15 12:04:47 +00:00
|
|
|
virtual void setupOpcodes();
|
|
|
|
|
|
|
|
virtual void executeOpcode(int opcode);
|
|
|
|
|
|
|
|
void opp_iconifyWindow();
|
|
|
|
void opp_restoreOopsPosition();
|
|
|
|
void opp_loadMouseImage();
|
|
|
|
void opp_message();
|
|
|
|
void opp_setShortText();
|
|
|
|
void opp_loadHiScores();
|
|
|
|
void opp_checkHiScores();
|
|
|
|
void opp_sync();
|
|
|
|
void opp_saveUserGame();
|
|
|
|
void opp_loadUserGame();
|
|
|
|
void opp_saveOopsPosition();
|
|
|
|
void opp_resetGameTime();
|
|
|
|
void opp_resetPVCount();
|
|
|
|
void opp_setPathValues();
|
|
|
|
void opp_restartClock();
|
2007-04-15 05:04:48 +00:00
|
|
|
|
2007-04-15 05:33:21 +00:00
|
|
|
protected:
|
2007-04-15 12:04:47 +00:00
|
|
|
typedef void (AGOSEngine_PuzzlePack::*OpcodeProcPuzzlePack) ();
|
|
|
|
struct OpcodeEntryPuzzlePack {
|
|
|
|
OpcodeProcPuzzlePack proc;
|
|
|
|
const char *desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
const OpcodeEntryPuzzlePack *_opcodesPuzzlePack;
|
|
|
|
|
2007-05-17 09:00:14 +00:00
|
|
|
virtual void handleMouseMoved();
|
2007-04-15 14:43:23 +00:00
|
|
|
virtual void drawMousePointer();
|
|
|
|
|
2007-04-15 05:33:21 +00:00
|
|
|
virtual void resetVerbs();
|
2007-04-15 14:12:08 +00:00
|
|
|
|
|
|
|
void loadMouseImage();
|
2007-04-15 05:04:48 +00:00
|
|
|
};
|
|
|
|
|
2006-09-29 09:44:30 +00:00
|
|
|
} // End of namespace AGOS
|
2003-10-03 19:42:27 +00:00
|
|
|
|
2002-08-18 16:21:34 +00:00
|
|
|
#endif
|