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/commands | |
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/commands')
-rw-r--r-- | engines/mutationofjb/commands/setcolorcommand.cpp | 60 | ||||
-rw-r--r-- | engines/mutationofjb/commands/setcolorcommand.h | 51 |
2 files changed, 111 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 |