| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055 |
- //
- // 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,
- MAX_VAR_TYPES
- };
- /// Union for the possible variant values. Also stores non-POD objects such as String which must not exceed 16 bytes in size.
- 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_;
- };
- };
- /// 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 Vector<String>& names) :
- type_(type),
- names_(names)
- {
- }
- /// Object type.
- StringHash type_;
- /// List of object names.
- Vector<String> 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_; }
- };
- class Variant;
- /// Vector of variants.
- typedef Vector<Variant> VariantVector;
- /// Map of variants.
- typedef HashMap<StringHash, Variant> VariantMap;
- /// 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 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 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 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 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
- {
- return type_ == VAR_BUFFER ? *(reinterpret_cast<const PODVector<unsigned char>*>(&value_)) == rhs : false;
- }
- /// 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 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 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 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.
- int GetInt() const { return type_ == VAR_INT ? value_.int_ : 0; }
- /// Return unsigned int or zero on type mismatch.
- unsigned GetUInt() const { return type_ == VAR_INT ? (unsigned)value_.int_ : 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.
- float GetFloat() const { return type_ == VAR_FLOAT ? value_.float_ : 0.0f; }
- /// Return double or zero on type mismatch.
- double GetDouble() const { return type_ == VAR_DOUBLE ? *reinterpret_cast<const double*>(&value_) : 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 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 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 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;
- 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<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; }
- }
|