56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
#pragma once
|
|
#include <entt/entt.hpp>
|
|
#include "MinimalEngine.h"
|
|
#include "Graphics/Graphics.h"
|
|
#include "Physics/PhysicsSystem.h"
|
|
#include "Component/Skybox.h"
|
|
#include "LightEnvironment.h"
|
|
|
|
namespace Seele
|
|
{
|
|
DECLARE_REF(Material)
|
|
DECLARE_REF(Entity)
|
|
class Scene
|
|
{
|
|
public:
|
|
Scene(Gfx::PGraphics graphics);
|
|
~Scene();
|
|
void update(float deltaTime);
|
|
entt::entity createEntity()
|
|
{
|
|
return registry.create();
|
|
}
|
|
void destroyEntity(entt::entity identifier)
|
|
{
|
|
registry.destroy(identifier);
|
|
}
|
|
template<typename Component, typename... Args>
|
|
Component& attachComponent(entt::entity entity, Args&&... args)
|
|
{
|
|
return registry.emplace<Component>(entity, std::forward<Args>(args)...);
|
|
}
|
|
template<typename Component>
|
|
Component& accessComponent(entt::entity entity)
|
|
{
|
|
return registry.get<Component>(entity);
|
|
}
|
|
template<typename Component>
|
|
const Component& accessComponent(entt::entity entity) const
|
|
{
|
|
return registry.get<Component>(entity);
|
|
}
|
|
template<typename... Component, typename Func>
|
|
void view(Func func) requires std::is_invocable_v<Func, Component&...> || std::is_invocable_v<Func, entt::entity, Component&...>
|
|
{
|
|
registry.view<Component...>().each(func);
|
|
}
|
|
PLightEnvironment getLightEnvironment() { return lightEnv; }
|
|
Gfx::PGraphics getGraphics() const { return graphics; }
|
|
entt::registry registry;
|
|
private:
|
|
PLightEnvironment lightEnv;
|
|
PhysicsSystem physics;
|
|
Gfx::PGraphics graphics;
|
|
};
|
|
DEFINE_REF(Scene)
|
|
} // namespace Seele
|