2009-06-08 22:18:52 +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/debug.h"
|
|
|
|
#include "common/stream.h"
|
2009-06-10 02:59:53 +00:00
|
|
|
#include "common/stack.h"
|
2009-07-04 14:48:36 +00:00
|
|
|
#include "common/queue.h"
|
2009-06-08 22:18:52 +00:00
|
|
|
|
|
|
|
#include "draci/draci.h"
|
2009-07-04 14:48:36 +00:00
|
|
|
#include "draci/script.h"
|
|
|
|
#include "draci/game.h"
|
2009-06-08 22:18:52 +00:00
|
|
|
|
|
|
|
namespace Draci {
|
|
|
|
|
2009-06-10 01:35:47 +00:00
|
|
|
// FIXME: Change parameter types to names once I figure out what they are exactly
|
2009-06-12 09:45:12 +00:00
|
|
|
|
2009-07-04 14:48:36 +00:00
|
|
|
void Script::setupCommandList() {
|
|
|
|
/** A table of all the commands the game player uses */
|
|
|
|
static const GPL2Command gplCommands[] = {
|
|
|
|
{ 0, 0, "gplend", 0, { 0 }, NULL },
|
|
|
|
{ 0, 1, "exit", 0, { 0 }, NULL },
|
2009-07-08 00:34:53 +00:00
|
|
|
{ 1, 1, "goto", 1, { 3 }, &Script::c_Goto },
|
|
|
|
{ 2, 1, "Let", 2, { 3, 4 }, &Script::c_Let },
|
|
|
|
{ 3, 1, "if", 2, { 4, 3 }, &Script::c_If },
|
2009-07-06 17:27:12 +00:00
|
|
|
{ 4, 1, "Start", 2, { 3, 2 }, &Script::start },
|
2009-07-04 18:36:45 +00:00
|
|
|
{ 5, 1, "Load", 2, { 3, 2 }, &Script::load },
|
2009-07-29 19:41:30 +00:00
|
|
|
{ 5, 2, "StartPlay", 2, { 3, 2 }, &Script::startPlay },
|
2009-07-04 14:48:36 +00:00
|
|
|
{ 5, 3, "JustTalk", 0, { 0 }, NULL },
|
|
|
|
{ 5, 4, "JustStay", 0, { 0 }, NULL },
|
2009-08-02 05:12:42 +00:00
|
|
|
{ 6, 1, "Talk", 2, { 3, 2 }, &Script::talk },
|
2009-07-25 02:23:00 +00:00
|
|
|
{ 7, 1, "ObjStat", 2, { 3, 3 }, &Script::objStat },
|
|
|
|
{ 7, 2, "ObjStat_On", 2, { 3, 3 }, &Script::objStatOn },
|
2009-08-17 18:50:38 +00:00
|
|
|
{ 8, 1, "IcoStat", 2, { 3, 3 }, &Script::icoStat },
|
2009-08-11 04:03:22 +00:00
|
|
|
{ 9, 1, "Dialogue", 1, { 2 }, &Script::dialogue },
|
|
|
|
{ 9, 2, "ExitDialogue", 0, { 0 }, &Script::exitDialogue },
|
|
|
|
{ 9, 3, "ResetDialogue", 0, { 0 }, &Script::resetDialogue },
|
|
|
|
{ 9, 4, "ResetDialogueFrom", 0, { 0 }, &Script::resetDialogueFrom },
|
|
|
|
{ 9, 5, "ResetBlock", 1, { 3 }, &Script::resetBlock },
|
2009-07-25 04:36:43 +00:00
|
|
|
{ 10, 1, "WalkOn", 3, { 1, 1, 3 }, &Script::walkOn },
|
|
|
|
{ 10, 2, "StayOn", 3, { 1, 1, 3 }, &Script::walkOn }, // HACK: not a proper implementation
|
2009-08-11 04:18:14 +00:00
|
|
|
{ 10, 3, "WalkOnPlay", 3, { 1, 1, 3 }, &Script::walkOnPlay },
|
2009-08-15 02:42:34 +00:00
|
|
|
{ 11, 1, "LoadPalette", 1, { 2 }, &Script::loadPalette },
|
|
|
|
{ 12, 1, "SetPalette", 0, { 0 }, &Script::setPalette },
|
|
|
|
{ 12, 2, "BlackPalette", 0, { 0 }, &Script::blackPalette },
|
2009-07-04 14:48:36 +00:00
|
|
|
{ 13, 1, "FadePalette", 3, { 1, 1, 1 }, NULL },
|
|
|
|
{ 13, 2, "FadePalettePlay", 3, { 1, 1, 1 }, NULL },
|
2009-07-31 04:32:33 +00:00
|
|
|
{ 14, 1, "NewRoom", 2, { 3, 1 }, &Script::newRoom },
|
2009-07-25 03:37:22 +00:00
|
|
|
{ 15, 1, "ExecInit", 1, { 3 }, &Script::execInit },
|
|
|
|
{ 15, 2, "ExecLook", 1, { 3 }, &Script::execLook },
|
|
|
|
{ 15, 3, "ExecUse", 1, { 3 }, &Script::execUse },
|
2009-07-04 14:48:36 +00:00
|
|
|
{ 16, 1, "RepaintInventory", 0, { 0 }, NULL },
|
|
|
|
{ 16, 2, "ExitInventory", 0, { 0 }, NULL },
|
|
|
|
{ 17, 1, "ExitMap", 0, { 0 }, NULL },
|
|
|
|
{ 18, 1, "LoadMusic", 1, { 2 }, NULL },
|
|
|
|
{ 18, 2, "StartMusic", 0, { 0 }, NULL },
|
|
|
|
{ 18, 3, "StopMusic", 0, { 0 }, NULL },
|
|
|
|
{ 18, 4, "FadeOutMusic", 1, { 1 }, NULL },
|
|
|
|
{ 18, 5, "FadeInMusic", 1, { 1 }, NULL },
|
2009-07-24 05:00:53 +00:00
|
|
|
{ 19, 1, "Mark", 0, { 0 }, &Script::mark },
|
|
|
|
{ 19, 2, "Release", 0, { 0 }, &Script::release },
|
2009-07-29 01:02:50 +00:00
|
|
|
{ 20, 1, "Play", 0, { 0 }, &Script::play },
|
2009-08-09 04:12:36 +00:00
|
|
|
{ 21, 1, "LoadMap", 1, { 2 }, &Script::loadMap },
|
|
|
|
{ 21, 2, "RoomMap", 0, { 0 }, &Script::roomMap },
|
2009-07-04 14:48:36 +00:00
|
|
|
{ 22, 1, "DisableQuickHero", 0, { 0 }, NULL },
|
|
|
|
{ 22, 2, "EnableQuickHero", 0, { 0 }, NULL },
|
|
|
|
{ 23, 1, "DisableSpeedText", 0, { 0 }, NULL },
|
|
|
|
{ 23, 2, "EnableSpeedText", 0, { 0 }, NULL },
|
|
|
|
{ 24, 1, "QuitGame", 0, { 0 }, NULL },
|
|
|
|
{ 25, 1, "PushNewRoom", 0, { 0 }, NULL },
|
|
|
|
{ 25, 2, "PopNewRoom", 0, { 0 }, NULL },
|
|
|
|
{ 26, 1, "ShowCheat", 0, { 0 }, NULL },
|
|
|
|
{ 26, 2, "HideCheat", 0, { 0 }, NULL },
|
|
|
|
{ 26, 3, "ClearCheat", 1, { 1 }, NULL },
|
|
|
|
{ 27, 1, "FeedPassword", 3, { 1, 1, 1 }, NULL }
|
|
|
|
};
|
|
|
|
|
2009-07-06 17:25:34 +00:00
|
|
|
/** Operators used by the mathematical evaluator */
|
|
|
|
static const GPL2Operator gplOperators[] = {
|
|
|
|
{"&", &Script::operAnd },
|
|
|
|
{"|", &Script::operOr },
|
|
|
|
{"^", &Script::operXor },
|
|
|
|
{"==", &Script::operEqual },
|
|
|
|
{"!=", &Script::operNotEqual },
|
|
|
|
{"<", &Script::operLess },
|
|
|
|
{">", &Script::operGreater },
|
|
|
|
{"<=", &Script::operLessOrEqual },
|
|
|
|
{">=", &Script::operGreaterOrEqual },
|
|
|
|
{"*", &Script::operMul },
|
|
|
|
{"/", &Script::operDiv },
|
|
|
|
{"%", &Script::operMod },
|
|
|
|
{"+", &Script::operAdd },
|
|
|
|
{"-", &Script::operSub }
|
|
|
|
};
|
|
|
|
|
2009-07-06 18:49:51 +00:00
|
|
|
/** Functions used by the mathematical evaluator */
|
|
|
|
static const GPL2Function gplFunctions[] = {
|
2009-07-07 21:24:39 +00:00
|
|
|
{ "Not", &Script::funcNot },
|
2009-07-06 19:26:53 +00:00
|
|
|
{ "Random", &Script::funcRandom },
|
2009-07-13 19:53:53 +00:00
|
|
|
{ "IsIcoOn", &Script::funcIsIcoOn },
|
2009-08-09 04:12:36 +00:00
|
|
|
{ "IsIcoAct", &Script::funcIsIcoAct },
|
2009-07-13 19:53:53 +00:00
|
|
|
{ "IcoStat", &Script::funcIcoStat },
|
2009-08-09 04:12:36 +00:00
|
|
|
{ "ActIco", &Script::funcActIco },
|
2009-07-13 19:53:53 +00:00
|
|
|
{ "IsObjOn", &Script::funcIsObjOn },
|
|
|
|
{ "IsObjOff", &Script::funcIsObjOff },
|
|
|
|
{ "IsObjAway", &Script::funcIsObjAway },
|
2009-08-09 16:58:04 +00:00
|
|
|
{ "ObjStat", &Script::funcObjStat },
|
2009-08-11 04:03:22 +00:00
|
|
|
{ "LastBlock", &Script::funcLastBlock },
|
|
|
|
{ "AtBegin", &Script::funcAtBegin },
|
|
|
|
{ "BlockVar", &Script::funcBlockVar },
|
|
|
|
{ "HasBeen", &Script::funcHasBeen },
|
|
|
|
{ "MaxLine", &Script::funcMaxLine },
|
2009-07-29 01:02:50 +00:00
|
|
|
{ "ActPhase", &Script::funcActPhase },
|
2009-07-06 18:49:51 +00:00
|
|
|
{ "Cheat", NULL },
|
|
|
|
};
|
|
|
|
|
2009-07-04 14:48:36 +00:00
|
|
|
_commandList = gplCommands;
|
2009-07-06 17:25:34 +00:00
|
|
|
_operatorList = gplOperators;
|
2009-07-06 18:49:51 +00:00
|
|
|
_functionList = gplFunctions;
|
2009-07-04 14:48:36 +00:00
|
|
|
}
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-06-12 09:45:12 +00:00
|
|
|
/** Type of mathematical object */
|
2009-06-10 02:59:53 +00:00
|
|
|
enum mathExpressionObject {
|
|
|
|
kMathEnd,
|
|
|
|
kMathNumber,
|
|
|
|
kMathOperator,
|
|
|
|
kMathFunctionCall,
|
|
|
|
kMathVariable
|
|
|
|
};
|
|
|
|
|
2009-07-06 17:25:34 +00:00
|
|
|
/* GPL operators */
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operAnd(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 & op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operOr(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 | op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operXor(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 ^ op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operEqual(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 == op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operNotEqual(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 != op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operLess(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 < op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operGreater(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 > op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operGreaterOrEqual(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 >= op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operLessOrEqual(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 <= op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operMul(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 * op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operAdd(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 + op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operSub(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 - op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operDiv(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 / op2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::operMod(int op1, int op2) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
return op1 % op2;
|
|
|
|
}
|
|
|
|
|
2009-07-06 19:26:53 +00:00
|
|
|
/* GPL functions */
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcRandom(int n) const {
|
2009-07-06 19:26:53 +00:00
|
|
|
// The function needs to return numbers in the [0..n-1] range so we need to deduce 1
|
|
|
|
// (RandomSource::getRandomNumber returns a number in the range [0..n])
|
|
|
|
|
|
|
|
n -= 1;
|
|
|
|
return _vm->_rnd.getRandomNumber(n);
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcAtBegin(int yesno) const {
|
2009-09-25 07:06:55 +00:00
|
|
|
return _vm->_game->isDialogueBegin() == (bool)yesno;
|
2009-09-30 10:45:14 +00:00
|
|
|
}
|
2009-08-11 04:03:22 +00:00
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcLastBlock(int blockID) const {
|
2009-08-12 07:34:31 +00:00
|
|
|
blockID -= 1;
|
2009-08-11 04:03:22 +00:00
|
|
|
|
2009-08-17 19:37:55 +00:00
|
|
|
return _vm->_game->getDialogueLastBlock() == blockID;
|
2009-08-11 04:03:22 +00:00
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcBlockVar(int blockID) const {
|
2009-08-12 07:34:31 +00:00
|
|
|
blockID -= 1;
|
2009-09-30 10:45:14 +00:00
|
|
|
|
2009-08-17 19:37:55 +00:00
|
|
|
const int currentOffset = _vm->_game->getCurrentDialogueOffset();
|
|
|
|
return _vm->_game->getDialogueVar(currentOffset + blockID);
|
2009-08-11 04:03:22 +00:00
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcHasBeen(int blockID) const {
|
2009-08-12 07:34:31 +00:00
|
|
|
blockID -= 1;
|
|
|
|
|
2009-08-17 19:37:55 +00:00
|
|
|
const int currentOffset = _vm->_game->getCurrentDialogueOffset();
|
|
|
|
return _vm->_game->getDialogueVar(currentOffset + blockID) > 0;
|
2009-08-11 04:03:22 +00:00
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcMaxLine(int lines) const {
|
2009-08-17 19:37:55 +00:00
|
|
|
return _vm->_game->getDialogueLinesNum() < lines;
|
2009-08-11 04:03:22 +00:00
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcNot(int n) const {
|
2009-07-07 21:24:39 +00:00
|
|
|
return !n;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcIsIcoOn(int itemID) const {
|
2009-08-17 18:50:38 +00:00
|
|
|
itemID -= 1;
|
2009-07-13 19:53:53 +00:00
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
return _vm->_game->getItemStatus(itemID) == 1;
|
2009-09-30 16:04:21 +00:00
|
|
|
}
|
2009-07-13 19:53:53 +00:00
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcIcoStat(int itemID) const {
|
2009-08-17 18:50:38 +00:00
|
|
|
itemID -= 1;
|
2009-07-13 19:53:53 +00:00
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
int status = _vm->_game->getItemStatus(itemID);
|
2009-07-13 19:53:53 +00:00
|
|
|
return (status == 1) ? 1 : 2;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcIsIcoAct(int itemID) const {
|
2009-08-17 18:50:38 +00:00
|
|
|
itemID -= 1;
|
2009-08-09 04:12:36 +00:00
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
return _vm->_game->getCurrentItem() == itemID;
|
2009-08-09 04:12:36 +00:00
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcActIco(int itemID) const {
|
2009-08-09 04:12:36 +00:00
|
|
|
// The parameter seems to be an omission in the original player since it's not
|
|
|
|
// used in the implementation of the function. It's possible that the functions were
|
|
|
|
// implemented in such a way that they had to have a single parameter so this is only
|
|
|
|
// passed as a dummy.
|
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
return _vm->_game->getCurrentItem();
|
2009-08-09 04:12:36 +00:00
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcIsObjOn(int objID) const {
|
2009-07-13 19:53:53 +00:00
|
|
|
objID -= 1;
|
|
|
|
|
2009-09-28 04:09:03 +00:00
|
|
|
const GameObject *obj = _vm->_game->getObject(objID);
|
2009-07-13 19:53:53 +00:00
|
|
|
|
|
|
|
return obj->_visible;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcIsObjOff(int objID) const {
|
2009-07-13 19:53:53 +00:00
|
|
|
objID -= 1;
|
|
|
|
|
2009-09-28 04:09:03 +00:00
|
|
|
const GameObject *obj = _vm->_game->getObject(objID);
|
2009-07-13 19:53:53 +00:00
|
|
|
|
|
|
|
// We index locations from 0 (as opposed to the original player where it was from 1)
|
2009-07-25 02:23:00 +00:00
|
|
|
// That's why the "away" location 0 from the data files is converted to -1
|
2009-07-13 19:53:53 +00:00
|
|
|
return !obj->_visible && obj->_location != -1;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcObjStat(int objID) const {
|
2009-08-09 16:58:04 +00:00
|
|
|
objID -= 1;
|
|
|
|
|
2009-09-28 04:09:03 +00:00
|
|
|
const GameObject *obj = _vm->_game->getObject(objID);
|
2009-08-09 16:58:04 +00:00
|
|
|
|
|
|
|
if (obj->_location == _vm->_game->getRoomNum()) {
|
|
|
|
if (obj->_visible) {
|
2009-09-30 10:45:14 +00:00
|
|
|
return 1; // object is ON (in the room and visible)
|
2009-08-09 16:58:04 +00:00
|
|
|
} else {
|
2009-09-30 10:45:14 +00:00
|
|
|
return 2; // object is OFF (in the room, not visible)
|
2009-08-09 16:58:04 +00:00
|
|
|
}
|
|
|
|
} else {
|
2009-09-30 10:45:14 +00:00
|
|
|
return 3; // object is AWAY (not in the room)
|
2009-08-09 16:58:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcIsObjAway(int objID) const {
|
2009-07-13 19:53:53 +00:00
|
|
|
objID -= 1;
|
|
|
|
|
2009-09-28 04:09:03 +00:00
|
|
|
const GameObject *obj = _vm->_game->getObject(objID);
|
2009-07-13 19:53:53 +00:00
|
|
|
|
|
|
|
// see Script::funcIsObjOff
|
|
|
|
return !obj->_visible && obj->_location == -1;
|
|
|
|
}
|
|
|
|
|
2009-09-25 08:13:39 +00:00
|
|
|
int Script::funcActPhase(int objID) const {
|
2009-09-30 10:45:14 +00:00
|
|
|
objID -= 1;
|
2009-07-29 01:02:50 +00:00
|
|
|
|
|
|
|
// Default return value
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-09-28 04:09:03 +00:00
|
|
|
const GameObject *obj = _vm->_game->getObject(objID);
|
2009-07-29 01:02:50 +00:00
|
|
|
|
2009-07-29 20:41:53 +00:00
|
|
|
bool visible = (obj->_location == _vm->_game->getRoomNum() && obj->_visible);
|
2009-07-29 01:02:50 +00:00
|
|
|
|
2009-07-29 20:41:53 +00:00
|
|
|
if (objID == kDragonObject || visible) {
|
2009-07-29 01:02:50 +00:00
|
|
|
int animID = obj->_anims[0];
|
|
|
|
Animation *anim = _vm->_anims->getAnimation(animID);
|
|
|
|
ret = anim->currentFrameNum();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-07-06 17:25:34 +00:00
|
|
|
/* GPL commands */
|
|
|
|
|
2009-07-29 01:02:50 +00:00
|
|
|
void Script::play(Common::Queue<int> ¶ms) {
|
2009-07-29 19:41:30 +00:00
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-08-12 04:18:45 +00:00
|
|
|
_vm->_game->setLoopSubstatus(kSubstatusStrange);
|
2009-09-30 16:04:21 +00:00
|
|
|
_vm->_game->setExitLoop(true);
|
2009-07-29 01:02:50 +00:00
|
|
|
_vm->_game->loop();
|
2009-09-30 16:04:21 +00:00
|
|
|
_vm->_game->setExitLoop(false);
|
2009-08-12 04:18:45 +00:00
|
|
|
_vm->_game->setLoopSubstatus(kSubstatusOrdinary);
|
2009-07-29 01:02:50 +00:00
|
|
|
}
|
|
|
|
|
2009-07-04 18:36:45 +00:00
|
|
|
void Script::load(Common::Queue<int> ¶ms) {
|
2009-07-25 03:28:04 +00:00
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-04 18:36:45 +00:00
|
|
|
int objID = params.pop() - 1;
|
|
|
|
int animID = params.pop() - 1;
|
2009-09-30 16:04:21 +00:00
|
|
|
|
2009-07-29 01:02:50 +00:00
|
|
|
uint i;
|
2009-07-04 18:36:45 +00:00
|
|
|
GameObject *obj = _vm->_game->getObject(objID);
|
2009-07-04 14:48:36 +00:00
|
|
|
|
2009-07-29 01:02:50 +00:00
|
|
|
// If the animation is already loaded, return
|
|
|
|
for(i = 0; i < obj->_anims.size(); ++i) {
|
|
|
|
if (obj->_anims[i] == animID) {
|
2009-09-30 16:04:21 +00:00
|
|
|
return;
|
2009-07-29 01:02:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the animation into memory
|
|
|
|
|
2009-07-17 00:20:57 +00:00
|
|
|
_vm->_game->loadAnimation(animID, obj->_z);
|
2009-09-30 16:04:21 +00:00
|
|
|
|
2009-07-29 01:02:50 +00:00
|
|
|
// We insert the ID of the loaded animation into the object's internal array
|
|
|
|
// of owned animation IDs.
|
|
|
|
// Care must be taken to store them sorted (increasing order) as some things
|
|
|
|
// depend on this.
|
|
|
|
|
|
|
|
for(i = 0; i < obj->_anims.size(); ++i) {
|
2009-09-30 10:45:14 +00:00
|
|
|
if (obj->_anims[i] > animID) {
|
2009-07-29 01:02:50 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
obj->_anims.insert_at(i, animID);
|
2009-07-04 18:36:45 +00:00
|
|
|
}
|
2009-06-12 09:45:12 +00:00
|
|
|
|
2009-07-06 17:27:12 +00:00
|
|
|
void Script::start(Common::Queue<int> ¶ms) {
|
2009-07-25 03:28:04 +00:00
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-08-12 05:20:25 +00:00
|
|
|
int objID = params.pop() - 1;
|
2009-09-30 10:45:14 +00:00
|
|
|
int animID = params.pop() - 1;
|
2009-07-06 17:27:12 +00:00
|
|
|
|
2009-09-28 04:09:03 +00:00
|
|
|
const GameObject *obj = _vm->_game->getObject(objID);
|
2009-07-29 01:02:50 +00:00
|
|
|
|
2009-07-29 19:41:30 +00:00
|
|
|
// Stop all animation that the object owns
|
|
|
|
|
|
|
|
for (uint i = 0; i < obj->_anims.size(); ++i) {
|
|
|
|
_vm->_anims->stop(obj->_anims[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Animation *anim = _vm->_anims->getAnimation(animID);
|
2009-09-28 23:10:08 +00:00
|
|
|
|
|
|
|
if (objID == kDragonObject)
|
|
|
|
_vm->_game->positionAnimAsHero(anim);
|
|
|
|
|
2009-09-30 10:45:14 +00:00
|
|
|
anim->registerCallback(&Animation::stopAnimation);
|
2009-07-29 19:41:30 +00:00
|
|
|
|
2009-07-29 20:41:53 +00:00
|
|
|
bool visible = (obj->_location == _vm->_game->getRoomNum() && obj->_visible);
|
2009-07-29 19:41:30 +00:00
|
|
|
|
2009-07-29 20:41:53 +00:00
|
|
|
if (objID == kDragonObject || visible) {
|
2009-07-29 19:41:30 +00:00
|
|
|
_vm->_anims->play(animID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::startPlay(Common::Queue<int> ¶ms) {
|
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int objID = params.pop() - 1;
|
|
|
|
int animID = params.pop() - 1;
|
|
|
|
|
2009-09-28 04:09:03 +00:00
|
|
|
const GameObject *obj = _vm->_game->getObject(objID);
|
2009-07-29 19:41:30 +00:00
|
|
|
|
|
|
|
// Stop all animation that the object owns
|
|
|
|
|
|
|
|
for (uint i = 0; i < obj->_anims.size(); ++i) {
|
|
|
|
_vm->_anims->stop(obj->_anims[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Animation *anim = _vm->_anims->getAnimation(animID);
|
2009-09-28 23:10:08 +00:00
|
|
|
|
|
|
|
if (objID == kDragonObject)
|
|
|
|
_vm->_game->positionAnimAsHero(anim);
|
|
|
|
|
2009-09-30 10:45:14 +00:00
|
|
|
anim->registerCallback(&Animation::exitGameLoop);
|
2009-07-29 19:41:30 +00:00
|
|
|
|
2009-08-12 04:18:45 +00:00
|
|
|
_vm->_game->setLoopSubstatus(kSubstatusStrange);
|
2009-07-29 20:41:53 +00:00
|
|
|
|
|
|
|
bool visible = (obj->_location == _vm->_game->getRoomNum() && obj->_visible);
|
|
|
|
|
|
|
|
if (objID == kDragonObject || visible) {
|
|
|
|
_vm->_anims->play(animID);
|
2009-09-30 10:45:14 +00:00
|
|
|
}
|
2009-07-29 20:41:53 +00:00
|
|
|
|
2009-07-29 19:41:30 +00:00
|
|
|
_vm->_game->loop();
|
2009-09-30 16:04:21 +00:00
|
|
|
_vm->_game->setExitLoop(false);
|
2009-07-29 19:41:30 +00:00
|
|
|
_vm->_anims->stop(animID);
|
2009-08-12 04:18:45 +00:00
|
|
|
_vm->_game->setLoopSubstatus(kSubstatusOrdinary);
|
2009-07-29 19:41:30 +00:00
|
|
|
|
|
|
|
anim->registerCallback(&Animation::doNothing);
|
2009-07-06 17:27:12 +00:00
|
|
|
}
|
|
|
|
|
2009-07-08 00:34:53 +00:00
|
|
|
void Script::c_If(Common::Queue<int> ¶ms) {
|
|
|
|
int expression = params.pop();
|
|
|
|
int jump = params.pop();
|
|
|
|
|
|
|
|
if (expression)
|
|
|
|
_jump = jump;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::c_Goto(Common::Queue<int> ¶ms) {
|
|
|
|
int jump = params.pop();
|
|
|
|
|
|
|
|
_jump = jump;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::c_Let(Common::Queue<int> ¶ms) {
|
|
|
|
int var = params.pop() - 1;
|
|
|
|
int value = params.pop();
|
|
|
|
|
|
|
|
_vm->_game->setVariable(var, value);
|
|
|
|
}
|
|
|
|
|
2009-07-24 05:00:53 +00:00
|
|
|
void Script::mark(Common::Queue<int> ¶ms) {
|
|
|
|
_vm->_game->setMarkedAnimationIndex(_vm->_anims->getLastIndex());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::release(Common::Queue<int> ¶ms) {
|
|
|
|
int markedIndex = _vm->_game->getMarkedAnimationIndex();
|
|
|
|
|
|
|
|
// Also delete those animations from the game's objects
|
|
|
|
for (uint i = 0; i < _vm->_game->getNumObjects(); ++i) {
|
|
|
|
GameObject *obj = _vm->_game->getObject(i);
|
|
|
|
|
|
|
|
for (uint j = 0; j < obj->_anims.size(); ++j) {
|
|
|
|
Animation *anim;
|
|
|
|
|
|
|
|
anim = _vm->_anims->getAnimation(obj->_anims[j]);
|
|
|
|
if (anim != NULL && anim->getIndex() > markedIndex)
|
|
|
|
obj->_anims.remove_at(j);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete animations which have an index greater than the marked index
|
|
|
|
_vm->_anims->deleteAfterIndex(markedIndex);
|
|
|
|
}
|
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
void Script::icoStat(Common::Queue<int> ¶ms) {
|
|
|
|
int status = params.pop();
|
|
|
|
int itemID = params.pop() - 1;
|
|
|
|
|
|
|
|
_vm->_game->setItemStatus(itemID, status == 1);
|
|
|
|
|
2009-09-30 10:45:14 +00:00
|
|
|
if (_vm->_game->getItemStatus(itemID) == 0) {
|
2009-08-17 18:50:38 +00:00
|
|
|
if (itemID != kNoItem) {
|
|
|
|
_vm->_anims->deleteAnimation(kInventoryItemsID - itemID);
|
|
|
|
}
|
|
|
|
|
2009-09-30 10:45:14 +00:00
|
|
|
_vm->_game->removeItem(itemID);
|
2009-08-17 18:50:38 +00:00
|
|
|
|
|
|
|
if (_vm->_game->getCurrentItem() == itemID) {
|
|
|
|
_vm->_game->setCurrentItem(kNoItem);
|
|
|
|
}
|
2009-09-30 10:45:14 +00:00
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
if (_vm->_mouse->getCursorType() == kNormalCursor) {
|
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
_vm->_mouse->cursorOff();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_vm->_game->getItemStatus(itemID) == 1) {
|
|
|
|
if (itemID != kNoItem) {
|
|
|
|
Animation *itemAnim = _vm->_anims->addItem(kInventoryItemsID - itemID);
|
2009-09-28 03:51:23 +00:00
|
|
|
const BAFile *f = _vm->_itemImagesArchive->getFile(2 * itemID);
|
2009-08-17 18:50:38 +00:00
|
|
|
Sprite *sp = new Sprite(f->_data, f->_length, 0, 0, true);
|
|
|
|
itemAnim->addFrame(sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
_vm->_game->setCurrentItem(itemID);
|
|
|
|
|
|
|
|
_vm->_mouse->loadItemCursor(itemID);
|
|
|
|
|
|
|
|
// TODO: This is probably not needed but I'm leaving it to be sure for now
|
|
|
|
// The original engine needed to turn off the mouse temporarily when changing
|
|
|
|
// the cursor image. I'm just setting it to the final state of that transition.
|
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
_vm->_mouse->cursorOn();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-25 02:23:00 +00:00
|
|
|
void Script::objStatOn(Common::Queue<int> ¶ms) {
|
|
|
|
int objID = params.pop() - 1;
|
|
|
|
int roomID = params.pop() - 1;
|
|
|
|
|
|
|
|
GameObject *obj = _vm->_game->getObject(objID);
|
|
|
|
|
|
|
|
obj->_location = roomID;
|
|
|
|
obj->_visible = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::objStat(Common::Queue<int> ¶ms) {
|
|
|
|
int status = params.pop();
|
|
|
|
int objID = params.pop() - 1;
|
|
|
|
|
|
|
|
GameObject *obj = _vm->_game->getObject(objID);
|
|
|
|
|
|
|
|
if (status == 1) {
|
|
|
|
return;
|
|
|
|
} else if (status == 2) {
|
|
|
|
obj->_visible = false;
|
|
|
|
} else {
|
|
|
|
obj->_visible = false;
|
|
|
|
obj->_location = -1;
|
|
|
|
}
|
2009-09-30 16:04:21 +00:00
|
|
|
|
2009-07-25 02:23:00 +00:00
|
|
|
for (uint i = 0; i < obj->_anims.size(); ++i) {
|
|
|
|
_vm->_anims->stop(obj->_anims[i]);
|
2009-09-30 16:04:21 +00:00
|
|
|
}
|
2009-07-25 02:23:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-25 03:37:22 +00:00
|
|
|
void Script::execInit(Common::Queue<int> ¶ms) {
|
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int objID = params.pop() - 1;
|
|
|
|
|
2009-09-28 04:09:03 +00:00
|
|
|
const GameObject *obj = _vm->_game->getObject(objID);
|
2009-07-25 03:37:22 +00:00
|
|
|
run(obj->_program, obj->_init);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::execLook(Common::Queue<int> ¶ms) {
|
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int objID = params.pop() - 1;
|
|
|
|
|
2009-09-28 04:09:03 +00:00
|
|
|
const GameObject *obj = _vm->_game->getObject(objID);
|
2009-07-25 03:37:22 +00:00
|
|
|
run(obj->_program, obj->_look);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::execUse(Common::Queue<int> ¶ms) {
|
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int objID = params.pop() - 1;
|
|
|
|
|
2009-09-28 04:09:03 +00:00
|
|
|
const GameObject *obj = _vm->_game->getObject(objID);
|
2009-07-25 03:37:22 +00:00
|
|
|
run(obj->_program, obj->_use);
|
|
|
|
}
|
|
|
|
|
2009-07-25 04:36:43 +00:00
|
|
|
void Script::walkOn(Common::Queue<int> ¶ms) {
|
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int x = params.pop();
|
|
|
|
int y = params.pop();
|
|
|
|
params.pop(); // facing direction, not used yet
|
|
|
|
|
|
|
|
_vm->_game->walkHero(x, y);
|
|
|
|
}
|
2009-07-31 04:32:33 +00:00
|
|
|
|
2009-08-11 04:18:14 +00:00
|
|
|
void Script::walkOnPlay(Common::Queue<int> ¶ms) {
|
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int x = params.pop();
|
|
|
|
int y = params.pop();
|
|
|
|
params.pop(); // facing direction, not used yet
|
|
|
|
|
|
|
|
// HACK: This should be an onDest action when hero walking is properly implemented
|
|
|
|
_vm->_game->setExitLoop(true);
|
2009-09-30 16:04:21 +00:00
|
|
|
|
2009-08-11 04:18:14 +00:00
|
|
|
_vm->_game->walkHero(x, y);
|
|
|
|
|
2009-08-12 04:18:45 +00:00
|
|
|
_vm->_game->setLoopSubstatus(kSubstatusStrange);
|
2009-08-11 04:18:14 +00:00
|
|
|
_vm->_game->loop();
|
2009-08-12 04:18:45 +00:00
|
|
|
_vm->_game->setLoopSubstatus(kSubstatusOrdinary);
|
2009-08-11 04:18:14 +00:00
|
|
|
|
|
|
|
_vm->_game->setExitLoop(false);
|
|
|
|
}
|
|
|
|
|
2009-07-31 04:32:33 +00:00
|
|
|
void Script::newRoom(Common::Queue<int> ¶ms) {
|
|
|
|
if (_vm->_game->getLoopStatus() == kStatusInventory) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int room = params.pop() - 1;
|
|
|
|
int gate = params.pop() - 1;
|
|
|
|
|
|
|
|
_vm->_game->setRoomNum(room);
|
|
|
|
_vm->_game->setGateNum(gate);
|
|
|
|
}
|
|
|
|
|
2009-08-02 05:12:42 +00:00
|
|
|
void Script::talk(Common::Queue<int> ¶ms) {
|
|
|
|
int personID = params.pop() - 1;
|
|
|
|
int sentenceID = params.pop() - 1;
|
|
|
|
|
2009-08-04 19:09:41 +00:00
|
|
|
Surface *surface = _vm->_screen->getSurface();
|
|
|
|
|
2009-08-02 05:12:42 +00:00
|
|
|
// Fetch string
|
2009-09-28 03:51:23 +00:00
|
|
|
const BAFile *f = _vm->_stringsArchive->getFile(sentenceID);
|
2009-08-02 05:12:42 +00:00
|
|
|
|
|
|
|
// Fetch frame for the speech text
|
|
|
|
Animation *speechAnim = _vm->_anims->getAnimation(kSpeechText);
|
|
|
|
Text *speechFrame = reinterpret_cast<Text *>(speechAnim->getFrame());
|
|
|
|
|
|
|
|
// Fetch person info
|
2009-09-25 08:13:39 +00:00
|
|
|
const Person *person = _vm->_game->getPerson(personID);
|
2009-08-02 05:12:42 +00:00
|
|
|
|
|
|
|
// Set the string and text colour
|
2009-09-27 20:49:59 +00:00
|
|
|
surface->markDirtyRect(speechFrame->getRect());
|
2009-08-02 05:12:42 +00:00
|
|
|
speechFrame->setText(Common::String((const char *)f->_data+1, f->_length-1));
|
|
|
|
speechFrame->setColour(person->_fontColour);
|
|
|
|
|
2009-08-09 04:12:36 +00:00
|
|
|
// HACK: Some strings in the English data files are too long to fit the screen
|
|
|
|
// This is a temporary resolution.
|
|
|
|
if (speechFrame->getWidth() >= kScreenWidth) {
|
|
|
|
speechFrame->setFont(_vm->_smallFont);
|
|
|
|
} else {
|
2009-09-30 10:45:14 +00:00
|
|
|
speechFrame->setFont(_vm->_bigFont);
|
2009-08-09 04:12:36 +00:00
|
|
|
}
|
|
|
|
|
2009-08-02 05:12:42 +00:00
|
|
|
// Set the loop substatus to an appropriate value
|
2009-08-12 04:18:45 +00:00
|
|
|
_vm->_game->setLoopSubstatus(kSubstatusTalk);
|
2009-08-02 05:12:42 +00:00
|
|
|
|
|
|
|
// Record time
|
|
|
|
_vm->_game->setSpeechTick(_vm->_system->getMillis());
|
|
|
|
|
|
|
|
// TODO: Implement inventory part
|
|
|
|
|
|
|
|
// Set speech text coordinates
|
|
|
|
|
2009-08-04 19:09:41 +00:00
|
|
|
int x = surface->centerOnX(person->_x, speechFrame->getWidth());
|
2009-08-05 00:05:36 +00:00
|
|
|
int y = surface->centerOnY(person->_y, speechFrame->getHeight() * 2);
|
2009-08-02 05:12:42 +00:00
|
|
|
|
2009-08-04 19:09:41 +00:00
|
|
|
speechFrame->setX(x);
|
|
|
|
speechFrame->setY(y);
|
2009-08-02 05:12:42 +00:00
|
|
|
|
2009-08-14 13:17:53 +00:00
|
|
|
// Prevent the loop from exiting early if other things left the loop in the
|
|
|
|
// "exit immediately" state
|
|
|
|
_vm->_game->setExitLoop(false);
|
|
|
|
|
2009-08-02 05:12:42 +00:00
|
|
|
// Call the game loop to enable interactivity until the text expires
|
|
|
|
_vm->_game->loop();
|
|
|
|
|
|
|
|
// Delete the text
|
2009-09-27 20:49:59 +00:00
|
|
|
_vm->_screen->getSurface()->markDirtyRect(speechFrame->getRect());
|
2009-08-02 05:12:42 +00:00
|
|
|
speechFrame->setText("");
|
|
|
|
|
|
|
|
// Revert to "normal" loop status
|
2009-08-12 04:18:45 +00:00
|
|
|
_vm->_game->setLoopSubstatus(kSubstatusOrdinary);
|
2009-08-02 05:12:42 +00:00
|
|
|
_vm->_game->setExitLoop(false);
|
|
|
|
}
|
|
|
|
|
2009-08-11 04:03:22 +00:00
|
|
|
void Script::dialogue(Common::Queue<int> ¶ms) {
|
|
|
|
int dialogueID = params.pop() - 1;
|
|
|
|
|
|
|
|
_vm->_game->dialogueMenu(dialogueID);
|
|
|
|
}
|
|
|
|
|
2009-08-09 04:12:36 +00:00
|
|
|
void Script::loadMap(Common::Queue<int> ¶ms) {
|
|
|
|
int mapID = params.pop() - 1;
|
|
|
|
|
|
|
|
_vm->_game->loadWalkingMap(mapID);
|
|
|
|
}
|
|
|
|
|
2009-08-11 04:03:22 +00:00
|
|
|
void Script::resetDialogue(Common::Queue<int> ¶ms) {
|
2009-08-17 19:37:55 +00:00
|
|
|
const int currentOffset = _vm->_game->getCurrentDialogueOffset();
|
2009-09-30 16:04:21 +00:00
|
|
|
|
2009-08-17 19:37:55 +00:00
|
|
|
for (int i = 0; i < _vm->_game->getDialogueBlockNum(); ++i) {
|
|
|
|
_vm->_game->setDialogueVar(currentOffset + i, 0);
|
2009-08-11 04:03:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::resetDialogueFrom(Common::Queue<int> ¶ms) {
|
2009-08-17 19:37:55 +00:00
|
|
|
const int currentOffset = _vm->_game->getCurrentDialogueOffset();
|
|
|
|
|
|
|
|
for (int i = _vm->_game->getDialogueCurrentBlock(); i < _vm->_game->getDialogueBlockNum(); ++i) {
|
|
|
|
_vm->_game->setDialogueVar(currentOffset + i, 0);
|
2009-08-11 04:03:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::resetBlock(Common::Queue<int> ¶ms) {
|
2009-08-12 07:34:31 +00:00
|
|
|
int blockID = params.pop() - 1;
|
2009-08-11 04:03:22 +00:00
|
|
|
|
2009-08-17 19:37:55 +00:00
|
|
|
const int currentOffset = _vm->_game->getCurrentDialogueOffset();
|
|
|
|
|
|
|
|
_vm->_game->setDialogueVar(currentOffset + blockID, 0);
|
2009-08-11 04:03:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Script::exitDialogue(Common::Queue<int> ¶ms) {
|
2009-08-17 19:37:55 +00:00
|
|
|
_vm->_game->setDialogueExit(true);
|
2009-08-11 04:03:22 +00:00
|
|
|
}
|
|
|
|
|
2009-08-09 04:12:36 +00:00
|
|
|
void Script::roomMap(Common::Queue<int> ¶ms) {
|
|
|
|
// Load the default walking map for the room
|
|
|
|
_vm->_game->loadWalkingMap();
|
|
|
|
}
|
|
|
|
|
2009-08-15 02:42:34 +00:00
|
|
|
void Script::loadPalette(Common::Queue<int> ¶ms) {
|
2009-09-30 10:45:14 +00:00
|
|
|
int palette = params.pop() - 1;
|
2009-08-15 02:42:34 +00:00
|
|
|
|
|
|
|
_vm->_game->schedulePalette(palette);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::blackPalette(Common::Queue<int> ¶ms) {
|
|
|
|
|
|
|
|
_vm->_game->schedulePalette(kBlackPalette);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Script::setPalette(Common::Queue<int> ¶ms) {
|
|
|
|
if (_vm->_game->getScheduledPalette() == -1) {
|
|
|
|
_vm->_screen->setPaletteEmpty();
|
|
|
|
} else {
|
2009-09-30 10:45:14 +00:00
|
|
|
const BAFile *f;
|
2009-08-15 02:42:34 +00:00
|
|
|
f = _vm->_paletteArchive->getFile(_vm->_game->getScheduledPalette());
|
|
|
|
_vm->_screen->setPalette(f->_data, 0, kNumColours);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-06 07:40:14 +00:00
|
|
|
void Script::endCurrentProgram() {
|
|
|
|
_endProgram = true;
|
|
|
|
}
|
2009-08-02 05:12:42 +00:00
|
|
|
|
2009-06-12 09:45:12 +00:00
|
|
|
/**
|
|
|
|
* @brief Evaluates mathematical expressions
|
|
|
|
* @param reader Stream reader set to the beginning of the expression
|
|
|
|
*/
|
2009-09-27 18:11:06 +00:00
|
|
|
int Script::handleMathExpression(Common::MemoryReadStream *reader) const {
|
2009-07-06 17:25:34 +00:00
|
|
|
Common::Stack<int> stk;
|
2009-06-10 02:59:53 +00:00
|
|
|
mathExpressionObject obj;
|
2009-07-06 17:25:34 +00:00
|
|
|
GPL2Operator oper;
|
2009-07-06 18:49:51 +00:00
|
|
|
GPL2Function func;
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
debugC(4, kDraciBytecodeDebugLevel, "\t<MATHEXPR>");
|
2009-08-08 15:55:19 +00:00
|
|
|
|
2009-06-10 02:59:53 +00:00
|
|
|
// Read in initial math object
|
2009-09-27 18:11:06 +00:00
|
|
|
obj = (mathExpressionObject)reader->readSint16LE();
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-07-06 17:25:34 +00:00
|
|
|
int value;
|
2009-07-06 18:49:51 +00:00
|
|
|
int arg1, arg2, res;
|
2009-07-06 17:25:34 +00:00
|
|
|
|
2009-06-08 22:18:52 +00:00
|
|
|
while (1) {
|
2009-06-10 02:59:53 +00:00
|
|
|
if (obj == kMathEnd) {
|
2009-06-12 11:32:44 +00:00
|
|
|
// Check whether the expression was evaluated correctly
|
|
|
|
// The stack should contain only one value after the evaluation
|
|
|
|
// i.e. the result of the expression
|
2009-09-30 10:45:14 +00:00
|
|
|
assert(stk.size() == 1 && "Mathematical expression error");
|
2009-06-10 02:59:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (obj) {
|
|
|
|
|
|
|
|
// If the object type is not known, assume that it's a number
|
|
|
|
default:
|
|
|
|
case kMathNumber:
|
2009-09-27 18:11:06 +00:00
|
|
|
value = reader->readSint16LE();
|
2009-06-10 02:59:53 +00:00
|
|
|
stk.push(value);
|
2009-08-17 18:50:38 +00:00
|
|
|
debugC(4, kDraciBytecodeDebugLevel, "\t\tnumber: %d", value);
|
2009-06-10 02:59:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case kMathOperator:
|
2009-09-27 18:11:06 +00:00
|
|
|
value = reader->readSint16LE();
|
2009-07-06 18:49:51 +00:00
|
|
|
arg2 = stk.pop();
|
2009-08-03 01:06:13 +00:00
|
|
|
arg1 = stk.pop();
|
2009-06-12 11:32:44 +00:00
|
|
|
|
2009-07-06 17:25:34 +00:00
|
|
|
// Fetch operator
|
|
|
|
oper = _operatorList[value-1];
|
2009-06-12 11:32:44 +00:00
|
|
|
|
2009-07-06 17:25:34 +00:00
|
|
|
// Calculate result
|
2009-07-06 18:49:51 +00:00
|
|
|
res = (this->*(oper._handler))(arg1, arg2);
|
2009-09-30 10:45:14 +00:00
|
|
|
|
2009-07-06 17:25:34 +00:00
|
|
|
// Push result
|
|
|
|
stk.push(res);
|
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
debugC(4, kDraciBytecodeDebugLevel, "\t\t%d %s %d (res: %d)",
|
2009-09-28 02:54:38 +00:00
|
|
|
arg1, oper._name, arg2, res);
|
2009-06-10 02:59:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case kMathVariable:
|
2009-09-27 18:11:06 +00:00
|
|
|
value = reader->readSint16LE() - 1;
|
2009-07-07 20:57:14 +00:00
|
|
|
|
2009-08-12 05:20:25 +00:00
|
|
|
stk.push(_vm->_game->getVariable(value));
|
2009-07-07 20:57:14 +00:00
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
debugC(4, kDraciBytecodeDebugLevel, "\t\tvariable: %d (%d)", value,
|
2009-08-12 05:20:25 +00:00
|
|
|
_vm->_game->getVariable(value));
|
2009-06-10 02:59:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case kMathFunctionCall:
|
2009-09-27 18:11:06 +00:00
|
|
|
value = reader->readSint16LE();
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-07-06 18:49:51 +00:00
|
|
|
// Fetch function
|
|
|
|
func = _functionList[value-1];
|
2009-09-30 10:45:14 +00:00
|
|
|
|
|
|
|
// If not yet implemented
|
2009-07-06 18:49:51 +00:00
|
|
|
if (func._handler == NULL) {
|
|
|
|
stk.pop();
|
|
|
|
|
|
|
|
// FIXME: Pushing dummy value for now, but should push return value
|
|
|
|
stk.push(0);
|
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
debugC(4, kDraciBytecodeDebugLevel, "\t\tcall: %s (not implemented)",
|
2009-09-30 10:45:14 +00:00
|
|
|
func._name);
|
2009-07-06 18:49:51 +00:00
|
|
|
} else {
|
|
|
|
arg1 = stk.pop();
|
|
|
|
|
|
|
|
// Calculate result
|
|
|
|
res = (this->*(func._handler))(arg1);
|
2009-07-12 18:55:44 +00:00
|
|
|
|
|
|
|
// Push the result on the evaluation stack
|
|
|
|
stk.push(res);
|
2009-09-30 10:45:14 +00:00
|
|
|
|
2009-08-17 18:50:38 +00:00
|
|
|
debugC(4, kDraciBytecodeDebugLevel, "\t\tcall: %s(%d) (res: %d)",
|
2009-09-30 10:45:14 +00:00
|
|
|
func._name, arg1, res);
|
2009-07-06 18:49:51 +00:00
|
|
|
}
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-06-08 22:18:52 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-09-27 18:11:06 +00:00
|
|
|
obj = (mathExpressionObject) reader->readSint16LE();
|
2009-06-08 22:18:52 +00:00
|
|
|
}
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-07-04 14:48:36 +00:00
|
|
|
return stk.pop();
|
2009-06-08 22:18:52 +00:00
|
|
|
}
|
|
|
|
|
2009-08-08 15:55:19 +00:00
|
|
|
/**
|
2009-09-30 16:04:21 +00:00
|
|
|
* @brief Evaluates a GPL mathematical expression on a given offset and returns
|
2009-08-08 15:55:19 +00:00
|
|
|
* the result (which is normally a boolean-like value)
|
2009-09-30 16:04:21 +00:00
|
|
|
*
|
2009-09-30 10:45:14 +00:00
|
|
|
* @param program A GPL2Program instance of the program containing the expression
|
|
|
|
* @param offset Offset of the expression inside the program (in multiples of 2 bytes)
|
2009-09-30 16:04:21 +00:00
|
|
|
*
|
2009-08-08 15:55:19 +00:00
|
|
|
* @return The result of the expression converted to a bool.
|
|
|
|
*
|
|
|
|
* Reference: the function equivalent to this one is called "Can()" in the original engine.
|
|
|
|
*/
|
2009-09-25 17:33:00 +00:00
|
|
|
bool Script::testExpression(const GPL2Program &program, uint16 offset) const {
|
2009-08-08 15:55:19 +00:00
|
|
|
// Initialize program reader
|
|
|
|
Common::MemoryReadStream reader(program._bytecode, program._length);
|
|
|
|
|
|
|
|
// Offset is given as number of 16-bit integers so we need to convert
|
2009-09-30 16:04:21 +00:00
|
|
|
// it to a number of bytes
|
2009-08-08 15:55:19 +00:00
|
|
|
offset -= 1;
|
|
|
|
offset *= 2;
|
|
|
|
|
|
|
|
// Seek to the expression
|
|
|
|
reader.seek(offset);
|
|
|
|
|
2009-09-30 16:04:21 +00:00
|
|
|
debugC(4, kDraciBytecodeDebugLevel,
|
2009-09-30 10:45:14 +00:00
|
|
|
"Evaluating (standalone) GPL expression at offset %d:", offset);
|
2009-08-08 15:55:19 +00:00
|
|
|
|
2009-09-27 18:11:06 +00:00
|
|
|
return (bool)handleMathExpression(&reader);
|
2009-08-08 15:55:19 +00:00
|
|
|
}
|
|
|
|
|
2009-06-12 09:45:12 +00:00
|
|
|
/**
|
|
|
|
* @brief Find the current command in the internal table
|
|
|
|
*
|
2009-09-30 10:45:14 +00:00
|
|
|
* @param num Command number
|
|
|
|
* @param subnum Command subnumer
|
2009-06-12 09:45:12 +00:00
|
|
|
*
|
|
|
|
* @return NULL if command is not found. Otherwise, a pointer to a GPL2Command
|
|
|
|
* struct representing the command.
|
|
|
|
*/
|
2009-09-25 08:13:39 +00:00
|
|
|
const GPL2Command *Script::findCommand(byte num, byte subnum) const {
|
2009-09-30 10:45:14 +00:00
|
|
|
uint i = 0;
|
2009-06-10 01:35:47 +00:00
|
|
|
while (1) {
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-06-10 01:35:47 +00:00
|
|
|
// Command not found
|
|
|
|
if (i >= kNumCommands) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return found command
|
2009-07-04 14:48:36 +00:00
|
|
|
if (_commandList[i]._number == num &&
|
|
|
|
_commandList[i]._subNumber == subnum) {
|
|
|
|
return &_commandList[i];
|
2009-06-10 01:35:47 +00:00
|
|
|
}
|
2009-06-10 02:59:53 +00:00
|
|
|
|
|
|
|
++i;
|
2009-06-10 01:35:47 +00:00
|
|
|
}
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-06-10 01:35:47 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-06-12 09:45:12 +00:00
|
|
|
/**
|
2009-07-08 00:34:53 +00:00
|
|
|
* @brief GPL2 bytecode interpreter
|
2009-06-28 16:19:10 +00:00
|
|
|
* @param program GPL program in the form of a GPL2Program struct
|
2009-06-28 16:28:16 +00:00
|
|
|
* offset Offset into the program where execution should begin
|
2009-06-12 09:45:12 +00:00
|
|
|
*
|
|
|
|
* GPL2 is short for Game Programming Language 2 which is the script language
|
2009-07-08 00:34:53 +00:00
|
|
|
* used by Draci Historie. This is the interpreter for the language.
|
2009-06-12 09:45:12 +00:00
|
|
|
*
|
|
|
|
* A compiled GPL2 program consists of a stream of bytes representing commands
|
|
|
|
* and their parameters. The syntax is as follows:
|
|
|
|
*
|
|
|
|
* Syntax of a command:
|
2009-09-30 10:45:14 +00:00
|
|
|
* <name of the command> <number> <sub-number> <list of parameters...>
|
2009-06-12 09:45:12 +00:00
|
|
|
*
|
2009-09-30 10:45:14 +00:00
|
|
|
* Syntax of a parameter:
|
|
|
|
* - 1: integer number literally passed to the program
|
|
|
|
* - 2-1: string stored in the reservouir of game strings (i.e. something to be
|
|
|
|
* displayed) and stored as an index in this list
|
|
|
|
* - 2-2: string resolved by the compiler (i.e., a path to another file) and
|
|
|
|
* replaced by an integer index of this entity in the appropriate namespace
|
|
|
|
* (e.g., the index of the palette, location, ...)
|
|
|
|
* - 3-0: relative jump to a label defined in this code. Each label must be
|
|
|
|
* first declared in the beginning of the program.
|
|
|
|
* - 3-1 .. 3-9: index of an entity in several namespaces, defined in file ident
|
|
|
|
* - 4: mathematical expression compiled into a postfix format
|
2009-06-12 09:45:12 +00:00
|
|
|
*
|
2009-09-30 10:45:14 +00:00
|
|
|
* In the compiled program, parameters of type 1..3 are represented by a single
|
|
|
|
* 16-bit integer. The called command knows by its definition what namespace the
|
|
|
|
* value comes from.
|
2009-06-12 09:45:12 +00:00
|
|
|
*/
|
|
|
|
|
2009-09-25 17:33:00 +00:00
|
|
|
int Script::run(const GPL2Program &program, uint16 offset) {
|
2009-07-31 04:32:33 +00:00
|
|
|
int oldJump = _jump;
|
|
|
|
|
2009-07-25 03:41:28 +00:00
|
|
|
// Mark the last animation index before we do anything so a Release command
|
|
|
|
// doesn't unload too many animations if we forget to use a Mark command first
|
|
|
|
_vm->_game->setMarkedAnimationIndex(_vm->_anims->getLastIndex());
|
|
|
|
|
2009-07-04 14:48:36 +00:00
|
|
|
// Stream reader for the whole program
|
2009-06-28 16:19:10 +00:00
|
|
|
Common::MemoryReadStream reader(program._bytecode, program._length);
|
2009-09-30 16:04:21 +00:00
|
|
|
|
2009-07-04 14:48:36 +00:00
|
|
|
// Parameter queue that is passed to each command
|
|
|
|
Common::Queue<int> params;
|
2009-06-08 22:18:52 +00:00
|
|
|
|
2009-06-28 16:28:16 +00:00
|
|
|
// Offset is given as number of 16-bit integers so we need to convert
|
2009-09-30 16:04:21 +00:00
|
|
|
// it to a number of bytes
|
2009-06-28 16:28:16 +00:00
|
|
|
offset -= 1;
|
|
|
|
offset *= 2;
|
|
|
|
|
|
|
|
// Seek to the requested part of the program
|
|
|
|
reader.seek(offset);
|
2009-09-30 10:45:14 +00:00
|
|
|
|
2009-09-30 16:04:21 +00:00
|
|
|
debugC(3, kDraciBytecodeDebugLevel,
|
2009-07-15 19:06:24 +00:00
|
|
|
"Starting GPL program at offset %d (program length: %d)", offset, program._length);
|
|
|
|
|
2009-07-04 14:48:36 +00:00
|
|
|
const GPL2Command *cmd;
|
2009-06-28 16:19:10 +00:00
|
|
|
do {
|
2009-07-06 17:29:44 +00:00
|
|
|
|
2009-07-08 00:34:53 +00:00
|
|
|
// Account for GPL jump that some commands set
|
2009-09-30 10:45:14 +00:00
|
|
|
if (_jump != 0) {
|
2009-09-30 16:04:21 +00:00
|
|
|
debugC(3, kDraciBytecodeDebugLevel,
|
|
|
|
"Jumping from offset %d to %d (%d bytes)",
|
2009-09-30 10:45:14 +00:00
|
|
|
reader.pos(), reader.pos() + _jump, _jump);
|
2009-07-08 06:14:17 +00:00
|
|
|
reader.seek(_jump, SEEK_CUR);
|
2009-07-15 19:06:24 +00:00
|
|
|
}
|
2009-07-08 00:34:53 +00:00
|
|
|
|
|
|
|
// Reset jump
|
|
|
|
_jump = 0;
|
|
|
|
|
2009-07-06 17:29:44 +00:00
|
|
|
// Clear any parameters left on the stack from the previous command
|
|
|
|
// This likely won't be needed once all commands are implemented
|
|
|
|
params.clear();
|
2009-07-06 17:25:34 +00:00
|
|
|
|
2009-06-08 22:18:52 +00:00
|
|
|
// read in command pair
|
|
|
|
uint16 cmdpair = reader.readUint16BE();
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-06-10 01:35:47 +00:00
|
|
|
// extract high byte, i.e. the command number
|
|
|
|
byte num = (cmdpair >> 8) & 0xFF;
|
2009-06-10 02:59:53 +00:00
|
|
|
|
2009-06-10 01:35:47 +00:00
|
|
|
// extract low byte, i.e. the command subnumber
|
|
|
|
byte subnum = cmdpair & 0xFF;
|
2009-06-08 22:18:52 +00:00
|
|
|
|
2009-08-06 07:40:14 +00:00
|
|
|
// This might get set by some GPL commands via Script::endCurrentProgram()
|
|
|
|
// if they need a program to stop midway
|
|
|
|
_endProgram = false;
|
|
|
|
|
2009-06-10 01:35:47 +00:00
|
|
|
if ((cmd = findCommand(num, subnum))) {
|
2009-07-04 14:48:36 +00:00
|
|
|
int tmp;
|
2009-06-10 02:59:53 +00:00
|
|
|
|
|
|
|
// Print command name
|
2009-09-28 02:54:38 +00:00
|
|
|
debugC(1, kDraciBytecodeDebugLevel, "%s", cmd->_name);
|
2009-06-08 22:18:52 +00:00
|
|
|
|
2009-07-04 14:48:36 +00:00
|
|
|
for (int i = 0; i < cmd->_numParams; ++i) {
|
2009-06-10 01:35:47 +00:00
|
|
|
if (cmd->_paramTypes[i] == 4) {
|
2009-09-30 16:04:21 +00:00
|
|
|
debugC(3, kDraciBytecodeDebugLevel,
|
2009-09-30 10:45:14 +00:00
|
|
|
"Evaluating (in-script) GPL expression at offset %d: ", offset);
|
2009-09-27 18:11:06 +00:00
|
|
|
params.push(handleMathExpression(&reader));
|
2009-09-30 10:45:14 +00:00
|
|
|
} else {
|
2009-07-08 00:34:53 +00:00
|
|
|
tmp = reader.readSint16LE();
|
2009-07-04 14:48:36 +00:00
|
|
|
params.push(tmp);
|
2009-07-08 00:34:53 +00:00
|
|
|
debugC(2, kDraciBytecodeDebugLevel, "\t%d", tmp);
|
2009-06-10 01:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
2009-09-30 10:45:14 +00:00
|
|
|
} else {
|
2009-07-08 00:34:53 +00:00
|
|
|
debugC(1, kDraciBytecodeDebugLevel, "Unknown opcode %d, %d",
|
2009-09-30 10:45:14 +00:00
|
|
|
num, subnum);
|
2009-07-31 04:32:33 +00:00
|
|
|
abort();
|
2009-06-08 22:18:52 +00:00
|
|
|
}
|
2009-07-04 14:48:36 +00:00
|
|
|
|
|
|
|
GPLHandler handler = cmd->_handler;
|
|
|
|
|
|
|
|
if (handler != NULL) {
|
|
|
|
// Call the handler for the current command
|
|
|
|
(this->*(cmd->_handler))(params);
|
|
|
|
}
|
|
|
|
|
2009-09-30 10:45:14 +00:00
|
|
|
} while (cmd->_number != 0 && !_endProgram); // 0 = gplend and exit
|
2009-06-08 22:18:52 +00:00
|
|
|
|
2009-08-06 07:40:14 +00:00
|
|
|
_endProgram = false;
|
2009-07-31 04:32:33 +00:00
|
|
|
_jump = oldJump;
|
|
|
|
|
2009-06-08 22:18:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-30 10:45:14 +00:00
|
|
|
} // end of namespace Draci
|
2009-06-08 22:18:52 +00:00
|
|
|
|