NcEngine
HandleManager.h
1#pragma once
2
4
5#include <algorithm>
6#include <iterator>
7#include <span>
8#include <vector>
9
10namespace nc::ecs::detail
11{
13{
14 public:
16 : m_freeHandles{},
17 m_nextIndex{0u}
18 {
19 }
20
21 Entity GenerateNewHandle(Entity::layer_type layer,
22 Entity::flags_type flags,
23 Entity::user_data_type userData)
24 {
25 const auto index = [this](){
26 if (m_freeHandles.empty())
27 return m_nextIndex++;
28
29 const auto recycled = m_freeHandles.back();
30 m_freeHandles.pop_back();
31 return recycled;
32 }();
33
34 return Entity{index, layer, flags, userData};
35 }
36
37 void ReclaimHandle(Entity handle)
38 {
39 m_freeHandles.push_back(handle.Index());
40 }
41
42 void ReclaimHandles(std::span<Entity> handles)
43 {
44 m_freeHandles.reserve(m_freeHandles.capacity() + handles.size());
45 std::ranges::transform(handles.begin(), handles.end(), std::back_inserter(m_freeHandles), [](auto entity)
46 {
47 return entity.Index();
48 });
49 }
50
51 void Reset(const std::vector<Entity>& persistentEntities)
52 {
53 m_freeHandles.clear();
54 m_freeHandles.shrink_to_fit();
55 m_nextIndex = 0u;
56
57 for(auto entity : persistentEntities)
58 {
59 auto index = entity.Index();
60 if(index == m_nextIndex)
61 {
62 ++m_nextIndex;
63 }
64 else if(index < m_nextIndex)
65 {
66 auto pos = std::ranges::find(m_freeHandles, index);
67 if(pos != m_freeHandles.end())
68 {
69 *pos = m_freeHandles.back();
70 m_freeHandles.pop_back();
71 }
72 }
73 else
74 {
75 while(m_nextIndex < index)
76 {
77 m_freeHandles.push_back(m_nextIndex++);
78 }
79
80 ++m_nextIndex;
81 }
82 }
83 }
84
85 private:
86 std::vector<Entity::index_type> m_freeHandles;
87 Entity::index_type m_nextIndex;
88};
89} // namespace nc::ecs::detail
Identifies an object in the registry.
Definition: Entity.h:18
Definition: HandleManager.h:13