| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- //
- // 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.
- //
- #pragma once
- #include "../Container/Ptr.h"
- #include "../Core/Variant.h"
- namespace Atomic
- {
- /// Attribute shown only in the editor, but not serialized.
- static const unsigned AM_EDIT = 0x0;
- /// Attribute used for file serialization.
- static const unsigned AM_FILE = 0x1;
- /// Attribute used for network replication.
- static const unsigned AM_NET = 0x2;
- /// Attribute used for both file serialization and network replication (default).
- static const unsigned AM_DEFAULT = 0x3;
- /// Attribute should use latest data grouping instead of delta update in network replication.
- static const unsigned AM_LATESTDATA = 0x4;
- /// Attribute should not be shown in the editor.
- static const unsigned AM_NOEDIT = 0x8;
- /// Attribute is a node ID and may need rewriting.
- static const unsigned AM_NODEID = 0x10;
- /// Attribute is a component ID and may need rewriting.
- static const unsigned AM_COMPONENTID = 0x20;
- /// Attribute is a node ID vector where first element is the amount of nodes.
- static const unsigned AM_NODEIDVECTOR = 0x40;
- /// Attribute is readonly. Can't be used with binary serialized objects.
- static const unsigned AM_FILEREADONLY = 0x81;
- class Serializable;
- /// Abstract base class for invoking attribute accessors.
- class ATOMIC_API AttributeAccessor : public RefCounted
- {
- ATOMIC_REFCOUNTED(AttributeAccessor)
- public:
- /// Get the attribute.
- virtual void Get(const Serializable* ptr, Variant& dest) const = 0;
- /// Set the attribute.
- virtual void Set(Serializable* ptr, const Variant& src) = 0;
- };
- /// Description of an automatically serializable variable.
- struct AttributeInfo
- {
- /// Construct empty.
- AttributeInfo() :
- type_(VAR_NONE),
- offset_(0),
- enumNames_(0),
- variantStructureElementNames_(0),
- mode_(AM_DEFAULT),
- ptr_(0)
- {
- }
- /// Construct offset attribute.
- AttributeInfo(VariantType type, const char* name, size_t offset, const Variant& defaultValue, unsigned mode) :
- type_(type),
- name_(name),
- offset_((unsigned)offset),
- enumNames_(0),
- variantStructureElementNames_(0),
- defaultValue_(defaultValue),
- mode_(mode),
- ptr_(0)
- {
- }
- /// Construct offset enum attribute.
- AttributeInfo(const char* name, size_t offset, const char** enumNames, const Variant& defaultValue, unsigned mode) :
- type_(VAR_INT),
- name_(name),
- offset_((unsigned)offset),
- enumNames_(enumNames),
- variantStructureElementNames_(0),
- defaultValue_(defaultValue),
- mode_(mode),
- ptr_(0)
- {
- }
- /// Construct accessor attribute.
- AttributeInfo(VariantType type, const char* name, AttributeAccessor* accessor, const Variant& defaultValue, unsigned mode) :
- type_(type),
- name_(name),
- offset_(0),
- enumNames_(0),
- variantStructureElementNames_(0),
- accessor_(accessor),
- defaultValue_(defaultValue),
- mode_(mode),
- ptr_(0)
- {
- }
- /// Construct accessor enum attribute.
- AttributeInfo(const char* name, AttributeAccessor* accessor, const char** enumNames, const Variant& defaultValue,
- unsigned mode) :
- type_(VAR_INT),
- name_(name),
- offset_(0),
- enumNames_(enumNames),
- variantStructureElementNames_(0),
- accessor_(accessor),
- defaultValue_(defaultValue),
- mode_(mode),
- ptr_(0)
- {
- }
- /// Construct variant structure (structure, which packed to VariantVector) attribute.
- AttributeInfo(VariantType type, const char* name, AttributeAccessor* accessor, const Variant& defaultValue, const char** variantStructureElementNames, unsigned mode) :
- type_(type),
- name_(name),
- offset_(0),
- enumNames_(0),
- variantStructureElementNames_(variantStructureElementNames),
- accessor_(accessor),
- defaultValue_(defaultValue),
- mode_(mode),
- ptr_(0)
- {
- }
- /// Attribute type.
- VariantType type_;
- /// Name.
- String name_;
- /// Byte offset from start of object.
- unsigned offset_;
- /// Enum names.
- const char** enumNames_;
- /// Variant structure elements names.
- const char** variantStructureElementNames_;
- /// Helper object for accessor mode.
- SharedPtr<AttributeAccessor> accessor_;
- /// Default value for network replication.
- Variant defaultValue_;
- /// Attribute mode: whether to use for serialization, network replication, or both.
- unsigned mode_;
- /// Attribute data pointer if elsewhere than in the Serializable.
- void* ptr_;
- };
- }
|