2001-10-09 14:30:12 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2001 Ludvig Strigeus
|
2002-09-30 04:36:19 +00:00
|
|
|
* wCopyright (C) 2001/2002 The ScummVM project
|
2001-10-09 14:30:12 +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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
2001-11-06 20:00:47 +00:00
|
|
|
* $Header$
|
2001-10-09 14:30:12 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "scumm.h"
|
2002-07-16 21:03:14 +00:00
|
|
|
#include "actor.h"
|
2002-11-30 16:47:16 +00:00
|
|
|
#include "bundle.h"
|
2002-12-25 21:04:47 +00:00
|
|
|
#include "charset.h"
|
2002-12-16 22:43:37 +00:00
|
|
|
#include "debugger.h"
|
2002-09-19 21:45:56 +00:00
|
|
|
#include "dialogs.h"
|
2002-11-30 16:47:16 +00:00
|
|
|
#include "imuse.h"
|
2002-12-22 21:58:16 +00:00
|
|
|
#include "intern.h"
|
2002-07-16 21:03:14 +00:00
|
|
|
#include "object.h"
|
|
|
|
#include "resource.h"
|
2002-11-30 16:47:16 +00:00
|
|
|
#include "sound.h"
|
2002-02-27 22:48:55 +00:00
|
|
|
#include "string.h"
|
2002-11-30 16:23:54 +00:00
|
|
|
#include "verbs.h"
|
|
|
|
#include "common/gameDetector.h"
|
2002-11-25 09:43:22 +00:00
|
|
|
#include "common/config-file.h"
|
2002-12-14 14:31:44 +00:00
|
|
|
#include "gui/console.h"
|
2002-11-30 16:47:16 +00:00
|
|
|
#include "gui/newgui.h"
|
|
|
|
#include "gui/message.h"
|
|
|
|
#include "sound/mixer.h"
|
|
|
|
#include "sound/mididrv.h"
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-07-20 08:00:42 +00:00
|
|
|
#ifdef _WIN32_WCE
|
2002-11-19 08:08:45 +00:00
|
|
|
extern void drawError(char*);
|
2002-07-20 08:00:42 +00:00
|
|
|
#endif
|
|
|
|
|
2002-08-18 17:48:18 +00:00
|
|
|
// Use g_scumm from error() ONLY
|
|
|
|
Scumm *g_scumm = 0;
|
2002-12-16 06:21:08 +00:00
|
|
|
ScummDebugger g_debugger;
|
2002-08-18 17:48:18 +00:00
|
|
|
|
2002-09-26 12:29:10 +00:00
|
|
|
extern NewGui *g_gui;
|
2002-12-21 00:27:10 +00:00
|
|
|
extern uint16 _debugLevel;
|
2002-08-18 17:48:18 +00:00
|
|
|
|
2002-11-10 17:19:43 +00:00
|
|
|
Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst)
|
|
|
|
{
|
|
|
|
Engine *engine;
|
|
|
|
|
|
|
|
if (detector->_features & GF_OLD_BUNDLE)
|
|
|
|
engine = new Scumm_v2(detector, syst);
|
|
|
|
else if (detector->_features & GF_OLD256)
|
|
|
|
engine = new Scumm_v3(detector, syst);
|
|
|
|
else if (detector->_features & GF_SMALL_HEADER) // this forces loomCD as v4
|
|
|
|
engine = new Scumm_v4(detector, syst);
|
2002-12-22 21:58:16 +00:00
|
|
|
else if (detector->_features & GF_AFTER_V8)
|
|
|
|
engine = new Scumm_v8(detector, syst);
|
2002-11-10 17:19:43 +00:00
|
|
|
else if (detector->_features & GF_AFTER_V7)
|
|
|
|
engine = new Scumm_v7(detector, syst);
|
|
|
|
else if (detector->_features & GF_AFTER_V6) // this forces SamnmaxCD as v6
|
|
|
|
engine = new Scumm_v6(detector, syst);
|
|
|
|
else
|
|
|
|
engine = new Scumm_v5(detector, syst);
|
|
|
|
|
|
|
|
return engine;
|
|
|
|
}
|
|
|
|
|
2002-08-18 17:48:18 +00:00
|
|
|
Scumm::Scumm (GameDetector *detector, OSystem *syst)
|
2002-09-19 21:45:56 +00:00
|
|
|
: Engine(detector, syst), _pauseDialog(0), _optionsDialog(0), _saveLoadDialog(0)
|
2002-08-18 17:48:18 +00:00
|
|
|
{
|
2002-08-18 18:39:42 +00:00
|
|
|
OSystem::Property prop;
|
|
|
|
|
2002-08-18 17:48:18 +00:00
|
|
|
// Use g_scumm from error() ONLY
|
|
|
|
g_scumm = this;
|
|
|
|
|
|
|
|
_debugMode = detector->_debugMode;
|
2002-12-21 00:27:10 +00:00
|
|
|
_debugLevel = detector->_debugLevel;
|
2002-12-31 02:09:57 +00:00
|
|
|
_dumpScripts = detector->_dumpScripts;
|
2002-08-18 17:48:18 +00:00
|
|
|
_bootParam = detector->_bootParam;
|
2002-10-28 09:03:02 +00:00
|
|
|
_exe_name = (char*)detector->_gameRealName.c_str();
|
|
|
|
_game_name = (char*)detector->_gameFileName.c_str();
|
2002-08-18 17:48:18 +00:00
|
|
|
_gameId = detector->_gameId;
|
|
|
|
_features = detector->_features;
|
|
|
|
_noSubtitles = detector->_noSubtitles;
|
|
|
|
_defaultTalkDelay = detector->_talkSpeed;
|
|
|
|
_use_adlib = detector->_use_adlib;
|
2002-11-13 15:44:33 +00:00
|
|
|
memset(&res, 0, sizeof(res));
|
|
|
|
_allocatedSize = 0;
|
|
|
|
_roomResource = 0;
|
|
|
|
_lastLoadedRoom = 0;
|
|
|
|
_expire_counter = 0;
|
|
|
|
_dynamicRoomOffsets = 0;
|
|
|
|
_shakeEnabled = 0;
|
|
|
|
|
2002-08-18 17:48:18 +00:00
|
|
|
if (_gameId == GID_ZAK256) { // FmTowns is 320x240
|
|
|
|
_realWidth = 320;
|
|
|
|
_realHeight = 240;
|
2002-09-21 16:20:52 +00:00
|
|
|
} else if (_gameId == GID_CMI) {
|
2002-08-31 16:29:17 +00:00
|
|
|
_realWidth = 640;
|
|
|
|
_realHeight = 480;
|
2002-08-18 17:48:18 +00:00
|
|
|
} else {
|
|
|
|
_realWidth = 320;
|
|
|
|
_realHeight = 200;
|
|
|
|
}
|
|
|
|
|
2002-10-24 06:28:54 +00:00
|
|
|
gdi._numStrips = _realWidth / 8;
|
|
|
|
|
2002-09-26 12:29:10 +00:00
|
|
|
_newgui = g_gui;
|
2002-08-31 13:29:10 +00:00
|
|
|
_bundle = new Bundle();
|
2002-08-14 20:43:56 +00:00
|
|
|
_sound = new Sound(this);
|
2002-09-18 10:22:36 +00:00
|
|
|
_timer = Engine::_timer;
|
2002-08-18 17:48:18 +00:00
|
|
|
|
|
|
|
_sound->_sound_volume_master = 0;
|
|
|
|
_sound->_sound_volume_sfx = detector->_sfx_volume;
|
|
|
|
_sound->_sound_volume_music = detector->_music_volume;
|
2002-08-18 18:39:42 +00:00
|
|
|
|
|
|
|
/* Initialize backend */
|
|
|
|
syst->init_size(_realWidth, _realHeight);
|
|
|
|
prop.cd_num = detector->_cdrom;
|
2002-10-07 18:36:09 +00:00
|
|
|
if (prop.cd_num >= 0 && (_features & GF_AUDIOTRACKS))
|
2002-09-28 15:19:21 +00:00
|
|
|
syst->property(OSystem::PROP_OPEN_CD, &prop);
|
2002-08-18 18:39:42 +00:00
|
|
|
|
2002-11-25 09:43:22 +00:00
|
|
|
if (g_config->getBool("fullscreen", false)) {
|
|
|
|
if (!_system->property(OSystem::PROP_GET_FULLSCREEN, 0))
|
|
|
|
_system->property(OSystem::PROP_TOGGLE_FULLSCREEN, 0);
|
|
|
|
}
|
2002-11-30 16:03:46 +00:00
|
|
|
#ifndef __GP32__ //ph0x FIXME, "quick dirty hack"
|
2002-08-18 18:39:42 +00:00
|
|
|
/* Bind the mixer to the system => mixer will be invoked
|
|
|
|
* automatically when samples need to be generated */
|
2002-10-27 19:32:36 +00:00
|
|
|
_silentDigitalImuse = false;
|
2002-08-24 15:58:08 +00:00
|
|
|
if (!_mixer->bindToSystem(syst)) {
|
2002-08-18 18:39:42 +00:00
|
|
|
warning("Sound initialization failed");
|
|
|
|
if (detector->_use_adlib) {
|
|
|
|
_use_adlib = false;
|
|
|
|
detector->_use_adlib = false;
|
|
|
|
detector->_midi_driver = MD_NULL;
|
|
|
|
warning("Adlib music was selected, switching to midi null driver");
|
|
|
|
}
|
2002-10-27 19:32:36 +00:00
|
|
|
_silentDigitalImuse = true;
|
2002-08-18 18:39:42 +00:00
|
|
|
}
|
2002-11-19 17:18:16 +00:00
|
|
|
_mixer->setVolume(kDefaultSFXVolume * kDefaultMasterVolume / 255);
|
2002-08-24 15:58:08 +00:00
|
|
|
_mixer->setMusicVolume(kDefaultMusicVolume);
|
2002-08-18 18:39:42 +00:00
|
|
|
|
|
|
|
// Init iMuse
|
2002-10-03 23:16:10 +00:00
|
|
|
if (_features & GF_AFTER_V7) {
|
2002-09-30 06:04:50 +00:00
|
|
|
_imuseDigital = new IMuseDigital(this);
|
2002-09-29 07:08:31 +00:00
|
|
|
_imuse = NULL;
|
2002-08-18 18:39:42 +00:00
|
|
|
} else {
|
2002-09-29 07:08:31 +00:00
|
|
|
_imuseDigital = NULL;
|
2002-12-21 20:12:14 +00:00
|
|
|
_imuse = IMuse::create_midi(syst, detector->createMidi());
|
|
|
|
if (_imuse) {
|
|
|
|
if (detector->_gameTempo != 0)
|
|
|
|
_imuse->property(IMuse::PROP_TEMPO_BASE, detector->_gameTempo);
|
|
|
|
_imuse->set_music_volume(_sound->_sound_volume_music);
|
|
|
|
}
|
2002-08-18 18:39:42 +00:00
|
|
|
}
|
2002-11-30 16:03:46 +00:00
|
|
|
#endif // ph0x-hack
|
2002-08-18 18:39:42 +00:00
|
|
|
|
|
|
|
// Load game from specified slot, if any
|
|
|
|
if (detector->_save_slot != -1) {
|
|
|
|
_saveLoadSlot = detector->_save_slot;
|
|
|
|
_saveLoadFlag = 2;
|
|
|
|
_saveLoadCompatible = false;
|
|
|
|
}
|
2002-09-17 15:33:31 +00:00
|
|
|
loadLanguageBundle();
|
2002-10-11 08:35:12 +00:00
|
|
|
_audioNames = NULL;
|
2002-08-14 00:01:39 +00:00
|
|
|
}
|
|
|
|
|
2002-08-18 17:48:18 +00:00
|
|
|
Scumm::~Scumm ()
|
|
|
|
{
|
2002-08-14 00:01:39 +00:00
|
|
|
delete [] _actors;
|
2002-12-25 21:42:22 +00:00
|
|
|
|
|
|
|
delete _charset;
|
|
|
|
delete _pauseDialog;
|
|
|
|
delete _optionsDialog;
|
|
|
|
delete _saveLoadDialog;
|
2002-09-19 21:45:56 +00:00
|
|
|
|
2002-08-14 00:01:39 +00:00
|
|
|
delete _bundle;
|
2002-08-14 20:43:56 +00:00
|
|
|
delete _sound;
|
2002-12-25 21:42:22 +00:00
|
|
|
delete _imuse;
|
|
|
|
delete _imuseDigital;
|
|
|
|
delete _languageBuffer;
|
|
|
|
delete _audioNames;
|
2002-08-14 00:01:39 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::scummInit()
|
|
|
|
{
|
2001-10-09 14:30:12 +00:00
|
|
|
int i;
|
|
|
|
Actor *a;
|
|
|
|
|
2002-08-14 20:43:56 +00:00
|
|
|
tempMusic = 0;
|
2001-10-09 14:30:12 +00:00
|
|
|
debug(9, "scummInit");
|
2001-11-26 19:57:57 +00:00
|
|
|
|
2002-12-26 01:47:40 +00:00
|
|
|
if (_features & GF_AFTER_V7) {
|
|
|
|
initScreens(0, 0, _realWidth, _realHeight);
|
|
|
|
} else {
|
|
|
|
initScreens(0, 16, _realWidth, 144);
|
|
|
|
}
|
|
|
|
|
2002-12-25 23:18:30 +00:00
|
|
|
if (_features & GF_OLD256)
|
|
|
|
_charset = new CharsetRendererOld256(this);
|
2002-12-26 01:47:40 +00:00
|
|
|
else if (_features & GF_AFTER_V8)
|
|
|
|
_charset = new CharsetRendererNut(this);
|
2002-12-25 23:18:30 +00:00
|
|
|
else
|
|
|
|
_charset = new CharsetRendererClassic(this);
|
|
|
|
|
2002-10-15 10:59:53 +00:00
|
|
|
memset(_charsetData, 0, sizeof(_charsetData));
|
|
|
|
|
2002-12-23 17:20:28 +00:00
|
|
|
if (!(_features & GF_SMALL_NAMES) && !(_features & GF_AFTER_V8))
|
2002-04-11 17:19:16 +00:00
|
|
|
loadCharset(1);
|
2001-12-27 17:51:58 +00:00
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
setShake(0);
|
2001-11-06 20:00:47 +00:00
|
|
|
setupCursor();
|
2002-08-04 16:30:59 +00:00
|
|
|
|
2002-12-29 19:54:11 +00:00
|
|
|
// Allocate and Initialize actors
|
2002-12-23 23:30:14 +00:00
|
|
|
_actors = new Actor[NUM_ACTORS];
|
2002-04-11 17:19:16 +00:00
|
|
|
for (i = 1, a = getFirstActor(); ++a, i < NUM_ACTORS; i++) {
|
2001-10-09 14:30:12 +00:00
|
|
|
a->number = i;
|
2002-05-15 10:25:00 +00:00
|
|
|
a->initActorClass(this);
|
2002-05-14 19:11:20 +00:00
|
|
|
a->initActor(1);
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
2002-05-05 20:08:41 +00:00
|
|
|
|
2001-10-16 10:01:48 +00:00
|
|
|
_vars[VAR_CHARINC] = 4;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
_numNestedScripts = 0;
|
|
|
|
vm.cutSceneStackPointer = 0;
|
|
|
|
|
|
|
|
memset(vm.cutScenePtr, 0, sizeof(vm.cutScenePtr));
|
|
|
|
memset(vm.cutSceneData, 0, sizeof(vm.cutSceneData));
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
for (i = 0; i < _maxVerbs; i++) {
|
2001-10-16 10:01:48 +00:00
|
|
|
_verbs[i].verbid = 0;
|
2002-08-31 16:29:17 +00:00
|
|
|
_verbs[i].right = _realWidth - 1;
|
2001-10-16 10:01:48 +00:00
|
|
|
_verbs[i].oldleft = -1;
|
|
|
|
_verbs[i].type = 0;
|
|
|
|
_verbs[i].color = 2;
|
|
|
|
_verbs[i].hicolor = 0;
|
|
|
|
_verbs[i].charset_nr = 1;
|
|
|
|
_verbs[i].curmode = 0;
|
|
|
|
_verbs[i].saveid = 0;
|
2002-04-11 17:19:16 +00:00
|
|
|
_verbs[i].center = 0;
|
2001-10-16 10:01:48 +00:00
|
|
|
_verbs[i].key = 0;
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (!(_features & GF_AFTER_V7)) {
|
2002-03-05 23:41:41 +00:00
|
|
|
camera._leftTrigger = 10;
|
|
|
|
camera._rightTrigger = 30;
|
|
|
|
camera._mode = 0;
|
2002-04-11 17:19:16 +00:00
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
camera._follows = 0;
|
|
|
|
|
|
|
|
virtscr[0].xstart = 0;
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (!(_features & GF_AFTER_V7)) {
|
2002-03-05 23:41:41 +00:00
|
|
|
_vars[VAR_V5_DRAWFLAGS] = 11;
|
|
|
|
_vars[VAR_59] = 3;
|
2002-07-13 14:07:37 +00:00
|
|
|
|
2002-08-23 22:40:26 +00:00
|
|
|
// Setup light
|
2002-07-13 14:07:37 +00:00
|
|
|
_vars[VAR_CURRENT_LIGHTS] = LIGHTMODE_actor_base | LIGHTMODE_actor_color | LIGHTMODE_screen;
|
2002-08-23 22:40:26 +00:00
|
|
|
_flashlightXStrips = 7;
|
|
|
|
_flashlightYStrips = 7;
|
2002-11-10 17:19:43 +00:00
|
|
|
_flashlight.buffer = NULL;
|
2002-03-05 23:41:41 +00:00
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
mouse.x = 104;
|
|
|
|
mouse.y = 56;
|
|
|
|
|
|
|
|
_ENCD_offs = 0;
|
|
|
|
_EXCD_offs = 0;
|
|
|
|
|
|
|
|
_currentScript = 0xFF;
|
2001-11-26 19:57:57 +00:00
|
|
|
_sentenceNum = 0;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
_currentRoom = 0;
|
|
|
|
_numObjectsInRoom = 0;
|
|
|
|
_actorToPrintStrFor = 0;
|
|
|
|
|
2002-12-26 00:21:19 +00:00
|
|
|
_charsetBufPos = 0;
|
2001-10-09 14:30:12 +00:00
|
|
|
_haveMsg = 0;
|
|
|
|
|
2002-03-06 10:03:00 +00:00
|
|
|
_varwatch = -1;
|
2001-10-09 14:30:12 +00:00
|
|
|
_screenStartStrip = 0;
|
|
|
|
|
2001-10-26 17:34:50 +00:00
|
|
|
_vars[VAR_TALK_ACTOR] = 0;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
_talkDelay = 0;
|
|
|
|
_keepText = false;
|
|
|
|
|
2002-12-04 13:36:27 +00:00
|
|
|
_currentCursor = 0;
|
2002-12-04 22:31:36 +00:00
|
|
|
_cursor.state = 0;
|
2001-10-09 14:30:12 +00:00
|
|
|
_userPut = 0;
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
_newEffect = 129;
|
2001-11-09 18:54:15 +00:00
|
|
|
_fullRedraw = true;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
clearDrawObjectQueue();
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
for (i = 0; i < 6; i++) {
|
|
|
|
if (_features & GF_OLD256) {
|
2002-09-22 01:17:53 +00:00
|
|
|
_string[i].t_xpos = 0;
|
|
|
|
_string[i].t_ypos = 0;
|
2002-02-19 22:36:09 +00:00
|
|
|
} else {
|
2002-09-22 01:17:53 +00:00
|
|
|
_string[i].t_xpos = 2;
|
|
|
|
_string[i].t_ypos = 5;
|
2002-02-19 22:36:09 +00:00
|
|
|
}
|
2002-09-22 01:17:53 +00:00
|
|
|
_string[i].t_right = _realWidth - 1;
|
|
|
|
_string[i].t_color = 0xF;
|
|
|
|
_string[i].t_center = 0;
|
|
|
|
_string[i].t_charset = 0;
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_numInMsgStack = 0;
|
|
|
|
|
2001-11-05 19:21:49 +00:00
|
|
|
createResource(rtTemp, 6, 500);
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
initScummVars();
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (!(_features & GF_AFTER_V6))
|
2001-10-26 17:34:50 +00:00
|
|
|
_vars[VAR_V5_TALK_STRING_Y] = -0x50;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
getGraphicsPerformance();
|
2002-04-17 20:23:45 +00:00
|
|
|
|
2002-08-14 20:43:56 +00:00
|
|
|
_sound->_current_cache = 0;
|
2002-08-04 16:30:59 +00:00
|
|
|
|
2002-12-13 03:23:17 +00:00
|
|
|
_lastSaveTime = _system->get_msecs();
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::initScummVars()
|
|
|
|
{
|
|
|
|
if (!(_features & GF_AFTER_V7)) {
|
2002-12-04 22:31:36 +00:00
|
|
|
_vars[VAR_CURRENTDRIVE] = 0;
|
|
|
|
_vars[VAR_FIXEDDISK] = true;
|
|
|
|
_vars[VAR_SOUNDCARD] = 3;
|
2002-03-05 23:41:41 +00:00
|
|
|
_vars[VAR_VIDEOMODE] = 0x13;
|
2002-10-28 07:55:29 +00:00
|
|
|
_vars[VAR_HEAPSPACE] = 1400;
|
2002-12-04 22:31:36 +00:00
|
|
|
_vars[VAR_MOUSEPRESENT] = true; // FIXME - used to be 0, but that seems odd?!?
|
|
|
|
_vars[VAR_SOUNDPARAM] = 0;
|
|
|
|
_vars[VAR_SOUNDPARAM2] = 0;
|
|
|
|
_vars[VAR_SOUNDPARAM3] = 0;
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_AFTER_V6)
|
2002-03-05 23:41:41 +00:00
|
|
|
_vars[VAR_V6_EMSSPACE] = 10000;
|
2002-10-31 05:48:09 +00:00
|
|
|
} else {
|
|
|
|
_vars[VAR_V6_EMSSPACE] = 10000;
|
2002-03-05 23:41:41 +00:00
|
|
|
}
|
2002-12-26 01:15:25 +00:00
|
|
|
|
|
|
|
if (_features & GF_AFTER_V8) { // Fixme: How do we deal with non-cd installs?
|
|
|
|
_vars[VAR_CURRENTDISK] = 1;
|
|
|
|
}
|
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::checkRange(int max, int min, int no, const char *str)
|
|
|
|
{
|
2001-10-09 14:30:12 +00:00
|
|
|
if (no < min || no > max) {
|
2002-04-11 17:19:16 +00:00
|
|
|
error("Value %d is out of bounds (%d,%d) int script(%d) msg %s", no, min,
|
|
|
|
max, vm.slot[_curExecScript].number, str);
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
int Scumm::scummLoop(int delta)
|
|
|
|
{
|
2002-09-24 04:29:54 +00:00
|
|
|
static int counter = 0;
|
|
|
|
|
2002-03-14 22:45:22 +00:00
|
|
|
#ifndef _WIN32_WCE
|
2001-11-09 18:54:15 +00:00
|
|
|
if (_debugger)
|
|
|
|
_debugger->on_frame();
|
2002-03-14 22:45:22 +00:00
|
|
|
#endif
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2002-07-19 01:40:24 +00:00
|
|
|
// Randomize the PRNG by calling it at regular intervals. This ensures
|
|
|
|
// that it will be in a different state each time you run the program.
|
2002-12-01 14:57:50 +00:00
|
|
|
_rnd.getRandomNumber(2);
|
2002-07-19 01:40:24 +00:00
|
|
|
|
2001-11-09 18:54:15 +00:00
|
|
|
_vars[VAR_TMR_1] += delta;
|
|
|
|
_vars[VAR_TMR_2] += delta;
|
|
|
|
_vars[VAR_TMR_3] += delta;
|
|
|
|
_vars[VAR_TMR_4] += delta;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2001-11-09 18:54:15 +00:00
|
|
|
if (delta > 15)
|
|
|
|
delta = 15;
|
2001-10-23 19:51:50 +00:00
|
|
|
|
2001-11-09 18:54:15 +00:00
|
|
|
decreaseScriptDelay(delta);
|
2001-11-05 19:21:49 +00:00
|
|
|
|
2002-10-03 07:38:03 +00:00
|
|
|
// If _talkDelay is -1, that means the text should never time out.
|
|
|
|
// This is used for drawing verb texts, e.g. the Full Throttle
|
|
|
|
// dialogue choices.
|
|
|
|
|
|
|
|
if (_talkDelay != -1) {
|
|
|
|
_talkDelay -= delta;
|
|
|
|
if (_talkDelay < 0)
|
|
|
|
_talkDelay = 0;
|
|
|
|
}
|
2001-11-09 18:54:15 +00:00
|
|
|
|
|
|
|
processKbd();
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_AFTER_V7) {
|
2002-03-06 00:18:22 +00:00
|
|
|
_vars[VAR_CAMERA_POS_X] = camera._cur.x;
|
|
|
|
_vars[VAR_CAMERA_POS_Y] = camera._cur.y;
|
|
|
|
} else {
|
|
|
|
_vars[VAR_CAMERA_POS_X] = camera._cur.x;
|
|
|
|
}
|
2002-06-02 12:07:12 +00:00
|
|
|
_vars[VAR_HAVE_MSG] = (_haveMsg == 0xFE) ? 0xFF : _haveMsg;
|
2001-11-09 18:54:15 +00:00
|
|
|
_vars[VAR_VIRT_MOUSE_X] = _virtual_mouse_x;
|
|
|
|
_vars[VAR_VIRT_MOUSE_Y] = _virtual_mouse_y;
|
|
|
|
_vars[VAR_MOUSE_X] = mouse.x;
|
|
|
|
_vars[VAR_MOUSE_Y] = mouse.y;
|
|
|
|
_vars[VAR_DEBUGMODE] = _debugMode;
|
|
|
|
|
2002-09-24 04:29:54 +00:00
|
|
|
if (_gameId == GID_MONKEY_VGA) {
|
|
|
|
// FIXME: Is all this really necessary now?
|
|
|
|
if (delta == 1)
|
|
|
|
_vars[VAR_MI1_TIMER]++;
|
|
|
|
else if (++counter != 2)
|
|
|
|
_vars[VAR_MI1_TIMER] += 5;
|
|
|
|
else {
|
|
|
|
counter = 0;
|
|
|
|
_vars[VAR_MI1_TIMER] += 6;
|
|
|
|
}
|
|
|
|
} else if (_features & GF_AUDIOTRACKS) {
|
2002-09-21 13:48:03 +00:00
|
|
|
_vars[VAR_MI1_TIMER] = _sound->readCDTimer();
|
2002-07-16 21:03:14 +00:00
|
|
|
} else if (_features & GF_OLD256) {
|
2002-04-20 04:09:02 +00:00
|
|
|
|
2002-04-24 04:26:09 +00:00
|
|
|
if(tempMusic == 3) {
|
2002-04-19 21:06:50 +00:00
|
|
|
tempMusic = 0;
|
|
|
|
_vars[VAR_MUSIC_FLAG]++;
|
2002-04-24 04:26:09 +00:00
|
|
|
} else {
|
2002-10-08 00:29:32 +00:00
|
|
|
tempMusic++;
|
2002-04-19 21:06:50 +00:00
|
|
|
}
|
|
|
|
}
|
2001-11-09 18:54:15 +00:00
|
|
|
|
2002-12-13 03:23:17 +00:00
|
|
|
// Trigger autosave all 5 minutes.
|
|
|
|
if (!_saveLoadFlag && _system->get_msecs() > _lastSaveTime + 5 * 60 * 1000) {
|
2002-11-10 14:59:15 +00:00
|
|
|
_saveLoadSlot = 0;
|
|
|
|
sprintf(_saveLoadName, "Autosave %d", _saveLoadSlot);
|
|
|
|
_saveLoadFlag = 1;
|
|
|
|
_saveLoadCompatible = false;
|
|
|
|
}
|
2002-04-20 04:09:02 +00:00
|
|
|
|
2003-01-02 08:39:33 +00:00
|
|
|
_vars[VAR_GAME_LOADED] = 0;
|
2001-11-09 18:54:15 +00:00
|
|
|
if (_saveLoadFlag) {
|
2002-11-10 14:59:15 +00:00
|
|
|
bool success;
|
2002-12-21 12:09:28 +00:00
|
|
|
const char *errMsg = "Succesfully saved game state to file:\n\n%s";
|
|
|
|
char filename[256];
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_saveLoadFlag == 1) {
|
2002-11-10 14:59:15 +00:00
|
|
|
success = saveState(_saveLoadSlot, _saveLoadCompatible);
|
|
|
|
if (!success)
|
2002-12-03 23:53:42 +00:00
|
|
|
errMsg = "Failed to save game state to file:\n\n%s";
|
2003-01-02 08:39:33 +00:00
|
|
|
|
|
|
|
// Ender: Disabled for small_header games, as can overwrite game
|
|
|
|
// variables (eg, Zak256 cashcard values). Temp disabled for V8
|
|
|
|
// because of odd timing issue with scripts and the variable reset
|
|
|
|
if (success && _saveLoadCompatible && !(_features & GF_SMALL_HEADER) && !(_features & GF_AFTER_V8))
|
2002-07-14 04:54:56 +00:00
|
|
|
_vars[VAR_GAME_LOADED] = 201;
|
2001-11-09 18:54:15 +00:00
|
|
|
} else {
|
2002-11-10 14:59:15 +00:00
|
|
|
success = loadState(_saveLoadSlot, _saveLoadCompatible);
|
|
|
|
if (!success)
|
2002-12-03 23:53:42 +00:00
|
|
|
errMsg = "Failed to load game state from file:\n\n%s";
|
2003-01-02 08:39:33 +00:00
|
|
|
|
|
|
|
// Ender: Disabled for small_header games, as can overwrite game
|
|
|
|
// variables (eg, Zak256 cashcard values).
|
2002-11-10 14:59:15 +00:00
|
|
|
if (success && _saveLoadCompatible && !(_features & GF_SMALL_HEADER))
|
2001-11-09 18:54:15 +00:00
|
|
|
_vars[VAR_GAME_LOADED] = 203;
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
2002-12-21 12:09:28 +00:00
|
|
|
makeSavegameName(filename, _saveLoadSlot, _saveLoadCompatible);
|
2002-11-10 14:59:15 +00:00
|
|
|
if (!success) {
|
2003-01-02 10:36:17 +00:00
|
|
|
displayError(false, errMsg, filename);
|
2002-12-21 23:27:46 +00:00
|
|
|
} else if (_saveLoadFlag == 1 && _saveLoadSlot != 0 && !_saveLoadCompatible) {
|
2002-12-21 12:09:28 +00:00
|
|
|
// Display "Save succesful" message, except for auto saves
|
|
|
|
char buf[1024];
|
|
|
|
sprintf(buf, errMsg, filename);
|
|
|
|
|
|
|
|
Dialog *dialog = new MessageDialog(_newgui, buf, 1500, false);
|
|
|
|
runDialog(dialog);
|
|
|
|
delete dialog;
|
2002-11-10 14:59:15 +00:00
|
|
|
}
|
|
|
|
_saveLoadFlag = 0;
|
2002-12-13 03:23:17 +00:00
|
|
|
_lastSaveTime = _system->get_msecs();
|
2002-04-27 04:31:25 +00:00
|
|
|
}
|
|
|
|
|
2001-11-09 18:54:15 +00:00
|
|
|
if (_completeScreenRedraw) {
|
|
|
|
_completeScreenRedraw = false;
|
|
|
|
gdi.clearUpperMask();
|
2002-12-25 21:04:47 +00:00
|
|
|
_charset->_hasMask = false;
|
2001-11-09 18:54:15 +00:00
|
|
|
redrawVerbs();
|
|
|
|
_fullRedraw = true;
|
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2001-11-09 18:54:15 +00:00
|
|
|
runAllScripts();
|
|
|
|
checkExecVerbs();
|
2002-12-09 01:27:40 +00:00
|
|
|
checkAndRunSentenceScript();
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_currentRoom == 0) {
|
2001-11-09 18:54:15 +00:00
|
|
|
gdi._cursorActive = 0;
|
|
|
|
CHARSET_1();
|
|
|
|
drawDirtyScreenParts();
|
2002-08-14 20:43:56 +00:00
|
|
|
_sound->processSoundQues();
|
2001-12-27 17:51:58 +00:00
|
|
|
camera._last = camera._cur;
|
2001-11-09 18:54:15 +00:00
|
|
|
} else {
|
2001-10-09 14:30:12 +00:00
|
|
|
walkActors();
|
|
|
|
moveCamera();
|
|
|
|
fixObjectFlags();
|
|
|
|
CHARSET_1();
|
2002-08-20 02:13:41 +00:00
|
|
|
|
|
|
|
if (camera._cur.x != camera._last.x || _BgNeedsRedraw || _fullRedraw
|
|
|
|
|| (_features & GF_AFTER_V7 && camera._cur.y != camera._last.y)) {
|
|
|
|
redrawBGAreas();
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
2002-08-20 02:13:41 +00:00
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
processDrawQue();
|
2002-10-01 09:27:09 +00:00
|
|
|
|
|
|
|
if (_verbRedraw)
|
|
|
|
redrawVerbs();
|
|
|
|
|
2002-09-17 12:52:53 +00:00
|
|
|
setActorRedrawFlags(true, true);
|
2001-10-09 14:30:12 +00:00
|
|
|
resetActorBgs();
|
|
|
|
|
2002-07-13 14:07:37 +00:00
|
|
|
if (!(_vars[VAR_CURRENT_LIGHTS] & LIGHTMODE_screen) &&
|
|
|
|
_vars[VAR_CURRENT_LIGHTS] & LIGHTMODE_flashlight) {
|
2002-08-19 17:23:48 +00:00
|
|
|
drawFlashlight();
|
2002-09-17 12:52:53 +00:00
|
|
|
setActorRedrawFlags(true, false);
|
2002-07-13 14:07:37 +00:00
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2001-11-26 19:57:57 +00:00
|
|
|
processActors();
|
2002-09-19 21:45:56 +00:00
|
|
|
_fullRedraw = false;
|
2001-10-09 14:30:12 +00:00
|
|
|
cyclePalette();
|
|
|
|
palManipulate();
|
2001-11-09 18:54:15 +00:00
|
|
|
|
2001-10-26 17:34:50 +00:00
|
|
|
if (_doEffect) {
|
|
|
|
_doEffect = false;
|
2002-07-13 14:07:37 +00:00
|
|
|
fadeIn(_newEffect);
|
2001-10-09 14:30:12 +00:00
|
|
|
clearClickedStatus();
|
|
|
|
}
|
2001-11-09 18:54:15 +00:00
|
|
|
|
2002-12-04 22:31:36 +00:00
|
|
|
if (_cursor.state > 0) {
|
2001-10-09 14:30:12 +00:00
|
|
|
verbMouseOver(checkMouseOver(mouse.x, mouse.y));
|
|
|
|
}
|
|
|
|
|
2002-04-21 21:20:32 +00:00
|
|
|
drawBlastObjects();
|
2001-11-09 18:54:15 +00:00
|
|
|
drawDirtyScreenParts();
|
2002-04-21 21:20:32 +00:00
|
|
|
removeBlastObjects();
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (!(_features & GF_AFTER_V6))
|
2001-10-23 19:51:50 +00:00
|
|
|
playActorSounds();
|
|
|
|
|
2002-08-14 20:43:56 +00:00
|
|
|
_sound->processSoundQues();
|
2001-12-27 17:51:58 +00:00
|
|
|
camera._last = camera._cur;
|
2001-11-09 18:54:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(++_expire_counter)) {
|
|
|
|
increaseResourceCounter();
|
|
|
|
}
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
animateCursor();
|
|
|
|
|
|
|
|
/* show or hide mouse */
|
2002-12-04 22:31:36 +00:00
|
|
|
_system->show_mouse(_cursor.state > 0);
|
2002-04-12 21:26:59 +00:00
|
|
|
|
2001-11-09 18:54:15 +00:00
|
|
|
_vars[VAR_TIMER] = 0;
|
|
|
|
return _vars[VAR_TIMER_NEXT];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::startScene(int room, Actor * a, int objectNr)
|
|
|
|
{
|
|
|
|
int i, where;
|
2001-10-09 14:30:12 +00:00
|
|
|
Actor *at;
|
|
|
|
|
2002-12-27 00:58:21 +00:00
|
|
|
CHECK_HEAP;
|
|
|
|
debug(1, "Loading room %d", room);
|
2001-11-05 19:21:49 +00:00
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
clearMsgQueue();
|
|
|
|
|
2002-07-13 14:07:37 +00:00
|
|
|
fadeOut(_switchRoomEffect2);
|
2001-10-09 14:30:12 +00:00
|
|
|
_newEffect = _switchRoomEffect;
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_currentScript != 0xFF) {
|
|
|
|
if (vm.slot[_currentScript].where == WIO_ROOM ||
|
|
|
|
vm.slot[_currentScript].where == WIO_FLOBJECT) {
|
|
|
|
if (vm.slot[_currentScript].cutsceneOverride != 0)
|
|
|
|
error("Object %d stopped with active cutscene/override in exit",
|
|
|
|
vm.slot[_currentScript].number);
|
2001-10-09 14:30:12 +00:00
|
|
|
_currentScript = 0xFF;
|
2002-04-11 17:19:16 +00:00
|
|
|
} else if (vm.slot[_currentScript].where == WIO_LOCAL) {
|
|
|
|
if (vm.slot[_currentScript].cutsceneOverride != 0)
|
|
|
|
error("Script %d stopped with active cutscene/override in exit",
|
|
|
|
vm.slot[_currentScript].number);
|
2001-10-09 14:30:12 +00:00
|
|
|
_currentScript = 0xFF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-14 04:54:56 +00:00
|
|
|
if (!(_features & GF_SMALL_HEADER)) // Disable for SH games. Overwrites
|
2002-07-14 03:01:36 +00:00
|
|
|
_vars[VAR_NEW_ROOM] = room; // gamevars, eg Zak cashcards
|
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
runExitScript();
|
|
|
|
killScriptsAndResources();
|
2001-12-27 17:51:58 +00:00
|
|
|
clearEnqueue();
|
2001-10-09 14:30:12 +00:00
|
|
|
stopCycle(0);
|
2001-12-27 17:51:58 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
for (i = 1, at = getFirstActor(); ++at, i < NUM_ACTORS; i++) {
|
2002-05-23 00:37:00 +00:00
|
|
|
at->hideActor();
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2001-12-27 17:51:58 +00:00
|
|
|
if (!(_features & GF_AFTER_V7)) {
|
2002-04-11 17:19:16 +00:00
|
|
|
for (i = 0; i < 0x100; i++)
|
2001-12-27 17:51:58 +00:00
|
|
|
_shadowPalette[i] = i;
|
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
clearDrawObjectQueue();
|
|
|
|
|
2001-10-16 10:01:48 +00:00
|
|
|
_vars[VAR_ROOM] = room;
|
2002-06-07 16:36:01 +00:00
|
|
|
_fullRedraw = true;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2001-11-05 19:21:49 +00:00
|
|
|
increaseResourceCounter();
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
_currentRoom = room;
|
2001-10-16 10:01:48 +00:00
|
|
|
_vars[VAR_ROOM] = room;
|
2002-04-24 04:26:09 +00:00
|
|
|
|
2002-10-02 13:25:06 +00:00
|
|
|
if (room >= 0x80 && !(_features & GF_AFTER_V7))
|
2002-04-11 17:19:16 +00:00
|
|
|
_roomResource = _resourceMapper[room & 0x7F];
|
2001-10-09 14:30:12 +00:00
|
|
|
else
|
|
|
|
_roomResource = room;
|
|
|
|
|
2001-10-16 10:01:48 +00:00
|
|
|
_vars[VAR_ROOM_RESOURCE] = _roomResource;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (room != 0)
|
2002-09-01 16:07:10 +00:00
|
|
|
ensureResourceLoaded(rtRoom, room);
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
if (_currentRoom == 0) {
|
|
|
|
_ENCD_offs = _EXCD_offs = 0;
|
|
|
|
_numObjectsInRoom = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
initRoomSubBlocks();
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_SMALL_HEADER)
|
|
|
|
loadRoomObjectsSmall();
|
|
|
|
else
|
|
|
|
loadRoomObjects();
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (!(_features & GF_AFTER_V7)) {
|
2002-03-06 00:18:22 +00:00
|
|
|
camera._mode = CM_NORMAL;
|
2002-08-31 16:29:17 +00:00
|
|
|
camera._cur.x = camera._dest.x = _realWidth / 2;
|
|
|
|
camera._cur.y = camera._dest.y = _realHeight / 2;
|
2002-03-06 00:18:22 +00:00
|
|
|
}
|
2001-10-26 17:34:50 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_AFTER_V6) {
|
2001-12-27 17:51:58 +00:00
|
|
|
_vars[VAR_V6_SCREEN_WIDTH] = _scrWidth;
|
2001-10-26 17:34:50 +00:00
|
|
|
_vars[VAR_V6_SCREEN_HEIGHT] = _scrHeight;
|
|
|
|
}
|
|
|
|
|
2002-09-21 16:20:52 +00:00
|
|
|
_vars[VAR_CAMERA_MIN_X] = _realWidth / 2;
|
|
|
|
_vars[VAR_CAMERA_MAX_X] = _scrWidth - (_realWidth / 2);
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_AFTER_V7) {
|
2002-08-31 16:29:17 +00:00
|
|
|
_vars[VAR_CAMERA_MIN_Y] = _realHeight / 2;
|
|
|
|
_vars[VAR_CAMERA_MAX_Y] = _scrHeight - (_realHeight / 2);
|
|
|
|
setCameraAt(_realWidth / 2, _realHeight / 2);
|
2002-03-06 00:18:22 +00:00
|
|
|
}
|
2001-12-27 17:51:58 +00:00
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
if (_roomResource == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
2001-11-26 19:57:57 +00:00
|
|
|
memset(gfxUsageBits, 0, sizeof(gfxUsageBits));
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
if (a) {
|
2001-11-12 20:50:36 +00:00
|
|
|
where = whereIsObject(objectNr);
|
2002-04-11 17:19:16 +00:00
|
|
|
if (where != WIO_ROOM && where != WIO_FLOBJECT)
|
|
|
|
error("startScene: Object %d is not in room %d", objectNr,
|
|
|
|
_currentRoom);
|
2002-07-16 18:51:27 +00:00
|
|
|
int x, y, dir;
|
|
|
|
getObjectXYPos(objectNr, x, y, dir);
|
2002-07-18 15:45:10 +00:00
|
|
|
a->putActor(x, y, _currentRoom);
|
|
|
|
a->setDirection(dir + 180);
|
2001-10-09 14:30:12 +00:00
|
|
|
a->moving = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
showActors();
|
|
|
|
|
2001-10-26 17:34:50 +00:00
|
|
|
_egoPositioned = false;
|
|
|
|
runEntryScript();
|
2001-12-27 17:51:58 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (!(_features & GF_AFTER_V7)) {
|
2002-03-06 00:18:22 +00:00
|
|
|
if (a && !_egoPositioned) {
|
2002-07-16 18:51:27 +00:00
|
|
|
int x, y;
|
|
|
|
getObjectXYPos(objectNr, x, y);
|
2002-07-18 15:45:10 +00:00
|
|
|
a->putActor(x, y, _currentRoom);
|
2002-03-06 00:18:22 +00:00
|
|
|
a->moving = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (camera._follows) {
|
2002-10-22 11:48:24 +00:00
|
|
|
a = derefActorSafe(camera._follows, "startScene: follows");
|
2002-03-06 00:18:22 +00:00
|
|
|
setCameraAt(a->x, a->y);
|
|
|
|
}
|
2001-12-27 17:51:58 +00:00
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2001-10-26 17:34:50 +00:00
|
|
|
_doEffect = true;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
CHECK_HEAP;
|
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::initRoomSubBlocks()
|
|
|
|
{
|
|
|
|
int i, offs;
|
2001-10-09 14:30:12 +00:00
|
|
|
byte *ptr;
|
2002-12-24 23:26:37 +00:00
|
|
|
byte *roomptr, *searchptr, *roomResPtr;
|
2001-12-27 17:51:58 +00:00
|
|
|
RoomHeader *rmhd;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
_ENCD_offs = 0;
|
|
|
|
_EXCD_offs = 0;
|
2001-10-16 10:01:48 +00:00
|
|
|
_CLUT_offs = 0;
|
|
|
|
_PALS_offs = 0;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2001-11-05 19:21:49 +00:00
|
|
|
nukeResource(rtMatrix, 1);
|
|
|
|
nukeResource(rtMatrix, 2);
|
2002-04-11 17:19:16 +00:00
|
|
|
|
|
|
|
for (i = 1; i < _maxScaleTable; i++)
|
2001-11-05 19:21:49 +00:00
|
|
|
nukeResource(rtScaleTable, i);
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-12-24 23:26:37 +00:00
|
|
|
// Determine the room and room script base address
|
|
|
|
roomResPtr = roomptr = getResourceAddress(rtRoom, _roomResource);
|
|
|
|
if (_features & GF_AFTER_V8)
|
|
|
|
roomResPtr = getResourceAddress(rtRoomScripts, _roomResource);
|
2002-04-11 17:19:16 +00:00
|
|
|
|
|
|
|
rmhd = (RoomHeader *)findResourceData(MKID('RMHD'), roomptr);
|
|
|
|
|
2002-12-24 04:02:21 +00:00
|
|
|
if (_features & GF_AFTER_V8) {
|
|
|
|
_scrWidth = READ_LE_UINT32(&(rmhd->v8.width));
|
|
|
|
_scrHeight = READ_LE_UINT32(&(rmhd->v8.height));
|
|
|
|
} else if (_features & GF_AFTER_V7) {
|
2002-03-05 20:13:47 +00:00
|
|
|
_scrWidth = READ_LE_UINT16(&(rmhd->v7.width));
|
|
|
|
_scrHeight = READ_LE_UINT16(&(rmhd->v7.height));
|
|
|
|
} else {
|
2002-04-11 17:19:16 +00:00
|
|
|
_scrWidth = READ_LE_UINT16(&(rmhd->old.width));
|
2002-03-05 20:13:47 +00:00
|
|
|
_scrHeight = READ_LE_UINT16(&(rmhd->old.height));
|
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
|
|
|
|
if (_features & GF_SMALL_HEADER)
|
|
|
|
_IM00_offs = findResourceData(MKID('IM00'), roomptr) - roomptr;
|
2002-12-31 03:26:02 +00:00
|
|
|
else if (_features & GF_AFTER_V8) {
|
|
|
|
ptr = findResource(MKID('IMAG'), roomptr);
|
|
|
|
assert(ptr);
|
|
|
|
ptr = findResource(MKID('WRAP'), ptr);
|
|
|
|
assert(ptr);
|
|
|
|
ptr = findResource(MKID('OFFS'), ptr);
|
|
|
|
assert(ptr);
|
2002-12-31 03:32:06 +00:00
|
|
|
// Get the address of the first SMAP (corresponds to IM00)
|
2002-12-31 03:26:02 +00:00
|
|
|
ptr += READ_LE_UINT32(ptr + 8);
|
|
|
|
_IM00_offs = ptr - roomptr;
|
|
|
|
} else
|
2002-04-11 17:19:16 +00:00
|
|
|
_IM00_offs =
|
|
|
|
findResource(MKID('IM00'),
|
|
|
|
findResource(MKID('RMIM'), roomptr)) - roomptr;
|
|
|
|
|
2002-12-24 23:26:37 +00:00
|
|
|
// Look for an exit script
|
|
|
|
ptr = findResourceData(MKID('EXCD'), roomResPtr);
|
2001-10-09 14:30:12 +00:00
|
|
|
if (ptr) {
|
2002-12-24 23:26:37 +00:00
|
|
|
_EXCD_offs = ptr - roomResPtr;
|
2002-12-31 02:09:57 +00:00
|
|
|
if (_dumpScripts)
|
|
|
|
dumpResource("exit-", _roomResource, ptr - _resourceHeaderSize);
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
2002-12-24 23:26:37 +00:00
|
|
|
// Look for an entry script
|
|
|
|
ptr = findResourceData(MKID('ENCD'), roomResPtr);
|
2001-10-09 14:30:12 +00:00
|
|
|
if (ptr) {
|
2002-12-24 23:26:37 +00:00
|
|
|
_ENCD_offs = ptr - roomResPtr;
|
2002-12-31 02:09:57 +00:00
|
|
|
if (_dumpScripts)
|
|
|
|
dumpResource("entry-", _roomResource, ptr - _resourceHeaderSize);
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_SMALL_HEADER) {
|
2002-02-12 21:28:07 +00:00
|
|
|
ptr = findResourceData(MKID('BOXD'), roomptr);
|
|
|
|
if (ptr) {
|
2002-04-11 17:19:16 +00:00
|
|
|
byte numOfBoxes = *(ptr);
|
|
|
|
int size;
|
2002-03-08 08:27:45 +00:00
|
|
|
if (_features & GF_OLD256)
|
2002-04-11 17:19:16 +00:00
|
|
|
size = numOfBoxes * (SIZEOF_BOX - 2) + 1;
|
2002-03-08 08:27:45 +00:00
|
|
|
else
|
|
|
|
size = numOfBoxes * SIZEOF_BOX + 1;
|
|
|
|
|
|
|
|
|
2002-02-12 21:28:07 +00:00
|
|
|
createResource(rtMatrix, 2, size);
|
|
|
|
memcpy(getResourceAddress(rtMatrix, 2), ptr, size);
|
|
|
|
ptr += size;
|
2002-04-11 17:19:16 +00:00
|
|
|
size = getResourceDataSize(ptr - size - 6) - size;
|
2002-02-25 17:29:51 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (size >= 0) { // do this :)
|
2002-02-22 16:59:24 +00:00
|
|
|
createResource(rtMatrix, 1, size);
|
|
|
|
memcpy(getResourceAddress(rtMatrix, 1), ptr, size);
|
|
|
|
}
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2002-02-12 21:28:07 +00:00
|
|
|
}
|
2002-04-11 17:19:16 +00:00
|
|
|
} else {
|
|
|
|
ptr = findResourceData(MKID('BOXD'), roomptr);
|
|
|
|
if (ptr) {
|
|
|
|
int size = getResourceDataSize(ptr);
|
2002-02-12 21:28:07 +00:00
|
|
|
createResource(rtMatrix, 2, size);
|
2002-04-11 17:19:16 +00:00
|
|
|
roomptr = getResourceAddress(rtRoom, _roomResource);
|
|
|
|
ptr = findResourceData(MKID('BOXD'), roomptr);
|
|
|
|
memcpy(getResourceAddress(rtMatrix, 2), ptr, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr = findResourceData(MKID('BOXM'), roomptr);
|
|
|
|
if (ptr) {
|
|
|
|
int size = getResourceDataSize(ptr);
|
|
|
|
createResource(rtMatrix, 1, size);
|
|
|
|
roomptr = getResourceAddress(rtRoom, _roomResource);
|
|
|
|
ptr = findResourceData(MKID('BOXM'), roomptr);
|
|
|
|
memcpy(getResourceAddress(rtMatrix, 1), ptr, size);
|
|
|
|
}
|
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2001-12-27 17:51:58 +00:00
|
|
|
ptr = findResourceData(MKID('SCAL'), roomptr);
|
2001-10-09 14:30:12 +00:00
|
|
|
if (ptr) {
|
|
|
|
offs = ptr - roomptr;
|
2002-12-24 04:02:21 +00:00
|
|
|
if (_features & GF_AFTER_V7) {
|
|
|
|
for (i = 1; i < _maxScaleTable; i++, offs += 16) {
|
|
|
|
int a = READ_LE_UINT32(roomptr + offs);
|
|
|
|
int b = READ_LE_UINT32(roomptr + offs + 4);
|
|
|
|
int c = READ_LE_UINT32(roomptr + offs + 8);
|
|
|
|
int d = READ_LE_UINT32(roomptr + offs + 12);
|
|
|
|
if (a || b || c || d) {
|
|
|
|
setScaleItem(i, b, a, d, c);
|
|
|
|
roomptr = getResourceAddress(rtRoom, _roomResource);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (i = 1; i < _maxScaleTable; i++, offs += 8) {
|
|
|
|
int a = READ_LE_UINT16(roomptr + offs);
|
|
|
|
int b = READ_LE_UINT16(roomptr + offs + 2);
|
|
|
|
int c = READ_LE_UINT16(roomptr + offs + 4);
|
|
|
|
int d = READ_LE_UINT16(roomptr + offs + 6);
|
|
|
|
if (a || b || c || d) {
|
|
|
|
setScaleItem(i, b, a, d, c);
|
|
|
|
roomptr = getResourceAddress(rtRoom, _roomResource);
|
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-12-24 23:26:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Setup local script
|
|
|
|
//
|
2001-11-26 19:57:57 +00:00
|
|
|
memset(_localScriptList, 0, sizeof(_localScriptList));
|
|
|
|
|
2002-12-24 23:26:37 +00:00
|
|
|
// Determine the room script base address
|
|
|
|
roomResPtr = roomptr = getResourceAddress(rtRoom, _roomResource);
|
|
|
|
if (_features & GF_AFTER_V8)
|
|
|
|
roomResPtr = getResourceAddress(rtRoomScripts, _roomResource);
|
|
|
|
searchptr = roomResPtr;
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_SMALL_HEADER) {
|
|
|
|
while ((ptr = findResourceSmall(MKID('LSCR'), searchptr)) != NULL) {
|
2002-03-10 17:33:04 +00:00
|
|
|
int id = 0;
|
2002-04-11 17:19:16 +00:00
|
|
|
ptr += _resourceHeaderSize; /* skip tag & size */
|
2002-06-01 21:39:57 +00:00
|
|
|
id = ptr[0];
|
2002-12-31 02:09:57 +00:00
|
|
|
|
|
|
|
if (_dumpScripts) {
|
2002-02-12 21:28:07 +00:00
|
|
|
char buf[32];
|
2002-04-11 17:19:16 +00:00
|
|
|
sprintf(buf, "room-%d-", _roomResource);
|
2002-02-12 21:28:07 +00:00
|
|
|
dumpResource(buf, id, ptr - 6);
|
2002-12-31 02:09:57 +00:00
|
|
|
}
|
|
|
|
|
2002-02-12 21:28:07 +00:00
|
|
|
_localScriptList[id - _numGlobalScripts] = ptr + 1 - roomptr;
|
|
|
|
searchptr = NULL;
|
|
|
|
}
|
|
|
|
} else {
|
2002-04-11 17:19:16 +00:00
|
|
|
while ((ptr = findResource(MKID('LSCR'), searchptr)) != NULL) {
|
|
|
|
int id = 0;
|
|
|
|
|
|
|
|
ptr += _resourceHeaderSize; /* skip tag & size */
|
2001-12-27 17:51:58 +00:00
|
|
|
|
2002-12-24 04:02:21 +00:00
|
|
|
if (_features & GF_AFTER_V8) {
|
|
|
|
id = READ_LE_UINT32(ptr);
|
|
|
|
checkRange(NUM_LOCALSCRIPT + _numGlobalScripts, _numGlobalScripts, id, "Invalid local script %d");
|
2002-12-24 23:26:37 +00:00
|
|
|
_localScriptList[id - _numGlobalScripts] = ptr + 4 - roomResPtr;
|
2002-12-24 04:02:21 +00:00
|
|
|
} else if (_features & GF_AFTER_V7) {
|
2002-03-06 00:18:22 +00:00
|
|
|
id = READ_LE_UINT16(ptr);
|
2002-10-16 05:42:31 +00:00
|
|
|
checkRange(NUM_LOCALSCRIPT + _numGlobalScripts, _numGlobalScripts, id, "Invalid local script %d");
|
2002-12-24 23:26:37 +00:00
|
|
|
_localScriptList[id - _numGlobalScripts] = ptr + 2 - roomResPtr;
|
2002-03-06 00:18:22 +00:00
|
|
|
} else {
|
2002-04-11 17:19:16 +00:00
|
|
|
id = ptr[0];
|
2002-12-24 23:26:37 +00:00
|
|
|
_localScriptList[id - _numGlobalScripts] = ptr + 1 - roomResPtr;
|
2002-03-06 00:18:22 +00:00
|
|
|
}
|
2002-12-31 02:09:57 +00:00
|
|
|
|
|
|
|
if (_dumpScripts) {
|
2002-04-11 17:19:16 +00:00
|
|
|
char buf[32];
|
|
|
|
sprintf(buf, "room-%d-", _roomResource);
|
|
|
|
dumpResource(buf, id, ptr - 8);
|
2002-12-31 02:09:57 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
searchptr = NULL;
|
|
|
|
}
|
|
|
|
}
|
2002-02-12 21:28:07 +00:00
|
|
|
|
2002-08-29 20:01:27 +00:00
|
|
|
// FIXME - we could simply always call findResourceData here, it will
|
|
|
|
// do the right thing even if GF_SMALL_HEADER is set. But then, we have
|
|
|
|
// to change setPaletteFromPtr() (easy). The problematic bit is save game
|
|
|
|
// compatibility - _CLUT_offs is stored in the save game after all.
|
|
|
|
// Of course we could just decide to not use _CLUT_offs anymore, and change
|
|
|
|
// setPaletteFromRes() to invoke findResourceData() each time
|
|
|
|
// (and also getPalettePtr()).
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_SMALL_HEADER)
|
2002-02-12 21:28:07 +00:00
|
|
|
ptr = findResourceSmall(MKID('CLUT'), roomptr);
|
|
|
|
else
|
2002-04-11 17:19:16 +00:00
|
|
|
ptr = findResourceData(MKID('CLUT'), roomptr);
|
2002-02-12 21:28:07 +00:00
|
|
|
|
2001-10-16 10:01:48 +00:00
|
|
|
if (ptr) {
|
|
|
|
_CLUT_offs = ptr - roomptr;
|
|
|
|
setPaletteFromRes();
|
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_AFTER_V6) {
|
2001-11-26 19:57:57 +00:00
|
|
|
ptr = findResource(MKID('PALS'), roomptr);
|
2001-10-23 19:51:50 +00:00
|
|
|
if (ptr) {
|
|
|
|
_PALS_offs = ptr - roomptr;
|
|
|
|
setPalette(0);
|
|
|
|
}
|
2001-10-16 10:01:48 +00:00
|
|
|
}
|
2002-02-12 18:20:37 +00:00
|
|
|
|
2002-08-29 20:01:27 +00:00
|
|
|
ptr = findResourceData(MKID('CYCL'), roomptr);
|
2002-02-12 18:20:37 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (ptr)
|
2002-08-29 20:01:27 +00:00
|
|
|
initCycl(ptr);
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2001-12-27 17:51:58 +00:00
|
|
|
ptr = findResourceData(MKID('TRNS'), roomptr);
|
2001-10-09 14:30:12 +00:00
|
|
|
if (ptr)
|
2002-12-31 14:59:06 +00:00
|
|
|
gdi._transparentColor = ptr[0];
|
2002-12-31 04:19:10 +00:00
|
|
|
else if (_features & GF_AFTER_V8)
|
2002-12-31 14:59:06 +00:00
|
|
|
gdi._transparentColor = 5; // FIXME
|
2001-10-09 14:30:12 +00:00
|
|
|
else
|
2002-12-31 14:59:06 +00:00
|
|
|
gdi._transparentColor = 255;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-23 23:58:31 +00:00
|
|
|
initBGBuffers(_scrHeight);
|
|
|
|
|
2001-11-26 19:57:57 +00:00
|
|
|
memset(_extraBoxFlags, 0, sizeof(_extraBoxFlags));
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::setScaleItem(int slot, int a, int b, int c, int d)
|
|
|
|
{
|
2001-10-09 14:30:12 +00:00
|
|
|
byte *ptr;
|
2002-04-11 17:19:16 +00:00
|
|
|
int cur, amounttoadd, i, tmp;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2001-11-05 19:21:49 +00:00
|
|
|
ptr = createResource(rtScaleTable, slot, 200);
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (a == c)
|
2001-10-09 14:30:12 +00:00
|
|
|
return;
|
2002-04-11 17:19:16 +00:00
|
|
|
|
|
|
|
cur = (b - d) * a;
|
2001-10-09 14:30:12 +00:00
|
|
|
amounttoadd = d - b;
|
2002-04-11 17:19:16 +00:00
|
|
|
|
|
|
|
for (i = 200; i > 0; i--) {
|
2001-10-09 14:30:12 +00:00
|
|
|
tmp = cur / (c - a) + b;
|
2002-04-11 17:19:16 +00:00
|
|
|
if (tmp < 1)
|
|
|
|
tmp = 1;
|
|
|
|
if (tmp > 255)
|
|
|
|
tmp = 255;
|
2001-10-09 14:30:12 +00:00
|
|
|
*ptr++ = tmp;
|
|
|
|
cur += amounttoadd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::dumpResource(char *tag, int idx, byte *ptr)
|
|
|
|
{
|
2001-10-09 14:30:12 +00:00
|
|
|
char buf[256];
|
2002-09-10 07:34:27 +00:00
|
|
|
File out;
|
2002-04-11 17:19:16 +00:00
|
|
|
|
|
|
|
uint32 size;
|
|
|
|
if (_features & GF_SMALL_HEADER)
|
|
|
|
size = READ_LE_UINT32(ptr);
|
|
|
|
else
|
|
|
|
size = READ_BE_UINT32_UNALIGNED(ptr + 4);
|
|
|
|
|
2002-05-05 20:04:26 +00:00
|
|
|
#if defined(MACOS_CARBON)
|
2002-04-11 17:19:16 +00:00
|
|
|
sprintf(buf, ":dumps:%s%d.dmp", tag, idx);
|
|
|
|
#else
|
|
|
|
sprintf(buf, "dumps/%s%d.dmp", tag, idx);
|
|
|
|
#endif
|
|
|
|
|
2002-09-15 19:28:34 +00:00
|
|
|
out.open(buf, "", 1);
|
2002-09-10 07:34:27 +00:00
|
|
|
if (out.isOpen() == false) {
|
2002-09-15 19:28:34 +00:00
|
|
|
out.open(buf, "", 2);
|
2002-09-10 07:34:27 +00:00
|
|
|
if (out.isOpen() == false)
|
2001-10-09 14:30:12 +00:00
|
|
|
return;
|
2002-09-10 07:34:27 +00:00
|
|
|
out.write(ptr, size);
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
2002-09-10 07:34:27 +00:00
|
|
|
out.close();
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::clearClickedStatus()
|
|
|
|
{
|
2001-10-09 14:30:12 +00:00
|
|
|
checkKeyHit();
|
|
|
|
_mouseButStat = 0;
|
2003-01-01 02:56:22 +00:00
|
|
|
_leftBtnPressed &= ~msClicked;
|
|
|
|
_rightBtnPressed &= ~msClicked;
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
int Scumm::checkKeyHit()
|
|
|
|
{
|
2001-10-09 14:30:12 +00:00
|
|
|
int a = _keyPressed;
|
|
|
|
_keyPressed = 0;
|
|
|
|
return a;
|
|
|
|
}
|
2002-04-11 17:19:16 +00:00
|
|
|
|
|
|
|
void Scumm::pauseGame(bool user)
|
|
|
|
{
|
2002-09-19 21:45:56 +00:00
|
|
|
pauseDialog();
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::setOptions()
|
|
|
|
{
|
2002-07-08 00:10:11 +00:00
|
|
|
//_newgui->optionsDialog();
|
2002-03-14 16:49:59 +00:00
|
|
|
}
|
|
|
|
|
2002-11-10 14:59:15 +00:00
|
|
|
int Scumm::runDialog(Dialog *dialog)
|
2002-09-24 23:45:25 +00:00
|
|
|
{
|
|
|
|
// Pause sound put
|
|
|
|
bool old_soundsPaused = _sound->_soundsPaused;
|
|
|
|
_sound->pauseSounds(true);
|
|
|
|
|
|
|
|
// Open & run the dialog
|
2002-11-10 14:59:15 +00:00
|
|
|
int result = dialog->runModal();
|
2002-09-24 23:45:25 +00:00
|
|
|
|
|
|
|
// Restore old cursor
|
|
|
|
updateCursor();
|
|
|
|
|
|
|
|
// Resume sound output
|
|
|
|
_sound->pauseSounds(old_soundsPaused);
|
2002-11-10 14:59:15 +00:00
|
|
|
|
|
|
|
// Return the result
|
|
|
|
return result;
|
2002-09-24 23:45:25 +00:00
|
|
|
}
|
|
|
|
|
2002-09-19 21:45:56 +00:00
|
|
|
void Scumm::pauseDialog()
|
|
|
|
{
|
2002-12-14 10:46:00 +00:00
|
|
|
if (!_pauseDialog)
|
2002-09-19 21:45:56 +00:00
|
|
|
_pauseDialog = new PauseDialog(_newgui, this);
|
2002-09-24 23:45:25 +00:00
|
|
|
runDialog(_pauseDialog);
|
2002-09-19 21:45:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Scumm::saveloadDialog()
|
|
|
|
{
|
|
|
|
if (!_saveLoadDialog)
|
|
|
|
_saveLoadDialog = new SaveLoadDialog(_newgui, this);
|
2002-09-24 23:45:25 +00:00
|
|
|
runDialog(_saveLoadDialog);
|
2002-09-19 21:45:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Scumm::optionsDialog()
|
|
|
|
{
|
|
|
|
if (!_optionsDialog)
|
|
|
|
_optionsDialog = new OptionsDialog(_newgui, this);
|
2002-09-24 23:45:25 +00:00
|
|
|
runDialog(_optionsDialog);
|
2002-09-19 21:45:56 +00:00
|
|
|
}
|
|
|
|
|
2003-01-02 10:36:17 +00:00
|
|
|
char Scumm::displayError(bool showCancel, const char *message, ...)
|
2002-11-10 14:59:15 +00:00
|
|
|
{
|
2003-01-02 10:36:17 +00:00
|
|
|
char buf[1024], result;
|
2002-11-10 14:59:15 +00:00
|
|
|
va_list va;
|
|
|
|
|
|
|
|
va_start(va, message);
|
|
|
|
vsprintf(buf, message, va);
|
|
|
|
va_end(va);
|
|
|
|
|
2003-01-02 10:36:17 +00:00
|
|
|
Dialog *dialog = new MessageDialog(_newgui, buf, 0, true, showCancel);
|
|
|
|
result = runDialog(dialog);
|
2002-11-10 14:59:15 +00:00
|
|
|
delete dialog;
|
2003-01-02 10:36:17 +00:00
|
|
|
|
|
|
|
return result;
|
2002-11-10 14:59:15 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::shutDown(int i)
|
|
|
|
{
|
2001-10-09 14:30:12 +00:00
|
|
|
/* TODO: implement this */
|
|
|
|
warning("shutDown: not implemented");
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::processKbd()
|
|
|
|
{
|
2002-05-11 21:09:30 +00:00
|
|
|
int saveloadkey;
|
2001-10-09 14:30:12 +00:00
|
|
|
getKeyInput(0);
|
|
|
|
|
2002-05-11 21:09:30 +00:00
|
|
|
if (_features & GF_OLD256) /* FIXME: Support ingame screen */
|
|
|
|
saveloadkey = 319;
|
|
|
|
else
|
|
|
|
saveloadkey = _vars[VAR_SAVELOADDIALOG_KEY];
|
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
_virtual_mouse_x = mouse.x + virtscr[0].xstart;
|
2002-04-23 23:58:31 +00:00
|
|
|
|
2002-04-24 04:26:09 +00:00
|
|
|
|
|
|
|
|
2002-04-23 23:58:31 +00:00
|
|
|
if(_features & GF_AFTER_V7)
|
2002-09-01 15:01:40 +00:00
|
|
|
_virtual_mouse_y = mouse.y + camera._cur.y - (_realHeight / 2);
|
2002-04-23 23:58:31 +00:00
|
|
|
else
|
|
|
|
_virtual_mouse_y = mouse.y;
|
2002-04-11 17:19:16 +00:00
|
|
|
|
|
|
|
if (!(_features & GF_OLD256))
|
|
|
|
_virtual_mouse_y += virtscr[0].topline;
|
2002-02-22 16:06:09 +00:00
|
|
|
else
|
2002-04-11 17:19:16 +00:00
|
|
|
_virtual_mouse_y -= 16;
|
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
if (_virtual_mouse_y < 0)
|
2002-04-11 17:19:16 +00:00
|
|
|
_virtual_mouse_y = -1;
|
2002-05-11 21:09:30 +00:00
|
|
|
|
2002-02-22 16:06:09 +00:00
|
|
|
if (_features & GF_OLD256) {
|
|
|
|
if (_virtual_mouse_y >= virtscr[0].height + virtscr[0].topline)
|
|
|
|
_virtual_mouse_y = -1;
|
|
|
|
} else {
|
|
|
|
if (_virtual_mouse_y >= virtscr[0].height)
|
|
|
|
_virtual_mouse_y = -1;
|
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
if (!_lastKeyHit)
|
|
|
|
return;
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_lastKeyHit == KEY_SET_OPTIONS) {
|
2002-03-14 16:49:59 +00:00
|
|
|
setOptions();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_lastKeyHit == _vars[VAR_RESTART_KEY]) {
|
2001-10-09 14:30:12 +00:00
|
|
|
warning("Restart not implemented");
|
2002-04-11 17:19:16 +00:00
|
|
|
// pauseGame(true);
|
2001-10-09 14:30:12 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_lastKeyHit == _vars[VAR_PAUSE_KEY]) {
|
2001-11-14 18:40:39 +00:00
|
|
|
pauseGame(true);
|
2001-10-09 14:30:12 +00:00
|
|
|
/* pause */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_lastKeyHit == _vars[VAR_CUTSCENEEXIT_KEY]) {
|
2002-03-25 14:22:09 +00:00
|
|
|
if (_insaneState) {
|
2002-10-08 00:29:32 +00:00
|
|
|
_videoFinished = true;
|
2002-03-25 14:22:09 +00:00
|
|
|
} else
|
|
|
|
exitCutscene();
|
2002-09-29 11:11:42 +00:00
|
|
|
} else if (_lastKeyHit == saveloadkey && _currentRoom != 0) {
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_AFTER_V7)
|
|
|
|
runScript(_vars[VAR_UNK_SCRIPT], 0, 0, 0);
|
2002-09-29 11:11:42 +00:00
|
|
|
|
|
|
|
saveloadDialog(); // Display NewGui
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_AFTER_V7)
|
|
|
|
runScript(_vars[VAR_UNK_SCRIPT_2], 0, 0, 0);
|
2002-11-15 12:07:59 +00:00
|
|
|
return;
|
2002-04-11 17:19:16 +00:00
|
|
|
} else if (_lastKeyHit == _vars[VAR_TALKSTOP_KEY]) {
|
2001-10-09 14:30:12 +00:00
|
|
|
_talkDelay = 0;
|
2002-09-26 09:59:47 +00:00
|
|
|
if (_sound->_sfxMode & 2)
|
2001-11-14 18:40:39 +00:00
|
|
|
stopTalk();
|
2001-10-09 14:30:12 +00:00
|
|
|
return;
|
2002-11-19 17:18:16 +00:00
|
|
|
} else if (_lastKeyHit == '[') { // [ Music volume down
|
|
|
|
int vol = _sound->_sound_volume_music;
|
|
|
|
if (!(vol & 0xF) && vol)
|
|
|
|
vol -= 16;
|
|
|
|
vol = vol & 0xF0;
|
|
|
|
_sound->_sound_volume_music = vol;
|
|
|
|
if (_imuse)
|
|
|
|
_imuse->set_music_volume (vol);
|
|
|
|
} else if (_lastKeyHit == ']') { // ] Music volume up
|
|
|
|
int vol = _sound->_sound_volume_music;
|
|
|
|
vol = (vol + 16) & 0xFF0;
|
|
|
|
if (vol > 255) vol = 255;
|
|
|
|
_sound->_sound_volume_music = vol;
|
|
|
|
if (_imuse)
|
|
|
|
_imuse->set_music_volume (vol);
|
2002-10-08 00:29:32 +00:00
|
|
|
} else if (_lastKeyHit == '-') { // - text speed down
|
2002-12-26 23:05:19 +00:00
|
|
|
_defaultTalkDelay += 5;
|
2002-05-05 22:39:52 +00:00
|
|
|
if (_defaultTalkDelay > 90)
|
|
|
|
_defaultTalkDelay = 90;
|
|
|
|
|
|
|
|
_vars[VAR_CHARINC] = _defaultTalkDelay / 20;
|
2002-10-08 00:29:32 +00:00
|
|
|
} else if (_lastKeyHit == '+') { // + text speed up
|
2002-12-26 23:05:19 +00:00
|
|
|
_defaultTalkDelay -= 5;
|
2002-05-05 22:39:52 +00:00
|
|
|
if (_defaultTalkDelay < 5)
|
|
|
|
_defaultTalkDelay = 5;
|
|
|
|
|
|
|
|
_vars[VAR_CHARINC] = _defaultTalkDelay / 20;
|
2002-12-14 14:31:44 +00:00
|
|
|
} else if (_lastKeyHit == '~' || _lastKeyHit == '#') { // Debug console
|
2002-12-16 22:43:37 +00:00
|
|
|
g_debugger.attach(this);
|
2002-12-14 10:46:00 +00:00
|
|
|
}
|
2002-09-29 11:11:42 +00:00
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
_mouseButStat = _lastKeyHit;
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
int Scumm::getKeyInput(int a)
|
|
|
|
{
|
2001-10-09 14:30:12 +00:00
|
|
|
_mouseButStat = 0;
|
|
|
|
|
|
|
|
_lastKeyHit = checkKeyHit();
|
2002-04-11 17:19:16 +00:00
|
|
|
if (a == 0)
|
2001-10-09 14:30:12 +00:00
|
|
|
convertKeysToClicks();
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (mouse.x < 0)
|
|
|
|
mouse.x = 0;
|
2002-05-07 18:44:34 +00:00
|
|
|
if (mouse.x > _realWidth-1)
|
|
|
|
mouse.x = _realWidth-1;
|
2002-04-11 17:19:16 +00:00
|
|
|
if (mouse.y < 0)
|
|
|
|
mouse.y = 0;
|
2002-05-07 18:44:34 +00:00
|
|
|
if (mouse.y > _realHeight-1)
|
|
|
|
mouse.y = _realHeight-1;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_leftBtnPressed & msClicked && _rightBtnPressed & msClicked) {
|
2001-10-09 14:30:12 +00:00
|
|
|
_mouseButStat = 0;
|
2002-12-26 02:13:19 +00:00
|
|
|
_lastKeyHit = (uint)_vars[VAR_CUTSCENEEXIT_KEY];
|
2002-04-11 17:19:16 +00:00
|
|
|
} else if (_leftBtnPressed & msClicked) {
|
2001-11-14 20:09:39 +00:00
|
|
|
_mouseButStat = MBS_LEFT_CLICK;
|
2002-04-11 17:19:16 +00:00
|
|
|
} else if (_rightBtnPressed & msClicked) {
|
2001-11-14 20:09:39 +00:00
|
|
|
_mouseButStat = MBS_RIGHT_CLICK;
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
2001-12-27 17:51:58 +00:00
|
|
|
|
2002-12-29 15:06:44 +00:00
|
|
|
if (_features & GF_AFTER_V8) {
|
|
|
|
_vars[VAR_MOUSE_BUTTONS] = 0;
|
|
|
|
if (_leftBtnPressed & msClicked)
|
2002-12-29 17:07:45 +00:00
|
|
|
_vars[VAR_MOUSE_BUTTONS] += 1;
|
2002-12-29 15:06:44 +00:00
|
|
|
if (_rightBtnPressed & msClicked)
|
2002-12-29 17:07:45 +00:00
|
|
|
_vars[VAR_MOUSE_BUTTONS] += 2;
|
2002-12-29 15:06:44 +00:00
|
|
|
|
2003-01-01 02:56:22 +00:00
|
|
|
_vars[VAR_MOUSE_HOLD] = 0;
|
|
|
|
if (_leftBtnPressed & msDown)
|
|
|
|
_vars[VAR_MOUSE_HOLD] += 1;
|
|
|
|
if (_rightBtnPressed & msDown)
|
|
|
|
_vars[VAR_MOUSE_HOLD] += 2;
|
|
|
|
|
2002-12-29 15:06:44 +00:00
|
|
|
} else if (_features & GF_AFTER_V7) {
|
2002-04-11 17:19:16 +00:00
|
|
|
// _vars[VAR_LEFTBTN_DOWN] = (_leftBtnPressed&msClicked) != 0;
|
|
|
|
_vars[VAR_LEFTBTN_HOLD] = (_leftBtnPressed & msDown) != 0;
|
|
|
|
// _vars[VAR_RIGHTBTN_DOWN] = (_rightBtnPressed&msClicked) != 0;
|
|
|
|
_vars[VAR_RIGHTBTN_HOLD] = (_rightBtnPressed & msDown) != 0;
|
2002-03-06 00:18:22 +00:00
|
|
|
}
|
2001-12-27 17:51:58 +00:00
|
|
|
|
|
|
|
_leftBtnPressed &= ~msClicked;
|
|
|
|
_rightBtnPressed &= ~msClicked;
|
2001-10-09 14:30:12 +00:00
|
|
|
|
|
|
|
return _lastKeyHit;
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::convertKeysToClicks()
|
|
|
|
{
|
2002-12-04 22:31:36 +00:00
|
|
|
if (_lastKeyHit && _cursor.state > 0) {
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_lastKeyHit == 9) {
|
2001-11-14 20:09:39 +00:00
|
|
|
_mouseButStat = MBS_RIGHT_CLICK;
|
2002-04-11 17:19:16 +00:00
|
|
|
} else if (_lastKeyHit == 13) {
|
|
|
|
_mouseButStat = MBS_LEFT_CLICK;
|
2001-10-09 14:30:12 +00:00
|
|
|
} else
|
|
|
|
return;
|
|
|
|
_lastKeyHit = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-14 23:35:28 +00:00
|
|
|
Actor *Scumm::derefActor(int id)
|
|
|
|
{
|
2002-07-16 21:03:14 +00:00
|
|
|
return &_actors[id];
|
2002-05-14 23:35:28 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
Actor *Scumm::derefActorSafe(int id, const char *errmsg)
|
|
|
|
{
|
|
|
|
if (id < 1 || id >= NUM_ACTORS) {
|
2002-12-28 12:42:55 +00:00
|
|
|
if (_debugLevel > 1)
|
2002-04-17 20:23:45 +00:00
|
|
|
warning
|
|
|
|
("Invalid actor %d in %s (script %d, opcode 0x%x) - This is potentially a BIG problem.",
|
|
|
|
id, errmsg, vm.slot[_curExecScript].number, _opcode);
|
2002-04-11 17:19:16 +00:00
|
|
|
return NULL;
|
2002-03-05 09:58:12 +00:00
|
|
|
}
|
2001-10-09 14:30:12 +00:00
|
|
|
return derefActor(id);
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::setStringVars(int slot)
|
|
|
|
{
|
2002-09-22 01:17:53 +00:00
|
|
|
StringTab *st = &_string[slot];
|
2001-10-26 17:34:50 +00:00
|
|
|
st->xpos = st->t_xpos;
|
|
|
|
st->ypos = st->t_ypos;
|
|
|
|
st->center = st->t_center;
|
|
|
|
st->overhead = st->t_overhead;
|
2001-11-05 19:21:49 +00:00
|
|
|
st->no_talk_anim = st->t_no_talk_anim;
|
2001-10-26 17:34:50 +00:00
|
|
|
st->right = st->t_right;
|
|
|
|
st->color = st->t_color;
|
|
|
|
st->charset = st->t_charset;
|
2001-10-16 10:01:48 +00:00
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::startManiac()
|
|
|
|
{
|
2001-10-16 10:01:48 +00:00
|
|
|
warning("stub startManiac()");
|
|
|
|
}
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void Scumm::destroy()
|
|
|
|
{
|
2001-11-05 19:21:49 +00:00
|
|
|
freeResources();
|
|
|
|
|
2001-11-26 19:57:57 +00:00
|
|
|
free(_objectStateTable);
|
|
|
|
free(_objectRoomTable);
|
|
|
|
free(_objectOwnerTable);
|
2001-11-05 19:21:49 +00:00
|
|
|
free(_inventory);
|
|
|
|
free(_arrays);
|
|
|
|
free(_verbs);
|
|
|
|
free(_objs);
|
|
|
|
free(_vars);
|
|
|
|
free(_bitVars);
|
|
|
|
free(_newNames);
|
|
|
|
free(_classData);
|
|
|
|
}
|
|
|
|
|
2002-09-16 10:42:12 +00:00
|
|
|
//
|
|
|
|
// Convert an old style direction to a new style one (angle),
|
|
|
|
//
|
2002-07-22 18:11:48 +00:00
|
|
|
int newDirToOldDir(int dir)
|
2002-04-11 17:19:16 +00:00
|
|
|
{
|
|
|
|
if (dir >= 71 && dir <= 109)
|
2001-11-26 19:57:57 +00:00
|
|
|
return 1;
|
2002-04-11 17:19:16 +00:00
|
|
|
if (dir >= 109 && dir <= 251)
|
2001-11-26 19:57:57 +00:00
|
|
|
return 2;
|
2002-04-11 17:19:16 +00:00
|
|
|
if (dir >= 251 && dir <= 289)
|
2001-11-26 19:57:57 +00:00
|
|
|
return 0;
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
2002-09-16 10:42:12 +00:00
|
|
|
//
|
|
|
|
// Convert an new style (angle) direction to an old style one.
|
|
|
|
//
|
2002-07-22 18:11:48 +00:00
|
|
|
int oldDirToNewDir(int dir)
|
2002-04-11 17:19:16 +00:00
|
|
|
{
|
2002-09-16 10:42:12 +00:00
|
|
|
const int new_dir_table[4] = { 270, 90, 180, 0 };
|
2001-11-26 19:57:57 +00:00
|
|
|
return new_dir_table[dir];
|
|
|
|
}
|
|
|
|
|
2002-09-16 10:42:12 +00:00
|
|
|
//
|
|
|
|
// Convert an angle to a simple direction.
|
|
|
|
//
|
2002-07-22 18:11:48 +00:00
|
|
|
int toSimpleDir(int dirType, int dir)
|
2002-04-11 17:19:16 +00:00
|
|
|
{
|
2002-09-16 10:42:12 +00:00
|
|
|
const int16 many_direction_tab[16] = {
|
|
|
|
71, 109, 251, 289, -1, -1, -1, -1,
|
|
|
|
22, 72, 107, 157, 202, 252, 287, 337
|
|
|
|
};
|
2002-07-02 20:56:17 +00:00
|
|
|
int num = dirType ? 8 : 4;
|
|
|
|
const int16 *dirtab = &many_direction_tab[dirType * 8];
|
|
|
|
for (int i = 1; i < num; i++, dirtab++) {
|
2001-12-27 17:51:58 +00:00
|
|
|
if (dir >= dirtab[0] && dir <= dirtab[1])
|
|
|
|
return i;
|
|
|
|
}
|
2001-11-26 19:57:57 +00:00
|
|
|
return 0;
|
2001-12-27 17:51:58 +00:00
|
|
|
|
2001-11-26 19:57:57 +00:00
|
|
|
}
|
|
|
|
|
2002-09-16 10:42:12 +00:00
|
|
|
//
|
|
|
|
// Convert a simple direction to an angle
|
|
|
|
//
|
2002-07-22 18:11:48 +00:00
|
|
|
int fromSimpleDir(int dirType, int dir)
|
2002-04-11 17:19:16 +00:00
|
|
|
{
|
2002-09-16 10:42:12 +00:00
|
|
|
if (dirType)
|
2002-05-23 00:37:00 +00:00
|
|
|
return dir * 45;
|
2002-09-16 10:42:12 +00:00
|
|
|
else
|
|
|
|
return dir * 90;
|
2001-11-26 19:57:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-16 10:42:12 +00:00
|
|
|
//
|
|
|
|
// Normalize the given angle - that means, ensure it is positive, and
|
|
|
|
// change it to the closest multiple of 45 degree by abusing toSimpleDir.
|
|
|
|
//
|
2002-07-22 18:11:48 +00:00
|
|
|
int normalizeAngle(int angle)
|
2002-04-11 17:19:16 +00:00
|
|
|
{
|
2002-05-22 12:24:48 +00:00
|
|
|
int temp;
|
|
|
|
|
|
|
|
temp = (angle + 360) % 360;
|
|
|
|
|
2002-07-02 20:56:17 +00:00
|
|
|
return toSimpleDir(1, temp) * 45;
|
2001-11-26 19:57:57 +00:00
|
|
|
}
|
2001-10-16 10:01:48 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
void NORETURN CDECL error(const char *s, ...)
|
|
|
|
{
|
2001-10-09 14:30:12 +00:00
|
|
|
char buf[1024];
|
2002-07-20 08:00:42 +00:00
|
|
|
#if defined( USE_WINDBG ) || defined ( _WIN32_WCE )
|
2002-04-26 14:13:39 +00:00
|
|
|
char buf2[1024];
|
|
|
|
#endif
|
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
va_list va;
|
|
|
|
|
|
|
|
va_start(va, s);
|
|
|
|
vsprintf(buf, s, va);
|
|
|
|
va_end(va);
|
|
|
|
|
2002-11-30 16:03:46 +00:00
|
|
|
#ifdef __GP32__ //ph0x FIXME?
|
|
|
|
printf("ERROR: %s\n", buf);
|
|
|
|
#endif
|
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
if (g_scumm && g_scumm->_currentScript != 0xFF) {
|
2002-04-12 10:34:46 +00:00
|
|
|
ScriptSlot *ss = &g_scumm->vm.slot[g_scumm->_currentScript];
|
2002-03-06 12:24:56 +00:00
|
|
|
fprintf(stderr, "Error(%d:%d:0x%X): %s!\n",
|
2002-04-12 10:34:46 +00:00
|
|
|
g_scumm->_roomResource,
|
2002-04-11 17:19:16 +00:00
|
|
|
ss->number,
|
2002-04-12 10:34:46 +00:00
|
|
|
g_scumm->_scriptPointer - g_scumm->_scriptOrgPointer, buf);
|
2002-07-20 08:00:42 +00:00
|
|
|
#if defined( USE_WINDBG ) || defined( _WIN32_WCE )
|
2002-04-26 14:13:39 +00:00
|
|
|
sprintf(buf2, "Error(%d:%d:0x%X): %s!\n",
|
|
|
|
g_scumm->_roomResource,
|
|
|
|
ss->number,
|
|
|
|
g_scumm->_scriptPointer - g_scumm->_scriptOrgPointer,
|
|
|
|
buf);
|
2002-07-20 08:00:42 +00:00
|
|
|
#if defined ( _WIN32_WCE )
|
2002-11-19 08:08:45 +00:00
|
|
|
drawError(buf2);
|
2002-07-20 08:00:42 +00:00
|
|
|
#else
|
2002-11-19 08:08:45 +00:00
|
|
|
OutputDebugString(buf2);
|
2002-07-20 08:00:42 +00:00
|
|
|
#endif
|
2002-04-26 14:13:39 +00:00
|
|
|
#endif
|
|
|
|
|
2001-10-09 14:30:12 +00:00
|
|
|
} else {
|
2002-03-06 12:24:56 +00:00
|
|
|
fprintf(stderr, "Error: %s!\n", buf);
|
2002-07-20 08:00:42 +00:00
|
|
|
#if defined( USE_WINDBG ) || defined( _WIN32_WCE )
|
2002-04-26 14:13:39 +00:00
|
|
|
sprintf(&buf[strlen(buf)], "\n");
|
2002-07-20 08:00:42 +00:00
|
|
|
#if defined ( _WIN32_WCE )
|
2002-11-19 08:08:45 +00:00
|
|
|
drawError(buf);
|
2002-07-20 08:00:42 +00:00
|
|
|
#else
|
2002-11-19 08:08:45 +00:00
|
|
|
OutputDebugString(buf);
|
2002-07-20 08:00:42 +00:00
|
|
|
#endif
|
2002-04-26 14:13:39 +00:00
|
|
|
#endif
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
2002-09-22 00:38:02 +00:00
|
|
|
|
2002-10-09 20:29:26 +00:00
|
|
|
// Finally exit. quit() will terminate the program if g_system iss present
|
|
|
|
if (g_system)
|
|
|
|
g_system->quit();
|
2002-09-22 00:38:02 +00:00
|
|
|
|
2002-10-09 20:29:26 +00:00
|
|
|
exit(1);
|
2001-10-09 14:30:12 +00:00
|
|
|
}
|
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
void Scumm::waitForTimer(int msec_delay) {
|
|
|
|
OSystem::Event event;
|
|
|
|
uint32 start_time;
|
|
|
|
|
|
|
|
if (_fastMode&2)
|
|
|
|
msec_delay = 0;
|
|
|
|
else if (_fastMode&1)
|
|
|
|
msec_delay = 10;
|
|
|
|
|
|
|
|
start_time = _system->get_msecs();
|
|
|
|
|
|
|
|
for(;;) {
|
|
|
|
while (_system->poll_event(&event)) {
|
2002-07-13 18:32:09 +00:00
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
switch(event.event_code) {
|
|
|
|
case OSystem::EVENT_KEYDOWN:
|
2002-05-19 12:35:43 +00:00
|
|
|
if (event.kbd.keycode >= '0' && event.kbd.keycode<='9'
|
2002-11-30 16:33:57 +00:00
|
|
|
&& (event.kbd.flags == OSystem::KBD_ALT ||
|
2002-05-19 12:35:43 +00:00
|
|
|
event.kbd.flags == OSystem::KBD_CTRL)) {
|
|
|
|
_saveLoadSlot = event.kbd.keycode - '0';
|
2003-01-01 07:12:57 +00:00
|
|
|
|
|
|
|
// don't overwrite autosave (slot 0)
|
|
|
|
if (_saveLoadSlot == 0)
|
|
|
|
_saveLoadSlot = 10;
|
|
|
|
|
2002-05-19 12:35:43 +00:00
|
|
|
sprintf(_saveLoadName, "Quicksave %d", _saveLoadSlot);
|
2002-11-30 16:33:57 +00:00
|
|
|
_saveLoadFlag = (event.kbd.flags == OSystem::KBD_ALT) ? 1 : 2;
|
2002-05-19 12:35:43 +00:00
|
|
|
_saveLoadCompatible = false;
|
2002-04-13 12:43:02 +00:00
|
|
|
} else if (event.kbd.flags==OSystem::KBD_CTRL) {
|
|
|
|
if (event.kbd.keycode=='f')
|
2002-04-12 21:26:59 +00:00
|
|
|
_fastMode ^= 1;
|
|
|
|
else if (event.kbd.keycode=='g')
|
|
|
|
_fastMode ^= 2;
|
2002-05-14 18:14:16 +00:00
|
|
|
else if ((event.kbd.keycode=='d') && (!_system->property(OSystem::PROP_GET_FULLSCREEN, 0)))
|
2002-04-19 11:05:46 +00:00
|
|
|
g_debugger.attach(this);
|
2002-04-12 21:26:59 +00:00
|
|
|
else if (event.kbd.keycode=='s')
|
|
|
|
resourceStats();
|
2002-12-11 20:56:49 +00:00
|
|
|
else
|
|
|
|
_keyPressed = event.kbd.ascii; // Normal key press, pass on to the game.
|
2002-07-18 20:26:35 +00:00
|
|
|
} else
|
2002-05-19 12:35:43 +00:00
|
|
|
_keyPressed = event.kbd.ascii; // Normal key press, pass on to the game.
|
2002-04-12 21:26:59 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OSystem::EVENT_MOUSEMOVE:
|
|
|
|
mouse.x = event.mouse.x;
|
|
|
|
mouse.y = event.mouse.y;
|
|
|
|
_system->set_mouse_pos(event.mouse.x, event.mouse.y);
|
|
|
|
_system->update_screen();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OSystem::EVENT_LBUTTONDOWN:
|
|
|
|
_leftBtnPressed |= msClicked|msDown;
|
2002-04-21 21:56:41 +00:00
|
|
|
#ifdef _WIN32_WCE
|
|
|
|
mouse.x = event.mouse.x;
|
|
|
|
mouse.y = event.mouse.y;
|
|
|
|
#endif
|
2002-04-12 21:26:59 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OSystem::EVENT_RBUTTONDOWN:
|
|
|
|
_rightBtnPressed |= msClicked|msDown;
|
2002-04-21 21:56:41 +00:00
|
|
|
#ifdef _WIN32_WCE
|
|
|
|
mouse.x = event.mouse.x;
|
|
|
|
mouse.y = event.mouse.y;
|
|
|
|
#endif
|
2002-04-12 21:26:59 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OSystem::EVENT_LBUTTONUP:
|
|
|
|
_leftBtnPressed &= ~msDown;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OSystem::EVENT_RBUTTONUP:
|
|
|
|
_rightBtnPressed &= ~msDown;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-08-29 23:45:15 +00:00
|
|
|
_sound->updateCD(); // Loop CD Audio if needed
|
2002-04-12 21:26:59 +00:00
|
|
|
if (_system->get_msecs() >= start_time + msec_delay)
|
|
|
|
break;
|
|
|
|
_system->delay_msecs(10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Scumm::updatePalette() {
|
|
|
|
if (_palDirtyMax == -1)
|
|
|
|
return;
|
2002-10-19 22:35:22 +00:00
|
|
|
|
|
|
|
bool noir_mode = (_gameId == GID_SAMNMAX && readVar(0x8000));
|
2002-04-12 21:26:59 +00:00
|
|
|
int first = _palDirtyMin;
|
|
|
|
int num = _palDirtyMax - first + 1;
|
|
|
|
int i;
|
|
|
|
|
2002-12-13 17:12:02 +00:00
|
|
|
byte palette_colors[1024];
|
|
|
|
byte *p = palette_colors;
|
2002-07-28 01:40:24 +00:00
|
|
|
|
2002-08-08 11:14:45 +00:00
|
|
|
for (i = _palDirtyMin; i <= _palDirtyMax; i++) {
|
|
|
|
byte *data;
|
|
|
|
|
|
|
|
if (_features & GF_SMALL_HEADER)
|
|
|
|
data = _currentPalette + _shadowPalette[i] * 3;
|
|
|
|
else
|
|
|
|
data = _currentPalette + i * 3;
|
|
|
|
|
2002-10-19 22:35:22 +00:00
|
|
|
// Sam & Max film noir mode. Convert the colours to grayscale
|
|
|
|
// before uploading them to the backend.
|
|
|
|
|
|
|
|
if (noir_mode) {
|
2002-12-13 17:12:02 +00:00
|
|
|
int r, g, b;
|
|
|
|
byte brightness;
|
2002-08-08 11:14:45 +00:00
|
|
|
|
2002-12-13 17:12:02 +00:00
|
|
|
r = data[0];
|
|
|
|
g = data[1];
|
|
|
|
b = data[2];
|
2002-10-19 22:35:22 +00:00
|
|
|
|
2002-12-13 17:12:02 +00:00
|
|
|
brightness = (byte)((0.299 * r + 0.587 * g + 0.114 * b) + 0.5);
|
2002-10-19 22:35:22 +00:00
|
|
|
|
2002-12-13 17:12:02 +00:00
|
|
|
*p++ = brightness;
|
|
|
|
*p++ = brightness;
|
|
|
|
*p++ = brightness;
|
2002-10-19 22:35:22 +00:00
|
|
|
*p++ = 0;
|
|
|
|
} else {
|
|
|
|
*p++ = data[0];
|
|
|
|
*p++ = data[1];
|
|
|
|
*p++ = data[2];
|
|
|
|
*p++ = 0;
|
|
|
|
}
|
2002-04-12 21:26:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_system->set_palette(palette_colors, first, num);
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
_palDirtyMax = -1;
|
|
|
|
_palDirtyMin = 256;
|
|
|
|
}
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2002-04-12 21:26:59 +00:00
|
|
|
void Scumm::mainRun()
|
|
|
|
{
|
|
|
|
int delta = 0;
|
|
|
|
int last_time = _system->get_msecs();
|
|
|
|
int new_time;
|
|
|
|
|
|
|
|
for(;;) {
|
|
|
|
updatePalette();
|
|
|
|
|
|
|
|
_system->update_screen();
|
|
|
|
new_time = _system->get_msecs();
|
|
|
|
waitForTimer(delta * 15 + last_time - new_time);
|
|
|
|
last_time = _system->get_msecs();
|
2002-10-23 00:24:54 +00:00
|
|
|
delta = scummLoop(delta);
|
|
|
|
if (delta < 1) // Ensure we don't get into a loop
|
|
|
|
delta = 1; // by not decreasing sleepers.
|
2002-04-12 21:26:59 +00:00
|
|
|
}
|
2002-03-21 00:40:18 +00:00
|
|
|
}
|
2002-03-23 20:34:47 +00:00
|
|
|
|
|
|
|
void Scumm::launch()
|
|
|
|
{
|
|
|
|
gdi._vm = this;
|
|
|
|
|
|
|
|
_maxHeapThreshold = 450000;
|
|
|
|
_minHeapThreshold = 400000;
|
|
|
|
|
2002-10-01 09:27:09 +00:00
|
|
|
_verbRedraw = false;
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
allocResTypeData(rtBuffer, MKID('NONE'), 10, "buffer", 0);
|
2002-08-31 16:29:17 +00:00
|
|
|
initVirtScreen(0, 0, 0, _realWidth, _realHeight, false, false);
|
2002-03-23 20:34:47 +00:00
|
|
|
|
2002-12-16 12:12:31 +00:00
|
|
|
setupScummVars();
|
2002-03-23 20:34:47 +00:00
|
|
|
|
2002-12-29 19:54:11 +00:00
|
|
|
setupOpcodes();
|
|
|
|
|
2002-12-23 23:30:14 +00:00
|
|
|
if (_features & GF_AFTER_V8)
|
|
|
|
NUM_ACTORS = 80;
|
|
|
|
else if ((_features & GF_AFTER_V7) || (_gameId == GID_SAMNMAX))
|
2002-03-23 20:34:47 +00:00
|
|
|
NUM_ACTORS = 30;
|
|
|
|
else
|
|
|
|
NUM_ACTORS = 13;
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (_features & GF_AFTER_V7)
|
2002-03-23 20:34:47 +00:00
|
|
|
OF_OWNER_ROOM = 0xFF;
|
|
|
|
else
|
|
|
|
OF_OWNER_ROOM = 0x0F;
|
2002-04-07 04:29:15 +00:00
|
|
|
|
2002-05-04 09:55:10 +00:00
|
|
|
// if (_gameId==GID_MONKEY2 && _bootParam == 0)
|
|
|
|
// _bootParam = 10001;
|
2002-04-11 17:19:16 +00:00
|
|
|
|
|
|
|
if (_gameId == GID_INDY4 && _bootParam == 0) {
|
2002-04-07 04:29:15 +00:00
|
|
|
_bootParam = -7873;
|
|
|
|
}
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2002-12-29 19:54:11 +00:00
|
|
|
if (_features & GF_OLD_BUNDLE)
|
|
|
|
_resourceHeaderSize = 2; // FIXME - to be rechecked
|
|
|
|
else if (_features & GF_SMALL_HEADER)
|
|
|
|
_resourceHeaderSize = 6;
|
|
|
|
else
|
|
|
|
_resourceHeaderSize = 8;
|
2002-03-23 20:34:47 +00:00
|
|
|
|
2002-12-29 19:54:11 +00:00
|
|
|
readIndexFile();
|
2002-03-23 20:34:47 +00:00
|
|
|
|
|
|
|
scummInit();
|
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
if (!(_features & GF_AFTER_V7))
|
2002-03-23 20:34:47 +00:00
|
|
|
_vars[VAR_VERSION] = 21;
|
|
|
|
|
|
|
|
_vars[VAR_DEBUGMODE] = _debugMode;
|
|
|
|
|
|
|
|
if (_gameId == GID_MONKEY)
|
|
|
|
_vars[74] = 1225;
|
|
|
|
|
2002-08-14 20:43:56 +00:00
|
|
|
_sound->setupSound();
|
2002-03-23 20:34:47 +00:00
|
|
|
|
2002-04-11 17:19:16 +00:00
|
|
|
runScript(1, 0, 0, &_bootParam);
|
2002-04-12 21:26:59 +00:00
|
|
|
}
|
2002-04-11 17:19:16 +00:00
|
|
|
|
2002-04-12 10:34:46 +00:00
|
|
|
void Scumm::go() {
|
|
|
|
launch();
|
|
|
|
mainRun();
|
|
|
|
}
|