Files
Seele/src/Engine/Scene/Scene.h
T

56 lines
1.5 KiB
C++
Raw Normal View History

2020-05-05 01:51:13 +02:00
#pragma once
#include <entt/entt.hpp>
2020-04-15 02:03:56 +02:00
#include "MinimalEngine.h"
2023-01-29 18:58:59 +01:00
#include "Graphics/Graphics.h"
2023-01-21 18:43:21 +01:00
#include "Physics/PhysicsSystem.h"
2023-02-01 22:13:04 +01:00
#include "Component/Skybox.h"
2023-10-26 18:37:29 +02:00
#include "LightEnvironment.h"
2020-04-15 02:03:56 +02:00
namespace Seele
{
2021-04-01 16:40:14 +02:00
DECLARE_REF(Material)
DECLARE_REF(Entity)
2020-04-15 02:03:56 +02:00
class Scene
{
public:
2020-09-19 14:36:50 +02:00
Scene(Gfx::PGraphics graphics);
2020-04-15 02:03:56 +02:00
~Scene();
2023-01-21 18:43:21 +01:00
void update(float deltaTime);
entt::entity createEntity()
{
return registry.create();
}
2023-01-21 18:43:21 +01:00
void destroyEntity(entt::entity identifier)
{
2023-01-21 18:43:21 +01:00
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);
}
2023-10-24 15:01:09 +02:00
template<typename... Component, typename Func>
void view(Func func) requires std::is_invocable_v<Func, Component&...> || std::is_invocable_v<Func, entt::entity, Component&...>
2023-01-29 18:58:59 +01:00
{
2023-10-24 15:01:09 +02:00
registry.view<Component...>().each(func);
2023-01-29 18:58:59 +01:00
}
2023-10-26 18:37:29 +02:00
PLightEnvironment getLightEnvironment() { return lightEnv; }
2023-01-29 18:58:59 +01:00
Gfx::PGraphics getGraphics() const { return graphics; }
entt::registry registry;
2020-04-15 02:03:56 +02:00
private:
2023-10-26 18:37:29 +02:00
PLightEnvironment lightEnv;
2023-01-21 18:43:21 +01:00
PhysicsSystem physics;
2020-09-19 14:36:50 +02:00
Gfx::PGraphics graphics;
2020-04-15 02:03:56 +02:00
};
DEFINE_REF(Scene)
2020-05-05 01:51:13 +02:00
} // namespace Seele