| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867 |
- //
- // Urho3D Engine
- // Copyright (c) 2008-2011 Lasse Öörni
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #pragma once
- #include "Color.h"
- #include "Quaternion.h"
- #include "StringHash.h"
- #include "Vector4.h"
- #include <map>
- #include <vector>
- /// Supported variable types for Variant
- enum VariantType
- {
- VAR_NONE = 0,
- VAR_INT,
- VAR_BOOL,
- VAR_FLOAT,
- VAR_VECTOR2,
- VAR_VECTOR3,
- VAR_VECTOR4,
- VAR_QUATERNION,
- VAR_COLOR,
- VAR_STRING,
- VAR_BUFFER,
- VAR_PTR,
- VAR_RESOURCEREF,
- VAR_RESOURCEREFLIST,
- VAR_VARIANTVECTOR,
- VAR_VARIANTMAP
- };
- /// Union for holding all the possible Variant values
- struct VariantValue
- {
- union
- {
- int int_;
- bool bool_;
- float float_;
- void* ptr_;
- };
-
- float y_;
- float z_;
- float w_;
- };
- /// Typed resource reference
- struct ResourceRef
- {
- /// Construct
- ResourceRef()
- {
- }
-
- /// Construct with type only and empty id
- ResourceRef(ShortStringHash type) :
- type_(type)
- {
- }
-
- /// Construct with type and id
- ResourceRef(ShortStringHash type, StringHash id) :
- type_(type),
- id_(id)
- {
- }
-
- /// Object type
- ShortStringHash type_;
- /// Object identifier, for example name hash
- StringHash id_;
-
- /// Test for equality with another reference
- bool operator == (const ResourceRef& rhs) const
- {
- return (type_ == rhs.type_) && (id_ == rhs.id_);
- }
-
- /// Test for inequality with another reference
- bool operator != (const ResourceRef& rhs) const
- {
- return (type_ != rhs.type_) || (id_ != rhs.id_);
- }
- };
- /// List of resource references of a specific type
- struct ResourceRefList
- {
- /// Construct
- ResourceRefList()
- {
- }
-
- /// Construct with type only
- ResourceRefList(ShortStringHash type) :
- type_(type)
- {
- }
- /// Construct with type and id list
- ResourceRefList(ShortStringHash type, const std::vector<StringHash>& ids) :
- type_(type),
- ids_(ids)
- {
- }
-
- /// Object type
- ShortStringHash type_;
- /// List of object identifiers, for example name hashes
- std::vector<StringHash> ids_;
-
- /// Test for equality with another reference list
- bool operator == (const ResourceRefList& rhs) const
- {
- return (type_ == rhs.type_) && (ids_ == rhs.ids_);
- }
-
- /// Test for inequality with another reference list
- bool operator != (const ResourceRefList& rhs) const
- {
- return (type_ != rhs.type_) || (ids_ != rhs.ids_);
- }
- };
- class Variant;
- /// Vector of variants
- typedef std::vector<Variant> VariantVector;
- /// Map of variants
- typedef std::map<ShortStringHash, Variant> VariantMap;
- /// Variable that supports a fixed set of types
- class Variant
- {
- public:
- /// Construct with none value
- Variant() :
- type_(VAR_NONE)
- {
- }
-
- /// Construct from integer
- Variant(int value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from unsigned integer
- Variant(unsigned value) :
- type_(VAR_NONE)
- {
- *this = (int)value;
- }
-
- /// Construct from a StringHash (convert to integer)
- Variant(const StringHash& value) :
- type_(VAR_NONE)
- {
- *this = (int)value.GetValue();
- }
-
- /// Construct from a ShortStringHash (convert to integer)
- Variant(const ShortStringHash& value) :
- type_(VAR_NONE)
- {
- *this = (int)value.GetValue();
- }
-
- /// Construct from a bool
- Variant(bool value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a float
- Variant(float value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a Vector2
- Variant(const Vector2& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a Vector3
- Variant(const Vector3& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a Vector4
- Variant(const Vector4& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a Quaternion
- Variant(const Quaternion& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a Color
- Variant(const Color& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a string
- Variant(const std::string& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a C string
- Variant(const char* value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a buffer
- Variant(const std::vector<unsigned char>& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a pointer
- Variant(void* value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from an object reference
- Variant(const ResourceRef& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from an object reference list
- Variant(const ResourceRefList& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a variant vector
- Variant(const VariantVector& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from a variant map
- Variant(const VariantMap& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Construct from type and value
- Variant(const std::string& type, const std::string& value) :
- type_(VAR_NONE)
- {
- FromString(type, value);
- }
-
- /// Copy-construct from another variant
- Variant(const Variant& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
-
- /// Destruct
- ~Variant()
- {
- SetType(VAR_NONE);
- }
-
- /// Reset to none type
- void Clear()
- {
- SetType(VAR_NONE);
- }
-
- /// Assign from another variant
- Variant& operator = (const Variant& rhs);
-
- /// Assign from an integer
- Variant& operator = (int rhs)
- {
- SetType(VAR_INT);
- value_.int_ = rhs;
- return *this;
- }
-
- /// Assign from an unsigned integer
- Variant& operator = (unsigned rhs)
- {
- SetType(VAR_INT);
- value_.int_ = (int)rhs;
- return *this;
- }
-
- /// Assign from a StringHash (convert to integer)
- Variant& operator = (const StringHash& rhs)
- {
- SetType(VAR_INT);
- value_.int_ = (int)rhs.GetValue();
- return *this;
- }
-
- /// Assign from a ShortStringHash (convert to integer)
- Variant& operator = (const ShortStringHash& rhs)
- {
- SetType(VAR_INT);
- value_.int_ = (int)rhs.GetValue();
- return *this;
- }
-
- /// Assign from a bool
- Variant& operator = (bool rhs)
- {
- SetType(VAR_BOOL);
- value_.bool_ = rhs;
- return *this;
- }
-
- /// Assign from a float
- Variant& operator = (float rhs)
- {
- SetType(VAR_FLOAT);
- value_.float_ = rhs;
- return *this;
- }
-
- /// Assign from a Vector2
- Variant& operator = (const Vector2& rhs)
- {
- SetType(VAR_VECTOR2);
- *(reinterpret_cast<Vector2*>(&value_)) = rhs;
- return *this;
- }
-
- /// Assign from a Vector3
- Variant& operator = (const Vector3& rhs)
- {
- SetType(VAR_VECTOR3);
- *(reinterpret_cast<Vector3*>(&value_)) = rhs;
- return *this;
- }
-
- /// Assign from a Vector4
- Variant& operator = (const Vector4& rhs)
- {
- SetType(VAR_VECTOR4);
- *(reinterpret_cast<Vector4*>(&value_)) = rhs;
- return *this;
- }
-
- /// Assign from a Quaternion
- Variant& operator = (const Quaternion& rhs)
- {
- SetType(VAR_QUATERNION);
- *(reinterpret_cast<Quaternion*>(&value_)) = rhs;
- return *this;
- }
-
- /// Assign from a Color
- Variant& operator = (const Color& rhs)
- {
- SetType(VAR_COLOR);
- *(reinterpret_cast<Color*>(&value_)) = rhs;
- return *this;
- }
-
- /// Assign from a string
- Variant& operator = (const std::string& rhs)
- {
- SetType(VAR_STRING);
- *(reinterpret_cast<std::string*>(value_.ptr_)) = rhs;
- return *this;
- }
-
- /// Assign from a C string
- Variant& operator = (const char* rhs)
- {
- SetType(VAR_STRING);
- *(reinterpret_cast<std::string*>(value_.ptr_)) = std::string(rhs);
- return *this;
- }
- /// Assign from a buffer
- Variant& operator = (const std::vector<unsigned char>& rhs)
- {
- SetType(VAR_BUFFER);
- *(reinterpret_cast<std::vector<unsigned char>*>(value_.ptr_)) = rhs;
- return *this;
- }
-
- /// Assign from a pointer
- Variant& operator = (void* rhs)
- {
- SetType(VAR_PTR);
- value_.ptr_ = rhs;
- return *this;
- }
-
- /// Assign from an object reference
- Variant& operator = (const ResourceRef& rhs)
- {
- SetType(VAR_RESOURCEREF);
- *(reinterpret_cast<ResourceRef*>(value_.ptr_)) = rhs;
- return *this;
- }
-
- /// Assign from an object reference list
- Variant& operator = (const ResourceRefList& rhs)
- {
- SetType(VAR_RESOURCEREFLIST);
- *(reinterpret_cast<ResourceRefList*>(value_.ptr_)) = rhs;
- return *this;
- }
-
- /// Assign from a variant vector
- Variant& operator = (const VariantVector& rhs)
- {
- SetType(VAR_VARIANTVECTOR);
- *(reinterpret_cast<VariantVector*>(value_.ptr_)) = rhs;
- return *this;
- }
-
- /// Assign from a variant map
- Variant& operator = (const VariantMap& rhs)
- {
- SetType(VAR_VARIANTMAP);
- *(reinterpret_cast<VariantMap*>(value_.ptr_)) = rhs;
- return *this;
- }
-
- /// Test for equality with another variant
- bool operator == (const Variant& rhs) const;
-
- /// Test for inequality with another variant
- bool operator != (const Variant& rhs) const
- {
- return !(*this == rhs);
- }
-
- /// Test for equality with an integer. To return true, both the type and value must match
- bool operator == (int rhs) const
- {
- if (type_ == VAR_INT)
- return value_.int_ == rhs;
- else
- return false;
- }
-
- /// Test for equality with an unsigned integer. To return true, both the type and value must match
- bool operator == (unsigned rhs) const
- {
- if (type_ == VAR_INT)
- return value_.int_ == (int)rhs;
- else
- return false;
- }
-
- /// Test for equality with a bool. To return true, both the type and value must match
- bool operator == (bool rhs) const
- {
- if (type_ == VAR_BOOL)
- return value_.bool_ == rhs;
- else
- return false;
- }
-
- /// Test for equality with a float. To return true, both the type and value must match
- bool operator == (float rhs) const
- {
- if (type_ == VAR_FLOAT)
- return value_.float_ == rhs;
- else
- return false;
- }
-
- /// Test for equality with a Vector2. To return true, both the type and value must match
- bool operator == (const Vector2& rhs) const
- {
- if (type_ == VAR_VECTOR2)
- return *(reinterpret_cast<const Vector2*>(&value_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with a Vector3. To return true, both the type and value must match
- bool operator == (const Vector3& rhs) const
- {
- if (type_ == VAR_VECTOR3)
- return *(reinterpret_cast<const Vector3*>(&value_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with a Vector4. To return true, both the type and value must match
- bool operator == (const Vector4& rhs) const
- {
- if (type_ == VAR_VECTOR4)
- return *(reinterpret_cast<const Vector4*>(&value_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with a Quaternion. To return true, both the type and value must match
- bool operator == (const Quaternion& rhs) const
- {
- if (type_ == VAR_QUATERNION)
- return *(reinterpret_cast<const Quaternion*>(&value_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with a Color. To return true, both the type and value must match
- bool operator == (const Color& rhs) const
- {
- if (type_ == VAR_COLOR)
- return *(reinterpret_cast<const Color*>(&value_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with a string. To return true, both the type and value must match
- bool operator == (const std::string& rhs) const
- {
- if (type_ == VAR_STRING)
- return *(reinterpret_cast<const std::string*>(value_.ptr_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with a buffer. To return true, both the type and value must match
- bool operator == (const std::vector<unsigned char>& rhs) const
- {
- if (type_ == VAR_BUFFER)
- return *(reinterpret_cast<const std::vector<unsigned char>*>(value_.ptr_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with a pointer. To return true, both the type and value must match
- bool operator == (void* rhs) const
- {
- if (type_ == VAR_PTR)
- return value_.ptr_ == rhs;
- else
- return false;
- }
-
- /// Test for equality with an object reference. To return true, both the type and value must match
- bool operator == (const ResourceRef& rhs) const
- {
- if (type_ == VAR_RESOURCEREF)
- return *(reinterpret_cast<ResourceRef*>(value_.ptr_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with an object reference list. To return true, both the type and value must match
- bool operator == (const ResourceRefList& rhs) const
- {
- if (type_ == VAR_RESOURCEREFLIST)
- return *(reinterpret_cast<ResourceRefList*>(value_.ptr_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with a variant vector. To return true, both the type and value must match
- bool operator == (const VariantVector& rhs) const
- {
- if (type_ == VAR_VARIANTVECTOR)
- return *(reinterpret_cast<VariantVector*>(value_.ptr_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with a variant map. To return true, both the type and value must match
- bool operator == (const VariantMap& rhs) const
- {
- if (type_ == VAR_VARIANTMAP)
- return *(reinterpret_cast<VariantMap*>(value_.ptr_)) == rhs;
- else
- return false;
- }
-
- /// Test for equality with a StringHash. To return true, both the type and value must match
- bool operator == (const StringHash& rhs) const
- {
- if (type_ == VAR_INT)
- return value_.int_ == rhs.GetValue();
- else
- return false;
- }
-
- /// Test for equality with a ShortStringHash. To return true, both the type and value must match
- bool operator == (const ShortStringHash& rhs) const
- {
- if (type_ == VAR_INT)
- return value_.int_ == rhs.GetValue();
- else
- return false;
- }
-
- /// Test for inequality with an integer
- bool operator != (int rhs) const { return !(*this == rhs); }
- /// Test for inequality with an unsigned integer
- bool operator != (unsigned rhs) const { return !(*this == rhs); }
- /// Test for inequality with a bool
- bool operator != (bool rhs) const { return !(*this == rhs); }
- /// Test for inequality with a float
- bool operator != (float rhs) const { return !(*this == rhs); }
- /// Test for inequality with a Vector2
- bool operator != (const Vector2& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a Vector3
- bool operator != (const Vector3& rhs) const { return !(*this == rhs); }
- /// Test for inequality with an Vector4
- bool operator != (const Vector4& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a Quaternion
- bool operator != (const Quaternion& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a string
- bool operator != (const std::string& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a buffer
- bool operator != (const std::vector<unsigned char>& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a pointer
- bool operator != (void* rhs) const { return !(*this == rhs); }
- /// Test for inequality with an object reference
- bool operator != (const ResourceRef& rhs) const { return !(*this == rhs); }
- /// Test for inequality with an object reference list
- bool operator != (const ResourceRefList& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a variant vector
- bool operator != (const VariantVector& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a variant map
- bool operator != (const VariantMap& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a StringHash
- bool operator != (const StringHash& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a ShortStringHash
- bool operator != (const ShortStringHash& rhs) const { return !(*this == rhs); }
-
- /// Set from type and value strings. Pointers will be set to null, and VariantBuffer or VariantMap types are not supported
- void FromString(const std::string& type, const std::string& value);
- /// Set buffer type from a memory area
- void SetBuffer(const void* data, unsigned size);
-
- /// Return int or zero on type mismatch
- int GetInt() const
- {
- if (type_ != VAR_INT)
- return 0;
- return value_.int_;
- }
-
- /// Return unsigned int or zero on type mismatch
- int GetUInt() const
- {
- if (type_ != VAR_INT)
- return 0;
- return (unsigned)value_.int_;
- }
-
- /// Return StringHash or zero on type mismatch
- StringHash GetStringHash() const
- {
- if (type_ != VAR_INT)
- return StringHash::ZERO;
- return StringHash(value_.int_);
- }
-
- /// Return ShortStringHash or zero on type mismatch
- ShortStringHash GetShortStringHash() const
- {
- if (type_ != VAR_INT)
- return ShortStringHash::ZERO;
- return ShortStringHash(value_.int_);
- }
-
- /// Return bool or false on type mismatch
- bool GetBool() const
- {
- if (type_ != VAR_BOOL)
- return false;
- return value_.bool_;
- }
-
- /// Return float or zero on type mismatch
- float GetFloat() const
- {
- if (type_ != VAR_FLOAT)
- return 0.0f;
- return value_.float_;
- }
-
- /// Return Vector2 or zero on type mismatch
- const Vector2& GetVector2() const
- {
- if (type_ != VAR_VECTOR2)
- return Vector2::ZERO;
- return *reinterpret_cast<const Vector2*>(&value_);
- }
-
- /// Return Vector3 or zero on type mismatch
- const Vector3& GetVector3() const
- {
- if (type_ != VAR_VECTOR3)
- return Vector3::ZERO;
- return *reinterpret_cast<const Vector3*>(&value_);
- }
-
- /// Return Vector4 or zero on type mismatch
- const Vector4& GetVector4() const
- {
- if (type_ != VAR_VECTOR4)
- return Vector4::ZERO;
- return *reinterpret_cast<const Vector4*>(&value_);
- }
-
- /// Return Quaternion or identity on type mismatch
- const Quaternion& GetQuaternion() const
- {
- if (type_ != VAR_QUATERNION)
- return Quaternion::IDENTITY;
- return *reinterpret_cast<const Quaternion*>(&value_);
- }
-
- /// Return Color or default on type mismatch
- const Color& GetColor() const
- {
- if (type_ != VAR_COLOR)
- return Color::WHITE;
- return *reinterpret_cast<const Color*>(&value_);
- }
-
- /// Return string or empty on type mismatch
- const std::string& GetString() const
- {
- if (type_ != VAR_STRING)
- return emptyString;
- return *reinterpret_cast<const std::string*>(value_.ptr_);
- }
-
- /// Return buffer or empty on type mismatch
- const std::vector<unsigned char>& GetBuffer() const
- {
- if (type_ != VAR_BUFFER)
- return emptyBuffer;
- return *reinterpret_cast<const std::vector<unsigned char>*>(value_.ptr_);
- }
-
- /// Return pointer or null on type mismatch
- void* GetPtr() const
- {
- if (type_ != VAR_PTR)
- return 0;
- return value_.ptr_;
- }
-
- /// Return ResourceRef or empty on type mismatch
- const ResourceRef& GetResourceRef() const
- {
- if (type_ != VAR_RESOURCEREF)
- return emptyResourceRef;
- return *reinterpret_cast<ResourceRef*>(value_.ptr_);
- }
-
- /// Return ResourceRefList or empty on type mismatch
- const ResourceRefList& GetResourceRefList() const
- {
- if (type_ != VAR_RESOURCEREFLIST)
- return emptyResourceRefList;
- return *reinterpret_cast<ResourceRefList*>(value_.ptr_);
- }
-
- /// Return VariantVector or empty on type mismatch
- const VariantVector& GetVariantVector() const
- {
- if (type_ != VAR_VARIANTVECTOR)
- return emptyVariantVector;
- return *reinterpret_cast<VariantVector*>(value_.ptr_);
- }
-
- /// Return VariantMap or empty on type mismatch
- const VariantMap& GetVariantMap() const
- {
- if (type_ != VAR_VARIANTMAP)
- return emptyVariantMap;
- return *reinterpret_cast<VariantMap*>(value_.ptr_);
- }
- /// Return the value, template version
- template <typename T> T Get() const;
- /// Return type
- VariantType GetType() const { return type_; }
- /// Return type name
- const std::string& GetTypeName() const;
- /// Convert value to string. Pointers are returned as null, and VariantBuffer or VariantMap are not supported and return empty
- std::string ToString() const;
-
- /// Empty variant
- static const Variant EMPTY;
-
- private:
- /// Set new type and allocate/deallocate memory as necessary
- void SetType(VariantType newType);
-
- /// Variant type
- VariantType type_;
- /// Variant value
- VariantValue value_;
-
- /// Empty string
- static const std::string emptyString;
- /// Empty buffer
- static const std::vector<unsigned char> emptyBuffer;
- /// Empty object reference
- static const ResourceRef emptyResourceRef;
- /// Empty object reference list
- static const ResourceRefList emptyResourceRefList;
- /// Empty variant map
- static const VariantMap emptyVariantMap;
- /// Empty variant vector
- static const VariantVector emptyVariantVector;
- };
|