10 #include <NasNas/ecs/System.hpp> 11 #include <NasNas/ecs/Storage.hpp> 12 #include <NasNas/ecs/View.hpp> 15 template <
typename TEntity=Entity>
19 static TEntity ent_id = 0;
20 if (!m_cemetery.empty()) {
21 m_entities.emplace_back(m_cemetery.front());
25 m_entities.emplace_back(ent_id++);
27 return m_entities.back();
30 void destroy(TEntity ent) {
31 auto it = std::find(m_entities.begin(), m_entities.end(), ent);
32 if (it == m_entities.end())
35 for (
auto& [
id, pool] : m_pools) {
40 m_entities[it-m_entities.begin()] = m_entities.back();
41 m_entities.pop_back();
44 template <
typename TComp,
typename ...Targs>
45 auto attach(TEntity ent, Targs&& ...args) -> TComp& {
46 return getPool<TComp>().add(ent, std::forward<Targs>(args)...);
49 template <
typename TComp>
50 void detach(TEntity ent) {
51 if (has<TComp>(ent)) {
52 getPool<TComp>().
remove(ent);
56 template <
typename TComp>
57 auto all() -> std::vector<TComp>& {
58 return getPool<TComp>().components();
61 template <
typename TComp>
62 auto has(TEntity ent) ->
bool {
63 return getPool<TComp>().contains(ent);
66 template <
typename TComp>
67 auto get(TEntity ent) -> TComp& {
68 auto& pool = getPool<TComp>();
69 if (has<TComp>(ent)) {
70 return pool.components().at(pool.index(ent));
72 throw std::runtime_error(
"Trying to get non existing component from entity "+std::to_string(ent));
76 auto count()
const -> std::size_t {
77 return m_entities.size();
80 template <
typename... TComps>
82 return { getPool<TComps>()...};
85 template <
typename... TComps,
typename Func>
87 view<TComps...>().for_each(std::move(fn));
90 template <
typename... TComps>
92 view<TComps...>().for_each(system.m_function);
96 template <
typename TComp>
98 auto comp_id = getTypeId<TComp>();
100 if (m_pools.find(comp_id) == m_pools.end()) {
101 m_pools[comp_id] = std::make_unique<components_pool<TEntity, TComp>>();
106 std::vector<TEntity> m_entities;
107 std::queue<TEntity> m_cemetery;
108 mutable std::map<UID, std::unique_ptr<sparse_set<TEntity>>> m_pools;