2011-01-25 00:50:26 +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$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common/endian.h"
|
2011-01-25 13:00:58 +00:00
|
|
|
#include "common/archive.h"
|
2011-01-25 00:50:26 +00:00
|
|
|
|
|
|
|
#include "gob/gob.h"
|
2011-01-25 03:44:07 +00:00
|
|
|
#include "gob/global.h"
|
2011-01-25 00:50:26 +00:00
|
|
|
#include "gob/inter.h"
|
|
|
|
#include "gob/game.h"
|
|
|
|
#include "gob/script.h"
|
2011-01-25 02:50:26 +00:00
|
|
|
#include "gob/expression.h"
|
2011-01-25 00:50:26 +00:00
|
|
|
|
|
|
|
namespace Gob {
|
|
|
|
|
|
|
|
#define OPCODEVER Inter_v7
|
|
|
|
#define OPCODEDRAW(i, x) _opcodesDraw[i]._OPCODEDRAW(OPCODEVER, x)
|
|
|
|
#define OPCODEFUNC(i, x) _opcodesFunc[i]._OPCODEFUNC(OPCODEVER, x)
|
|
|
|
#define OPCODEGOB(i, x) _opcodesGob[i]._OPCODEGOB(OPCODEVER, x)
|
|
|
|
|
|
|
|
Inter_v7::Inter_v7(GobEngine *vm) : Inter_Playtoons(vm) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void Inter_v7::setupOpcodesDraw() {
|
|
|
|
Inter_Playtoons::setupOpcodesDraw();
|
|
|
|
|
2011-01-25 01:28:31 +00:00
|
|
|
OPCODEDRAW(0x0C, o7_draw0x0C);
|
2011-01-25 11:01:51 +00:00
|
|
|
OPCODEDRAW(0x0D, o7_loadCursor);
|
2011-01-25 02:50:56 +00:00
|
|
|
OPCODEDRAW(0x44, o7_displayWarning);
|
2011-01-25 00:50:26 +00:00
|
|
|
OPCODEDRAW(0x45, o7_draw0x45);
|
2011-01-25 12:13:42 +00:00
|
|
|
OPCODEDRAW(0x57, o7_intToString);
|
2011-01-25 00:50:26 +00:00
|
|
|
OPCODEDRAW(0x89, o7_draw0x89);
|
2011-01-25 13:00:58 +00:00
|
|
|
OPCODEDRAW(0x8A, o7_findFile);
|
2011-01-25 02:50:26 +00:00
|
|
|
OPCODEDRAW(0x8C, o7_getSystemProperty);
|
2011-01-25 02:51:51 +00:00
|
|
|
OPCODEDRAW(0x90, o7_loadLBM);
|
2011-01-25 00:50:26 +00:00
|
|
|
OPCODEDRAW(0x93, o7_draw0x93);
|
2011-01-25 03:44:07 +00:00
|
|
|
OPCODEDRAW(0xA1, o7_getINIValue);
|
2011-01-25 14:20:19 +00:00
|
|
|
OPCODEDRAW(0xA2, o7_setINIValue);
|
2011-01-25 00:50:26 +00:00
|
|
|
OPCODEDRAW(0xA4, o7_draw0xA4);
|
2011-01-25 02:51:26 +00:00
|
|
|
OPCODEDRAW(0xC4, o7_opendBase);
|
2011-01-25 01:28:31 +00:00
|
|
|
OPCODEDRAW(0xC5, o7_draw0xC5);
|
2011-01-25 00:50:26 +00:00
|
|
|
OPCODEDRAW(0xC6, o7_draw0xC6);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Inter_v7::setupOpcodesFunc() {
|
|
|
|
Inter_Playtoons::setupOpcodesFunc();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Inter_v7::setupOpcodesGob() {
|
|
|
|
Inter_Playtoons::setupOpcodesGob();
|
2011-01-25 03:44:34 +00:00
|
|
|
|
|
|
|
OPCODEGOB(420, o7_oemToANSI);
|
2011-01-25 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 01:28:31 +00:00
|
|
|
void Inter_v7::o7_draw0x0C() {
|
|
|
|
WRITE_VAR(17, 0);
|
|
|
|
}
|
|
|
|
|
2011-01-25 11:01:51 +00:00
|
|
|
void Inter_v7::o7_loadCursor() {
|
|
|
|
int16 cursorIndex = _vm->_game->_script->readValExpr();
|
2011-01-25 00:50:26 +00:00
|
|
|
|
2011-01-25 11:01:51 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String cursorFile = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
|
2011-01-25 11:01:51 +00:00
|
|
|
warning("Addy Stub: Load cursor \"%s\" to %d", cursorFile.c_str(), cursorIndex);
|
2011-01-25 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 02:50:56 +00:00
|
|
|
void Inter_v7::o7_displayWarning() {
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 02:50:56 +00:00
|
|
|
Common::String caption = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 02:50:56 +00:00
|
|
|
Common::String text = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 02:50:56 +00:00
|
|
|
Common::String source = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 02:50:56 +00:00
|
|
|
Common::String msg = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 02:50:56 +00:00
|
|
|
Common::String param = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
|
2011-01-25 02:50:56 +00:00
|
|
|
warning("%s: %s (%s)", source.c_str(), msg.c_str(), param.c_str());
|
2011-01-25 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Inter_v7::o7_draw0x45() {
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str0 = _vm->_game->_script->getResultStr();
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str1 = _vm->_game->_script->getResultStr();
|
|
|
|
|
|
|
|
warning("Addy Stub Draw 0x45: \"%s\", \"%s\"", str0.c_str(), str1.c_str());
|
|
|
|
}
|
|
|
|
|
2011-01-25 12:13:42 +00:00
|
|
|
void Inter_v7::o7_intToString() {
|
|
|
|
uint16 valueIndex = _vm->_game->_script->readVarIndex();
|
|
|
|
uint16 destIndex = _vm->_game->_script->readVarIndex();
|
2011-01-25 00:50:26 +00:00
|
|
|
|
2011-01-25 12:13:42 +00:00
|
|
|
sprintf(GET_VARO_STR(destIndex), "%d", READ_VARO_UINT32(valueIndex));
|
2011-01-25 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Inter_v7::o7_draw0x89() {
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str0 = _vm->_game->_script->getResultStr();
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str1 = _vm->_game->_script->getResultStr();
|
|
|
|
|
|
|
|
int16 index0 = _vm->_game->_script->readVarIndex();
|
|
|
|
|
|
|
|
warning("Addy Stub Draw 0x89: \"%s\", \"%s\", %d", str0.c_str(), str1.c_str(), index0);
|
|
|
|
}
|
|
|
|
|
2011-01-25 13:00:58 +00:00
|
|
|
void Inter_v7::o7_findFile() {
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 13:00:58 +00:00
|
|
|
const char *file = _vm->_game->_script->getResultStr();
|
|
|
|
uint16 pathIndex = _vm->_game->_script->readVarIndex();
|
2011-01-25 00:50:26 +00:00
|
|
|
|
2011-01-25 13:00:58 +00:00
|
|
|
if (!strncmp(file, "<ME>", 4))
|
|
|
|
file += 4;
|
|
|
|
if (!strncmp(file, "<ALLCD>", 7))
|
|
|
|
file += 7;
|
|
|
|
|
|
|
|
Common::ArchiveMemberList files;
|
|
|
|
|
|
|
|
SearchMan.listMatchingMembers(files, file);
|
|
|
|
|
|
|
|
if (files.empty()) {
|
|
|
|
GET_VARO_STR(pathIndex)[0] = '\0';
|
|
|
|
storeValue(0);
|
|
|
|
return;
|
|
|
|
}
|
2011-01-25 00:50:26 +00:00
|
|
|
|
2011-01-25 13:00:58 +00:00
|
|
|
strcpy(GET_VARO_STR(pathIndex), files.front()->getName().c_str());
|
|
|
|
storeValue(1);
|
2011-01-25 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 02:50:26 +00:00
|
|
|
void Inter_v7::o7_getSystemProperty() {
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
|
2011-01-25 02:50:26 +00:00
|
|
|
if (!scumm_stricmp(_vm->_game->_script->getResultStr(), "TotalPhys")) {
|
|
|
|
// HACK
|
|
|
|
storeValue(1000000);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!scumm_stricmp(_vm->_game->_script->getResultStr(), "AvailPhys")) {
|
|
|
|
// HACK
|
|
|
|
storeValue(1000000);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!scumm_stricmp(_vm->_game->_script->getResultStr(), "TimeGMT")) {
|
|
|
|
renewTimeInVars();
|
|
|
|
storeValue(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
warning("Inter_v7::o7_getSystemProperty(): Unknown property \"%s\"",
|
|
|
|
_vm->_game->_script->getResultStr());
|
|
|
|
storeValue(0);
|
2011-01-25 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 02:51:51 +00:00
|
|
|
void Inter_v7::o7_loadLBM() {
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 02:51:51 +00:00
|
|
|
Common::String file = _vm->_game->_script->getResultStr();
|
|
|
|
if (!file.contains('.'))
|
|
|
|
file += ".LBM";
|
|
|
|
|
|
|
|
int16 spriteIndex = _vm->_game->_script->readValExpr();
|
|
|
|
int16 left = _vm->_game->_script->readValExpr();
|
|
|
|
int16 top = _vm->_game->_script->readValExpr();
|
|
|
|
int16 width = _vm->_game->_script->readValExpr();
|
|
|
|
int16 height = _vm->_game->_script->readValExpr();
|
|
|
|
int16 x = _vm->_game->_script->readValExpr();
|
|
|
|
int16 y = _vm->_game->_script->readValExpr();
|
|
|
|
int16 transp = _vm->_game->_script->readValExpr();
|
|
|
|
|
|
|
|
warning("Addy Stub: Load LBM \"%s\", sprite %d, %dx%d+%d+%d @ %d+%d (%d)",
|
|
|
|
file.c_str(), spriteIndex, width, height, left, top, x, y, transp);
|
2011-01-25 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Inter_v7::o7_draw0x93() {
|
|
|
|
uint32 expr0 = _vm->_game->_script->readValExpr();
|
|
|
|
|
|
|
|
warning("Addy Stub Draw 0x93: %d", expr0);
|
|
|
|
}
|
|
|
|
|
2011-01-25 03:44:07 +00:00
|
|
|
void Inter_v7::o7_getINIValue() {
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 14:20:19 +00:00
|
|
|
|
|
|
|
Common::String file;
|
|
|
|
if (!strncmp(_vm->_game->_script->getResultStr(), "<ME>", 4))
|
|
|
|
file = _vm->_game->_script->getResultStr() + 4;
|
|
|
|
else if (!strncmp(_vm->_game->_script->getResultStr(), "<ALLCD>", 7))
|
|
|
|
file = _vm->_game->_script->getResultStr() + 7;
|
|
|
|
else
|
|
|
|
file = _vm->_game->_script->getResultStr();
|
|
|
|
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 03:44:07 +00:00
|
|
|
Common::String section = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 03:44:07 +00:00
|
|
|
Common::String key = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 03:44:07 +00:00
|
|
|
Common::String def = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
|
2011-01-25 14:20:19 +00:00
|
|
|
Common::String value;
|
|
|
|
_inis.getValue(value, file, section, key, def);
|
2011-01-25 00:50:26 +00:00
|
|
|
|
2011-01-25 14:20:19 +00:00
|
|
|
storeString(value.c_str());
|
2011-01-25 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 14:20:19 +00:00
|
|
|
void Inter_v7::o7_setINIValue() {
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 14:20:19 +00:00
|
|
|
|
|
|
|
Common::String file;
|
|
|
|
if (!strncmp(_vm->_game->_script->getResultStr(), "<ME>", 4))
|
|
|
|
file = _vm->_game->_script->getResultStr() + 4;
|
|
|
|
else if (!strncmp(_vm->_game->_script->getResultStr(), "<ALLCD>", 7))
|
|
|
|
file = _vm->_game->_script->getResultStr() + 7;
|
|
|
|
else
|
|
|
|
file = _vm->_game->_script->getResultStr();
|
|
|
|
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 14:20:19 +00:00
|
|
|
Common::String section = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 14:20:19 +00:00
|
|
|
Common::String key = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
2011-01-25 14:20:19 +00:00
|
|
|
Common::String value = _vm->_game->_script->getResultStr();
|
2011-01-25 00:50:26 +00:00
|
|
|
|
2011-01-25 14:20:19 +00:00
|
|
|
_inis.setValue(file, section, key, value);
|
2011-01-25 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Inter_v7::o7_draw0xA4() {
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str0 = _vm->_game->_script->getResultStr();
|
|
|
|
|
|
|
|
int16 expr0 = _vm->_game->_script->readValExpr();
|
|
|
|
int16 expr1 = _vm->_game->_script->readValExpr();
|
|
|
|
|
|
|
|
warning("Addy Stub Draw 0xA4: \"%s\", %d, %d", str0.c_str(), expr0, expr1);
|
|
|
|
}
|
|
|
|
|
2011-01-25 02:51:26 +00:00
|
|
|
void Inter_v7::o7_opendBase() {
|
2011-01-25 00:50:26 +00:00
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str0 = _vm->_game->_script->getResultStr();
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str1 = _vm->_game->_script->getResultStr();
|
|
|
|
|
2011-01-25 02:51:26 +00:00
|
|
|
warning("Addy Stub: Open dBase file \"%s.dbf\" (%s)", str0.c_str(), str1.c_str());
|
2011-01-25 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 01:28:31 +00:00
|
|
|
void Inter_v7::o7_draw0xC5() {
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str0 = _vm->_game->_script->getResultStr();
|
|
|
|
|
|
|
|
warning("Addy Stub Draw 0xC5: \"%s\"", str0.c_str());
|
|
|
|
}
|
|
|
|
|
2011-01-25 00:50:26 +00:00
|
|
|
void Inter_v7::o7_draw0xC6() {
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str0 = _vm->_game->_script->getResultStr();
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str1 = _vm->_game->_script->getResultStr();
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str2 = _vm->_game->_script->getResultStr();
|
|
|
|
_vm->_game->_script->evalExpr(0);
|
|
|
|
Common::String str3 = _vm->_game->_script->getResultStr();
|
|
|
|
|
|
|
|
int16 index0 = _vm->_game->_script->readVarIndex();
|
|
|
|
|
|
|
|
warning("Addy Stub Draw 0xC6: \"%s\", \"%s\", \"%s\", \"%s\", %d",
|
|
|
|
str0.c_str(), str1.c_str(), str2.c_str(), str3.c_str(), index0);
|
|
|
|
}
|
|
|
|
|
2011-01-25 14:20:19 +00:00
|
|
|
void Inter_v7::o7_oemToANSI(OpGobParams ¶ms) {
|
|
|
|
_vm->_game->_script->skip(2);
|
|
|
|
}
|
|
|
|
|
2011-01-25 02:50:26 +00:00
|
|
|
void Inter_v7::storeValue(uint16 index, uint16 type, uint32 value) {
|
|
|
|
switch (type) {
|
|
|
|
case OP_ARRAY_INT8:
|
|
|
|
case TYPE_VAR_INT8:
|
|
|
|
WRITE_VARO_UINT8(index, value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TYPE_VAR_INT16:
|
|
|
|
case TYPE_VAR_INT32_AS_INT16:
|
|
|
|
case TYPE_ARRAY_INT16:
|
|
|
|
WRITE_VARO_UINT16(index, value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
WRITE_VARO_UINT32(index, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Inter_v7::storeValue(uint32 value) {
|
|
|
|
uint16 type;
|
|
|
|
uint16 index = _vm->_game->_script->readVarIndex(0, &type);
|
|
|
|
|
|
|
|
storeValue(index, type, value);
|
|
|
|
}
|
|
|
|
|
2011-01-25 14:20:19 +00:00
|
|
|
void Inter_v7::storeString(uint16 index, uint16 type, const char *value) {
|
|
|
|
if (type == TYPE_VAR_STR) {
|
|
|
|
char *str = GET_VARO_STR(index);
|
|
|
|
|
|
|
|
strncpy(str, value, _vm->_global->_inter_animDataSize);
|
|
|
|
str[_vm->_global->_inter_animDataSize - 1] = '\0';
|
|
|
|
|
|
|
|
} else if (type == TYPE_IMM_INT8) {
|
|
|
|
|
|
|
|
strcpy(GET_VARO_STR(index), value);
|
|
|
|
|
|
|
|
} else if (type == TYPE_VAR_INT32) {
|
|
|
|
|
|
|
|
WRITE_VARO_UINT32(index, atoi(value));
|
|
|
|
|
|
|
|
} else if (type == TYPE_VAR_INT16) {
|
|
|
|
|
|
|
|
WRITE_VARO_UINT16(index, atoi(value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Inter_v7::storeString(const char *value) {
|
|
|
|
uint16 type;
|
|
|
|
int16 varIndex = _vm->_game->_script->readVarIndex(0, &type);
|
|
|
|
|
|
|
|
storeString(varIndex, type, value);
|
2011-01-25 03:44:34 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 00:50:26 +00:00
|
|
|
} // End of namespace Gob
|