blasphemy
This commit is contained in:
parent
923213a650
commit
711d18e718
|
@ -19,7 +19,7 @@ add_library(lol STATIC
|
|||
"src/Shader.cpp"
|
||||
"src/VertexArrayObject.cpp"
|
||||
"vendor/glad/src/glad.c"
|
||||
)
|
||||
"include/lol/Texture.hpp" "src/Texture.cpp" "include/lol/util/Factory.hpp" )
|
||||
|
||||
target_include_directories(lol PUBLIC
|
||||
${GLM_INCLUDE_DIRS}
|
||||
|
|
|
@ -6,14 +6,16 @@
|
|||
|
||||
#include <glm/glm.hpp>
|
||||
|
||||
#include <lol/NonCopyable.hpp>
|
||||
#include <lol/util/NonCopyable.hpp>
|
||||
#include <lol/util/Factory.hpp>
|
||||
#include <lol/util/ObjectManager.hpp>
|
||||
|
||||
namespace lol
|
||||
{
|
||||
|
||||
class AbstractShader : public NonCopyable
|
||||
{
|
||||
friend class ShaderFactory;
|
||||
PRODUCT(AbstractShader);
|
||||
|
||||
public:
|
||||
AbstractShader(const std::string& vertexShader, const std::string& fragmentShader);
|
||||
|
@ -32,14 +34,6 @@ namespace lol
|
|||
};
|
||||
|
||||
typedef std::shared_ptr<AbstractShader> Shader;
|
||||
|
||||
class ShaderFactory
|
||||
{
|
||||
public:
|
||||
inline static Shader Produce(const std::string& vertexShader, const std::string& fragmentShader)
|
||||
{
|
||||
return std::make_shared<AbstractShader>(vertexShader, fragmentShader);
|
||||
}
|
||||
};
|
||||
|
||||
typedef Factory<AbstractShader> ShaderFactory;
|
||||
typedef ObjectManager<AbstractShader> ShaderManager;
|
||||
}
|
15
include/lol/Texture.hpp
Normal file
15
include/lol/Texture.hpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
#include <lol/util/NonCopyable.hpp>
|
||||
|
||||
namespace lol
|
||||
{
|
||||
class Texture2D : public NonCopyable
|
||||
{
|
||||
public:
|
||||
Texture2D();
|
||||
|
||||
private:
|
||||
unsigned int textureID;
|
||||
};
|
||||
}
|
|
@ -3,7 +3,9 @@
|
|||
#include <vector>
|
||||
#include <memory>
|
||||
|
||||
#include <lol/NonCopyable.hpp>
|
||||
#include <lol/util/NonCopyable.hpp>
|
||||
#include <lol/util/Factory.hpp>
|
||||
#include <lol/util/ObjectManager.hpp>
|
||||
|
||||
namespace lol
|
||||
{
|
||||
|
@ -30,17 +32,20 @@ namespace lol
|
|||
};
|
||||
|
||||
// VAO structure that sets up the buffers and deletes them at the end of the lifecycle
|
||||
class AbstractVertexArrayObject : public NonCopyable
|
||||
class AbstractVertexArrayObject :
|
||||
public NonCopyable
|
||||
{
|
||||
friend class VAOFactory;
|
||||
PRODUCT(AbstractVertexArrayObject);
|
||||
|
||||
public:
|
||||
AbstractVertexArrayObject() = delete;
|
||||
AbstractVertexArrayObject(const VertexArray& vertices, const IndexArray& indices, const Layout& layout, Usage usage);
|
||||
~AbstractVertexArrayObject();
|
||||
|
||||
void Render(unsigned int mode = 4);
|
||||
|
||||
private:
|
||||
AbstractVertexArrayObject(const VertexArray& vertices, const IndexArray& indices, const Layout& layout, Usage usage = Usage::Static);
|
||||
|
||||
private:
|
||||
unsigned int vao, vbo, ebo;
|
||||
size_t indexCount;
|
||||
|
@ -53,13 +58,9 @@ namespace lol
|
|||
typedef std::shared_ptr<AbstractVertexArrayObject> VertexArrayObject;
|
||||
|
||||
// Factory for creating said shared pointers.
|
||||
class VAOFactory
|
||||
{
|
||||
public:
|
||||
static VertexArrayObject Produce(const VertexArray& vertices, const IndexArray& indices, const Layout& layout, Usage usage = Usage::Static)
|
||||
{
|
||||
return std::make_shared<AbstractVertexArrayObject>(vertices, indices, layout, usage);
|
||||
}
|
||||
};
|
||||
typedef Factory<AbstractVertexArrayObject> VAOFactory;
|
||||
|
||||
// Object manager for managing said shared pointers
|
||||
typedef ObjectManager<AbstractVertexArrayObject> VAOManager;
|
||||
|
||||
}
|
|
@ -2,8 +2,7 @@
|
|||
|
||||
#include <lol/VertexArrayObject.hpp>
|
||||
#include <lol/Shader.hpp>
|
||||
#include <lol/ObjectManager.hpp>
|
||||
#include <lol/Drawable.hpp>
|
||||
#include <lol/Transformable.hpp>
|
||||
#include <lol/BoundingBox.hpp>
|
||||
#include <lol/Camera.hpp>
|
||||
#include <lol/Camera.hpp>
|
||||
#include <lol/util/BoundingBox.hpp>
|
26
include/lol/util/Factory.hpp
Normal file
26
include/lol/util/Factory.hpp
Normal file
|
@ -0,0 +1,26 @@
|
|||
#pragma once
|
||||
|
||||
#include <lol/util/NonCopyable.hpp>
|
||||
|
||||
#define PRODUCT(type) friend class Factory<type>
|
||||
|
||||
namespace lol
|
||||
{
|
||||
|
||||
template<typename Type>
|
||||
class Factory : public NonCopyable
|
||||
{
|
||||
public:
|
||||
~Factory() {}
|
||||
|
||||
template<typename... Args>
|
||||
inline static std::shared_ptr<Type> Produce(Args&&... args)
|
||||
{
|
||||
return std::shared_ptr<Type>(new Type(args...));
|
||||
}
|
||||
|
||||
private:
|
||||
Factory() {}
|
||||
};
|
||||
|
||||
}
|
|
@ -63,10 +63,4 @@ namespace lol
|
|||
std::map<unsigned int, std::shared_ptr<Type>> objects;
|
||||
};
|
||||
|
||||
class AbstractShader;
|
||||
class AbstractVertexArrayObject;
|
||||
|
||||
typedef ObjectManager<AbstractVertexArrayObject> VAOManager;
|
||||
typedef ObjectManager<AbstractShader> ShaderManager;
|
||||
|
||||
}
|
11
src/Texture.cpp
Normal file
11
src/Texture.cpp
Normal file
|
@ -0,0 +1,11 @@
|
|||
#include <lol/Texture.hpp>
|
||||
|
||||
#include <glad/glad.h>
|
||||
|
||||
namespace lol
|
||||
{
|
||||
Texture2D::Texture2D()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -61,5 +61,4 @@ namespace lol
|
|||
index++;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue