2009-02-27 02:23:40 +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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-02-23 22:44:46 +00:00
|
|
|
#include "common/system.h"
|
|
|
|
|
2009-10-28 13:20:30 +00:00
|
|
|
#include "sci/sci.h" // for INCLUDE_OLDGFX
|
2010-02-23 22:44:46 +00:00
|
|
|
#include "sci/debug.h" // for g_debug_sleeptime_factor
|
|
|
|
#include "sci/event.h" // for kernel_sleep
|
2009-10-28 13:20:30 +00:00
|
|
|
|
2009-02-27 02:23:40 +00:00
|
|
|
#include "sci/engine/state.h"
|
2010-01-29 11:03:54 +00:00
|
|
|
#include "sci/engine/selector.h"
|
2009-08-17 15:49:22 +00:00
|
|
|
#include "sci/engine/vm.h"
|
2009-08-30 14:53:58 +00:00
|
|
|
#include "sci/engine/script.h"
|
2009-10-10 02:16:23 +00:00
|
|
|
#include "sci/engine/message.h"
|
2009-02-27 02:23:40 +00:00
|
|
|
|
|
|
|
namespace Sci {
|
|
|
|
|
2010-02-14 12:23:22 +00:00
|
|
|
EngineState::EngineState(Vocabulary *voc, SegManager *segMan)
|
|
|
|
: _voc(voc), _segMan(segMan), _dirseeker() {
|
2009-02-27 02:23:40 +00:00
|
|
|
|
2010-01-23 12:10:31 +00:00
|
|
|
#ifdef USE_OLD_MUSIC_FUNCTIONS
|
2009-02-27 02:23:40 +00:00
|
|
|
sfx_init_flags = 0;
|
2010-01-23 12:10:31 +00:00
|
|
|
#endif
|
2009-02-27 02:23:40 +00:00
|
|
|
|
|
|
|
restarting_flags = 0;
|
|
|
|
|
|
|
|
last_wait_time = 0;
|
|
|
|
|
2009-05-19 00:02:44 +00:00
|
|
|
_fileHandles.resize(5);
|
|
|
|
|
2009-02-27 02:23:40 +00:00
|
|
|
execution_stack_base = 0;
|
2009-04-28 15:58:19 +00:00
|
|
|
_executionStackPosChanged = false;
|
2009-02-27 02:23:40 +00:00
|
|
|
|
|
|
|
r_acc = NULL_REG;
|
2009-07-08 10:25:37 +00:00
|
|
|
restAdjust = 0;
|
2009-02-27 02:23:40 +00:00
|
|
|
r_prev = NULL_REG;
|
|
|
|
|
|
|
|
stack_base = 0;
|
|
|
|
stack_top = 0;
|
|
|
|
|
|
|
|
script_000 = 0;
|
|
|
|
|
2010-02-02 22:52:41 +00:00
|
|
|
_activeBreakpointTypes = 0;
|
2009-02-27 02:23:40 +00:00
|
|
|
sys_strings_segment = 0;
|
|
|
|
sys_strings = 0;
|
2009-05-19 00:02:44 +00:00
|
|
|
|
2009-10-18 19:43:27 +00:00
|
|
|
_gameObj = NULL_REG;
|
2009-02-27 02:23:40 +00:00
|
|
|
|
|
|
|
gc_countdown = 0;
|
|
|
|
|
|
|
|
successor = 0;
|
2009-08-11 20:18:15 +00:00
|
|
|
|
2010-01-17 18:41:28 +00:00
|
|
|
_throttleCounter = 0;
|
|
|
|
_throttleLastTime = 0;
|
|
|
|
_throttleTrigger = false;
|
2009-08-17 15:49:22 +00:00
|
|
|
|
2010-01-31 19:47:54 +00:00
|
|
|
_memorySegmentSize = 0;
|
|
|
|
|
2009-11-12 15:24:11 +00:00
|
|
|
_soundCmd = 0;
|
2009-02-27 02:23:40 +00:00
|
|
|
}
|
|
|
|
|
2009-03-15 20:31:29 +00:00
|
|
|
EngineState::~EngineState() {
|
2009-10-10 02:16:23 +00:00
|
|
|
delete _msgState;
|
2009-03-15 20:31:29 +00:00
|
|
|
}
|
|
|
|
|
2010-02-23 22:44:46 +00:00
|
|
|
void EngineState::wait(int16 ticks) {
|
|
|
|
uint32 time;
|
|
|
|
|
|
|
|
time = g_system->getMillis();
|
|
|
|
r_acc = make_reg(0, ((long)time - (long)last_wait_time) * 60 / 1000);
|
|
|
|
last_wait_time = time;
|
|
|
|
|
|
|
|
ticks *= g_debug_sleeptime_factor;
|
|
|
|
kernel_sleep(_event, ticks * 1000 / 60);
|
|
|
|
}
|
|
|
|
|
2009-06-04 20:50:51 +00:00
|
|
|
uint16 EngineState::currentRoomNumber() const {
|
2009-09-16 23:32:27 +00:00
|
|
|
return script_000->_localsBlock->_locals[13].toUint16();
|
2009-06-04 20:50:51 +00:00
|
|
|
}
|
2009-03-15 20:31:29 +00:00
|
|
|
|
2010-01-03 15:08:26 +00:00
|
|
|
void EngineState::setRoomNumber(uint16 roomNumber) {
|
|
|
|
script_000->_localsBlock->_locals[13] = make_reg(0, roomNumber);
|
|
|
|
}
|
|
|
|
|
2010-02-13 17:46:44 +00:00
|
|
|
static kLanguage charToLanguage(const char c) {
|
2009-06-24 19:12:45 +00:00
|
|
|
switch (c) {
|
|
|
|
case 'F':
|
|
|
|
return K_LANG_FRENCH;
|
|
|
|
case 'S':
|
|
|
|
return K_LANG_SPANISH;
|
|
|
|
case 'I':
|
|
|
|
return K_LANG_ITALIAN;
|
|
|
|
case 'G':
|
|
|
|
return K_LANG_GERMAN;
|
|
|
|
case 'J':
|
|
|
|
case 'j':
|
|
|
|
return K_LANG_JAPANESE;
|
|
|
|
case 'P':
|
|
|
|
return K_LANG_PORTUGUESE;
|
|
|
|
default:
|
|
|
|
return K_LANG_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-13 17:46:44 +00:00
|
|
|
Common::String SciEngine::getSciLanguageString(const char *str, kLanguage lang) const {
|
2009-06-24 19:12:45 +00:00
|
|
|
kLanguage secondLang = K_LANG_NONE;
|
|
|
|
|
|
|
|
const char *seeker = str;
|
|
|
|
while (*seeker) {
|
|
|
|
if ((*seeker == '%') || (*seeker == '#')) {
|
|
|
|
secondLang = charToLanguage(*(seeker + 1));
|
|
|
|
|
|
|
|
if (secondLang != K_LANG_NONE)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
seeker++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((secondLang == K_LANG_JAPANESE) && (*(seeker + 1) == 'J')) {
|
|
|
|
// FIXME: Add Kanji support
|
|
|
|
lang = K_LANG_ENGLISH;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (secondLang == lang)
|
|
|
|
return Common::String(seeker + 2);
|
|
|
|
|
|
|
|
if (seeker)
|
|
|
|
return Common::String(str, seeker - str);
|
|
|
|
else
|
|
|
|
return Common::String(str);
|
|
|
|
}
|
|
|
|
|
2010-02-13 17:46:44 +00:00
|
|
|
kLanguage SciEngine::getSciLanguage() {
|
|
|
|
kLanguage lang = (kLanguage)_resMan->getAudioLanguage();
|
2010-01-31 22:14:35 +00:00
|
|
|
if (lang != K_LANG_NONE)
|
|
|
|
return lang;
|
|
|
|
|
|
|
|
lang = K_LANG_ENGLISH;
|
2009-08-10 18:37:47 +00:00
|
|
|
|
2010-02-13 17:46:44 +00:00
|
|
|
if (_kernel->_selectorCache.printLang != -1) {
|
|
|
|
lang = (kLanguage)GET_SEL32V(_gamestate->_segMan, _gamestate->_gameObj, SELECTOR(printLang));
|
2009-08-10 18:37:47 +00:00
|
|
|
|
2010-02-01 13:27:20 +00:00
|
|
|
if ((getSciVersion() >= SCI_VERSION_1_1) || (lang == K_LANG_NONE)) {
|
2009-08-10 18:37:47 +00:00
|
|
|
// If language is set to none, we use the language from the game detector.
|
|
|
|
// SSCI reads this from resource.cfg (early games do not have a language
|
|
|
|
// setting in resource.cfg, but instead have the secondary language number
|
|
|
|
// hardcoded in the game script).
|
|
|
|
// SCI1.1 games always use the language setting from the config file
|
|
|
|
// (essentially disabling runtime language switching).
|
|
|
|
// Note: only a limited number of multilanguage games have been tested
|
|
|
|
// so far, so this information may not be 100% accurate.
|
2010-02-13 17:46:44 +00:00
|
|
|
switch (getLanguage()) {
|
2009-08-10 18:37:47 +00:00
|
|
|
case Common::FR_FRA:
|
|
|
|
lang = K_LANG_FRENCH;
|
|
|
|
break;
|
|
|
|
case Common::ES_ESP:
|
|
|
|
lang = K_LANG_SPANISH;
|
|
|
|
break;
|
|
|
|
case Common::IT_ITA:
|
|
|
|
lang = K_LANG_ITALIAN;
|
|
|
|
break;
|
|
|
|
case Common::DE_DEU:
|
|
|
|
lang = K_LANG_GERMAN;
|
|
|
|
break;
|
|
|
|
case Common::JA_JPN:
|
|
|
|
lang = K_LANG_JAPANESE;
|
|
|
|
break;
|
|
|
|
case Common::PT_BRA:
|
|
|
|
lang = K_LANG_PORTUGUESE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
lang = K_LANG_ENGLISH;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store language in printLang selector
|
2010-02-13 17:46:44 +00:00
|
|
|
PUT_SEL32V(_gamestate->_segMan, _gamestate->_gameObj, SELECTOR(printLang), lang);
|
2009-08-10 18:37:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return lang;
|
|
|
|
}
|
|
|
|
|
2010-02-13 17:46:44 +00:00
|
|
|
Common::String SciEngine::strSplit(const char *str, const char *sep) {
|
|
|
|
kLanguage lang = getSciLanguage();
|
2009-08-10 18:37:47 +00:00
|
|
|
kLanguage subLang = K_LANG_NONE;
|
2009-06-24 19:12:45 +00:00
|
|
|
|
2010-02-13 17:46:44 +00:00
|
|
|
if (_kernel->_selectorCache.subtitleLang != -1) {
|
|
|
|
subLang = (kLanguage)GET_SEL32V(_gamestate->_segMan, _gamestate->_gameObj, SELECTOR(subtitleLang));
|
2009-10-04 18:38:18 +00:00
|
|
|
}
|
2009-06-24 19:26:06 +00:00
|
|
|
|
2010-02-13 17:46:44 +00:00
|
|
|
Common::String retval = getSciLanguageString(str, lang);
|
2009-06-24 19:12:45 +00:00
|
|
|
|
|
|
|
if ((subLang != K_LANG_NONE) && (sep != NULL)) {
|
|
|
|
retval += sep;
|
2010-02-13 17:46:44 +00:00
|
|
|
retval += getSciLanguageString(str, subLang);
|
2009-06-24 19:12:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-02-27 02:23:40 +00:00
|
|
|
} // End of namespace Sci
|