NcEngine
PoolUtility.h
1#pragma once
2
4
5#include "ncutility/NcError.h"
6
7#include <algorithm>
8#include <concepts>
9#include <vector>
10
12namespace nc::ecs::detail
13{
14template<class T>
15struct StagedComponent
16{
17 Entity entity;
18 T component;
19
20 auto operator==(const Entity& other) const noexcept
21 {
22 return entity == other;
23 }
24};
25
26template<class T, class... Args>
27auto Construct(Entity entity, Args&&... args)
28{
29 if constexpr (std::constructible_from<T, Entity, Args...>)
30 return T{entity, std::forward<Args>(args)...};
31 else
32 return T{std::forward<Args>(args)...};
33}
34
35template<class T, class U>
36auto EraseUnstable(std::vector<T>& container, const U& value) -> bool
37{
38 auto pos = std::find(container.begin(), container.end(), value);
39 if (pos != container.end())
40 {
41 *pos = std::move(container.back());
42 container.pop_back();
43 return true;
44 }
45
46 return false;
47}
48} // namespace nc::ecs::detail