NcEngine
FreeComponentPool.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "ncengine/ecs/detail/FreeComponentGroup.h"
9
10#include <ranges>
11
12namespace nc::ecs
13{
16{
17 public:
18 explicit FreeComponentPool(size_t maxEntities)
19 : m_entityToGroup{0, maxEntities}
20 {
21 }
22
24 template<std::derived_from<FreeComponent> T, class ... Args>
25 auto Emplace(Entity entity, Args&& ... args) -> T&
26 {
27 const auto id = entity.Index();
28 auto& group = m_entityToGroup.contains(id)
29 ? m_entityToGroup.at(id)
30 : m_entityToGroup.emplace(id, detail::FreeComponentGroup{});
31
32 return group.Add<T>(entity, std::forward<Args>(args)...);
33 }
34
36 template<std::derived_from<FreeComponent> T>
37 auto Remove(Entity entity) -> bool
38 {
39 const auto id = entity.Index();
40 return m_entityToGroup.contains(id)
41 ? m_entityToGroup.at(entity.Index()).Remove<T>()
42 : false;
43 }
44
46 template<std::derived_from<FreeComponent> T>
47 bool Contains(Entity entity) const noexcept
48 {
49 const auto id = entity.Index();
50 return m_entityToGroup.contains(id)
51 ? m_entityToGroup.at(id).Contains<T>()
52 : false;
53 }
54
56 template<std::derived_from<FreeComponent> T>
57 auto Get(Entity entity) const -> T&
58 {
59 NC_ASSERT(m_entityToGroup.contains(entity.Index()), "Component does not exist");
60 return m_entityToGroup.at(entity.Index()).Get<T>();
61 }
62
64 void CommitStagedComponents(std::span<const Entity> removedEntities)
65 {
66 for (const auto removed : removedEntities)
67 {
68 m_entityToGroup.erase(removed.Index());
69 }
70
71 for (auto& group : m_entityToGroup.values())
72 {
73 group.CommitStagedComponents();
74 }
75 }
76
78 void ClearNonPersistent() noexcept
79 {
80 const auto keyVals = std::views::zip(m_entityToGroup.keys(), m_entityToGroup.values());
81 for (const auto [id, group] : std::views::reverse(keyVals))
82 {
83 if (!group.IsPersistentGroup())
84 {
85 m_entityToGroup.erase(id);
86 }
87 }
88 }
89
91 void Clear() noexcept
92 {
93 m_entityToGroup.clear();
94 }
95
96 private:
98};
99} // namespace nc::ecs
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