2011-02-14 09:37:27 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2013-07-21 03:26:25 +00:00
|
|
|
*
|
2011-02-14 09:37:27 +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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "tsage/globals.h"
|
2011-04-25 07:06:35 +00:00
|
|
|
#include "tsage/tsage.h"
|
2011-08-13 09:49:54 +00:00
|
|
|
#include "tsage/blue_force/blueforce_logic.h"
|
|
|
|
#include "tsage/ringworld/ringworld_demo.h"
|
|
|
|
#include "tsage/ringworld/ringworld_logic.h"
|
2011-10-22 09:44:26 +00:00
|
|
|
#include "tsage/ringworld2/ringworld2_logic.h"
|
2013-08-25 00:45:18 +00:00
|
|
|
#include "tsage/staticres.h"
|
2011-02-14 09:37:27 +00:00
|
|
|
|
2011-08-15 10:47:59 +00:00
|
|
|
namespace TsAGE {
|
2011-02-14 09:37:27 +00:00
|
|
|
|
2011-10-02 08:59:13 +00:00
|
|
|
Globals *g_globals = NULL;
|
|
|
|
ResourceManager *g_resourceManager = NULL;
|
2011-02-14 09:37:27 +00:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instantiates a saved object that can be instantiated
|
|
|
|
*/
|
|
|
|
static SavedObject *classFactoryProc(const Common::String &className) {
|
|
|
|
if (className == "ObjectMover") return new ObjectMover();
|
|
|
|
if (className == "NpcMover") return new NpcMover();
|
|
|
|
if (className == "ObjectMover2") return new ObjectMover2();
|
|
|
|
if (className == "ObjectMover3") return new ObjectMover3();
|
|
|
|
if (className == "PlayerMover") return new PlayerMover();
|
2011-04-27 20:52:20 +00:00
|
|
|
if (className == "SceneObjectWrapper") return new SceneObjectWrapper();
|
2011-05-08 09:08:35 +00:00
|
|
|
if (className == "PaletteRotation") return new PaletteRotation();
|
|
|
|
if (className == "PaletteFader") return new PaletteFader();
|
2011-02-14 09:37:27 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
2011-06-03 13:02:24 +00:00
|
|
|
Globals::Globals() : _dialogCenter(160, 140), _gfxManagerInstance(_screenSurface),
|
2011-08-16 11:15:18 +00:00
|
|
|
_randomSource("tsage"), _color1(0), _color2(255), _color3(255) {
|
2011-02-14 09:37:27 +00:00
|
|
|
reset();
|
2011-02-24 11:24:19 +00:00
|
|
|
_stripNum = 0;
|
2011-06-04 04:22:09 +00:00
|
|
|
_gfxEdgeAdjust = 3;
|
2011-04-13 19:27:46 +00:00
|
|
|
|
2011-10-02 08:59:13 +00:00
|
|
|
if (g_vm->getFeatures() & GF_DEMO) {
|
2011-04-28 09:14:37 +00:00
|
|
|
_gfxFontNumber = 0;
|
|
|
|
_gfxColors.background = 6;
|
|
|
|
_gfxColors.foreground = 0;
|
2011-06-04 06:29:20 +00:00
|
|
|
_fontColors.background = 255;
|
|
|
|
_fontColors.foreground = 6;
|
2011-04-28 09:14:37 +00:00
|
|
|
_dialogCenter.y = 80;
|
2011-06-03 13:02:24 +00:00
|
|
|
// Workaround in order to use later version of the engine
|
2011-08-16 11:15:18 +00:00
|
|
|
_color1 = _gfxColors.foreground;
|
|
|
|
_color2 = _gfxColors.foreground;
|
|
|
|
_color3 = _gfxColors.foreground;
|
2011-10-02 08:59:13 +00:00
|
|
|
} else if (g_vm->getGameID() == GType_BlueForce) {
|
2011-08-16 11:15:18 +00:00
|
|
|
// Blue Force
|
|
|
|
_gfxFontNumber = 0;
|
|
|
|
_gfxColors.background = 89;
|
|
|
|
_gfxColors.foreground = 83;
|
|
|
|
_fontColors.background = 88;
|
|
|
|
_fontColors.foreground = 92;
|
2011-09-05 10:57:06 +00:00
|
|
|
_dialogCenter.y = 140;
|
2011-10-22 09:44:26 +00:00
|
|
|
} else if (g_vm->getGameID() == GType_Ringworld2) {
|
|
|
|
// Return to Ringworld
|
2011-11-01 10:06:57 +00:00
|
|
|
_gfxFontNumber = 50;
|
|
|
|
_gfxColors.background = 0;
|
|
|
|
_gfxColors.foreground = 59;
|
|
|
|
_fontColors.background = 4;
|
|
|
|
_fontColors.foreground = 15;
|
|
|
|
_color1 = 59;
|
|
|
|
_color2 = 15;
|
|
|
|
_color3 = 4;
|
|
|
|
_dialogCenter.y = 100;
|
2011-10-02 08:59:13 +00:00
|
|
|
} else if ((g_vm->getGameID() == GType_Ringworld) && (g_vm->getFeatures() & GF_CD)) {
|
2011-05-28 05:21:38 +00:00
|
|
|
_gfxFontNumber = 50;
|
|
|
|
_gfxColors.background = 53;
|
|
|
|
_gfxColors.foreground = 0;
|
|
|
|
_fontColors.background = 51;
|
|
|
|
_fontColors.foreground = 54;
|
2011-08-16 11:15:18 +00:00
|
|
|
_color1 = 18;
|
|
|
|
_color2 = 18;
|
|
|
|
_color3 = 18;
|
2011-04-28 09:14:37 +00:00
|
|
|
} else {
|
2011-10-30 23:44:37 +00:00
|
|
|
// Ringworld
|
2011-04-28 09:14:37 +00:00
|
|
|
_gfxFontNumber = 50;
|
|
|
|
_gfxColors.background = 53;
|
|
|
|
_gfxColors.foreground = 18;
|
|
|
|
_fontColors.background = 51;
|
|
|
|
_fontColors.foreground = 54;
|
2011-06-03 13:02:24 +00:00
|
|
|
// Workaround in order to use later version of the engine
|
2011-08-16 11:15:18 +00:00
|
|
|
_color1 = _gfxColors.foreground;
|
|
|
|
_color2 = _gfxColors.foreground;
|
|
|
|
_color3 = _gfxColors.foreground;
|
2011-04-28 09:14:37 +00:00
|
|
|
}
|
2012-01-01 05:12:07 +00:00
|
|
|
_screenSurface.setScreenSurface();
|
2011-02-14 09:37:27 +00:00
|
|
|
_gfxManagers.push_back(&_gfxManagerInstance);
|
|
|
|
|
|
|
|
_sceneObjects = &_sceneObjectsInstance;
|
|
|
|
_sceneObjects_queue.push_front(_sceneObjects);
|
|
|
|
|
2011-03-18 11:58:36 +00:00
|
|
|
_prevSceneOffset = Common::Point(-1, -1);
|
2011-06-22 08:30:59 +00:00
|
|
|
_sounds.push_back(&_soundHandler);
|
|
|
|
_sounds.push_back(&_sequenceManager._soundHandler);
|
2011-04-25 09:39:45 +00:00
|
|
|
|
|
|
|
_scrollFollower = NULL;
|
|
|
|
_inventory = NULL;
|
|
|
|
|
2011-10-02 08:59:13 +00:00
|
|
|
switch (g_vm->getGameID()) {
|
2011-05-14 08:19:35 +00:00
|
|
|
case GType_Ringworld:
|
2011-10-02 08:59:13 +00:00
|
|
|
if (!(g_vm->getFeatures() & GF_DEMO)) {
|
2011-08-15 09:26:15 +00:00
|
|
|
_inventory = new Ringworld::RingworldInvObjectList();
|
|
|
|
_game = new Ringworld::RingworldGame();
|
2011-05-14 08:19:35 +00:00
|
|
|
} else {
|
2011-08-15 09:26:15 +00:00
|
|
|
_game = new Ringworld::RingworldDemoGame();
|
2011-05-14 08:19:35 +00:00
|
|
|
}
|
2011-08-20 09:14:23 +00:00
|
|
|
_sceneHandler = new SceneHandler();
|
2011-05-14 08:19:35 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GType_BlueForce:
|
2011-08-15 09:26:15 +00:00
|
|
|
_game = new BlueForce::BlueForceGame();
|
2011-08-23 11:12:07 +00:00
|
|
|
_inventory = new BlueForce::BlueForceInvObjectList();
|
2011-08-20 09:14:23 +00:00
|
|
|
_sceneHandler = new BlueForce::SceneHandlerExt();
|
2011-05-14 08:19:35 +00:00
|
|
|
break;
|
2011-10-22 09:44:26 +00:00
|
|
|
|
|
|
|
case GType_Ringworld2:
|
|
|
|
_inventory = new Ringworld2::Ringworld2InvObjectList();
|
|
|
|
_game = new Ringworld2::Ringworld2Game();
|
2011-10-31 00:35:04 +00:00
|
|
|
_sceneHandler = new Ringworld2::SceneHandlerExt();
|
2011-10-22 09:44:26 +00:00
|
|
|
break;
|
2011-04-25 09:39:45 +00:00
|
|
|
}
|
2011-02-17 13:02:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Globals::~Globals() {
|
2011-08-13 11:14:48 +00:00
|
|
|
_scenePalette.clearListeners();
|
2011-05-06 09:38:17 +00:00
|
|
|
delete _inventory;
|
2011-08-20 09:14:23 +00:00
|
|
|
delete _sceneHandler;
|
2011-05-06 09:38:17 +00:00
|
|
|
delete _game;
|
2011-10-02 08:59:13 +00:00
|
|
|
g_globals = NULL;
|
2011-02-14 09:37:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Globals::reset() {
|
2011-11-16 17:06:30 +00:00
|
|
|
Common::fill(&_flags[0], &_flags[MAX_FLAGS], false);
|
2011-10-02 08:59:13 +00:00
|
|
|
g_saver->addFactory(classFactoryProc);
|
2011-02-14 09:37:27 +00:00
|
|
|
}
|
|
|
|
|
2011-05-04 08:41:47 +00:00
|
|
|
void Globals::synchronize(Serializer &s) {
|
2011-05-04 07:52:36 +00:00
|
|
|
if (s.getVersion() >= 2)
|
2011-05-04 08:41:47 +00:00
|
|
|
SavedObject::synchronize(s);
|
2011-02-14 09:37:27 +00:00
|
|
|
assert(_gfxManagers.size() == 1);
|
|
|
|
|
2011-05-04 08:41:47 +00:00
|
|
|
_sceneItems.synchronize(s);
|
2011-02-14 09:37:27 +00:00
|
|
|
SYNC_POINTER(_sceneObjects);
|
2011-05-04 08:41:47 +00:00
|
|
|
_sceneObjects_queue.synchronize(s);
|
2011-02-14 09:37:27 +00:00
|
|
|
s.syncAsSint32LE(_gfxFontNumber);
|
2011-04-14 12:12:27 +00:00
|
|
|
s.syncAsSint32LE(_gfxColors.background);
|
|
|
|
s.syncAsSint32LE(_gfxColors.foreground);
|
|
|
|
s.syncAsSint32LE(_fontColors.background);
|
|
|
|
s.syncAsSint32LE(_fontColors.foreground);
|
2011-06-19 22:59:48 +00:00
|
|
|
|
2011-06-03 13:02:24 +00:00
|
|
|
if (s.getVersion() >= 4) {
|
2011-08-16 11:15:18 +00:00
|
|
|
s.syncAsByte(_color1);
|
|
|
|
s.syncAsByte(_color2);
|
|
|
|
s.syncAsByte(_color3);
|
2011-06-03 13:02:24 +00:00
|
|
|
}
|
2011-02-14 09:37:27 +00:00
|
|
|
|
2011-04-14 12:34:28 +00:00
|
|
|
s.syncAsSint16LE(_dialogCenter.x); s.syncAsSint16LE(_dialogCenter.y);
|
2011-06-22 08:30:59 +00:00
|
|
|
_sounds.synchronize(s);
|
2011-02-14 09:37:27 +00:00
|
|
|
for (int i = 0; i < 256; ++i)
|
|
|
|
s.syncAsByte(_flags[i]);
|
|
|
|
|
|
|
|
s.syncAsSint16LE(_sceneOffset.x); s.syncAsSint16LE(_sceneOffset.y);
|
2011-03-18 11:58:36 +00:00
|
|
|
s.syncAsSint16LE(_prevSceneOffset.x); s.syncAsSint16LE(_prevSceneOffset.y);
|
2011-02-14 09:37:27 +00:00
|
|
|
SYNC_POINTER(_scrollFollower);
|
|
|
|
s.syncAsSint32LE(_stripNum);
|
2011-10-27 08:32:27 +00:00
|
|
|
|
|
|
|
if (s.getVersion() >= 8)
|
|
|
|
_walkRegions.synchronize(s);
|
2011-02-14 09:37:27 +00:00
|
|
|
}
|
|
|
|
|
2011-06-22 08:30:59 +00:00
|
|
|
void Globals::dispatchSound(ASound *obj) {
|
|
|
|
obj->dispatch();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Globals::dispatchSounds() {
|
|
|
|
Common::for_each(_sounds.begin(), _sounds.end(), Globals::dispatchSound);
|
|
|
|
}
|
|
|
|
|
2011-08-11 12:05:44 +00:00
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
2011-10-22 11:41:05 +00:00
|
|
|
void TsAGE2Globals::reset() {
|
|
|
|
Globals::reset();
|
2012-09-26 02:17:31 +00:00
|
|
|
|
2011-10-22 11:41:05 +00:00
|
|
|
// Reset the inventory
|
|
|
|
T2_GLOBALS._uiElements.updateInventory();
|
|
|
|
T2_GLOBALS._uiElements._scoreValue = 0;
|
|
|
|
T2_GLOBALS._uiElements._active = false;
|
|
|
|
}
|
|
|
|
|
2011-10-24 10:45:08 +00:00
|
|
|
void TsAGE2Globals::synchronize(Serializer &s) {
|
|
|
|
Globals::synchronize(s);
|
|
|
|
|
|
|
|
s.syncAsSint16LE(_interfaceY);
|
|
|
|
}
|
|
|
|
|
2011-10-22 11:41:05 +00:00
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
2011-08-15 09:26:15 +00:00
|
|
|
namespace BlueForce {
|
2011-08-14 10:18:32 +00:00
|
|
|
|
2011-10-22 09:44:26 +00:00
|
|
|
BlueForceGlobals::BlueForceGlobals(): TsAGE2Globals() {
|
2011-09-04 09:11:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BlueForceGlobals::synchronize(Serializer &s) {
|
2011-10-24 10:45:08 +00:00
|
|
|
TsAGE2Globals::synchronize(s);
|
2011-09-10 01:22:39 +00:00
|
|
|
|
|
|
|
s.syncAsSint16LE(_dayNumber);
|
2011-11-09 07:53:41 +00:00
|
|
|
if (s.getVersion() < 9) {
|
2011-11-27 12:59:10 +00:00
|
|
|
int tmpVar = 0;
|
2011-11-09 07:53:41 +00:00
|
|
|
s.syncAsSint16LE(tmpVar);
|
|
|
|
}
|
2011-11-09 08:19:33 +00:00
|
|
|
s.syncAsSint16LE(_tonyDialogCtr);
|
2011-09-23 11:49:19 +00:00
|
|
|
s.syncAsSint16LE(_marinaWomanCtr);
|
2011-11-09 08:19:33 +00:00
|
|
|
s.syncAsSint16LE(_kateDialogCtr);
|
2011-09-17 07:41:12 +00:00
|
|
|
s.syncAsSint16LE(_v4CEB6);
|
2011-10-01 06:05:08 +00:00
|
|
|
s.syncAsSint16LE(_safeCombination);
|
2011-11-11 23:44:48 +00:00
|
|
|
s.syncAsSint16LE(_gateStatus);
|
2011-10-21 13:35:01 +00:00
|
|
|
s.syncAsSint16LE(_greenDay5TalkCtr);
|
2011-10-06 12:09:23 +00:00
|
|
|
s.syncAsSint16LE(_v4CEC4);
|
2011-09-23 19:52:40 +00:00
|
|
|
s.syncAsSint16LE(_v4CEC8);
|
2011-10-09 09:25:46 +00:00
|
|
|
s.syncAsSint16LE(_v4CECA);
|
|
|
|
s.syncAsSint16LE(_v4CECC);
|
|
|
|
for (int i = 0; i < 18; i++)
|
2011-11-11 23:44:48 +00:00
|
|
|
s.syncAsByte(_breakerBoxStatusArr[i]);
|
2011-11-22 07:12:59 +00:00
|
|
|
s.syncAsSint16LE(_hiddenDoorStatus);
|
2012-07-11 11:20:52 +00:00
|
|
|
s.syncAsSint16LE(_nico910State);
|
2011-10-09 09:25:46 +00:00
|
|
|
s.syncAsSint16LE(_v4CEE4);
|
|
|
|
s.syncAsSint16LE(_v4CEE6);
|
|
|
|
s.syncAsSint16LE(_v4CEE8);
|
2011-09-17 07:41:12 +00:00
|
|
|
s.syncAsSint16LE(_deziTopic);
|
2011-09-11 11:50:39 +00:00
|
|
|
s.syncAsSint16LE(_deathReason);
|
2011-09-10 01:22:39 +00:00
|
|
|
s.syncAsSint16LE(_driveFromScene);
|
|
|
|
s.syncAsSint16LE(_driveToScene);
|
2011-10-18 20:59:52 +00:00
|
|
|
s.syncAsSint16LE(_v501F8);
|
2011-10-10 11:19:49 +00:00
|
|
|
s.syncAsSint16LE(_v501FA);
|
2011-09-10 01:22:39 +00:00
|
|
|
s.syncAsSint16LE(_v501FC);
|
2011-10-18 20:59:52 +00:00
|
|
|
s.syncAsSint16LE(_v5020C);
|
2011-09-10 01:22:39 +00:00
|
|
|
s.syncAsSint16LE(_v50696);
|
2011-11-09 07:53:41 +00:00
|
|
|
s.syncAsSint16LE(_subFlagBitArr1);
|
|
|
|
s.syncAsSint16LE(_subFlagBitArr2);
|
2011-09-26 12:55:29 +00:00
|
|
|
s.syncAsSint16LE(_v50CC2);
|
|
|
|
s.syncAsSint16LE(_v50CC4);
|
|
|
|
s.syncAsSint16LE(_v50CC6);
|
|
|
|
s.syncAsSint16LE(_v50CC8);
|
2011-09-10 01:22:39 +00:00
|
|
|
s.syncAsSint16LE(_v51C42);
|
|
|
|
s.syncAsSint16LE(_v51C44);
|
|
|
|
s.syncAsSint16LE(_bookmark);
|
|
|
|
s.syncAsSint16LE(_mapLocationId);
|
|
|
|
s.syncAsSint16LE(_clip1Bullets);
|
|
|
|
s.syncAsSint16LE(_clip2Bullets);
|
2011-09-04 09:11:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BlueForceGlobals::reset() {
|
2011-10-22 11:41:05 +00:00
|
|
|
TsAGE2Globals::reset();
|
2011-09-04 09:11:59 +00:00
|
|
|
_scenePalette.clearListeners();
|
2012-09-26 02:17:31 +00:00
|
|
|
|
2011-09-04 09:11:59 +00:00
|
|
|
_scrollFollower = &_player;
|
|
|
|
_bookmark = bNone;
|
|
|
|
|
|
|
|
// Reset the inventory
|
|
|
|
((BlueForceInvObjectList *)_inventory)->reset();
|
|
|
|
|
|
|
|
_mapLocationId = 1;
|
|
|
|
_driveFromScene = 300;
|
|
|
|
_driveToScene = 0;
|
|
|
|
|
2011-10-22 11:41:05 +00:00
|
|
|
_interfaceY = UI_INTERFACE_Y;
|
2011-09-04 09:11:59 +00:00
|
|
|
_dayNumber = 0;
|
2011-11-09 08:19:33 +00:00
|
|
|
_tonyDialogCtr = 0;
|
2011-09-23 11:49:19 +00:00
|
|
|
_marinaWomanCtr = 0;
|
2011-11-09 08:19:33 +00:00
|
|
|
_kateDialogCtr = 0;
|
2011-09-17 07:41:12 +00:00
|
|
|
_v4CEB6 = 0;
|
2011-10-01 06:05:08 +00:00
|
|
|
_safeCombination = 0;
|
2011-11-11 23:44:48 +00:00
|
|
|
_gateStatus = 0;
|
2011-10-21 13:35:01 +00:00
|
|
|
_greenDay5TalkCtr = 0;
|
2011-10-06 12:09:23 +00:00
|
|
|
_v4CEC4 = 0;
|
2011-09-23 19:52:40 +00:00
|
|
|
_v4CEC8 = 1;
|
2011-10-09 09:25:46 +00:00
|
|
|
_v4CECA = 0;
|
|
|
|
_v4CECC = 0;
|
2011-11-11 23:44:48 +00:00
|
|
|
_breakerBoxStatusArr[0] = 2;
|
|
|
|
_breakerBoxStatusArr[1] = 2;
|
|
|
|
_breakerBoxStatusArr[2] = 2;
|
|
|
|
_breakerBoxStatusArr[3] = 1;
|
|
|
|
_breakerBoxStatusArr[4] = 2;
|
|
|
|
_breakerBoxStatusArr[5] = 2;
|
|
|
|
_breakerBoxStatusArr[6] = 2;
|
|
|
|
_breakerBoxStatusArr[7] = 2;
|
|
|
|
_breakerBoxStatusArr[8] = 2;
|
|
|
|
_breakerBoxStatusArr[9] = 2;
|
|
|
|
_breakerBoxStatusArr[10] = 2;
|
|
|
|
_breakerBoxStatusArr[11] = 2;
|
|
|
|
_breakerBoxStatusArr[12] = 1;
|
|
|
|
_breakerBoxStatusArr[13] = 1;
|
|
|
|
_breakerBoxStatusArr[14] = 2;
|
|
|
|
_breakerBoxStatusArr[15] = 2;
|
|
|
|
_breakerBoxStatusArr[16] = 3;
|
|
|
|
_breakerBoxStatusArr[17] = 0;
|
2011-11-22 07:12:59 +00:00
|
|
|
_hiddenDoorStatus = 0;
|
2012-07-11 11:20:52 +00:00
|
|
|
_nico910State = 0;
|
2011-10-09 09:25:46 +00:00
|
|
|
_v4CEE4 = 0;
|
|
|
|
_v4CEE6 = 0;
|
|
|
|
_v4CEE8 = 0;
|
2011-09-17 07:41:12 +00:00
|
|
|
_deziTopic = 0;
|
2011-09-11 11:50:39 +00:00
|
|
|
_deathReason = 0;
|
2011-10-18 20:59:52 +00:00
|
|
|
_v501F8 = 0;
|
|
|
|
_v501FA = 0;
|
2011-08-20 09:14:23 +00:00
|
|
|
_v501FC = 0;
|
2011-10-18 20:59:52 +00:00
|
|
|
_v5020C = 0;
|
2011-09-13 10:49:37 +00:00
|
|
|
_v50696 = 0;
|
2011-11-09 07:53:41 +00:00
|
|
|
_subFlagBitArr1 = 0;
|
|
|
|
_subFlagBitArr2 = 0;
|
2011-09-26 12:55:29 +00:00
|
|
|
_v50CC2 = 0;
|
|
|
|
_v50CC4 = 0;
|
|
|
|
_v50CC6 = 0;
|
|
|
|
_v50CC8 = 0;
|
2011-08-20 09:14:23 +00:00
|
|
|
_v51C42 = 0;
|
2011-09-13 10:49:37 +00:00
|
|
|
_v51C44 = 1;
|
2011-09-04 11:09:22 +00:00
|
|
|
_clip1Bullets = 8;
|
|
|
|
_clip2Bullets = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BlueForceGlobals::getHasBullets() {
|
|
|
|
if (!getFlag(fGunLoaded))
|
|
|
|
return false;
|
|
|
|
return BF_GLOBALS.getFlag(fLoadedSpare) ? (_clip2Bullets > 0) : (_clip1Bullets > 0);
|
2011-08-11 12:05:44 +00:00
|
|
|
}
|
2011-06-22 08:30:59 +00:00
|
|
|
|
2011-09-11 05:30:34 +00:00
|
|
|
void BlueForceGlobals::set2Flags(int flagNum) {
|
|
|
|
if (!getFlag(flagNum + 1)) {
|
|
|
|
setFlag(flagNum + 1);
|
|
|
|
setFlag(flagNum);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BlueForceGlobals::removeFlag(int flagNum) {
|
|
|
|
bool result = getFlag(flagNum);
|
|
|
|
clearFlag(flagNum);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-08-15 09:26:15 +00:00
|
|
|
} // end of namespace BlueForce
|
|
|
|
|
2011-10-23 11:11:16 +00:00
|
|
|
namespace Ringworld2 {
|
|
|
|
|
2013-07-16 13:19:19 +00:00
|
|
|
Ringworld2Globals::Ringworld2Globals() {
|
|
|
|
_scannerDialog = new ScannerDialog();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ringworld2Globals::~Ringworld2Globals() {
|
|
|
|
delete _scannerDialog;
|
|
|
|
}
|
|
|
|
|
2011-10-23 11:11:16 +00:00
|
|
|
void Ringworld2Globals::reset() {
|
|
|
|
Globals::reset();
|
2012-09-26 02:17:31 +00:00
|
|
|
|
2013-07-16 13:19:19 +00:00
|
|
|
if (!_scannerDialog)
|
|
|
|
_scannerDialog = new ScannerDialog();
|
|
|
|
|
2013-09-01 14:03:30 +00:00
|
|
|
// Default to Quinn as the active character
|
|
|
|
T2_GLOBALS._player._characterIndex = R2_QUINN;
|
|
|
|
|
2011-10-23 11:11:16 +00:00
|
|
|
// Reset the inventory
|
|
|
|
R2_INVENTORY.reset();
|
|
|
|
T2_GLOBALS._uiElements.updateInventory();
|
|
|
|
T2_GLOBALS._uiElements._active = false;
|
2011-10-30 08:47:51 +00:00
|
|
|
|
2013-07-11 13:05:50 +00:00
|
|
|
// Set the screen to track the player
|
|
|
|
_scrollFollower = &_player;
|
|
|
|
|
2011-10-30 08:47:51 +00:00
|
|
|
// Reset fields
|
2013-08-21 13:14:40 +00:00
|
|
|
Common::fill(&_fadePaletteMap[0][0], &_fadePaletteMap[9][256], 0);
|
2013-07-20 22:46:55 +00:00
|
|
|
Common::fill(&_paletteMap[0], &_paletteMap[4096], 0);
|
|
|
|
|
|
|
|
_fadePaletteFlag = false;
|
2012-01-07 19:33:00 +00:00
|
|
|
_v5589E.set(0, 0, 0, 0);
|
2011-12-25 22:41:03 +00:00
|
|
|
_v558B6.set(0, 0, 0, 0);
|
2012-01-03 12:34:10 +00:00
|
|
|
_v558C2 = 0;
|
2012-02-26 06:29:45 +00:00
|
|
|
_animationCtr = 0;
|
2011-10-30 08:47:51 +00:00
|
|
|
_v5657C = 0;
|
2013-07-13 21:11:11 +00:00
|
|
|
_electromagnetChangeAmount = 0;
|
|
|
|
_electromagnetZoom = 0;
|
2012-01-31 22:36:19 +00:00
|
|
|
_v565E5 = 0;
|
|
|
|
_v565E7 = 0;
|
|
|
|
_v565E9 = -5;
|
|
|
|
_v565EB = 26;
|
2013-08-18 17:46:02 +00:00
|
|
|
_foodCount = 0;
|
2013-09-08 18:50:21 +00:00
|
|
|
_rimLocation = 0;
|
|
|
|
_rimTransportLocation = 0;
|
2011-12-10 23:36:04 +00:00
|
|
|
_v565AE = 0;
|
2013-09-11 00:25:22 +00:00
|
|
|
_spillLocation[0] = 0;
|
|
|
|
_spillLocation[1] = 3;
|
|
|
|
_spillLocation[R2_SEEKER] = 5;
|
|
|
|
_spillLocation[3] = 1;
|
|
|
|
_spillLocation[4] = 2;
|
|
|
|
_spillLocation[5] = 5;
|
|
|
|
_spillLocation[6] = 9;
|
|
|
|
_spillLocation[7] = 14;
|
|
|
|
_spillLocation[8] = 15;
|
|
|
|
_spillLocation[9] = 18;
|
|
|
|
_spillLocation[10] = 20;
|
|
|
|
_spillLocation[11] = 25;
|
|
|
|
_spillLocation[12] = 27;
|
|
|
|
_spillLocation[13] = 31;
|
2012-01-10 19:10:46 +00:00
|
|
|
|
2013-09-21 02:21:58 +00:00
|
|
|
// Initialise the vampire data within the Flub maze
|
2012-01-25 21:08:40 +00:00
|
|
|
for (int i = 0; i < 18; i++) {
|
2013-09-21 02:21:58 +00:00
|
|
|
_vampireData[i]._isAlive = true;
|
|
|
|
_vampireData[i]._position = Common::Point();
|
2012-01-25 21:08:40 +00:00
|
|
|
}
|
2013-09-22 02:27:10 +00:00
|
|
|
_vampireData[0]._shotsRequired = 1;
|
|
|
|
_vampireData[1]._shotsRequired = 2;
|
|
|
|
_vampireData[2]._shotsRequired = 2;
|
|
|
|
_vampireData[3]._shotsRequired = 3;
|
|
|
|
_vampireData[4]._shotsRequired = 2;
|
|
|
|
_vampireData[5]._shotsRequired = 2;
|
|
|
|
_vampireData[6]._shotsRequired = 3;
|
|
|
|
_vampireData[7]._shotsRequired = 1;
|
|
|
|
_vampireData[8]._shotsRequired = 1;
|
|
|
|
_vampireData[9]._shotsRequired = 3;
|
|
|
|
_vampireData[10]._shotsRequired = 3;
|
|
|
|
_vampireData[11]._shotsRequired = 1;
|
|
|
|
_vampireData[12]._shotsRequired = 2;
|
|
|
|
_vampireData[13]._shotsRequired = 3;
|
|
|
|
_vampireData[14]._shotsRequired = 2;
|
|
|
|
_vampireData[15]._shotsRequired = 3;
|
|
|
|
_vampireData[16]._shotsRequired = 1;
|
|
|
|
_vampireData[17]._shotsRequired = 1;
|
2012-01-25 21:08:40 +00:00
|
|
|
|
2012-01-04 14:04:55 +00:00
|
|
|
_v566A6 = 3800;
|
2013-08-18 19:11:10 +00:00
|
|
|
_landerSuitNumber = 2;
|
2013-09-20 12:27:54 +00:00
|
|
|
_flubMazeArea = 1;
|
|
|
|
_flubMazeEntryDirection = 0;
|
2013-09-16 03:25:17 +00:00
|
|
|
_desertStepsRemaining = 5;
|
|
|
|
_desertCorrectDirection = 0;
|
|
|
|
_desertPreviousDirection = 0;
|
2012-01-04 14:04:55 +00:00
|
|
|
for (int i = 0; i < 1000; i++)
|
2013-09-16 03:25:17 +00:00
|
|
|
_desertMovements[i] = 0;
|
|
|
|
_desertWrongDirCtr = -1;
|
2013-09-15 18:54:47 +00:00
|
|
|
_balloonAltitude = 5;
|
2012-01-22 10:50:15 +00:00
|
|
|
_scene1925CurrLevel = 0; //_v56A9C
|
2011-12-28 18:36:15 +00:00
|
|
|
_v56A9E = 0;
|
2011-12-20 22:56:26 +00:00
|
|
|
_v56AA0 = 0;
|
2011-12-22 16:12:08 +00:00
|
|
|
_v56AA1 = 0;
|
2012-01-10 19:10:46 +00:00
|
|
|
_v56AA2 = 60;
|
|
|
|
_v56AA4 = 660;
|
|
|
|
_v56AA6 = 1;
|
|
|
|
_v56AA7 = 1;
|
|
|
|
_v56AA8 = 1;
|
2011-12-22 19:23:48 +00:00
|
|
|
_v56AAB = 0;
|
2012-02-05 02:20:18 +00:00
|
|
|
_scene180Mode = -1;
|
2012-02-09 21:59:33 +00:00
|
|
|
_v57709 = 0;
|
|
|
|
_v5780C = 0;
|
|
|
|
_v5780E = 0;
|
|
|
|
_v57810 = 0;
|
2011-10-30 08:47:51 +00:00
|
|
|
_v57C2C = 0;
|
2013-08-24 19:38:51 +00:00
|
|
|
_s1550PlayerArea[R2_QUINN] = Common::Point(27, 4);
|
|
|
|
_s1550PlayerArea[R2_SEEKER] = Common::Point(27, 4);
|
2013-07-17 03:20:58 +00:00
|
|
|
Common::fill(&_scannerFrequencies[0], &_scannerFrequencies[MAX_CHARACTERS], 1);
|
2011-12-12 11:07:38 +00:00
|
|
|
_speechSubtitles = SPEECH_VOICE | SPEECH_TEXT;
|
2011-11-16 08:48:52 +00:00
|
|
|
_insetUp = 0;
|
2013-08-22 21:37:55 +00:00
|
|
|
_frameEdgeColor = 2;
|
2011-11-17 11:03:00 +00:00
|
|
|
Common::fill(&_stripManager_lookupList[0], &_stripManager_lookupList[12], 0);
|
|
|
|
_stripManager_lookupList[0] = 1;
|
|
|
|
_stripManager_lookupList[1] = 1;
|
|
|
|
_stripManager_lookupList[2] = 1;
|
|
|
|
_stripManager_lookupList[3] = 1;
|
|
|
|
_stripManager_lookupList[4] = 1;
|
|
|
|
_stripManager_lookupList[5] = 1;
|
|
|
|
_stripManager_lookupList[8] = 1;
|
|
|
|
_stripManager_lookupList[9] = 1;
|
|
|
|
_stripManager_lookupList[10] = 1;
|
|
|
|
_stripManager_lookupList[11] = 1;
|
|
|
|
|
2013-08-25 00:45:18 +00:00
|
|
|
// Reset junk/component data in scene 1550
|
|
|
|
Common::copy(&scene1550JunkLocationsDefault[0], &scene1550JunkLocationsDefault[508],
|
|
|
|
&_scene1550JunkLocations[0]);
|
|
|
|
|
2011-11-16 08:48:52 +00:00
|
|
|
// Reset fields stored in the player class
|
2011-12-11 06:46:58 +00:00
|
|
|
_player._characterIndex = R2_QUINN;
|
2013-09-11 00:25:22 +00:00
|
|
|
_player._characterScene[R2_QUINN] = 100;
|
|
|
|
_player._characterScene[R2_SEEKER] = 300;
|
2011-11-02 09:44:28 +00:00
|
|
|
_player._characterScene[3] = 300;
|
2011-10-23 11:11:16 +00:00
|
|
|
}
|
|
|
|
|
2011-10-24 10:45:08 +00:00
|
|
|
void Ringworld2Globals::synchronize(Serializer &s) {
|
|
|
|
TsAGE2Globals::synchronize(s);
|
2011-11-17 11:03:00 +00:00
|
|
|
int i;
|
2011-10-30 08:47:51 +00:00
|
|
|
|
2012-01-07 19:33:00 +00:00
|
|
|
_v5589E.synchronize(s);
|
2011-12-25 22:41:03 +00:00
|
|
|
_v558B6.synchronize(s);
|
|
|
|
|
2012-01-03 12:34:10 +00:00
|
|
|
s.syncAsSint16LE(_v558C2);
|
2012-02-26 06:29:45 +00:00
|
|
|
s.syncAsSint16LE(_animationCtr);
|
2011-10-30 08:47:51 +00:00
|
|
|
s.syncAsSint16LE(_v5657C);
|
2013-07-13 21:11:11 +00:00
|
|
|
s.syncAsSint16LE(_electromagnetChangeAmount);
|
|
|
|
s.syncAsSint16LE(_electromagnetZoom);
|
2012-01-31 22:36:19 +00:00
|
|
|
s.syncAsSint16LE(_v565E5);
|
|
|
|
s.syncAsSint16LE(_v565E7);
|
|
|
|
s.syncAsSint16LE(_v565E9);
|
|
|
|
s.syncAsSint16LE(_v565EB);
|
2013-08-18 17:46:02 +00:00
|
|
|
s.syncAsSint16LE(_foodCount);
|
2013-09-08 18:50:21 +00:00
|
|
|
s.syncAsSint32LE(_rimLocation);
|
|
|
|
s.syncAsSint16LE(_rimTransportLocation);
|
2013-08-18 19:11:10 +00:00
|
|
|
s.syncAsSint16LE(_landerSuitNumber);
|
2012-01-04 14:04:55 +00:00
|
|
|
s.syncAsSint16LE(_v566A6);
|
2013-09-16 03:25:17 +00:00
|
|
|
s.syncAsSint16LE(_desertWrongDirCtr);
|
2012-01-22 10:50:15 +00:00
|
|
|
s.syncAsSint16LE(_scene1925CurrLevel); // _v56A9C
|
2011-12-28 18:36:15 +00:00
|
|
|
s.syncAsSint16LE(_v56A9E);
|
2012-01-10 19:10:46 +00:00
|
|
|
s.syncAsSint16LE(_v56AA2);
|
|
|
|
s.syncAsSint16LE(_v56AA4);
|
2011-12-22 19:23:48 +00:00
|
|
|
s.syncAsSint16LE(_v56AAB);
|
2012-02-05 02:20:18 +00:00
|
|
|
s.syncAsSint16LE(_scene180Mode);
|
2012-02-09 21:59:33 +00:00
|
|
|
s.syncAsSint16LE(_v57709);
|
|
|
|
s.syncAsSint16LE(_v5780C);
|
|
|
|
s.syncAsSint16LE(_v5780E);
|
|
|
|
s.syncAsSint16LE(_v57810);
|
2011-10-30 08:47:51 +00:00
|
|
|
s.syncAsSint16LE(_v57C2C);
|
2011-11-17 11:03:00 +00:00
|
|
|
s.syncAsSint16LE(_speechSubtitles);
|
|
|
|
|
2013-08-24 19:38:51 +00:00
|
|
|
byte temp;
|
|
|
|
s.syncAsByte(temp);
|
|
|
|
s.syncAsByte(_s1550PlayerArea[R2_QUINN].x);
|
|
|
|
s.syncAsByte(_s1550PlayerArea[R2_SEEKER].x);
|
|
|
|
s.syncAsByte(_s1550PlayerArea[R2_QUINN].y);
|
|
|
|
s.syncAsByte(_s1550PlayerArea[R2_SEEKER].y);
|
2012-01-13 15:04:09 +00:00
|
|
|
|
2011-11-17 11:03:00 +00:00
|
|
|
for (i = 0; i < MAX_CHARACTERS; ++i)
|
2013-07-17 03:20:58 +00:00
|
|
|
s.syncAsByte(_scannerFrequencies[i]);
|
2012-09-26 02:17:31 +00:00
|
|
|
|
2011-12-10 23:36:04 +00:00
|
|
|
s.syncAsByte(_v565AE);
|
2013-09-20 12:27:54 +00:00
|
|
|
s.syncAsByte(_flubMazeArea);
|
|
|
|
s.syncAsByte(_flubMazeEntryDirection);
|
2013-09-16 03:25:17 +00:00
|
|
|
s.syncAsByte(_desertStepsRemaining);
|
|
|
|
s.syncAsByte(_desertCorrectDirection);
|
|
|
|
s.syncAsByte(_desertPreviousDirection);
|
2011-12-20 22:56:26 +00:00
|
|
|
s.syncAsByte(_v56AA0);
|
2011-12-22 16:12:08 +00:00
|
|
|
s.syncAsByte(_v56AA1);
|
2012-01-10 19:10:46 +00:00
|
|
|
s.syncAsByte(_v56AA6);
|
|
|
|
s.syncAsByte(_v56AA7);
|
|
|
|
s.syncAsByte(_v56AA8);
|
2011-12-22 19:23:48 +00:00
|
|
|
|
2011-11-24 07:17:37 +00:00
|
|
|
for (i = 0; i < 14; ++i)
|
2013-09-11 00:25:22 +00:00
|
|
|
s.syncAsByte(_spillLocation[i]);
|
2012-01-04 14:04:55 +00:00
|
|
|
for (i = 0; i < 1000; ++i)
|
2013-09-16 03:25:17 +00:00
|
|
|
s.syncAsByte(_desertMovements[i]);
|
2013-09-15 18:54:47 +00:00
|
|
|
s.syncAsByte(_balloonAltitude);
|
2011-11-17 11:03:00 +00:00
|
|
|
for (i = 0; i < 12; ++i)
|
|
|
|
s.syncAsByte(_stripManager_lookupList[i]);
|
|
|
|
|
2011-11-16 08:48:52 +00:00
|
|
|
s.syncAsSint16LE(_insetUp);
|
2013-08-22 21:37:55 +00:00
|
|
|
s.syncAsByte(_frameEdgeColor);
|
2013-08-25 00:45:18 +00:00
|
|
|
|
2013-08-25 20:55:42 +00:00
|
|
|
for (i = 0; i < 508; i += 4)
|
2013-08-25 00:45:18 +00:00
|
|
|
s.syncAsByte(_scene1550JunkLocations[i + 2]);
|
2013-09-14 01:41:09 +00:00
|
|
|
|
|
|
|
s.syncAsSint16LE(_balloonPosition.x);
|
|
|
|
s.syncAsSint16LE(_balloonPosition.y);
|
2013-09-21 02:21:58 +00:00
|
|
|
|
|
|
|
// Synchronise Flub maze vampire data
|
|
|
|
for (i = 0; i < 18; ++i) {
|
|
|
|
s.syncAsSint16LE(_vampireData[i]._isAlive);
|
2013-09-22 02:27:10 +00:00
|
|
|
s.syncAsSint16LE(_vampireData[i]._shotsRequired);
|
2013-09-21 02:21:58 +00:00
|
|
|
s.syncAsSint16LE(_vampireData[i]._position.x);
|
|
|
|
s.syncAsSint16LE(_vampireData[i]._position.y);
|
|
|
|
}
|
2011-10-24 10:45:08 +00:00
|
|
|
}
|
2011-10-23 11:11:16 +00:00
|
|
|
|
|
|
|
} // end of namespace Ringworld2
|
|
|
|
|
2011-08-15 10:47:59 +00:00
|
|
|
} // end of namespace TsAGE
|