/* ScummVM - Scumm Interpreter * Copyright (C) 2001 Ludvig Strigeus * Copyright (C) 2001-2004 The ScummVM project * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Header$ * */ #include #include "palmdefs.h" #include "globals.h" #include "scumm_globals.h" static void GlbInitAll() { if (gVars->globals[GBVARS_COMMON]) { CALL_INIT(ScummFont) } #ifndef DISABLE_SCUMM if (gVars->globals[GBVARS_SCUMM]) { CALL_INIT(DimuseTables) CALL_INIT(Akos) CALL_INIT(DimuseCodecs) CALL_INIT(Codec47) CALL_INIT(Gfx) CALL_INIT(Dialogs) CALL_INIT(Charset) CALL_INIT(Costume) CALL_INIT(PlayerV2) } #endif #ifndef DISABLE_SIMON if (gVars->globals[GBVARS_SIMON]) { CALL_INIT(Simon_Simon) CALL_INIT(Simon_Charset) } #endif #ifndef DISABLE_SWORD1 if (gVars->globals[GBVARS_SWORD1]) { CALL_INIT(Sword1_fxList) } #endif #ifndef DISABLE_QUEEN if (gVars->globals[GBVARS_QUEEN]) { CALL_INIT(Queen_Talk) CALL_INIT(Queen_Display) CALL_INIT(Queen_Graphics) CALL_INIT(Queen_Restables) CALL_INIT(Queen_Musicdata) } #endif } static void GlbReleaseAll() { if (gVars->globals[GBVARS_COMMON]) { CALL_RELEASE(ScummFont) } #ifndef DISABLE_SCUMM if (gVars->globals[GBVARS_SCUMM]) { CALL_RELEASE(DimuseTables) CALL_RELEASE(Akos) CALL_RELEASE(DimuseCodecs) CALL_RELEASE(Codec47) CALL_RELEASE(Gfx) CALL_RELEASE(Dialogs) CALL_RELEASE(Charset) CALL_RELEASE(Costume) CALL_RELEASE(PlayerV2) } #endif #ifndef DISABLE_SIMON if (gVars->globals[GBVARS_SIMON]) { CALL_RELEASE(Simon_Simon) CALL_RELEASE(Simon_Charset) } #endif #ifndef DISABLE_SWORD1 if (gVars->globals[GBVARS_SWORD1]) { CALL_RELEASE(Sword1_fxList) } #endif #ifndef DISABLE_QUEEN if (gVars->globals[GBVARS_QUEEN]) { CALL_RELEASE(Queen_Talk) CALL_RELEASE(Queen_Display) CALL_RELEASE(Queen_Graphics) CALL_RELEASE(Queen_Restables) CALL_RELEASE(Queen_Musicdata) } #endif } //TODO : use Boolean instead of void to check err static DmOpenRef GlbOpenInternal(const Char *nameP) { LocalID dbID = DmFindDatabase(0, nameP); if (dbID) { UInt32 dbType, dbCreator; Err e = DmDatabaseInfo(0, dbID, 0, 0, 0, 0, 0, 0, 0, 0, 0, &dbType, &dbCreator); if (!e && dbType == 'GLBS' && dbCreator == appFileCreator) return DmOpenDatabase(0, dbID, dmModeReadOnly); } return NULL; } void GlbOpen() { gVars->globals[GBVARS_COMMON]= GlbOpenInternal("Glbs::Common"); gVars->globals[GBVARS_SCUMM] = GlbOpenInternal("Glbs::Scumm"); gVars->globals[GBVARS_SWORD1]= GlbOpenInternal("Glbs::Sword1"); gVars->globals[GBVARS_SIMON] = GlbOpenInternal("Glbs::Simon"); gVars->globals[GBVARS_QUEEN] = GlbOpenInternal("Glbs::Queen"); GlbInitAll(); } void GlbClose() { GlbReleaseAll(); if (gVars->globals[GBVARS_COMMON]) DmCloseDatabase(gVars->globals[GBVARS_COMMON]); if (gVars->globals[GBVARS_SCUMM]) DmCloseDatabase(gVars->globals[GBVARS_SCUMM]); if (gVars->globals[GBVARS_SIMON]) DmCloseDatabase(gVars->globals[GBVARS_SIMON]); if (gVars->globals[GBVARS_SWORD1]) DmCloseDatabase(gVars->globals[GBVARS_SWORD1]); if (gVars->globals[GBVARS_QUEEN]) DmCloseDatabase(gVars->globals[GBVARS_QUEEN]); } void *GlbGetRecord(UInt16 index, UInt16 id) { if (gVars->globals[id]) { MemHandle recordH = DmQueryRecord(gVars->globals[id], index); if (recordH) return MemHandleLock(recordH); } return NULL; } void GlbReleaseRecord(UInt16 index, UInt16 id) { if (gVars->globals[id]) { MemHandle recordH = DmQueryRecord(gVars->globals[id], index); if (recordH) MemHandleUnlock(recordH); } }