2012-05-13 22:34:40 +10: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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-05-13 23:44:08 +10:00
|
|
|
#include "common/algorithm.h"
|
2012-05-13 22:34:40 +10:00
|
|
|
#include "tony/globals.h"
|
|
|
|
|
|
|
|
namespace Tony {
|
|
|
|
|
|
|
|
Globals::Globals() {
|
2012-06-02 18:37:41 +10:00
|
|
|
Common::fill(nextMusic, nextMusic + MAX_PATH, 0);
|
2012-05-13 22:34:40 +10:00
|
|
|
nextLoop = false;
|
|
|
|
nextChannel = 0;
|
|
|
|
nextSync = 0;
|
|
|
|
curChannel = 0;
|
|
|
|
flipflop = 0;
|
|
|
|
curBackText = NULL;
|
2012-05-13 23:44:08 +10:00
|
|
|
bTonyIsSpeaking = false;
|
|
|
|
curChangedHotspot = 0;
|
2012-05-13 22:34:40 +10:00
|
|
|
Tony = NULL;
|
|
|
|
Pointer = NULL;
|
|
|
|
Boxes = NULL;
|
|
|
|
Loc = NULL;
|
|
|
|
Inventory = NULL;
|
|
|
|
Input = NULL;
|
2012-05-14 20:20:02 +10:00
|
|
|
GfxEngine = NULL;
|
2012-05-13 22:34:40 +10:00
|
|
|
LoadLocation = NULL;
|
|
|
|
UnloadLocation = NULL;
|
|
|
|
LinkGraphicTask = NULL;
|
|
|
|
Freeze = NULL;
|
|
|
|
Unfreeze = NULL;
|
|
|
|
WaitFrame = NULL;
|
|
|
|
PlayMusic = NULL;
|
|
|
|
WaitWipeEnd = NULL;
|
|
|
|
CloseWipe = NULL;
|
|
|
|
InitWipe = NULL;
|
|
|
|
EnableGUI = NULL;
|
|
|
|
DisableGUI = NULL;
|
|
|
|
SetPalesati = NULL;
|
|
|
|
|
|
|
|
dwTonyNumTexts = 0;
|
|
|
|
bTonyInTexts = false;
|
|
|
|
bStaticTalk = false;
|
|
|
|
bPatIrqFreeze = false;
|
|
|
|
bCfgInvLocked = false;
|
|
|
|
bCfgInvNoScroll = false;
|
|
|
|
bCfgTimerizedText = false;
|
|
|
|
bCfgInvUp = false;
|
|
|
|
bCfgAnni30 = false;
|
|
|
|
bCfgAntiAlias = false;
|
|
|
|
bCfgSottotitoli = false;
|
|
|
|
bCfgTransparence = false;
|
|
|
|
bCfgInterTips = false;
|
|
|
|
bCfgDubbing = false;
|
|
|
|
bCfgMusic = false;
|
|
|
|
bCfgSFX = false;
|
2012-06-02 18:37:41 +10:00
|
|
|
bAlwaysDisplay = false;
|
2012-05-13 22:34:40 +10:00
|
|
|
nCfgTonySpeed = 0;
|
|
|
|
nCfgTextSpeed = 0;
|
|
|
|
nCfgDubbingVolume = 0;
|
|
|
|
nCfgMusicVolume = 0;
|
|
|
|
nCfgSFXVolume = 0;
|
|
|
|
bIdleExited = false;
|
|
|
|
bSkipSfxNoLoop = false;
|
|
|
|
bNoOcchioDiBue = false;
|
|
|
|
curDialog = 0;
|
|
|
|
curSonoriz = 0;
|
|
|
|
bFadeOutStop = false;
|
|
|
|
|
|
|
|
// OSystem::MutexRef vdb;
|
2012-05-14 21:06:03 +10:00
|
|
|
Common::fill(&mut[0], &mut[10], 0);
|
2012-05-13 22:34:40 +10:00
|
|
|
bSkipIdle = false;
|
|
|
|
hSkipIdle = 0;
|
|
|
|
lastMusic = 0;
|
|
|
|
lastTappeto = 0;
|
|
|
|
Common::fill(&tappeti[0], &tappeti[200], 0);
|
|
|
|
SFM_nLoc = 0;
|
2012-05-13 23:44:08 +10:00
|
|
|
|
|
|
|
// MPAL global variables
|
|
|
|
mpalError = 0;
|
|
|
|
lpiifCustom = NULL;
|
|
|
|
lplpFunctions = NULL;
|
|
|
|
lplpFunctionStrings = NULL;
|
|
|
|
nObjs = 0;
|
|
|
|
nVars = 0;
|
|
|
|
hVars = NULL;
|
|
|
|
lpmvVars = NULL;
|
|
|
|
nMsgs = 0;
|
|
|
|
hMsgs = NULL;
|
|
|
|
lpmmMsgs = NULL;
|
|
|
|
nDialogs = 0;
|
|
|
|
hDialogs = NULL;
|
|
|
|
lpmdDialogs = NULL;
|
|
|
|
nItems = 0;
|
|
|
|
hItems = NULL;
|
|
|
|
lpmiItems = NULL;
|
|
|
|
nLocations = 0;
|
|
|
|
hLocations = NULL;
|
|
|
|
lpmlLocations = NULL;
|
|
|
|
nScripts = 0;
|
|
|
|
hScripts = NULL;
|
|
|
|
lpmsScripts = NULL;
|
|
|
|
nResources = 0;
|
|
|
|
lpResources = NULL;
|
|
|
|
bExecutingAction = false;
|
|
|
|
bExecutingDialog = false;
|
|
|
|
Common::fill(&nPollingLocations[0], &nPollingLocations[MAXPOLLINGLOCATIONS], 0);
|
|
|
|
Common::fill(&hEndPollingLocations[0], &hEndPollingLocations[MAXPOLLINGLOCATIONS], 0);
|
|
|
|
Common::fill(&PollingThreads[0], &PollingThreads[MAXPOLLINGLOCATIONS], 0);
|
|
|
|
hAskChoice = 0;
|
|
|
|
hDoneChoice = 0;
|
|
|
|
nExecutingAction = 0;
|
|
|
|
nExecutingDialog = 0;
|
|
|
|
nExecutingChoice = 0;
|
|
|
|
nSelectedChoice = 0;
|
2012-06-02 18:37:41 +10:00
|
|
|
nTonyNextTalkType = RMTony::TALK_NORMAL;
|
|
|
|
saveTonyLoc = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < 16; ++i)
|
|
|
|
Common::fill((byte *)&Character[i], (byte *)&Character[i] + sizeof(CharacterStruct), 0);
|
|
|
|
for (int i = 0; i < 10; ++i)
|
|
|
|
Common::fill((byte *)&MCharacter[i], (byte *)&MCharacter[i] + sizeof(MCharacterStruct), 0);
|
|
|
|
for (int i = 0; i < 256; ++i)
|
|
|
|
Common::fill((byte *)&ChangedHotspot[i], (byte *)&ChangedHotspot[i] + sizeof(ChangedHotspotStruct), 0);
|
2012-05-13 22:34:40 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Tony
|