Added layer system

This commit is contained in:
Lauchmelder 2022-01-14 22:11:27 +01:00
parent 7b268efa6a
commit bb055a48d2
4 changed files with 49 additions and 2 deletions

View file

@ -24,7 +24,9 @@ add_library(lol STATIC
"src/buffers/VertexBuffer.cpp"
"src/buffers/ElementBuffer.cpp"
"src/Image.cpp"
"src/ObjectManager.cpp")
"src/ObjectManager.cpp"
"src/Layer.cpp"
)
target_include_directories(lol PUBLIC
${GLM_INCLUDE_DIRS}

27
include/lol/Layer.hpp Normal file
View file

@ -0,0 +1,27 @@
#pragma once
#include <string>
namespace lol
{
class CameraBase;
class Layer
{
public:
Layer(const std::string& debugName);
virtual ~Layer();
virtual void OnAttach() {}
virtual void OnDetach() {}
virtual void OnUpdate() {}
virtual void OnRender(CameraBase& camera) {}
inline const std::string& GetDebugName() { return debugName; }
private:
std::string debugName;
};
}

View file

@ -7,4 +7,5 @@
#include <lol/Texture.hpp>
#include <lol/Image.hpp>
#include <lol/Camera.hpp>
#include <lol/util/BoundingBox.hpp>
#include <lol/util/BoundingBox.hpp>
#include <lol/Layer.hpp>

17
src/Layer.cpp Normal file
View file

@ -0,0 +1,17 @@
#include <lol/Layer.hpp>
#include <string>
namespace lol
{
Layer::Layer(const std::string& debugName) :
debugName(debugName)
{
}
Layer::~Layer()
{
}
}