7#include "ncengine/ecs/detail/FreeComponentGroup.h"
19 : m_entityToGroup{0, maxEntities}
24 template<std::derived_from<FreeComponent> T,
class ... Args>
27 const auto id = entity.Index();
28 auto& group = m_entityToGroup.contains(
id)
29 ? m_entityToGroup.at(
id)
32 return group.Add<T>(entity, std::forward<Args>(args)...);
36 template<std::derived_from<FreeComponent> T>
39 const auto id = entity.Index();
40 return m_entityToGroup.contains(
id)
41 ? m_entityToGroup.at(entity.Index()).Remove<T>()
46 template<std::derived_from<FreeComponent> T>
49 const auto id = entity.Index();
50 return m_entityToGroup.contains(
id)
51 ? m_entityToGroup.at(
id).Contains<T>()
56 template<std::derived_from<FreeComponent> T>
59 NC_ASSERT(m_entityToGroup.contains(entity.Index()),
"Component does not exist");
60 return m_entityToGroup.at(entity.Index()).Get<T>();
66 for (
const auto removed : removedEntities)
68 m_entityToGroup.erase(removed.Index());
71 for (
auto& group : m_entityToGroup.values())
73 group.CommitStagedComponents();
80 const auto keyVals = std::views::zip(m_entityToGroup.keys(), m_entityToGroup.values());
81 for (
const auto [
id, group] : std::views::reverse(keyVals))
83 if (!group.IsPersistentGroup())
85 m_entityToGroup.erase(
id);
93 m_entityToGroup.clear();
Identifies an object in the registry.
Definition: Entity.h:18
Single pool storing all FreeComponent instances.
Definition: FreeComponentPool.h:16
auto Get(Entity entity) const -> T &
Get the instance of T attached to an Entity.
Definition: FreeComponentPool.h:57
void Clear() noexcept
Remove all components.
Definition: FreeComponentPool.h:91
bool Contains(Entity entity) const noexcept
Check if there is an instance of T attached to an Entity.
Definition: FreeComponentPool.h:47
auto Emplace(Entity entity, Args &&... args) -> T &
Construct an instance of T and attach it to an Entity.
Definition: FreeComponentPool.h:25
void ClearNonPersistent() noexcept
Remove all components not attached to persistent Entities.
Definition: FreeComponentPool.h:78
void CommitStagedComponents(std::span< const Entity > removedEntities)
Finalize any staged additions and removals.
Definition: FreeComponentPool.h:64
auto Remove(Entity entity) -> bool
Remove the instance of T from an Entity.
Definition: FreeComponentPool.h:37
Definition: FreeComponentGroup.h:15
A map-like container with O(1) insertion, removal, and lookup and O(N) iteration.
Definition: SparseMap.h:20