mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
441 lines
16 KiB
C++
441 lines
16 KiB
C++
//+----------------------------------------------------------------------------+
|
|
//| Description: Magic Set Editor - Program to make Magic (tm) cards |
|
|
//| Copyright: (C) Twan van Laarhoven and the other MSE developers |
|
|
//| License: GNU General Public License 2 or later (see file COPYING) |
|
|
//+----------------------------------------------------------------------------+
|
|
|
|
#pragma once
|
|
|
|
// ----------------------------------------------------------------------------- : Includes
|
|
|
|
#include <script/value.hpp>
|
|
#include <script/script.hpp>
|
|
#include <script/profiler.hpp>
|
|
#include <util/reflect.hpp>
|
|
#include <util/error.hpp>
|
|
#include <util/io/get_member.hpp>
|
|
#include <gfx/generated_image.hpp> // we need the dtor of GeneratedImage
|
|
#if USE_SCRIPT_PROFILING
|
|
#include <typeinfo>
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------------- : Overloadable templates
|
|
|
|
/// Number of items in some collection like object, can be overloaded
|
|
template <typename T>
|
|
int item_count(const T& v) {
|
|
return -1;
|
|
}
|
|
/// Return an iterator for some collection, can be overloaded
|
|
template <typename T>
|
|
ScriptValueP make_iterator(const T& v) {
|
|
return ScriptValueP();
|
|
}
|
|
|
|
/// Mark a dependency on a member of value, can be overloaded
|
|
template <typename T>
|
|
void mark_dependency_member(const T& value, const String& name, const Dependency& dep) {}
|
|
|
|
/// Mark a dependency on an object, can be overloaded
|
|
template <typename T>
|
|
void mark_dependency_value(const T& value, const Dependency& dep) {}
|
|
|
|
/// Type name of an object, for error messages
|
|
template <typename T> inline String type_name(const T&) {
|
|
return _TYPE_("object");
|
|
}
|
|
template <typename T> inline String type_name(const intrusive_ptr<T>& p) {
|
|
return type_name(*p.get());
|
|
}
|
|
template <typename K, typename V> inline String type_name(const pair<K,V>& p) {
|
|
return type_name(p.second); // for maps
|
|
}
|
|
|
|
/// Script code for an object, or anything else we can show
|
|
template <typename T> inline String to_code(const T& v) {
|
|
return format_string(_("<%s>"),type_name(v));
|
|
}
|
|
template <typename T> inline String to_code(const intrusive_ptr<T>& p) {
|
|
return type_name(*p.get());
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Errors
|
|
|
|
ScriptValueP delay_error(const ScriptError& error);
|
|
inline ScriptValueP delay_error(const String& m) {
|
|
return delay_error(ScriptError(m));
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Iterators
|
|
|
|
// Iterator over a collection
|
|
struct ScriptIterator : public ScriptValue, public IntrusiveFromThis<ScriptIterator> {
|
|
ScriptType type() const override;
|
|
String typeName() const override;
|
|
CompareWhat compareAs(String&, void const*&) const override;
|
|
|
|
/// Return the next item for this iterator, or ScriptValueP() if there is no such item
|
|
ScriptValueP next(ScriptValueP* key_out = nullptr, int* index_out = nullptr) override = 0;
|
|
ScriptValueP makeIterator() const override;
|
|
};
|
|
|
|
// make an iterator over a range
|
|
ScriptValueP rangeIterator(int start, int end);
|
|
|
|
// ----------------------------------------------------------------------------- : Collections
|
|
|
|
ScriptValueP to_script(int);
|
|
|
|
class ScriptCollectionBase : public ScriptValue {
|
|
public:
|
|
ScriptType type() const override { return SCRIPT_COLLECTION; }
|
|
String typeName() const override { return _TYPE_("collection"); }
|
|
String toCode() const override;
|
|
};
|
|
|
|
// Iterator over a collection
|
|
template <typename Collection>
|
|
class ScriptCollectionIterator : public ScriptIterator {
|
|
public:
|
|
ScriptCollectionIterator(const Collection* col) : pos(0), col(col) {}
|
|
ScriptValueP next(ScriptValueP* key_out, int* index_out) override {
|
|
if (pos < col->size()) {
|
|
if (key_out) *key_out = to_script((int)pos);
|
|
if (index_out) *index_out = (int)pos;
|
|
return to_script(col->at(pos++));
|
|
} else {
|
|
return ScriptValueP();
|
|
}
|
|
}
|
|
private:
|
|
size_t pos;
|
|
const Collection* col;
|
|
};
|
|
|
|
/// Script value containing a collection (vector like)
|
|
template <typename Collection>
|
|
class ScriptCollection : public ScriptCollectionBase {
|
|
public:
|
|
inline ScriptCollection(const Collection* v) : value(v) {}
|
|
String typeName() const override {
|
|
return _TYPE_1_("collection of", type_name(*value->begin()));
|
|
}
|
|
ScriptValueP getIndex(int index) const override {
|
|
if (index >= 0 && index < (int)value->size()) {
|
|
return to_script(value->at(index));
|
|
} else {
|
|
return ScriptValue::getIndex(index);
|
|
}
|
|
}
|
|
ScriptValueP makeIterator() const override {
|
|
return make_intrusive<ScriptCollectionIterator<Collection>>(value);
|
|
}
|
|
int itemCount() const override {
|
|
return (int)value->size();
|
|
}
|
|
/// Collections can be compared by comparing pointers
|
|
CompareWhat compareAs(String&, void const*& compare_ptr) const override {
|
|
compare_ptr = value;
|
|
return COMPARE_AS_POINTER;
|
|
}
|
|
private:
|
|
/// Store a pointer to a collection, collections are only ever used for structures owned outside the script
|
|
const Collection* value;
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------- : Collections : maps
|
|
|
|
template <typename V>
|
|
ScriptValueP get_member(const map<String,V>& m, const String& name) {
|
|
typename map<String,V>::const_iterator it = m.find(name);
|
|
if (it != m.end()) {
|
|
return to_script(it->second);
|
|
} else {
|
|
return delay_error(ScriptErrorNoMember(_TYPE_("collection"), name));
|
|
}
|
|
}
|
|
|
|
template <typename K, typename V>
|
|
ScriptValueP get_member(const IndexMap<K,V>& m, const String& name) {
|
|
typename IndexMap<K,V>::const_iterator it = m.find(name);
|
|
if (it != m.end()) {
|
|
return to_script(*it);
|
|
} else {
|
|
return delay_error(ScriptErrorNoMember(_TYPE_("collection"), name));
|
|
}
|
|
}
|
|
|
|
/// Script value containing a map-like collection
|
|
template <typename Collection>
|
|
class ScriptMap : public ScriptValue {
|
|
public:
|
|
inline ScriptMap(const Collection* v) : value(v) {}
|
|
ScriptType type() const override { return SCRIPT_COLLECTION; }
|
|
String typeName() const override { return _TYPE_1_("collection of", type_name(value->begin())); }
|
|
ScriptValueP getMember(const String& name) const override {
|
|
return get_member(*value, name);
|
|
}
|
|
int itemCount() const override { return (int)value->size(); }
|
|
ScriptValueP dependencyMember(const String& name, const Dependency& dep) const override {
|
|
mark_dependency_member(*value, name, dep);
|
|
return getMember(name);
|
|
}
|
|
/// Collections can be compared by comparing pointers
|
|
CompareWhat compareAs(String&, void const*& compare_ptr) const override {
|
|
compare_ptr = value;
|
|
return COMPARE_AS_POINTER;
|
|
}
|
|
private:
|
|
/// Store a pointer to a collection, collections are only ever used for structures owned outside the script
|
|
const Collection* value;
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------- : Collections : from script
|
|
|
|
/// Script value containing a custom collection, returned from script functions
|
|
class ScriptCustomCollection : public ScriptCollectionBase, public IntrusiveFromThis<ScriptCustomCollection>{
|
|
public:
|
|
ScriptValueP getMember(const String& name) const override;
|
|
ScriptValueP getIndex(int index) const override;
|
|
ScriptValueP makeIterator() const override;
|
|
int itemCount() const override {
|
|
return (int)(value.size() + key_value.size());
|
|
}
|
|
/// Collections can be compared by comparing pointers
|
|
CompareWhat compareAs(String&, void const*& compare_ptr) const override {
|
|
compare_ptr = this;
|
|
return COMPARE_AS_POINTER;
|
|
}
|
|
|
|
/// The collection as a list (contains only the values that don't have a key)
|
|
vector<ScriptValueP> value;
|
|
/// The collection as a map (contains only the values that have a key)
|
|
map<String,ScriptValueP> key_value;
|
|
};
|
|
|
|
DECLARE_POINTER_TYPE(ScriptCustomCollection);
|
|
|
|
// ----------------------------------------------------------------------------- : Collections : concatenation
|
|
|
|
/// Script value containing the concatenation of two collections
|
|
class ScriptConcatCollection : public ScriptCollectionBase {
|
|
public:
|
|
inline ScriptConcatCollection(ScriptValueP a, ScriptValueP b) : a(a), b(b) {}
|
|
ScriptValueP getMember(const String& name) const override;
|
|
ScriptValueP getIndex(int index) const override;
|
|
ScriptValueP makeIterator() const override;
|
|
int itemCount() const override { return a->itemCount() + b->itemCount(); }
|
|
/// Collections can be compared by comparing pointers
|
|
CompareWhat compareAs(String&, void const*& compare_ptr) const override {
|
|
compare_ptr = this;
|
|
return COMPARE_AS_POINTER;
|
|
}
|
|
|
|
private:
|
|
ScriptValueP a,b;
|
|
friend class ScriptConcatCollectionIterator;
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------- : Objects
|
|
|
|
/// Script value containing an object (pointer)
|
|
template <typename T>
|
|
class ScriptObject : public ScriptValue {
|
|
public:
|
|
inline ScriptObject(const T& v) : value(v) {}
|
|
ScriptType type() const override { ScriptValueP d = getDefault(); return d ? d->type() : SCRIPT_OBJECT; }
|
|
String typeName() const override { return type_name(*value); }
|
|
String toString() const override {
|
|
ScriptValueP d = getDefault(); return d ? d->toString() : ScriptValue::toString();
|
|
}
|
|
double toDouble() const override {
|
|
ScriptValueP d = getDefault(); return d ? d->toDouble() : ScriptValue::toDouble();
|
|
}
|
|
int toInt() const override {
|
|
ScriptValueP d = getDefault(); return d ? d->toInt() : ScriptValue::toInt();
|
|
}
|
|
bool toBool() const override {
|
|
ScriptValueP d = getDefault(); return d ? d->toBool() : ScriptValue::toBool();
|
|
}
|
|
Color toColor() const override {
|
|
ScriptValueP d = getDefault(); return d ? d->toColor() : ScriptValue::toColor();
|
|
}
|
|
String toCode() const override {
|
|
ScriptValueP d = getDefault(); return d ? d->toCode() : to_code(*value);
|
|
}
|
|
GeneratedImageP toImage() const override {
|
|
ScriptValueP d = getDefault(); return d ? d->toImage() : ScriptValue::toImage();
|
|
}
|
|
ScriptValueP getMember(const String& name) const override {
|
|
#if USE_SCRIPT_PROFILING
|
|
Timer t;
|
|
Profiler prof(t, (void*)mangled_name(typeid(T)), _("get member of ") + type_name(*value));
|
|
#endif
|
|
// Use reflection to find the member of the object
|
|
GetMember gm(name);
|
|
gm.handle(*value);
|
|
if (gm.result()) return gm.result();
|
|
else {
|
|
// try nameless member
|
|
ScriptValueP d = getDefault();
|
|
if (d) {
|
|
return d->getMember(name);
|
|
} else {
|
|
return ScriptValue::getMember(name);
|
|
}
|
|
}
|
|
}
|
|
ScriptValueP getIndex(int index) const override {
|
|
ScriptValueP d = getDefault(); return d ? d->getIndex(index) : ScriptValue::getIndex(index);
|
|
}
|
|
ScriptValueP dependencyMember(const String& name, const Dependency& dep) const override {
|
|
mark_dependency_member(*value, name, dep);
|
|
return getMember(name);
|
|
}
|
|
void dependencyThis(const Dependency& dep) override {
|
|
mark_dependency_value(*value, dep);
|
|
}
|
|
ScriptValueP makeIterator() const override {
|
|
ScriptValueP it = make_iterator(*value);
|
|
if (it) return it;
|
|
ScriptValueP d = getDefault();
|
|
if (d) return d->makeIterator();
|
|
return ScriptValue::makeIterator();
|
|
}
|
|
int itemCount() const override {
|
|
int i = item_count(*value);
|
|
if (i >= 0) return i;
|
|
ScriptValueP d = getDefault();
|
|
if (d) return d->itemCount();
|
|
return ScriptValue::itemCount();
|
|
}
|
|
/// Objects can be compared by comparing pointers
|
|
CompareWhat compareAs(String& compare_str, void const*& compare_ptr) const override {
|
|
ScriptValueP d = getDefault();
|
|
if (d) {
|
|
return d->compareAs(compare_str, compare_ptr);
|
|
} else {
|
|
compare_ptr = &*value;
|
|
return COMPARE_AS_POINTER;
|
|
}
|
|
}
|
|
/// Get access to the value
|
|
inline T getValue() const { return value; }
|
|
private:
|
|
T value; ///< The object
|
|
ScriptValueP getDefault() const {
|
|
GetDefaultMember gdm;
|
|
gdm.handle(*value);
|
|
return gdm.result();
|
|
}
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------- : Default arguments / closure
|
|
|
|
/// A wrapper around a function that gives default arguments
|
|
class ScriptClosure : public ScriptValue {
|
|
public:
|
|
ScriptClosure(ScriptValueP fun) : fun(fun) {}
|
|
|
|
ScriptType type() const override;
|
|
String typeName() const override;
|
|
ScriptValueP dependencies(Context& ctx, const Dependency& dep) const override;
|
|
|
|
/// Add a binding
|
|
void addBinding(Variable v, const ScriptValueP& value);
|
|
/// Is there a binding for the given variable? If so, retrieve it
|
|
ScriptValueP getBinding(Variable v) const;
|
|
|
|
/// Try to simplify this closure, returns a value if successful
|
|
ScriptValueP simplify();
|
|
|
|
ScriptValueP eval(Context& ctx, bool openScope) const override;
|
|
|
|
/// The wrapped function
|
|
ScriptValueP fun;
|
|
/// The default argument bindings
|
|
vector<pair<Variable,ScriptValueP>> bindings;
|
|
|
|
private:
|
|
/// Apply the bindings in a context
|
|
void applyBindings(Context& ctx) const;
|
|
};
|
|
|
|
/// Turn a script function into a rule, a.k.a. a delayed closure
|
|
class ScriptRule : public ScriptValue {
|
|
public:
|
|
inline ScriptRule(const ScriptValueP& fun) : fun(fun) {}
|
|
ScriptType type() const override;
|
|
String typeName() const override;
|
|
ScriptValueP eval(Context& ctx, bool openScope) const override;
|
|
|
|
private:
|
|
ScriptValueP fun;
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------- : Creating
|
|
|
|
extern ScriptValueP script_nil; ///< The preallocated nil value
|
|
extern ScriptValueP script_true; ///< The preallocated true value
|
|
extern ScriptValueP script_false; ///< The preallocated false value
|
|
extern ScriptValueP dependency_dummy; ///< Dummy value used during dependency analysis
|
|
|
|
/// Convert a value to a script value
|
|
ScriptValueP to_script(int v);
|
|
ScriptValueP to_script(double v);
|
|
ScriptValueP to_script(const String& v);
|
|
ScriptValueP to_script(Color v);
|
|
ScriptValueP to_script(wxDateTime v);
|
|
|
|
inline ScriptValueP to_script(long v) {
|
|
return to_script((int) v);
|
|
}
|
|
inline ScriptValueP to_script(bool v) {
|
|
return v ? script_true : script_false;
|
|
}
|
|
|
|
template <typename T>
|
|
inline ScriptValueP to_script(const vector<T>* v) {
|
|
return make_intrusive<ScriptCollection<vector<T>>>(v);
|
|
}
|
|
template <typename K, typename V>
|
|
inline ScriptValueP to_script(const map<K,V>* v) {
|
|
return make_intrusive<ScriptMap<map<K,V>>>(v);
|
|
}
|
|
template <typename K, typename V>
|
|
inline ScriptValueP to_script(const IndexMap<K,V>* v) {
|
|
return make_intrusive<ScriptMap<IndexMap<K,V>>>(v);
|
|
}
|
|
template <typename T>
|
|
inline ScriptValueP to_script(const intrusive_ptr<T>& v) {
|
|
if (v) {
|
|
return make_intrusive<ScriptObject<intrusive_ptr<T>>>(v);
|
|
} else {
|
|
return script_nil;
|
|
}
|
|
}
|
|
template <typename T>
|
|
inline ScriptValueP to_script(const Defaultable<T>& v) {
|
|
return to_script(v());
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Destructing
|
|
|
|
/// Convert a value from a script value to a normal value
|
|
template <typename T> inline T from_script(const ScriptValueP& value) {
|
|
ScriptObject<T>* o = dynamic_cast<ScriptObject<T>*>(value.get());
|
|
if (!o) {
|
|
throw ScriptErrorConversion(value->typeName(), _TYPE_("object" ));
|
|
}
|
|
return o->getValue();
|
|
}
|
|
template <> inline ScriptValueP from_script<ScriptValueP>(const ScriptValueP& value) { return value; }
|
|
template <> inline String from_script<String> (const ScriptValueP& value) { return value->toString(); }
|
|
template <> inline int from_script<int> (const ScriptValueP& value) { return value->toInt(); }
|
|
template <> inline double from_script<double> (const ScriptValueP& value) { return value->toDouble(); }
|
|
template <> inline bool from_script<bool> (const ScriptValueP& value) { return value->toBool(); }
|
|
template <> inline Color from_script<Color> (const ScriptValueP& value) { return value->toColor(); }
|
|
template <> inline wxDateTime from_script<wxDateTime> (const ScriptValueP& value) { return value->toDateTime(); }
|
|
template <> inline GeneratedImageP from_script<GeneratedImageP>(const ScriptValueP& value) { return value->toImage(); }
|
|
|