20 using index_type = uint32_t;
21 using layer_type = uint8_t;
22 using flags_type = uint8_t;
23 using user_data_type = uint8_t;
26 static constexpr index_type
NullIndex = std::numeric_limits<index_type>::max();
31 static constexpr Entity::flags_type
None = 0b00000000;
32 static constexpr Entity::flags_type
Static = 0b00000001;
33 static constexpr Entity::flags_type
Persistent = 0b00000010;
36 static constexpr Entity::flags_type
Internal = 0b00010000;
49 explicit constexpr Entity(index_type index,
52 user_data_type userData = 0) noexcept
61 static constexpr auto Null() noexcept {
return Entity{}; }
66 const auto index =
static_cast<Entity::index_type
>((hash >> 24) & 0xFFFFFFFF);
67 const auto layer =
static_cast<Entity::layer_type
>((hash >> 16) & 0xFF);
68 const auto flags =
static_cast<Entity::flags_type
>((hash >> 8) & 0xFF);
69 const auto userData =
static_cast<Entity::user_data_type
>(hash & 0xFF);
70 return Entity{index, layer, flags, userData};
74 constexpr auto Valid() const noexcept ->
bool {
return m_index !=
NullIndex; }
75 constexpr auto Index() const noexcept -> index_type {
return m_index; }
76 constexpr auto Layer() const noexcept -> layer_type {
return m_layer; }
77 constexpr auto Flags() const noexcept -> flags_type {
return m_flags; }
78 constexpr auto UserData() const noexcept -> user_data_type {
return m_userData; }
79 constexpr auto IsStatic() const noexcept ->
bool {
return m_flags &
Flags::Static; }
80 constexpr auto IsPersistent() const noexcept ->
bool {
return m_flags &
Flags::Persistent; }
82 constexpr auto IsSerializable() const noexcept ->
bool {
return !(m_flags &
Flags::NoSerialize); }
83 constexpr auto IsInternal() const noexcept ->
bool {
return m_flags &
Flags::Internal; }
86 explicit constexpr operator index_type() const noexcept {
return m_index; }
87 friend bool constexpr operator==(
const Entity& a,
const Entity& b) {
return a.Index() == b.Index(); }
88 friend bool constexpr operator!=(
const Entity& a,
const Entity& b) {
return !(a == b); }
93 constexpr auto operator()(
const Entity& entity)
const noexcept
95 return static_cast<uint64_t
>(entity.Index()) << 24
96 |
static_cast<uint64_t
>(entity.Layer()) << 16
97 |
static_cast<uint64_t
>(entity.Flags()) << 8
98 |
static_cast<uint64_t
>(entity.UserData());
106 user_data_type m_userData;
116 std::string
tag =
"Entity";
Identifies an object in the registry.
Definition: Entity.h:18
static constexpr auto Null() noexcept
Construct a null Entity.
Definition: Entity.h:61
static constexpr index_type NullIndex
Index used for an invalid Entity.
Definition: Entity.h:26
constexpr Entity() noexcept
Construct a null Entity.
Definition: Entity.h:40
static constexpr auto FromHash(uint64_t hash) noexcept -> Entity
Reconstruct an Entity from a hashed value.
Definition: Entity.h:64
constexpr Entity(index_type index, layer_type layer=0, flags_type flags=Flags::None, user_data_type userData=0) noexcept
Construct an Entity.
Definition: Entity.h:49
Flags for configuring internal Entity behavior.
Definition: Entity.h:30
static constexpr Entity::flags_type Internal
Entity was created by the engine/editor.
Definition: Entity.h:36
static constexpr Entity::flags_type NoCollisionNotifications
Do not send Collision/Trigger events involving the Entity.
Definition: Entity.h:34
static constexpr Entity::flags_type Static
The Entitiy's Transform will not be moved after construction.
Definition: Entity.h:32
static constexpr Entity::flags_type Persistent
Entity persists across scene load/unload.
Definition: Entity.h:33
static constexpr Entity::flags_type NoSerialize
Exclude the Entity and its children from scene serialization.
Definition: Entity.h:35
static constexpr Entity::flags_type None
Default behavior.
Definition: Entity.h:31
Entity Hasher.
Definition: Entity.h:92
Initialization data for Entities.
Definition: Entity.h:111
Vector3 scale
initial Transform scale (must be non-zero in all dimensions)
Definition: Entity.h:114
std::string tag
initial Tag value
Definition: Entity.h:116
Entity::user_data_type userData
custom data for client-side use
Definition: Entity.h:119
Entity::flags_type flags
enabled flags
Definition: Entity.h:118
Entity parent
optional Entity to parent under
Definition: Entity.h:115
Entity::layer_type layer
the layer the Entity belongs to
Definition: Entity.h:117
Vector3 position
initial Transform position
Definition: Entity.h:112
Quaternion rotation
initial Transform rotation (must be normalized)
Definition: Entity.h:113
Quaternion type for representing 3D rotations.
Definition: Quaternion.h:13
A three component vector.
Definition: Vector.h:29