| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041 |
- //
- // Copyright (c) 2008-2017 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 Atomic
- {
- 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),
- temporary_(false)
- {
- }
- Serializable::~Serializable()
- {
- }
- 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_INTVECTOR3:
- *(reinterpret_cast<IntVector3*>(dest)) = src.GetIntVector3();
- break;
- case VAR_DOUBLE:
- *(reinterpret_cast<double*>(dest)) = src.GetDouble();
- break;
- default:
- ATOMIC_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_INTVECTOR3:
- dest = *(reinterpret_cast<const IntVector3*>(src));
- break;
- case VAR_DOUBLE:
- dest = *(reinterpret_cast<const double*>(src));
- break;
- default:
- ATOMIC_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())
- {
- ATOMIC_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) || (attr.mode_ & AM_FILEREADONLY) == AM_FILEREADONLY)
- continue;
- OnGetAttribute(attr, value);
- if (!dest.WriteVariantData(value))
- {
- ATOMIC_LOGERROR("Could not save " + GetTypeName() + ", writing to stream failed");
- return false;
- }
- }
- return true;
- }
- bool Serializable::LoadXML(const XMLElement& source, bool setInstanceDefault)
- {
- if (source.IsNull())
- {
- ATOMIC_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
- ATOMIC_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)
- ATOMIC_LOGWARNING("Unknown attribute " + name + " in XML data");
- attrElem = attrElem.GetNext("attribute");
- }
- return true;
- }
- bool Serializable::LoadJSON(const JSONValue& source, bool setInstanceDefault)
- {
- if (source.IsNull())
- {
- ATOMIC_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())
- {
- ATOMIC_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
- ATOMIC_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)
- ATOMIC_LOGWARNING("Unknown attribute " + name + " in JSON data");
- it++;
- }
- return true;
- }
- bool Serializable::SaveXML(XMLElement& dest) const
- {
- if (dest.IsNull())
- {
- ATOMIC_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) || (attr.mode_ & AM_FILEREADONLY) == AM_FILEREADONLY)
- 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) || (attr.mode_ & AM_FILEREADONLY) == AM_FILEREADONLY)
- 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)
- {
- ATOMIC_LOGERROR(GetTypeName() + " has no attributes");
- return false;
- }
- if (index >= attributes->Size())
- {
- ATOMIC_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
- {
- ATOMIC_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)
- {
- ATOMIC_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
- {
- ATOMIC_LOGERROR("Could not set attribute " + i->name_ + ": expected type " + Variant::GetTypeName(i->type_)
- + " but got " + value.GetTypeName());
- return false;
- }
- }
- }
- ATOMIC_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()
- {
- instanceDefaultValues_.Reset();
- }
- 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_)
- {
- ATOMIC_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_)
- {
- ATOMIC_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_)
- {
- ATOMIC_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)
- {
- ATOMIC_LOGERROR(GetTypeName() + " has no attributes");
- return ret;
- }
- if (index >= attributes->Size())
- {
- ATOMIC_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)
- {
- ATOMIC_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;
- }
- }
- ATOMIC_LOGERROR("Could not find attribute " + name + " in " + GetTypeName());
- return ret;
- }
- Variant Serializable::GetAttributeDefault(unsigned index) const
- {
- const Vector<AttributeInfo>* attributes = GetAttributes();
- if (!attributes)
- {
- ATOMIC_LOGERROR(GetTypeName() + " has no attributes");
- return Variant::EMPTY;
- }
- if (index >= attributes->Size())
- {
- ATOMIC_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)
- {
- ATOMIC_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_;
- }
- ATOMIC_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;
- }
- }
|