7#include "ncengine/ecs/detail/HandleManager.h"
8#include "ncengine/ecs/detail/PoolUtility.h"
9#include "ncengine/type/StableAddress.h"
24 using iterator = std::vector<Entity>::iterator;
25 using const_iterator = std::vector<Entity>::const_iterator;
26 using reverse_iterator = std::vector<Entity>::reverse_iterator;
29 : m_entities{maxEntities / 4u, maxEntities} {}
32 auto Add(Entity::layer_type layer,
33 Entity::flags_type flags,
34 Entity::user_data_type userData) ->
Entity
36 const auto handle = m_handleManager.GenerateNewHandle(layer, flags, userData);
37 m_entities.emplace(handle.Index(), handle);
38 if(handle.IsPersistent())
39 m_persistent.push_back(handle);
47 m_toRemove.push_back(entity);
48 m_entities.erase(entity.Index());
49 if (entity.IsPersistent())
50 detail::EraseUnstable(m_persistent, entity);
56 return m_entities.contains(entity.Index());
60 auto Size() const noexcept ->
size_t {
return m_entities.size(); }
65 if(m_toRemove.empty())
68 m_handleManager.ReclaimHandles(m_toRemove);
69 return std::exchange(m_toRemove, std::vector<Entity>{});
77 m_toRemove.shrink_to_fit();
79 m_persistent.shrink_to_fit();
80 m_handleManager.Reset({});
86 m_toRemove.shrink_to_fit();
87 m_persistent.shrink_to_fit();
89 for (
auto entity : m_persistent)
91 m_entities.emplace(entity.Index(), entity);
94 m_handleManager.Reset(m_persistent);
98 auto begin() noexcept {
return std::ranges::begin(m_entities); }
101 auto begin() const noexcept {
return std::ranges::begin(m_entities); }
104 auto end() noexcept {
return std::ranges::end(m_entities); }
107 auto end() const noexcept {
return std::ranges::end(m_entities); }
110 auto size() const noexcept {
return m_entities.size(); }
113 [[nodiscard]]
auto empty() const noexcept {
return m_entities.empty(); }
119 auto operator[](
size_t pos)
const noexcept ->
const Entity& {
return m_entities.values()[pos]; }
124 if (pos >= m_entities.size())
126 throw NcError{
"Access out of bounds"};
129 return m_entities.values()[pos];
135 if (pos >= m_entities.size())
137 throw NcError{
"Access out of bounds"};
140 return m_entities.values()[pos];
144 auto data() noexcept {
return m_entities.values().data(); }
147 auto data() const noexcept {
return m_entities.values().data(); }
151 std::vector<Entity> m_toRemove;
152 std::vector<Entity> m_persistent;
Identifies an object in the registry.
Definition: Entity.h:18
Common exception type used throughout NcEngine.
Definition: NcError.h:18
Base class for non-copyable non-movable types.
Definition: StableAddress.h:7
Storage class for tracking active entities.
Definition: EntityPool.h:21
auto operator[](size_t pos) const noexcept -> const Entity &
Get a const reference to the entity at the specified position.
Definition: EntityPool.h:119
auto begin() const noexcept
Get a const_iterator to the first entity in the pool.
Definition: EntityPool.h:101
auto at(size_t pos) const -> const Entity &
Get a const reference to the entity at the specified position with bounds checking.
Definition: EntityPool.h:133
auto Size() const noexcept -> size_t
Get the number of entities in the pool.
Definition: EntityPool.h:60
void Remove(Entity entity)
Remove an entity.
Definition: EntityPool.h:45
auto Add(Entity::layer_type layer, Entity::flags_type flags, Entity::user_data_type userData) -> Entity
Add an entity.
Definition: EntityPool.h:32
auto RecycleDeadEntities() -> std::vector< Entity >
Add removed entity indices back to the pool of possible indices.
Definition: EntityPool.h:63
auto data() noexcept
Get a pointer to the underlying entity array.
Definition: EntityPool.h:144
void Clear()
Remove all entities.
Definition: EntityPool.h:73
auto operator[](size_t pos) noexcept -> Entity &
Get a reference to the entity at the specified position.
Definition: EntityPool.h:116
bool Contains(Entity entity) const
Check if an entity exists.
Definition: EntityPool.h:54
auto at(size_t pos) -> Entity &
Get a reference to the entity at the specified position with bounds checking.
Definition: EntityPool.h:122
auto begin() noexcept
Get an iterator to the first entity in the pool.
Definition: EntityPool.h:98
auto end() const noexcept
Get a const_iterator one past the last entity in the pool.
Definition: EntityPool.h:107
void ClearNonPersistent()
Remove all entities, excluding those with the persistent flag.
Definition: EntityPool.h:84
auto size() const noexcept
Get the number of entities in the pool.
Definition: EntityPool.h:110
auto empty() const noexcept
Check if there are no entities in the pool.
Definition: EntityPool.h:113
auto end() noexcept
Get an iterator one past the last entity in the pool.
Definition: EntityPool.h:104
auto data() const noexcept
Get a pointer to the underlying entity array.
Definition: EntityPool.h:147
Definition: HandleManager.h:13
A map-like container with O(1) insertion, removal, and lookup and O(N) iteration.
Definition: SparseMap.h:20