Visualizer/src/Cuboid.cpp
2021-12-21 00:51:18 +01:00

96 lines
1.8 KiB
C++

#include "Cuboid.hpp"
#include <stdexcept>
#include <glad/glad.h>
#include <glm/gtc/matrix_transform.hpp>
#include "backend/ObjectManager.hpp"
#include "Util.hpp"
Cuboid::Cuboid()
{
vao = VAOManager::GetInstance().Get(CUBOID_ID);
if (vao == nullptr)
{
vao = VAOFactory::Produce(
{
-1.0f, -1.0f, -1.0f,
1.0f, -1.0f, -1.0f,
1.0f, 1.0f, -1.0f,
-1.0f, 1.0f, -1.0f,
-1.0f, -1.0f, 1.0f,
1.0f, -1.0f, 1.0f,
1.0f, 1.0f, 1.0f,
-1.0f, 1.0f, 1.0f
},
{
0, 1, 1, 2, 2, 3, 3, 0, // Front
4, 5, 5, 6, 6, 7, 7, 4, // Back
0, 4, 1, 5, 2, 6, 3, 7
},
{
{ 3, GL_FLOAT, GL_FALSE, 3 * sizeof(float), (void*)0 }
}
);
VAOManager::GetInstance().Register(CUBOID_ID, vao);
}
shader = ShaderManager::GetInstance().Get(CUBOID_ID);
if (shader == nullptr)
{
shader = ShaderFactory::Produce(
R"(
#version 460 core
layout (location = 0) in vec3 aPos;
uniform mat4 model;msp
uniform mat4 view;
uniform mat4 perspective;
void main()
{
gl_Position = perspective * view * model * vec4(aPos, 1.0f);
}
)",
R"(
#version 460 core
out vec4 FragColor;
void main()
{
FragColor = vec4(1.0f, 1.0f, 1.0f, 1.0f);
}
)"
);
if (!shader->Good())
{
throw std::runtime_error("Shader creation failed");
}
ShaderManager::GetInstance().Register(CUBOID_ID, shader);
}
model = glm::mat4(1.0);
view = glm::lookAt(glm::vec3(2.0f, 2.0f, -3.5f), glm::vec3(0.0f), glm::vec3(0.0f, 1.0f, 0.0f));
perspective = glm::perspective(glm::radians(100.0f), 16.0f / 9.0f, 0.01f, 100.0f);
}
void Cuboid::Render()
{
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
shader->Use();
shader->SetUniform("model", model);
shader->SetUniform("view", view);
shader->SetUniform("perspective", perspective);
vao->Render(GL_LINES);
}