| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152 |
- //
- // Copyright (c) 2008-2015 the Urho3D project.
- //
- // 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 "../Container/HashMap.h"
- #include "../Container/Ptr.h"
- #include "../Math/Color.h"
- #include "../Math/Matrix3.h"
- #include "../Math/Matrix3x4.h"
- #include "../Math/Rect.h"
- #include "../Math/StringHash.h"
- namespace Atomic
- {
- /// Variant's supported types.
- 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_VOIDPTR,
- VAR_RESOURCEREF,
- VAR_RESOURCEREFLIST,
- VAR_VARIANTVECTOR,
- VAR_VARIANTMAP,
- VAR_INTRECT,
- VAR_INTVECTOR2,
- VAR_PTR,
- VAR_MATRIX3,
- VAR_MATRIX3X4,
- VAR_MATRIX4,
- VAR_DOUBLE,
- VAR_STRINGVECTOR,
- MAX_VAR_TYPES
- };
- /// Union for the possible variant values. Also stores non-POD objects such as String and math objects (excluding Matrix) which must not exceed 16 bytes in size. Objects exceeding 16 bytes size are stored in the heap pointed by _ptr.
- struct VariantValue
- {
- union
- {
- int int_;
- bool bool_;
- float float_;
- void* ptr_;
- };
- union
- {
- int int2_;
- float float2_;
- void* ptr2_;
- };
- union
- {
- int int3_;
- float float3_;
- void* ptr3_;
- };
- union
- {
- int int4_;
- float float4_;
- void* ptr4_;
- };
- };
- class Variant;
- class VectorBuffer;
- /// Vector of variants.
- typedef Vector<Variant> VariantVector;
- /// Vector of strings.
- typedef Vector<String> StringVector;
- /// Map of variants.
- typedef HashMap<StringHash, Variant> VariantMap;
- /// Typed resource reference.
- struct ATOMIC_API ResourceRef
- {
- /// Construct.
- ResourceRef()
- {
- }
- /// Construct with type only and empty id.
- ResourceRef(StringHash type) :
- type_(type)
- {
- }
- /// Construct with type and resource name.
- ResourceRef(StringHash type, const String& name) :
- type_(type),
- name_(name)
- {
- }
- // Construct from another ResourceRef.
- ResourceRef(const ResourceRef& rhs) :
- type_(rhs.type_),
- name_(rhs.name_)
- {
- }
- /// Object type.
- StringHash type_;
- /// Object name.
- String name_;
- /// Test for equality with another reference.
- bool operator ==(const ResourceRef& rhs) const { return type_ == rhs.type_ && name_ == rhs.name_; }
- /// Test for inequality with another reference.
- bool operator !=(const ResourceRef& rhs) const { return type_ != rhs.type_ || name_ != rhs.name_; }
- };
- /// %List of typed resource references.
- struct ATOMIC_API ResourceRefList
- {
- /// Construct.
- ResourceRefList()
- {
- }
- /// Construct with type only.
- ResourceRefList(StringHash type) :
- type_(type)
- {
- }
- /// Construct with type and id list.
- ResourceRefList(StringHash type, const StringVector& names) :
- type_(type),
- names_(names)
- {
- }
- /// Object type.
- StringHash type_;
- /// List of object names.
- StringVector names_;
- /// Test for equality with another reference list.
- bool operator ==(const ResourceRefList& rhs) const { return type_ == rhs.type_ && names_ == rhs.names_; }
- /// Test for inequality with another reference list.
- bool operator !=(const ResourceRefList& rhs) const { return type_ != rhs.type_ || names_ != rhs.names_; }
- };
- /// Variable that supports a fixed set of types.
- class ATOMIC_API Variant
- {
- public:
- /// Construct empty.
- 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 string hash (convert to integer).
- Variant(const StringHash& value) :
- type_(VAR_NONE)
- {
- *this = (int)value.Value();
- }
- /// 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 double.
- Variant(double 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 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 PODVector<unsigned char>& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
- /// Construct from a %VectorBuffer and store as a buffer.
- Variant(const VectorBuffer& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
- /// Construct from a pointer.
- Variant(void* value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
- /// Construct from a resource reference.
- Variant(const ResourceRef& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
- /// Construct from a resource 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 a string vector.
- Variant(const StringVector& value) :
- type_ (VAR_NONE)
- {
- *this = value;
- }
- /// Construct from an integer rect.
- Variant(const IntRect& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
- /// Construct from an IntVector2.
- Variant(const IntVector2& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
- /// Construct from a RefCounted pointer. The object will be stored internally in a WeakPtr so that its expiration can be detected safely.
- Variant(RefCounted* value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
- /// Construct from a Matrix3.
- Variant(const Matrix3& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
- /// Construct from a Matrix3x4.
- Variant(const Matrix3x4& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
- /// Construct from a Matrix4.
- Variant(const Matrix4& value) :
- type_(VAR_NONE)
- {
- *this = value;
- }
- /// Construct from type and value.
- Variant(const String& type, const String& value) :
- type_(VAR_NONE)
- {
- FromString(type, value);
- }
- /// Construct from type and value.
- Variant(VariantType type, const String& value) :
- type_(VAR_NONE)
- {
- FromString(type, value);
- }
- /// Construct from type and value.
- Variant(const char* type, const char* value) :
- type_(VAR_NONE)
- {
- FromString(type, value);
- }
- /// Construct from type and value.
- Variant(VariantType type, const char* 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 empty.
- 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.Value();
- 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 double.
- Variant& operator = (double rhs)
- {
- SetType(VAR_DOUBLE);
- *(reinterpret_cast<double*>(&value_)) = 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 String& rhs)
- {
- SetType(VAR_STRING);
- *(reinterpret_cast<String*>(&value_)) = rhs;
- return *this;
- }
- /// Assign from a C string.
- Variant& operator =(const char* rhs)
- {
- SetType(VAR_STRING);
- *(reinterpret_cast<String*>(&value_)) = String(rhs);
- return *this;
- }
- /// Assign from a buffer.
- Variant& operator =(const PODVector<unsigned char>& rhs)
- {
- SetType(VAR_BUFFER);
- *(reinterpret_cast<PODVector<unsigned char>*>(&value_)) = rhs;
- return *this;
- }
- /// Assign from a %VectorBuffer and store as a buffer.
- Variant& operator =(const VectorBuffer& rhs);
- /// Assign from a void pointer.
- Variant& operator =(void* rhs)
- {
- SetType(VAR_VOIDPTR);
- value_.ptr_ = rhs;
- return *this;
- }
- /// Assign from a resource reference.
- Variant& operator =(const ResourceRef& rhs)
- {
- SetType(VAR_RESOURCEREF);
- *(reinterpret_cast<ResourceRef*>(&value_)) = rhs;
- return *this;
- }
- /// Assign from a resource reference list.
- Variant& operator =(const ResourceRefList& rhs)
- {
- SetType(VAR_RESOURCEREFLIST);
- *(reinterpret_cast<ResourceRefList*>(&value_)) = rhs;
- return *this;
- }
- /// Assign from a variant vector.
- Variant& operator =(const VariantVector& rhs)
- {
- SetType(VAR_VARIANTVECTOR);
- *(reinterpret_cast<VariantVector*>(&value_)) = rhs;
- return *this;
- }
- /// Assign from a string vector.
- Variant& operator =(const StringVector& rhs)
- {
- SetType(VAR_STRINGVECTOR);
- *(reinterpret_cast<StringVector*>(&value_)) = rhs;
- return *this;
- }
- /// Assign from a variant map.
- Variant& operator =(const VariantMap& rhs)
- {
- SetType(VAR_VARIANTMAP);
- *(reinterpret_cast<VariantMap*>(&value_)) = rhs;
- return *this;
- }
- /// Assign from an integer rect.
- Variant& operator =(const IntRect& rhs)
- {
- SetType(VAR_INTRECT);
- *(reinterpret_cast<IntRect*>(&value_)) = rhs;
- return *this;
- }
- /// Assign from an IntVector2.
- Variant& operator =(const IntVector2& rhs)
- {
- SetType(VAR_INTVECTOR2);
- *(reinterpret_cast<IntVector2*>(&value_)) = rhs;
- return *this;
- }
- /// Assign from a RefCounted pointer. The object will be stored internally in a WeakPtr so that its expiration can be detected safely.
- Variant& operator =(RefCounted* rhs)
- {
- SetType(VAR_PTR);
- *(reinterpret_cast<WeakPtr<RefCounted>*>(&value_)) = rhs;
- return *this;
- }
- /// Assign from a Matrix3.
- Variant& operator =(const Matrix3& rhs)
- {
- SetType(VAR_MATRIX3);
- *(reinterpret_cast<Matrix3*>(value_.ptr_)) = rhs;
- return *this;
- }
- /// Assign from a Matrix3x4.
- Variant& operator =(const Matrix3x4& rhs)
- {
- SetType(VAR_MATRIX3X4);
- *(reinterpret_cast<Matrix3x4*>(value_.ptr_)) = rhs;
- return *this;
- }
- /// Assign from a Matrix4.
- Variant& operator =(const Matrix4& rhs)
- {
- SetType(VAR_MATRIX4);
- *(reinterpret_cast<Matrix4*>(value_.ptr_)) = rhs;
- return *this;
- }
- /// Test for equality with another variant.
- bool operator ==(const Variant& rhs) const;
- /// Test for equality with an integer. To return true, both the type and value must match.
- bool operator ==(int rhs) const { return type_ == VAR_INT ? value_.int_ == rhs : false; }
- /// Test for equality with an unsigned integer. To return true, both the type and value must match.
- bool operator ==(unsigned rhs) const { return type_ == VAR_INT ? value_.int_ == (int)rhs : false; }
- /// Test for equality with a bool. To return true, both the type and value must match.
- bool operator ==(bool rhs) const { return type_ == VAR_BOOL ? value_.bool_ == rhs : false; }
- /// Test for equality with a float. To return true, both the type and value must match.
- bool operator ==(float rhs) const { return type_ == VAR_FLOAT ? value_.float_ == rhs : false; }
- /// Test for equality with a double. To return true, both the type and value must match.
- bool operator ==(double rhs) const { return type_ == VAR_DOUBLE ? *(reinterpret_cast<const double*>(&value_)) == rhs : false; }
- /// Test for equality with a Vector2. To return true, both the type and value must match.
- bool operator ==(const Vector2& rhs) const
- {
- return type_ == VAR_VECTOR2 ? *(reinterpret_cast<const Vector2*>(&value_)) == rhs : false;
- }
- /// Test for equality with a Vector3. To return true, both the type and value must match.
- bool operator ==(const Vector3& rhs) const
- {
- return type_ == VAR_VECTOR3 ? *(reinterpret_cast<const Vector3*>(&value_)) == rhs : false;
- }
- /// Test for equality with a Vector4. To return true, both the type and value must match.
- bool operator ==(const Vector4& rhs) const
- {
- return type_ == VAR_VECTOR4 ? *(reinterpret_cast<const Vector4*>(&value_)) == rhs : false;
- }
- /// Test for equality with a quaternion. To return true, both the type and value must match.
- bool operator ==(const Quaternion& rhs) const
- {
- return type_ == VAR_QUATERNION ? *(reinterpret_cast<const Quaternion*>(&value_)) == rhs : false;
- }
- /// Test for equality with a color. To return true, both the type and value must match.
- bool operator ==(const Color& rhs) const
- {
- return type_ == VAR_COLOR ? *(reinterpret_cast<const Color*>(&value_)) == rhs : false;
- }
- /// Test for equality with a string. To return true, both the type and value must match.
- bool operator ==(const String& rhs) const
- {
- return type_ == VAR_STRING ? *(reinterpret_cast<const String*>(&value_)) == rhs : false;
- }
- /// Test for equality with a buffer. To return true, both the type and value must match.
- bool operator ==(const PODVector<unsigned char>& rhs) const;
- /// Test for equality with a %VectorBuffer. To return true, both the type and value must match.
- bool operator ==(const VectorBuffer& rhs) const;
- /// Test for equality with a void pointer. To return true, both the type and value must match, with the exception that a RefCounted pointer is also allowed.
- bool operator ==(void* rhs) const
- {
- if (type_ == VAR_VOIDPTR)
- return value_.ptr_ == rhs;
- else if (type_ == VAR_PTR)
- return *(reinterpret_cast<const WeakPtr<RefCounted>*>(&value_)) == rhs;
- else
- return false;
- }
- /// Test for equality with a resource reference. To return true, both the type and value must match.
- bool operator ==(const ResourceRef& rhs) const
- {
- return type_ == VAR_RESOURCEREF ? *(reinterpret_cast<const ResourceRef*>(&value_)) == rhs : false;
- }
- /// Test for equality with a resource reference list. To return true, both the type and value must match.
- bool operator ==(const ResourceRefList& rhs) const
- {
- return type_ == VAR_RESOURCEREFLIST ? *(reinterpret_cast<const ResourceRefList*>(&value_)) == rhs : false;
- }
- /// Test for equality with a variant vector. To return true, both the type and value must match.
- bool operator ==(const VariantVector& rhs) const
- {
- return type_ == VAR_VARIANTVECTOR ? *(reinterpret_cast<const VariantVector*>(&value_)) == rhs : false;
- }
- /// Test for equality with a string vector. To return true, both the type and value must match.
- bool operator ==(const StringVector& rhs) const
- {
- return type_ == VAR_STRINGVECTOR ? *(reinterpret_cast<const StringVector*>(&value_)) == rhs : false;
- }
- /// Test for equality with a variant map. To return true, both the type and value must match.
- bool operator ==(const VariantMap& rhs) const
- {
- return type_ == VAR_VARIANTMAP ? *(reinterpret_cast<const VariantMap*>(&value_)) == rhs : false;
- }
- /// Test for equality with an integer rect. To return true, both the type and value must match.
- bool operator ==(const IntRect& rhs) const
- {
- return type_ == VAR_INTRECT ? *(reinterpret_cast<const IntRect*>(&value_)) == rhs : false;
- }
- /// Test for equality with an IntVector2. To return true, both the type and value must match.
- bool operator ==(const IntVector2& rhs) const
- {
- return type_ == VAR_INTVECTOR2 ? *(reinterpret_cast<const IntVector2*>(&value_)) == rhs : false;
- }
- /// Test for equality with a StringHash. To return true, both the type and value must match.
- bool operator ==(const StringHash& rhs) const { return type_ == VAR_INT ? (unsigned)value_.int_ == rhs.Value() : false; }
- /// Test for equality with a RefCounted pointer. To return true, both the type and value must match, with the exception that void pointer is also allowed.
- bool operator ==(RefCounted* rhs) const
- {
- if (type_ == VAR_PTR)
- return *(reinterpret_cast<const WeakPtr<RefCounted>*>(&value_)) == rhs;
- else if (type_ == VAR_VOIDPTR)
- return value_.ptr_ == rhs;
- else
- return false;
- }
- /// Test for equality with a Matrix3. To return true, both the type and value must match.
- bool operator ==(const Matrix3& rhs) const
- {
- return type_ == VAR_MATRIX3 ? *(reinterpret_cast<const Matrix3*>(value_.ptr_)) == rhs : false;
- }
- /// Test for equality with a Matrix3x4. To return true, both the type and value must match.
- bool operator ==(const Matrix3x4& rhs) const
- {
- return type_ == VAR_MATRIX3X4 ? *(reinterpret_cast<const Matrix3x4*>(value_.ptr_)) == rhs : false;
- }
- /// Test for equality with a Matrix4. To return true, both the type and value must match.
- bool operator ==(const Matrix4& rhs) const
- {
- return type_ == VAR_MATRIX4 ? *(reinterpret_cast<const Matrix4*>(value_.ptr_)) == rhs : false;
- }
- /// Test for inequality with another variant.
- bool operator !=(const Variant& rhs) const { return !(*this == rhs); }
- /// 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 double.
- bool operator !=(double 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 String& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a buffer.
- bool operator !=(const PODVector<unsigned char>& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a %VectorBuffer.
- bool operator !=(const VectorBuffer& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a pointer.
- bool operator !=(void* rhs) const { return !(*this == rhs); }
- /// Test for inequality with a resource reference.
- bool operator !=(const ResourceRef& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a resource 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 string vector.
- bool operator !=(const StringVector& 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 an integer rect.
- bool operator !=(const IntRect& rhs) const { return !(*this == rhs); }
- /// Test for inequality with an IntVector2.
- bool operator !=(const IntVector2& 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 RefCounted pointer.
- bool operator !=(RefCounted* rhs) const { return !(*this == rhs); }
- /// Test for inequality with a Matrix3.
- bool operator !=(const Matrix3& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a Matrix3x4.
- bool operator !=(const Matrix3x4& rhs) const { return !(*this == rhs); }
- /// Test for inequality with a Matrix4.
- bool operator !=(const Matrix4& rhs) const { return !(*this == rhs); }
- /// Set from typename and value strings. Pointers will be set to null, and VariantBuffer or VariantMap types are not supported.
- void FromString(const String& type, const String& value);
- /// Set from typename and value strings. Pointers will be set to null, and VariantBuffer or VariantMap types are not supported.
- void FromString(const char* type, const char* value);
- /// Set from type and value string. Pointers will be set to null, and VariantBuffer or VariantMap types are not supported.
- void FromString(VariantType type, const String& value);
- /// Set from type and value string. Pointers will be set to null, and VariantBuffer or VariantMap types are not supported.
- void FromString(VariantType type, const char* value);
- /// Set buffer type from a memory area.
- void SetBuffer(const void* data, unsigned size);
- /// Return int or zero on type mismatch. Floats and doubles are converted.
- int GetInt() const
- {
- if (type_ == VAR_INT)
- return value_.int_;
- else if (type_ == VAR_FLOAT)
- return (int)value_.float_;
- else if (type_ == VAR_DOUBLE)
- return (int)*reinterpret_cast<const double*>(&value_);
- else
- return 0;
- }
- /// Return unsigned int or zero on type mismatch. Floats and doubles are converted.
- unsigned GetUInt() const
- {
- if (type_ == VAR_INT)
- return value_.int_;
- else if (type_ == VAR_FLOAT)
- return (unsigned)value_.float_;
- else if (type_ == VAR_DOUBLE)
- return (unsigned)*reinterpret_cast<const double*>(&value_);
- else
- return 0;
- }
- /// Return StringHash or zero on type mismatch.
- StringHash GetStringHash() const { return StringHash(GetUInt()); }
- /// Return bool or false on type mismatch.
- bool GetBool() const { return type_ == VAR_BOOL ? value_.bool_ : false; }
- /// Return float or zero on type mismatch. Ints and doubles are converted.
- float GetFloat() const
- {
- if (type_ == VAR_FLOAT)
- return value_.float_;
- else if (type_ == VAR_DOUBLE)
- return (float)*reinterpret_cast<const double*>(&value_);
- else if (type_ == VAR_INT)
- return (float)value_.int_;
- else
- return 0.0f;
- }
- /// Return double or zero on type mismatch. Ints and floats are converted.
- double GetDouble() const
- {
- if (type_ == VAR_DOUBLE)
- return *reinterpret_cast<const double*>(&value_);
- else if (type_ == VAR_FLOAT)
- return (double)value_.float_;
- else if (type_ == VAR_INT)
- return (double)value_.int_;
- else
- return 0.0;
- }
- /// Return Vector2 or zero on type mismatch.
- const Vector2& GetVector2() const { return type_ == VAR_VECTOR2 ? *reinterpret_cast<const Vector2*>(&value_) : Vector2::ZERO; }
- /// Return Vector3 or zero on type mismatch.
- const Vector3& GetVector3() const { return type_ == VAR_VECTOR3 ? *reinterpret_cast<const Vector3*>(&value_) : Vector3::ZERO; }
- /// Return Vector4 or zero on type mismatch.
- const Vector4& GetVector4() const { return type_ == VAR_VECTOR4 ? *reinterpret_cast<const Vector4*>(&value_) : Vector4::ZERO; }
- /// Return quaternion or identity on type mismatch.
- const Quaternion& GetQuaternion() const
- {
- return type_ == VAR_QUATERNION ? *reinterpret_cast<const Quaternion*>(&value_) : Quaternion::IDENTITY;
- }
- /// Return color or default on type mismatch.
- const Color& GetColor() const { return type_ == VAR_COLOR ? *reinterpret_cast<const Color*>(&value_) : Color::WHITE; }
- /// Return string or empty on type mismatch.
- const String& GetString() const { return type_ == VAR_STRING ? *reinterpret_cast<const String*>(&value_) : String::EMPTY; }
- /// Return buffer or empty on type mismatch.
- const PODVector<unsigned char>& GetBuffer() const
- {
- return type_ == VAR_BUFFER ? *reinterpret_cast<const PODVector<unsigned char>*>(&value_) : emptyBuffer;
- }
- /// Return %VectorBuffer containing the buffer or empty on type mismatch.
- const VectorBuffer GetVectorBuffer() const;
- /// Return void pointer or null on type mismatch. RefCounted pointer will be converted.
- void* GetVoidPtr() const
- {
- if (type_ == VAR_VOIDPTR)
- return value_.ptr_;
- else if (type_ == VAR_PTR)
- return *reinterpret_cast<const WeakPtr<RefCounted>*>(&value_);
- else
- return 0;
- }
- /// Return a resource reference or empty on type mismatch.
- const ResourceRef& GetResourceRef() const
- {
- return type_ == VAR_RESOURCEREF ? *reinterpret_cast<const ResourceRef*>(&value_) : emptyResourceRef;
- }
- /// Return a resource reference list or empty on type mismatch.
- const ResourceRefList& GetResourceRefList() const
- {
- return type_ == VAR_RESOURCEREFLIST ? *reinterpret_cast<const ResourceRefList*>(&value_) : emptyResourceRefList;
- }
- /// Return a variant vector or empty on type mismatch.
- const VariantVector& GetVariantVector() const
- {
- return type_ == VAR_VARIANTVECTOR ? *reinterpret_cast<const VariantVector*>(&value_) : emptyVariantVector;
- }
- /// Return a string vector or empty on type mismatch.
- const StringVector& GetStringVector() const
- {
- return type_ == VAR_STRINGVECTOR ? *reinterpret_cast<const StringVector*>(&value_) : emptyStringVector;
- }
- /// Return a variant map or empty on type mismatch.
- const VariantMap& GetVariantMap() const
- {
- return type_ == VAR_VARIANTMAP ? *reinterpret_cast<const VariantMap*>(&value_) : emptyVariantMap;
- }
- /// Return an integer rect or empty on type mismatch.
- const IntRect& GetIntRect() const { return type_ == VAR_INTRECT ? *reinterpret_cast<const IntRect*>(&value_) : IntRect::ZERO; }
- /// Return an IntVector2 or empty on type mismatch.
- const IntVector2& GetIntVector2() const
- {
- return type_ == VAR_INTVECTOR2 ? *reinterpret_cast<const IntVector2*>(&value_) : IntVector2::ZERO;
- }
- /// Return a RefCounted pointer or null on type mismatch. Will return null if holding a void pointer, as it can not be safely verified that the object is a RefCounted.
- RefCounted* GetPtr() const
- {
- return type_ == VAR_PTR ? *reinterpret_cast<const WeakPtr<RefCounted>*>(&value_) : (RefCounted*)0;
- }
- /// Return a Matrix3 or identity on type mismatch.
- const Matrix3& GetMatrix3() const
- {
- return type_ == VAR_MATRIX3 ? *(reinterpret_cast<const Matrix3*>(value_.ptr_)) : Matrix3::IDENTITY;
- }
- /// Return a Matrix3x4 or identity on type mismatch.
- const Matrix3x4& GetMatrix3x4() const
- {
- return type_ == VAR_MATRIX3X4 ? *(reinterpret_cast<const Matrix3x4*>(value_.ptr_)) : Matrix3x4::IDENTITY;
- }
- /// Return a Matrix4 or identity on type mismatch.
- const Matrix4& GetMatrix4() const
- {
- return type_ == VAR_MATRIX4 ? *(reinterpret_cast<const Matrix4*>(value_.ptr_)) : Matrix4::IDENTITY;
- }
- /// Return value's type.
- VariantType GetType() const { return type_; }
- /// Return value's type name.
- String GetTypeName() const;
- /// Convert value to string. Pointers are returned as null, and VariantBuffer or VariantMap are not supported and return empty.
- String ToString() const;
- /// Return true when the variant value is considered zero according to its actual type.
- bool IsZero() const;
- /// Return true when the variant is empty (i.e. not initialized yet).
- bool IsEmpty() const { return type_ == VAR_NONE; }
- /// Return the value, template version.
- template <class T> T Get() const;
- /// Return a pointer to a modifiable buffer or null on type mismatch.
- PODVector<unsigned char>* GetBufferPtr()
- {
- return type_ == VAR_BUFFER ? reinterpret_cast<PODVector<unsigned char>*>(&value_) : 0;
- }
- /// Return a pointer to a modifiable variant vector or null on type mismatch.
- VariantVector* GetVariantVectorPtr() { return type_ == VAR_VARIANTVECTOR ? reinterpret_cast<VariantVector*>(&value_) : 0; }
- /// Return a pointer to a modifiable string vector or null on type mismatch.
- StringVector* GetStringVectorPtr() { return type_ == VAR_STRINGVECTOR ? reinterpret_cast<StringVector*>(&value_) : 0; }
- /// Return a pointer to a modifiable variant map or null on type mismatch.
- VariantMap* GetVariantMapPtr() { return type_ == VAR_VARIANTMAP ? reinterpret_cast<VariantMap*>(&value_) : 0; }
- /// Return name for variant type.
- static String GetTypeName(VariantType type);
- /// Return variant type from type name.
- static VariantType GetTypeFromName(const String& typeName);
- /// Return variant type from type name.
- static VariantType GetTypeFromName(const char* typeName);
- /// Empty variant.
- static const Variant EMPTY;
- /// Empty buffer.
- static const PODVector<unsigned char> emptyBuffer;
- /// Empty resource reference.
- static const ResourceRef emptyResourceRef;
- /// Empty resource reference list.
- static const ResourceRefList emptyResourceRefList;
- /// Empty variant map.
- static const VariantMap emptyVariantMap;
- /// Empty variant vector.
- static const VariantVector emptyVariantVector;
- /// Empty string vector.
- static const StringVector emptyStringVector;
- private:
- /// Set new type and allocate/deallocate memory as necessary.
- void SetType(VariantType newType);
- /// Variant type.
- VariantType type_;
- /// Variant value.
- VariantValue value_;
- };
- /// Return variant type from type.
- template <typename T> VariantType GetVariantType();
- /// Return variant type from concrete types.
- template <> inline VariantType GetVariantType<int>() { return VAR_INT; }
- template <> inline VariantType GetVariantType<unsigned>() { return VAR_INT; }
- template <> inline VariantType GetVariantType<bool>() { return VAR_BOOL; }
- template <> inline VariantType GetVariantType<float>() { return VAR_FLOAT; }
- template <> inline VariantType GetVariantType<double>() { return VAR_DOUBLE; }
- template <> inline VariantType GetVariantType<Vector2>() { return VAR_VECTOR2; }
- template <> inline VariantType GetVariantType<Vector3>() { return VAR_VECTOR3; }
- template <> inline VariantType GetVariantType<Vector4>() { return VAR_VECTOR4; }
- template <> inline VariantType GetVariantType<Quaternion>() { return VAR_QUATERNION; }
- template <> inline VariantType GetVariantType<Color>() { return VAR_COLOR; }
- template <> inline VariantType GetVariantType<String>() { return VAR_STRING; }
- template <> inline VariantType GetVariantType<StringHash>() { return VAR_INT; }
- template <> inline VariantType GetVariantType<PODVector<unsigned char> >() { return VAR_BUFFER; }
- template <> inline VariantType GetVariantType<ResourceRef>() { return VAR_RESOURCEREF; }
- template <> inline VariantType GetVariantType<ResourceRefList>() { return VAR_RESOURCEREFLIST; }
- template <> inline VariantType GetVariantType<VariantVector>() { return VAR_VARIANTVECTOR; }
- template <> inline VariantType GetVariantType<StringVector >() { return VAR_STRINGVECTOR; }
- template <> inline VariantType GetVariantType<VariantMap>() { return VAR_VARIANTMAP; }
- template <> inline VariantType GetVariantType<IntRect>() { return VAR_INTRECT; }
- template <> inline VariantType GetVariantType<IntVector2>() { return VAR_INTVECTOR2; }
- template <> inline VariantType GetVariantType<Matrix3>() { return VAR_MATRIX3; }
- template <> inline VariantType GetVariantType<Matrix3x4>() { return VAR_MATRIX3X4; }
- template <> inline VariantType GetVariantType<Matrix4>() { return VAR_MATRIX4; }
- }
|