mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-11 05:07:00 -04:00
0caaf01a78
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@61 0fc631ac-6414-0410-93d0-97cfa31319b6
69 lines
2.2 KiB
C++
69 lines
2.2 KiB
C++
//+----------------------------------------------------------------------------+
|
|
//| Description: Magic Set Editor - Program to make Magic (tm) cards |
|
|
//| Copyright: (C) 2001 - 2006 Twan van Laarhoven |
|
|
//| License: GNU General Public License 2 or later (see file COPYING) |
|
|
//+----------------------------------------------------------------------------+
|
|
|
|
// ----------------------------------------------------------------------------- : Includes
|
|
|
|
#include <script/scriptable.hpp>
|
|
#include <script/context.hpp>
|
|
#include <script/parser.hpp>
|
|
#include <script/script.hpp>
|
|
#include <script/value.hpp>
|
|
|
|
// ----------------------------------------------------------------------------- : Store
|
|
|
|
void store(const ScriptValueP& val, String& var) { var = static_cast<String>(*val); }
|
|
void store(const ScriptValueP& val, int& var) { var = *val; }
|
|
void store(const ScriptValueP& val, double& var) { var = *val; }
|
|
void store(const ScriptValueP& val, bool& var) { var = static_cast<int>(*val); }
|
|
void store(const ScriptValueP& val, Defaultable<String>& var) { var.assign(*val); }
|
|
|
|
// ----------------------------------------------------------------------------- : OptionalScript
|
|
|
|
OptionalScript::~OptionalScript() {}
|
|
|
|
ScriptValueP OptionalScript::invoke(Context& ctx) const {
|
|
if (script) {
|
|
return ctx.eval(*script);
|
|
} else {
|
|
return script_nil;
|
|
}
|
|
}
|
|
|
|
void OptionalScript::parse(Reader& reader) {
|
|
try {
|
|
script = ::parse(unparsed);
|
|
} catch (const ParseError& e) {
|
|
reader.warning(e.what());
|
|
}
|
|
}
|
|
|
|
void OptionalScript::initDependencies(Context& ctx, const Dependency& dep) const {
|
|
if (script) {
|
|
ctx.dependencies(dep, *script);
|
|
}
|
|
}
|
|
|
|
|
|
// custom reflection, different for each type
|
|
|
|
template <> void Reader::handle(OptionalScript& os) {
|
|
handle(os.unparsed);
|
|
os.parse(*this);
|
|
}
|
|
|
|
template <> void Writer::handle(const OptionalScript& os) {
|
|
handle(os.unparsed);
|
|
}
|
|
|
|
template <> void GetDefaultMember::handle(const OptionalScript& os) {
|
|
// reflect as the script itself
|
|
if (os.script) {
|
|
handle(os.script);
|
|
} else {
|
|
handle(script_nil);
|
|
}
|
|
}
|