53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
// Copyright (C) 2024 Jérôme "SirLynix" Leclercq (lynix680@gmail.com)
|
|
// This file is part of the "Nazara Engine - Core module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_CORE_ENTTWORLD_HPP
|
|
#define NAZARA_CORE_ENTTWORLD_HPP
|
|
|
|
#include <NazaraUtils/Prerequisites.hpp>
|
|
#include <Nazara/Core/ApplicationComponent.hpp>
|
|
#include <Nazara/Core/EntityWorld.hpp>
|
|
#include <Nazara/Core/EnttSystemGraph.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
class NAZARA_CORE_API EnttWorld : public EntityWorld
|
|
{
|
|
public:
|
|
EnttWorld();
|
|
EnttWorld(const EnttWorld&) = delete;
|
|
EnttWorld(EnttWorld&&) = delete;
|
|
~EnttWorld() = default;
|
|
|
|
template<typename T, typename... Args> T& AddSystem(Args&&... args);
|
|
|
|
entt::handle CreateEntity();
|
|
|
|
inline std::size_t GetAliveEntityCount() const;
|
|
entt::registry& GetRegistry();
|
|
const entt::registry& GetRegistry() const;
|
|
template<typename T> T& GetSystem() const;
|
|
|
|
template<typename T> void RemoveSystem();
|
|
|
|
void Update(Time elapsedTime) override;
|
|
|
|
operator entt::registry&();
|
|
operator const entt::registry&() const;
|
|
|
|
EnttWorld& operator=(const EnttWorld&) = delete;
|
|
EnttWorld& operator=(EnttWorld&&) = delete;
|
|
|
|
private:
|
|
entt::registry m_registry;
|
|
EnttSystemGraph m_systemGraph;
|
|
};
|
|
}
|
|
|
|
#include <Nazara/Core/EnttWorld.inl>
|
|
|
|
#endif // NAZARA_CORE_ENTTWORLD_HPP
|