scummvm/engines/tony/globals.cpp
2012-06-08 08:44:14 +02:00

146 lines
3.7 KiB
C++

/* 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.
*
*/
#include "common/algorithm.h"
#include "tony/globals.h"
namespace Tony {
Globals::Globals() {
Common::fill(_nextMusic, _nextMusic + MAX_PATH, 0);
_nextLoop = false;
_nextChannel = 0;
_nextSync = 0;
_curChannel = 0;
_flipflop = 0;
_curBackText = NULL;
_bTonyIsSpeaking = false;
_curChangedHotspot = 0;
Tony = NULL;
Pointer = NULL;
Boxes = NULL;
Loc = NULL;
Inventory = NULL;
Input = NULL;
GfxEngine = NULL;
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;
_bAlwaysDisplay = false;
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;
Common::fill(&mut[0], &mut[10], 0);
bSkipIdle = false;
hSkipIdle = 0;
lastMusic = 0;
lastTappeto = 0;
Common::fill(&tappeti[0], &tappeti[200], 0);
SFM_nLoc = 0;
// 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;
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);
}
} // End of namespace Tony