NcEngine
Entity.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "ncmath/Vector.h"
8#include "ncmath/Quaternion.h"
9
10#include <cstdint>
11#include <limits>
12#include <string>
13
14namespace nc
15{
17class Entity
18{
19 public:
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;
24
26 static constexpr index_type NullIndex = std::numeric_limits<index_type>::max();
27
29 struct Flags
30 {
31 static constexpr Entity::flags_type None = 0b00000000;
32 static constexpr Entity::flags_type Static = 0b00000001;
33 static constexpr Entity::flags_type Persistent = 0b00000010;
34 static constexpr Entity::flags_type NoCollisionNotifications = 0b00000100;
35 static constexpr Entity::flags_type NoSerialize = 0b00001000;
36 static constexpr Entity::flags_type Internal = 0b00010000;
37 };
38
40 constexpr Entity() noexcept
41 : m_index{NullIndex},
42 m_layer{0},
43 m_flags{Flags::None},
44 m_userData{0}
45 {
46 }
47
49 explicit constexpr Entity(index_type index,
50 layer_type layer = 0,
51 flags_type flags = Flags::None,
52 user_data_type userData = 0) noexcept
53 : m_index{index},
54 m_layer{layer},
55 m_flags{flags},
56 m_userData{userData}
57 {
58 }
59
61 static constexpr auto Null() noexcept { return Entity{}; }
62
64 static constexpr auto FromHash(uint64_t hash) noexcept -> Entity
65 {
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};
71 }
72
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; }
81 constexpr auto ReceivesCollisionEvents() const noexcept -> bool { return !(m_flags & Flags::NoCollisionNotifications); }
82 constexpr auto IsSerializable() const noexcept -> bool { return !(m_flags & Flags::NoSerialize); }
83 constexpr auto IsInternal() const noexcept -> bool { return m_flags & Flags::Internal; }
84
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); }
89
91 struct Hash
92 {
93 constexpr auto operator()(const Entity& entity) const noexcept
94 {
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());
99 }
100 };
101
102 private:
103 index_type m_index;
104 layer_type m_layer;
105 flags_type m_flags;
106 user_data_type m_userData;
107};
108
111{
112 Vector3 position = Vector3::Zero();
113 Quaternion rotation = Quaternion::Identity();
114 Vector3 scale = Vector3::One();
116 std::string tag = "Entity";
117 Entity::layer_type layer = 1u;
118 Entity::flags_type flags = Entity::Flags::None;
119 Entity::user_data_type userData = 0u;
120};
121} // namespace nc
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