2018-02-22 23:47:16 +01: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script.h"
|
|
|
|
|
|
|
|
#include "common/hashmap.h"
|
|
|
|
#include "common/hash-str.h"
|
|
|
|
#include "common/stream.h"
|
2018-02-25 04:14:32 +01:00
|
|
|
#include "common/debug.h"
|
2018-02-22 23:47:16 +01:00
|
|
|
#include "mutationofjb/commands/command.h"
|
2018-02-25 04:14:32 +01:00
|
|
|
#include "mutationofjb/commands/ifcommand.h"
|
2018-03-11 00:46:44 +01:00
|
|
|
#include "mutationofjb/commands/ifitemcommand.h"
|
2018-03-11 20:12:57 +01:00
|
|
|
#include "mutationofjb/commands/ifpiggycommand.h"
|
2018-02-25 04:14:32 +01:00
|
|
|
#include "mutationofjb/commands/endblockcommand.h"
|
2018-02-26 23:52:13 +01:00
|
|
|
#include "mutationofjb/commands/changecommand.h"
|
2018-03-06 22:48:54 +01:00
|
|
|
#include "mutationofjb/commands/saycommand.h"
|
2018-03-08 23:05:44 +01:00
|
|
|
#include "mutationofjb/commands/additemcommand.h"
|
|
|
|
#include "mutationofjb/commands/removeitemcommand.h"
|
|
|
|
#include "mutationofjb/commands/removeallitemscommand.h"
|
2018-02-22 23:47:16 +01:00
|
|
|
|
|
|
|
namespace MutationOfJB {
|
|
|
|
|
2018-03-09 22:42:20 +01:00
|
|
|
static CommandParser **getParsers() {
|
|
|
|
static CommandParser *parsers[] = {
|
2018-03-11 20:12:57 +01:00
|
|
|
new IfPiggyCommandParser,
|
2018-03-11 00:46:44 +01:00
|
|
|
new IfItemCommandParser,
|
2018-02-25 04:14:32 +01:00
|
|
|
new IfCommandParser,
|
|
|
|
new EndBlockCommandParser,
|
2018-02-26 23:52:13 +01:00
|
|
|
new ChangeDoorCommandParser,
|
|
|
|
new ChangeObjectCommandParser,
|
|
|
|
new ChangeStaticCommandParser,
|
2018-03-01 23:35:24 +01:00
|
|
|
new ChangeSceneCommandParser,
|
2018-03-06 22:48:54 +01:00
|
|
|
new SayCommandParser,
|
2018-03-08 23:05:44 +01:00
|
|
|
new AddItemCommandParser,
|
|
|
|
new RemoveItemCommandParser,
|
|
|
|
new RemoveAllItemsCommandParser,
|
2018-02-22 23:47:16 +01:00
|
|
|
nullptr
|
|
|
|
};
|
|
|
|
|
2018-02-25 04:14:32 +01:00
|
|
|
return parsers;
|
2018-02-22 23:47:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-25 04:14:32 +01:00
|
|
|
ScriptParseContext::ScriptParseContext(Common::SeekableReadStream &stream) :
|
|
|
|
_stream(stream),
|
|
|
|
_currentCommand(nullptr),
|
|
|
|
_lastCommand(nullptr)
|
|
|
|
{}
|
2018-02-22 23:47:16 +01:00
|
|
|
|
|
|
|
bool ScriptParseContext::readLine(Common::String &line) {
|
|
|
|
do {
|
|
|
|
Common::String str = _stream.readLine();
|
2018-02-25 04:14:32 +01:00
|
|
|
if (str.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (str[0] != '.') {
|
2018-02-22 23:47:16 +01:00
|
|
|
line = str;
|
|
|
|
if (line[0] == '*') {
|
|
|
|
line.deleteChar(0);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2018-03-08 21:25:55 +01:00
|
|
|
} while(!_stream.eos());
|
2018-02-22 23:47:16 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptParseContext::addConditionalCommand(ConditionalCommand *command, char tag) {
|
|
|
|
ConditionalCommandInfo cmi = {command, tag};
|
|
|
|
_pendingCondCommands.push_back(cmi);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Script::loadFromStream(Common::SeekableReadStream &stream) {
|
2018-02-25 04:14:32 +01:00
|
|
|
destroy();
|
2018-02-22 23:47:16 +01:00
|
|
|
|
2018-02-25 04:14:32 +01:00
|
|
|
CommandParser **parsers = getParsers();
|
2018-02-22 23:47:16 +01:00
|
|
|
|
|
|
|
ScriptParseContext parseCtx(stream);
|
|
|
|
|
2018-02-25 04:14:32 +01:00
|
|
|
Common::String line;
|
|
|
|
|
|
|
|
Command *lastCmd = nullptr;
|
|
|
|
CommandParser *lastParser = nullptr;
|
|
|
|
while (parseCtx.readLine(line)) {
|
|
|
|
Command *currentCmd = nullptr;
|
|
|
|
CommandParser *currentParser = nullptr;
|
|
|
|
|
|
|
|
for (CommandParser **parser = parsers; *parser; ++parser) {
|
|
|
|
if ((*parser)->parse(line, parseCtx, currentCmd)) {
|
|
|
|
currentParser = *parser;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-03-01 23:35:24 +01:00
|
|
|
if (!currentParser) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-25 04:14:32 +01:00
|
|
|
if (lastParser) {
|
2018-03-01 23:35:24 +01:00
|
|
|
lastParser->transition(parseCtx, lastCmd, currentCmd, currentParser);
|
2018-02-25 04:14:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (currentCmd) {
|
|
|
|
_allCommands.push_back(currentCmd);
|
|
|
|
}
|
|
|
|
|
2018-02-26 23:52:13 +01:00
|
|
|
lastCmd = currentCmd;
|
2018-02-25 04:14:32 +01:00
|
|
|
lastParser = currentParser;
|
|
|
|
}
|
|
|
|
|
2018-03-10 22:49:31 +01:00
|
|
|
for (ActionInfos::iterator it = parseCtx._actionInfos.begin(); it != parseCtx._actionInfos.end(); ++it) {
|
|
|
|
if (it->_action == ActionInfo::Look) {
|
|
|
|
_lookActionInfos.push_back(*it);
|
|
|
|
}
|
|
|
|
if (it->_action == ActionInfo::Walk) {
|
|
|
|
_walkActionInfos.push_back(*it);
|
|
|
|
}
|
|
|
|
if (it->_action == ActionInfo::Talk) {
|
|
|
|
_talkActionInfos.push_back(*it);
|
|
|
|
}
|
|
|
|
if (it->_action == ActionInfo::Use) {
|
|
|
|
_useActionInfos.push_back(*it);
|
|
|
|
}
|
|
|
|
}
|
2018-03-01 23:35:24 +01:00
|
|
|
|
2018-02-22 23:47:16 +01:00
|
|
|
Common::HashMap<Common::String, Command *> macros;
|
|
|
|
Common::HashMap<Common::String, Command *> labels;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-25 04:14:32 +01:00
|
|
|
void Script::destroy() {
|
|
|
|
for (Commands::iterator it = _allCommands.begin(); it != _allCommands.end(); ++it) {
|
|
|
|
delete *it;
|
|
|
|
}
|
|
|
|
_allCommands.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
Script::~Script() {
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
2018-03-01 23:35:24 +01:00
|
|
|
const ActionInfos &Script::getLookActionInfos() const {
|
|
|
|
return _lookActionInfos;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ActionInfos &Script::getWalkActionInfos() const {
|
|
|
|
return _walkActionInfos;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ActionInfos &Script::getTalkActionInfos() const {
|
|
|
|
return _talkActionInfos;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ActionInfos &Script::getUseActionInfos() const {
|
|
|
|
return _useActionInfos;
|
|
|
|
}
|
|
|
|
|
2018-02-22 23:47:16 +01:00
|
|
|
}
|