10namespace nc::ecs::detail
21 Entity GenerateNewHandle(Entity::layer_type layer,
22 Entity::flags_type flags,
23 Entity::user_data_type userData)
25 const auto index = [
this](){
26 if (m_freeHandles.empty())
29 const auto recycled = m_freeHandles.back();
30 m_freeHandles.pop_back();
34 return Entity{index, layer, flags, userData};
37 void ReclaimHandle(
Entity handle)
39 m_freeHandles.push_back(handle.Index());
42 void ReclaimHandles(std::span<Entity> handles)
44 m_freeHandles.reserve(m_freeHandles.capacity() + handles.size());
45 std::ranges::transform(handles.begin(), handles.end(), std::back_inserter(m_freeHandles), [](
auto entity)
47 return entity.Index();
51 void Reset(
const std::vector<Entity>& persistentEntities)
53 m_freeHandles.clear();
54 m_freeHandles.shrink_to_fit();
57 for(
auto entity : persistentEntities)
59 auto index = entity.Index();
60 if(index == m_nextIndex)
64 else if(index < m_nextIndex)
66 auto pos = std::ranges::find(m_freeHandles, index);
67 if(pos != m_freeHandles.end())
69 *pos = m_freeHandles.back();
70 m_freeHandles.pop_back();
75 while(m_nextIndex < index)
77 m_freeHandles.push_back(m_nextIndex++);
86 std::vector<Entity::index_type> m_freeHandles;
87 Entity::index_type m_nextIndex;
Identifies an object in the registry.
Definition: Entity.h:18
Definition: HandleManager.h:13