diff options
author | Ľubomír Remák | 2018-07-21 22:42:09 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-08-25 23:12:01 +0200 |
commit | 32df911b4d29342552556bc22dda7f2e13968d0d (patch) | |
tree | 90fe8ed2bfeb9304d966dbdf6c267e045ad56777 /engines/mutationofjb | |
parent | 3306cbfeaa2f1c6fd471daaee054290df7e44280 (diff) | |
download | scummvm-rg350-32df911b4d29342552556bc22dda7f2e13968d0d.tar.gz scummvm-rg350-32df911b4d29342552556bc22dda7f2e13968d0d.tar.bz2 scummvm-rg350-32df911b4d29342552556bc22dda7f2e13968d0d.zip |
MUTATIONOFJB: Implement SETCOL command.
Diffstat (limited to 'engines/mutationofjb')
-rw-r--r-- | engines/mutationofjb/commands/setcolorcommand.cpp | 60 | ||||
-rw-r--r-- | engines/mutationofjb/commands/setcolorcommand.h | 51 | ||||
-rw-r--r-- | engines/mutationofjb/game.cpp | 4 | ||||
-rw-r--r-- | engines/mutationofjb/module.mk | 1 | ||||
-rw-r--r-- | engines/mutationofjb/script.cpp | 2 |
5 files changed, 118 insertions, 0 deletions
diff --git a/engines/mutationofjb/commands/setcolorcommand.cpp b/engines/mutationofjb/commands/setcolorcommand.cpp new file mode 100644 index 0000000000..dbcb2a8ae0 --- /dev/null +++ b/engines/mutationofjb/commands/setcolorcommand.cpp @@ -0,0 +1,60 @@ +/* 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 "mutationofjb/commands/setcolorcommand.h" + +#include "mutationofjb/game.h" +#include "mutationofjb/gamedata.h" +#include "mutationofjb/script.h" + +#include "common/str.h" + +/** @file + * "SETCOL " <colorString> + * + * Sets subtitle color used by SayCommand. + */ + +namespace MutationOfJB { + +bool SetColorCommandParser::parse(const Common::String &line, ScriptParseContext &, Command *&command) { + if (line.size() < 8 || !line.hasPrefix("SETCOL")) { + return false; + } + + const char *const colorStr = line.c_str() + 7; + const uint8 color = Game::colorFromString(colorStr); + + command = new SetColorCommand(color); + return true; +} + +Command::ExecuteResult SetColorCommand::execute(ScriptExecutionContext &scriptExecCtx) { + scriptExecCtx.getGameData()._color = _color; + return Finished; +} + +Common::String SetColorCommand::debugString() const { + return Common::String::format("SETCOL %u", _color); +} + +} diff --git a/engines/mutationofjb/commands/setcolorcommand.h b/engines/mutationofjb/commands/setcolorcommand.h new file mode 100644 index 0000000000..ace36ff3ec --- /dev/null +++ b/engines/mutationofjb/commands/setcolorcommand.h @@ -0,0 +1,51 @@ +/* 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. + * + */ + +#ifndef MUTATIONOFJB_SETCOLORCOMMAND_H +#define MUTATIONOFJB_SETCOLORCOMMAND_H + +#include "mutationofjb/commands/seqcommand.h" + +#include "common/scummsys.h" + +namespace MutationOfJB { + +class SetColorCommandParser : public SeqCommandParser { +public: + virtual bool parse(const Common::String &line, ScriptParseContext &parseCtx, Command *&command) override; +}; + + +class SetColorCommand : public SeqCommand { +public: + SetColorCommand(uint8 color) : _color(color) {} + + virtual Command::ExecuteResult execute(ScriptExecutionContext &scriptExecCtx) override; + virtual Common::String debugString() const override; + +private: + uint8 _color; +}; + +} + +#endif diff --git a/engines/mutationofjb/game.cpp b/engines/mutationofjb/game.cpp index 787bb7b121..7b500d38ec 100644 --- a/engines/mutationofjb/game.cpp +++ b/engines/mutationofjb/game.cpp @@ -228,6 +228,10 @@ uint8 Game::colorFromString(const char *colorStr) { } } + if (*colorStr == 'n') { + return static_cast<uint8>(atoi(colorStr + 1)); + } + warning(_("Color not found")); return 0x00; } diff --git a/engines/mutationofjb/module.mk b/engines/mutationofjb/module.mk index 60d450e3e7..465f228a43 100644 --- a/engines/mutationofjb/module.mk +++ b/engines/mutationofjb/module.mk @@ -20,6 +20,7 @@ MODULE_OBJS := \ commands/renamecommand.o \ commands/saycommand.o \ commands/seqcommand.o \ + commands/setcolorcommand.o \ commands/talkcommand.o \ commands/randomcommand.o \ tasks/conversationtask.o \ diff --git a/engines/mutationofjb/script.cpp b/engines/mutationofjb/script.cpp index 069545cd55..3e93c47137 100644 --- a/engines/mutationofjb/script.cpp +++ b/engines/mutationofjb/script.cpp @@ -46,6 +46,7 @@ #include "mutationofjb/commands/definestructcommand.h" #include "mutationofjb/commands/talkcommand.h" #include "mutationofjb/commands/randomcommand.h" +#include "mutationofjb/commands/setcolorcommand.h" #include "mutationofjb/game.h" namespace MutationOfJB { @@ -74,6 +75,7 @@ static CommandParser **getParsers() { new LabelCommandParser, new RandomCommandParser, new RandomBlockStartParser, + new SetColorCommandParser, nullptr }; |