OpenGL-utility/src/object.cpp

81 lines
1.9 KiB
C++
Raw Normal View History

2021-01-19 18:47:54 +00:00
#include "object.hpp"
namespace oglu
{
AbstractObject::AbstractObject(const AbstractObject& other) :
VAO(other.VAO), count(other.count)
2021-01-19 18:47:54 +00:00
{
}
2021-01-21 00:21:14 +00:00
AbstractObject::~AbstractObject()
{
glDeleteVertexArrays(1, &VAO);
}
Object MakeObject(const GLfloat* vertices, size_t verticesSize, const GLuint* indices, size_t indicesSize, const VertexAttribute* topology, size_t topologySize)
{
AbstractObject* obj = new AbstractObject(vertices, verticesSize, indices, indicesSize, topology, topologySize);
return Object(obj);
2021-01-19 18:47:54 +00:00
}
AbstractObject::AbstractObject(const GLfloat* vertices, size_t verticesSize,
2021-01-19 18:47:54 +00:00
const GLuint* indices, size_t indicesSize,
const VertexAttribute* topology, size_t topologySize) :
VAO(0), count(0)
2021-01-19 18:47:54 +00:00
{
2021-01-20 15:51:55 +00:00
topologySize /= sizeof(VertexAttribute);
2021-01-19 18:47:54 +00:00
GLuint VBO;
2021-01-20 15:51:55 +00:00
glGenBuffers(1, &VBO);
GLuint EBO;
glGenBuffers(1, &EBO);
glGenVertexArrays(1, &VAO);
glBindVertexArray(VAO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glBufferData(GL_ARRAY_BUFFER, verticesSize, vertices, GL_STATIC_DRAW);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, EBO);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, indicesSize, indices, GL_STATIC_DRAW);
for (int i = 0; i < topologySize; i++)
{
RegisterVertexAttribPointer(i, topology[i]);
}
glBindVertexArray(0);
count = indicesSize / sizeof(GLuint);
}
void AbstractObject::Bind()
2021-01-20 15:51:55 +00:00
{
glBindVertexArray(VAO);
}
void AbstractObject::Unbind()
2021-01-20 15:51:55 +00:00
{
2021-01-21 00:21:14 +00:00
glBindVertexArray(0);
2021-01-20 15:51:55 +00:00
}
2021-01-19 18:47:54 +00:00
void AbstractObject::Draw()
2021-01-20 15:51:55 +00:00
{
glDrawElements(GL_TRIANGLES, count, GL_UNSIGNED_INT, (GLvoid*)0);
}
void AbstractObject::BindAndDraw()
2021-01-20 15:51:55 +00:00
{
glBindVertexArray(VAO);
glDrawElements(GL_TRIANGLES, count, GL_UNSIGNED_INT, (GLvoid*)0);
glBindVertexArray(0);
}
void AbstractObject::RegisterVertexAttribPointer(GLuint index, const VertexAttribute& topology)
2021-01-20 15:51:55 +00:00
{
glVertexAttribPointer(topology.index, topology.size, topology.type, topology.normalized, topology.stride, topology.pointer);
glEnableVertexAttribArray(index);
2021-01-19 18:47:54 +00:00
}
}