| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040 |
- //
- // Copyright (c) 2008-2016 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.
- //
- #include "../Precompiled.h"
- #include "../Core/Context.h"
- #include "../IO/Deserializer.h"
- #include "../IO/Log.h"
- #include "../IO/Serializer.h"
- #include "../Resource/XMLElement.h"
- #include "../Resource/JSONValue.h"
- #include "../Scene/ReplicationState.h"
- #include "../Scene/SceneEvents.h"
- #include "../Scene/Serializable.h"
- #include "../DebugNew.h"
- namespace Urho3D
- {
- static unsigned RemapAttributeIndex(const Vector<AttributeInfo>* attributes, const AttributeInfo& netAttr, unsigned netAttrIndex)
- {
- if (!attributes)
- return netAttrIndex; // Could not remap
- for (unsigned i = 0; i < attributes->Size(); ++i)
- {
- const AttributeInfo& attr = attributes->At(i);
- // Compare either the accessor or offset to avoid name string compare
- if (attr.accessor_.Get() && attr.accessor_.Get() == netAttr.accessor_.Get())
- return i;
- else if (!attr.accessor_.Get() && attr.offset_ == netAttr.offset_)
- return i;
- }
- return netAttrIndex; // Could not remap
- }
- Serializable::Serializable(Context* context) :
- Object(context),
- networkState_(0),
- instanceDefaultValues_(0),
- temporary_(false)
- {
- }
- Serializable::~Serializable()
- {
- delete networkState_;
- networkState_ = 0;
- delete instanceDefaultValues_;
- instanceDefaultValues_ = 0;
- }
- void Serializable::OnSetAttribute(const AttributeInfo& attr, const Variant& src)
- {
- // Check for accessor function mode
- if (attr.accessor_)
- {
- attr.accessor_->Set(this, src);
- return;
- }
- // Calculate the destination address
- void* dest = attr.ptr_ ? attr.ptr_ : reinterpret_cast<unsigned char*>(this) + attr.offset_;
- switch (attr.type_)
- {
- case VAR_INT:
- // If enum type, use the low 8 bits only
- if (attr.enumNames_)
- *(reinterpret_cast<unsigned char*>(dest)) = src.GetInt();
- else
- *(reinterpret_cast<int*>(dest)) = src.GetInt();
- break;
- case VAR_BOOL:
- *(reinterpret_cast<bool*>(dest)) = src.GetBool();
- break;
- case VAR_FLOAT:
- *(reinterpret_cast<float*>(dest)) = src.GetFloat();
- break;
- case VAR_VECTOR2:
- *(reinterpret_cast<Vector2*>(dest)) = src.GetVector2();
- break;
- case VAR_VECTOR3:
- *(reinterpret_cast<Vector3*>(dest)) = src.GetVector3();
- break;
- case VAR_VECTOR4:
- *(reinterpret_cast<Vector4*>(dest)) = src.GetVector4();
- break;
- case VAR_QUATERNION:
- *(reinterpret_cast<Quaternion*>(dest)) = src.GetQuaternion();
- break;
- case VAR_COLOR:
- *(reinterpret_cast<Color*>(dest)) = src.GetColor();
- break;
- case VAR_STRING:
- *(reinterpret_cast<String*>(dest)) = src.GetString();
- break;
- case VAR_BUFFER:
- *(reinterpret_cast<PODVector<unsigned char>*>(dest)) = src.GetBuffer();
- break;
- case VAR_RESOURCEREF:
- *(reinterpret_cast<ResourceRef*>(dest)) = src.GetResourceRef();
- break;
- case VAR_RESOURCEREFLIST:
- *(reinterpret_cast<ResourceRefList*>(dest)) = src.GetResourceRefList();
- break;
- case VAR_VARIANTVECTOR:
- *(reinterpret_cast<VariantVector*>(dest)) = src.GetVariantVector();
- break;
- case VAR_STRINGVECTOR:
- *(reinterpret_cast<StringVector*>(dest)) = src.GetStringVector();
- break;
- case VAR_VARIANTMAP:
- *(reinterpret_cast<VariantMap*>(dest)) = src.GetVariantMap();
- break;
- case VAR_INTRECT:
- *(reinterpret_cast<IntRect*>(dest)) = src.GetIntRect();
- break;
- case VAR_INTVECTOR2:
- *(reinterpret_cast<IntVector2*>(dest)) = src.GetIntVector2();
- break;
- case VAR_DOUBLE:
- *(reinterpret_cast<double*>(dest)) = src.GetDouble();
- break;
- default:
- URHO3D_LOGERROR("Unsupported attribute type for OnSetAttribute()");
- return;
- }
- // If it is a network attribute then mark it for next network update
- if (attr.mode_ & AM_NET)
- MarkNetworkUpdate();
- }
- void Serializable::OnGetAttribute(const AttributeInfo& attr, Variant& dest) const
- {
- // Check for accessor function mode
- if (attr.accessor_)
- {
- attr.accessor_->Get(this, dest);
- return;
- }
- // Calculate the source address
- const void* src = attr.ptr_ ? attr.ptr_ : reinterpret_cast<const unsigned char*>(this) + attr.offset_;
- switch (attr.type_)
- {
- case VAR_INT:
- // If enum type, use the low 8 bits only
- if (attr.enumNames_)
- dest = *(reinterpret_cast<const unsigned char*>(src));
- else
- dest = *(reinterpret_cast<const int*>(src));
- break;
- case VAR_BOOL:
- dest = *(reinterpret_cast<const bool*>(src));
- break;
- case VAR_FLOAT:
- dest = *(reinterpret_cast<const float*>(src));
- break;
- case VAR_VECTOR2:
- dest = *(reinterpret_cast<const Vector2*>(src));
- break;
- case VAR_VECTOR3:
- dest = *(reinterpret_cast<const Vector3*>(src));
- break;
- case VAR_VECTOR4:
- dest = *(reinterpret_cast<const Vector4*>(src));
- break;
- case VAR_QUATERNION:
- dest = *(reinterpret_cast<const Quaternion*>(src));
- break;
- case VAR_COLOR:
- dest = *(reinterpret_cast<const Color*>(src));
- break;
- case VAR_STRING:
- dest = *(reinterpret_cast<const String*>(src));
- break;
- case VAR_BUFFER:
- dest = *(reinterpret_cast<const PODVector<unsigned char>*>(src));
- break;
- case VAR_RESOURCEREF:
- dest = *(reinterpret_cast<const ResourceRef*>(src));
- break;
- case VAR_RESOURCEREFLIST:
- dest = *(reinterpret_cast<const ResourceRefList*>(src));
- break;
- case VAR_VARIANTVECTOR:
- dest = *(reinterpret_cast<const VariantVector*>(src));
- break;
- case VAR_STRINGVECTOR:
- dest = *(reinterpret_cast<const StringVector*>(src));
- break;
- case VAR_VARIANTMAP:
- dest = *(reinterpret_cast<const VariantMap*>(src));
- break;
- case VAR_INTRECT:
- dest = *(reinterpret_cast<const IntRect*>(src));
- break;
- case VAR_INTVECTOR2:
- dest = *(reinterpret_cast<const IntVector2*>(src));
- break;
- case VAR_DOUBLE:
- dest = *(reinterpret_cast<const double*>(src));
- break;
- default:
- URHO3D_LOGERROR("Unsupported attribute type for OnGetAttribute()");
- return;
- }
- }
- const Vector<AttributeInfo>* Serializable::GetAttributes() const
- {
- return context_->GetAttributes(GetType());
- }
- const Vector<AttributeInfo>* Serializable::GetNetworkAttributes() const
- {
- return networkState_ ? networkState_->attributes_ : context_->GetNetworkAttributes(GetType());
- }
- bool Serializable::Load(Deserializer& source, bool setInstanceDefault)
- {
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- return true;
- for (unsigned i = 0; i < attributes->Size(); ++i)
- {
- const AttributeInfo& attr = attributes->At(i);
- if (!(attr.mode_ & AM_FILE))
- continue;
- if (source.IsEof())
- {
- URHO3D_LOGERROR("Could not load " + GetTypeName() + ", stream not open or at end");
- return false;
- }
- Variant varValue = source.ReadVariant(attr.type_);
- OnSetAttribute(attr, varValue);
- if (setInstanceDefault)
- SetInstanceDefault(attr.name_, varValue);
- }
- return true;
- }
- bool Serializable::Save(Serializer& dest) const
- {
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- return true;
- Variant value;
- for (unsigned i = 0; i < attributes->Size(); ++i)
- {
- const AttributeInfo& attr = attributes->At(i);
- if (!(attr.mode_ & AM_FILE))
- continue;
- OnGetAttribute(attr, value);
- if (!dest.WriteVariantData(value))
- {
- URHO3D_LOGERROR("Could not save " + GetTypeName() + ", writing to stream failed");
- return false;
- }
- }
- return true;
- }
- bool Serializable::LoadXML(const XMLElement& source, bool setInstanceDefault)
- {
- if (source.IsNull())
- {
- URHO3D_LOGERROR("Could not load " + GetTypeName() + ", null source element");
- return false;
- }
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- return true;
- XMLElement attrElem = source.GetChild("attribute");
- unsigned startIndex = 0;
- while (attrElem)
- {
- String name = attrElem.GetAttribute("name");
- unsigned i = startIndex;
- unsigned attempts = attributes->Size();
- while (attempts)
- {
- const AttributeInfo& attr = attributes->At(i);
- if ((attr.mode_ & AM_FILE) && !attr.name_.Compare(name, true))
- {
- Variant varValue;
- // If enums specified, do enum lookup and int assignment. Otherwise assign the variant directly
- if (attr.enumNames_)
- {
- String value = attrElem.GetAttribute("value");
- bool enumFound = false;
- int enumValue = 0;
- const char** enumPtr = attr.enumNames_;
- while (*enumPtr)
- {
- if (!value.Compare(*enumPtr, false))
- {
- enumFound = true;
- break;
- }
- ++enumPtr;
- ++enumValue;
- }
- if (enumFound)
- varValue = enumValue;
- else
- URHO3D_LOGWARNING("Unknown enum value " + value + " in attribute " + attr.name_);
- }
- else
- varValue = attrElem.GetVariantValue(attr.type_);
- if (!varValue.IsEmpty())
- {
- OnSetAttribute(attr, varValue);
- if (setInstanceDefault)
- SetInstanceDefault(attr.name_, varValue);
- }
- startIndex = (i + 1) % attributes->Size();
- break;
- }
- else
- {
- i = (i + 1) % attributes->Size();
- --attempts;
- }
- }
- if (!attempts)
- URHO3D_LOGWARNING("Unknown attribute " + name + " in XML data");
- attrElem = attrElem.GetNext("attribute");
- }
- return true;
- }
- bool Serializable::LoadJSON(const JSONValue& source, bool setInstanceDefault)
- {
- if (source.IsNull())
- {
- URHO3D_LOGERROR("Could not load " + GetTypeName() + ", null JSON source element");
- return false;
- }
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- return true;
- // Get attributes value
- JSONValue attributesValue = source.Get("attributes");
- if (attributesValue.IsNull())
- return true;
- // Warn if the attributes value isn't an object
- if (!attributesValue.IsObject())
- {
- URHO3D_LOGWARNING("'attributes' object is present in " + GetTypeName() + " but is not a JSON object; skipping load");
- return true;
- }
- const JSONObject& attributesObject = attributesValue.GetObject();
- unsigned startIndex = 0;
- for (JSONObject::ConstIterator it = attributesObject.Begin(); it != attributesObject.End();)
- {
- String name = it->first_;
- const JSONValue& value = it->second_;
- unsigned i = startIndex;
- unsigned attempts = attributes->Size();
- while (attempts)
- {
- const AttributeInfo& attr = attributes->At(i);
- if ((attr.mode_ & AM_FILE) && !attr.name_.Compare(name, true))
- {
- Variant varValue;
- // If enums specified, do enum lookup ad int assignment. Otherwise assign variant directly
- if (attr.enumNames_)
- {
- String valueStr = value.GetString();
- bool enumFound = false;
- int enumValue = 0;
- const char** enumPtr = attr.enumNames_;
- while (*enumPtr)
- {
- if (!valueStr.Compare(*enumPtr, false))
- {
- enumFound = true;
- break;
- }
- ++enumPtr;
- ++enumValue;
- }
- if (enumFound)
- varValue = enumValue;
- else
- URHO3D_LOGWARNING("Unknown enum value " + valueStr + " in attribute " + attr.name_);
- }
- else
- varValue = value.GetVariantValue(attr.type_);
- if (!varValue.IsEmpty())
- {
- OnSetAttribute(attr, varValue);
- if (setInstanceDefault)
- SetInstanceDefault(attr.name_, varValue);
- }
- startIndex = (i + 1) % attributes->Size();
- break;
- }
- else
- {
- i = (i + 1) % attributes->Size();
- --attempts;
- }
- }
- if (!attempts)
- URHO3D_LOGWARNING("Unknown attribute " + name + " in JSON data");
- it++;
- }
- return true;
- }
- bool Serializable::SaveXML(XMLElement& dest) const
- {
- if (dest.IsNull())
- {
- URHO3D_LOGERROR("Could not save " + GetTypeName() + ", null destination element");
- return false;
- }
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- return true;
- Variant value;
- for (unsigned i = 0; i < attributes->Size(); ++i)
- {
- const AttributeInfo& attr = attributes->At(i);
- if (!(attr.mode_ & AM_FILE))
- continue;
- OnGetAttribute(attr, value);
- Variant defaultValue(GetAttributeDefault(i));
- // In XML serialization default values can be skipped. This will make the file easier to read or edit manually
- if (value == defaultValue && !SaveDefaultAttributes())
- continue;
- XMLElement attrElem = dest.CreateChild("attribute");
- attrElem.SetAttribute("name", attr.name_);
- // If enums specified, set as an enum string. Otherwise set directly as a Variant
- if (attr.enumNames_)
- {
- int enumValue = value.GetInt();
- attrElem.SetAttribute("value", attr.enumNames_[enumValue]);
- }
- else
- attrElem.SetVariantValue(value);
- }
- return true;
- }
- bool Serializable::SaveJSON(JSONValue& dest) const
- {
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- return true;
- Variant value;
- JSONValue attributesValue;
- for (unsigned i = 0; i < attributes->Size(); ++i)
- {
- const AttributeInfo& attr = attributes->At(i);
- if (!(attr.mode_ & AM_FILE))
- continue;
- OnGetAttribute(attr, value);
- Variant defaultValue(GetAttributeDefault(i));
- // In JSON serialization default values can be skipped. This will make the file easier to read or edit manually
- if (value == defaultValue && !SaveDefaultAttributes())
- continue;
- JSONValue attrVal;
- // If enums specified, set as an enum string. Otherwise set directly as a Variant
- if (attr.enumNames_)
- {
- int enumValue = value.GetInt();
- attrVal = attr.enumNames_[enumValue];
- }
- else
- attrVal.SetVariantValue(value, context_);
- attributesValue.Set(attr.name_, attrVal);
- }
- dest.Set("attributes", attributesValue);
- return true;
- }
- bool Serializable::SetAttribute(unsigned index, const Variant& value)
- {
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- {
- URHO3D_LOGERROR(GetTypeName() + " has no attributes");
- return false;
- }
- if (index >= attributes->Size())
- {
- URHO3D_LOGERROR("Attribute index out of bounds");
- return false;
- }
- const AttributeInfo& attr = attributes->At(index);
- // Check that the new value's type matches the attribute type
- if (value.GetType() == attr.type_)
- {
- OnSetAttribute(attr, value);
- return true;
- }
- else
- {
- URHO3D_LOGERROR("Could not set attribute " + attr.name_ + ": expected type " + Variant::GetTypeName(attr.type_) +
- " but got " + value.GetTypeName());
- return false;
- }
- }
- bool Serializable::SetAttribute(const String& name, const Variant& value)
- {
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- {
- URHO3D_LOGERROR(GetTypeName() + " has no attributes");
- return false;
- }
- for (Vector<AttributeInfo>::ConstIterator i = attributes->Begin(); i != attributes->End(); ++i)
- {
- if (!i->name_.Compare(name, true))
- {
- // Check that the new value's type matches the attribute type
- if (value.GetType() == i->type_)
- {
- OnSetAttribute(*i, value);
- return true;
- }
- else
- {
- URHO3D_LOGERROR("Could not set attribute " + i->name_ + ": expected type " + Variant::GetTypeName(i->type_)
- + " but got " + value.GetTypeName());
- return false;
- }
- }
- }
- URHO3D_LOGERROR("Could not find attribute " + name + " in " + GetTypeName());
- return false;
- }
- void Serializable::ResetToDefault()
- {
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- return;
- for (unsigned i = 0; i < attributes->Size(); ++i)
- {
- const AttributeInfo& attr = attributes->At(i);
- if (attr.mode_ & (AM_NOEDIT | AM_NODEID | AM_COMPONENTID | AM_NODEIDVECTOR))
- continue;
- Variant defaultValue = GetInstanceDefault(attr.name_);
- if (defaultValue.IsEmpty())
- defaultValue = attr.defaultValue_;
- OnSetAttribute(attr, defaultValue);
- }
- }
- void Serializable::RemoveInstanceDefault()
- {
- delete instanceDefaultValues_;
- instanceDefaultValues_ = 0;
- }
- void Serializable::SetTemporary(bool enable)
- {
- if (enable != temporary_)
- {
- temporary_ = enable;
- using namespace TemporaryChanged;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_SERIALIZABLE] = this;
- SendEvent(E_TEMPORARYCHANGED, eventData);
- }
- }
- void Serializable::SetInterceptNetworkUpdate(const String& attributeName, bool enable)
- {
- AllocateNetworkState();
- const Vector<AttributeInfo>* attributes = networkState_->attributes_;
- if (!attributes)
- return;
- for (unsigned i = 0; i < attributes->Size(); ++i)
- {
- const AttributeInfo& attr = attributes->At(i);
- if (!attr.name_.Compare(attributeName, true))
- {
- if (enable)
- networkState_->interceptMask_ |= 1ULL << i;
- else
- networkState_->interceptMask_ &= ~(1ULL << i);
- break;
- }
- }
- }
- void Serializable::AllocateNetworkState()
- {
- if (networkState_)
- return;
- const Vector<AttributeInfo>* networkAttributes = GetNetworkAttributes();
- networkState_ = new NetworkState();
- networkState_->attributes_ = networkAttributes;
- if (!networkAttributes)
- return;
- unsigned numAttributes = networkAttributes->Size();
- if (networkState_->currentValues_.Size() != numAttributes)
- {
- networkState_->currentValues_.Resize(numAttributes);
- networkState_->previousValues_.Resize(numAttributes);
- // Copy the default attribute values to the previous state as a starting point
- for (unsigned i = 0; i < numAttributes; ++i)
- networkState_->previousValues_[i] = networkAttributes->At(i).defaultValue_;
- }
- }
- void Serializable::WriteInitialDeltaUpdate(Serializer& dest, unsigned char timeStamp)
- {
- if (!networkState_)
- {
- URHO3D_LOGERROR("WriteInitialDeltaUpdate called without allocated NetworkState");
- return;
- }
- const Vector<AttributeInfo>* attributes = networkState_->attributes_;
- if (!attributes)
- return;
- unsigned numAttributes = attributes->Size();
- DirtyBits attributeBits;
- // Compare against defaults
- for (unsigned i = 0; i < numAttributes; ++i)
- {
- const AttributeInfo& attr = attributes->At(i);
- if (networkState_->currentValues_[i] != attr.defaultValue_)
- attributeBits.Set(i);
- }
- // First write the change bitfield, then attribute data for non-default attributes
- dest.WriteUByte(timeStamp);
- dest.Write(attributeBits.data_, (numAttributes + 7) >> 3);
- for (unsigned i = 0; i < numAttributes; ++i)
- {
- if (attributeBits.IsSet(i))
- dest.WriteVariantData(networkState_->currentValues_[i]);
- }
- }
- void Serializable::WriteDeltaUpdate(Serializer& dest, const DirtyBits& attributeBits, unsigned char timeStamp)
- {
- if (!networkState_)
- {
- URHO3D_LOGERROR("WriteDeltaUpdate called without allocated NetworkState");
- return;
- }
- const Vector<AttributeInfo>* attributes = networkState_->attributes_;
- if (!attributes)
- return;
- unsigned numAttributes = attributes->Size();
- // First write the change bitfield, then attribute data for changed attributes
- // Note: the attribute bits should not contain LATESTDATA attributes
- dest.WriteUByte(timeStamp);
- dest.Write(attributeBits.data_, (numAttributes + 7) >> 3);
- for (unsigned i = 0; i < numAttributes; ++i)
- {
- if (attributeBits.IsSet(i))
- dest.WriteVariantData(networkState_->currentValues_[i]);
- }
- }
- void Serializable::WriteLatestDataUpdate(Serializer& dest, unsigned char timeStamp)
- {
- if (!networkState_)
- {
- URHO3D_LOGERROR("WriteLatestDataUpdate called without allocated NetworkState");
- return;
- }
- const Vector<AttributeInfo>* attributes = networkState_->attributes_;
- if (!attributes)
- return;
- unsigned numAttributes = attributes->Size();
- dest.WriteUByte(timeStamp);
- for (unsigned i = 0; i < numAttributes; ++i)
- {
- if (attributes->At(i).mode_ & AM_LATESTDATA)
- dest.WriteVariantData(networkState_->currentValues_[i]);
- }
- }
- bool Serializable::ReadDeltaUpdate(Deserializer& source)
- {
- const Vector<AttributeInfo>* attributes = GetNetworkAttributes();
- if (!attributes)
- return false;
- unsigned numAttributes = attributes->Size();
- DirtyBits attributeBits;
- bool changed = false;
- unsigned long long interceptMask = networkState_ ? networkState_->interceptMask_ : 0;
- unsigned char timeStamp = source.ReadUByte();
- source.Read(attributeBits.data_, (numAttributes + 7) >> 3);
- for (unsigned i = 0; i < numAttributes && !source.IsEof(); ++i)
- {
- if (attributeBits.IsSet(i))
- {
- const AttributeInfo& attr = attributes->At(i);
- if (!(interceptMask & (1ULL << i)))
- {
- OnSetAttribute(attr, source.ReadVariant(attr.type_));
- changed = true;
- }
- else
- {
- using namespace InterceptNetworkUpdate;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_SERIALIZABLE] = this;
- eventData[P_TIMESTAMP] = (unsigned)timeStamp;
- eventData[P_INDEX] = RemapAttributeIndex(GetAttributes(), attr, i);
- eventData[P_NAME] = attr.name_;
- eventData[P_VALUE] = source.ReadVariant(attr.type_);
- SendEvent(E_INTERCEPTNETWORKUPDATE, eventData);
- }
- }
- }
- return changed;
- }
- bool Serializable::ReadLatestDataUpdate(Deserializer& source)
- {
- const Vector<AttributeInfo>* attributes = GetNetworkAttributes();
- if (!attributes)
- return false;
- unsigned numAttributes = attributes->Size();
- bool changed = false;
- unsigned long long interceptMask = networkState_ ? networkState_->interceptMask_ : 0;
- unsigned char timeStamp = source.ReadUByte();
- for (unsigned i = 0; i < numAttributes && !source.IsEof(); ++i)
- {
- const AttributeInfo& attr = attributes->At(i);
- if (attr.mode_ & AM_LATESTDATA)
- {
- if (!(interceptMask & (1ULL << i)))
- {
- OnSetAttribute(attr, source.ReadVariant(attr.type_));
- changed = true;
- }
- else
- {
- using namespace InterceptNetworkUpdate;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_SERIALIZABLE] = this;
- eventData[P_TIMESTAMP] = (unsigned)timeStamp;
- eventData[P_INDEX] = RemapAttributeIndex(GetAttributes(), attr, i);
- eventData[P_NAME] = attr.name_;
- eventData[P_VALUE] = source.ReadVariant(attr.type_);
- SendEvent(E_INTERCEPTNETWORKUPDATE, eventData);
- }
- }
- }
- return changed;
- }
- Variant Serializable::GetAttribute(unsigned index) const
- {
- Variant ret;
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- {
- URHO3D_LOGERROR(GetTypeName() + " has no attributes");
- return ret;
- }
- if (index >= attributes->Size())
- {
- URHO3D_LOGERROR("Attribute index out of bounds");
- return ret;
- }
- OnGetAttribute(attributes->At(index), ret);
- return ret;
- }
- Variant Serializable::GetAttribute(const String& name) const
- {
- Variant ret;
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- {
- URHO3D_LOGERROR(GetTypeName() + " has no attributes");
- return ret;
- }
- for (Vector<AttributeInfo>::ConstIterator i = attributes->Begin(); i != attributes->End(); ++i)
- {
- if (!i->name_.Compare(name, true))
- {
- OnGetAttribute(*i, ret);
- return ret;
- }
- }
- URHO3D_LOGERROR("Could not find attribute " + name + " in " + GetTypeName());
- return ret;
- }
- Variant Serializable::GetAttributeDefault(unsigned index) const
- {
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- {
- URHO3D_LOGERROR(GetTypeName() + " has no attributes");
- return Variant::EMPTY;
- }
- if (index >= attributes->Size())
- {
- URHO3D_LOGERROR("Attribute index out of bounds");
- return Variant::EMPTY;
- }
- AttributeInfo attr = attributes->At(index);
- Variant defaultValue = GetInstanceDefault(attr.name_);
- return defaultValue.IsEmpty() ? attr.defaultValue_ : defaultValue;
- }
- Variant Serializable::GetAttributeDefault(const String& name) const
- {
- Variant defaultValue = GetInstanceDefault(name);
- if (!defaultValue.IsEmpty())
- return defaultValue;
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- {
- URHO3D_LOGERROR(GetTypeName() + " has no attributes");
- return Variant::EMPTY;
- }
- for (Vector<AttributeInfo>::ConstIterator i = attributes->Begin(); i != attributes->End(); ++i)
- {
- if (!i->name_.Compare(name, true))
- return i->defaultValue_;
- }
- URHO3D_LOGERROR("Could not find attribute " + name + " in " + GetTypeName());
- return Variant::EMPTY;
- }
- unsigned Serializable::GetNumAttributes() const
- {
- const Vector<AttributeInfo>* attributes = GetAttributes();
- return attributes ? attributes->Size() : 0;
- }
- unsigned Serializable::GetNumNetworkAttributes() const
- {
- const Vector<AttributeInfo>* attributes = networkState_ ? networkState_->attributes_ :
- context_->GetNetworkAttributes(GetType());
- return attributes ? attributes->Size() : 0;
- }
- bool Serializable::GetInterceptNetworkUpdate(const String& attributeName) const
- {
- const Vector<AttributeInfo>* attributes = GetNetworkAttributes();
- if (!attributes)
- return false;
- unsigned long long interceptMask = networkState_ ? networkState_->interceptMask_ : 0;
- for (unsigned i = 0; i < attributes->Size(); ++i)
- {
- const AttributeInfo& attr = attributes->At(i);
- if (!attr.name_.Compare(attributeName, true))
- return interceptMask & (1ULL << i) ? true : false;
- }
- return false;
- }
- void Serializable::SetInstanceDefault(const String& name, const Variant& defaultValue)
- {
- // Allocate the instance level default value
- if (!instanceDefaultValues_)
- instanceDefaultValues_ = new VariantMap();
- instanceDefaultValues_->operator [](name) = defaultValue;
- }
- Variant Serializable::GetInstanceDefault(const String& name) const
- {
- if (instanceDefaultValues_)
- {
- VariantMap::ConstIterator i = instanceDefaultValues_->Find(name);
- if (i != instanceDefaultValues_->End())
- return i->second_;
- }
- return Variant::EMPTY;
- }
- }
|