added in poor grid

This commit is contained in:
Lauchmelder 2021-12-21 20:13:54 +01:00
parent c1b96fc14e
commit 2242adc568
12 changed files with 154 additions and 26 deletions

View file

@ -19,6 +19,7 @@ public:
void Use(); void Use();
void SetUniform(const std::string& name, const glm::mat4& value); void SetUniform(const std::string& name, const glm::mat4& value);
void SetUniform(const std::string& name, const glm::vec4& value);
private: private:
unsigned int id; unsigned int id;

View file

@ -8,16 +8,17 @@ class Transformable
public: public:
Transformable(); Transformable();
const glm::vec3& GetPosition(); const glm::vec3& GetPosition() const;
void SetPosition(const glm::vec3& pos); void SetPosition(const glm::vec3& pos);
void Move(const glm::vec3& direction); void Move(const glm::vec3& direction);
const glm::vec3 GetRotation(); const glm::vec3 GetRotation() const;
const glm::quat& GetQuaternion() const;
void SetRotation(const glm::vec3& axis, float angle); void SetRotation(const glm::vec3& axis, float angle);
void SetRotation(const glm::vec3& eulerAngles); void SetRotation(const glm::vec3& eulerAngles);
void Rotate(const glm::vec3& axis, float angle); void Rotate(const glm::vec3& axis, float angle);
const glm::vec3& GetScale(); const glm::vec3& GetScale() const;
void SetScale(const glm::vec3& scale); void SetScale(const glm::vec3& scale);
void Scale(const glm::vec3& factor); void Scale(const glm::vec3& factor);

View file

@ -85,4 +85,13 @@ void AbstractShader::SetUniform(const std::string& name, const glm::mat4& value)
return; return;
glUniformMatrix4fv(location, 1, GL_FALSE, glm::value_ptr(value)); glUniformMatrix4fv(location, 1, GL_FALSE, glm::value_ptr(value));
}
void AbstractShader::SetUniform(const std::string& name, const glm::vec4& value)
{
GLint location = glGetUniformLocation(id, name.c_str());
if (location == -1)
return;
glUniform4fv(location, 1, glm::value_ptr(value));
} }

View file

@ -6,7 +6,7 @@ Transformable::Transformable() :
CalculateTransformationMatrix(); CalculateTransformationMatrix();
} }
const glm::vec3& Transformable::GetPosition() const glm::vec3& Transformable::GetPosition() const
{ {
return position; return position;
} }
@ -23,11 +23,16 @@ void Transformable::Move(const glm::vec3& direction)
CalculateTransformationMatrix(); CalculateTransformationMatrix();
} }
const glm::vec3 Transformable::GetRotation() const glm::vec3 Transformable::GetRotation() const
{ {
return glm::eulerAngles(orientation); return glm::eulerAngles(orientation);
} }
const glm::quat& Transformable::GetQuaternion() const
{
return orientation;
}
void Transformable::SetRotation(const glm::vec3& axis, float angle) void Transformable::SetRotation(const glm::vec3& axis, float angle)
{ {
orientation = glm::quat(glm::radians(angle), axis); orientation = glm::quat(glm::radians(angle), axis);
@ -46,7 +51,7 @@ void Transformable::Rotate(const glm::vec3& axis, float angle)
CalculateTransformationMatrix(); CalculateTransformationMatrix();
} }
const glm::vec3& Transformable::GetScale() const glm::vec3& Transformable::GetScale() const
{ {
return scale; return scale;
} }

View file

@ -19,8 +19,8 @@ Application::~Application()
ImGui_ImplGlfw_Shutdown(); ImGui_ImplGlfw_Shutdown();
ImGui::DestroyContext(); ImGui::DestroyContext();
if (cube != nullptr) if (grid != nullptr)
delete cube; delete grid;
if (window != nullptr) if (window != nullptr)
{ {
@ -129,7 +129,7 @@ void Application::Init(int width, int height, const std::string& title)
activeCamera = &camera; activeCamera = &camera;
cube = new Cuboid(); grid = new Grid(glm::vec2(5.0f, 4.0f), 25, 20);
cubePosition = glm::vec3(0.0f); cubePosition = glm::vec3(0.0f);
cubeOrientation = glm::vec3(0.0f); cubeOrientation = glm::vec3(0.0f);
cubeScale = glm::vec3(1.0f); cubeScale = glm::vec3(1.0f);
@ -137,6 +137,10 @@ void Application::Init(int width, int height, const std::string& title)
data.camera = &camera; data.camera = &camera;
data.orthoCam = &orthoCam; data.orthoCam = &orthoCam;
glfwWindowHint(GLFW_SAMPLES, 4);
glEnable(GL_CULL_FACE);
glEnable(GL_MULTISAMPLE);
} }
void Application::Launch() void Application::Launch()
@ -145,9 +149,9 @@ void Application::Launch()
{ {
glfwPollEvents(); glfwPollEvents();
cube->SetPosition(cubePosition); grid->SetPosition(cubePosition);
cube->SetRotation(cubeOrientation); grid->SetRotation(cubeOrientation);
cube->SetScale(cubeScale); grid->SetScale(cubeScale);
glClearColor(0.0f, 0.0f, 0.0f, 1.0f); glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
@ -156,11 +160,11 @@ void Application::Launch()
ImGui_ImplGlfw_NewFrame(); ImGui_ImplGlfw_NewFrame();
ImGui::NewFrame(); ImGui::NewFrame();
cube->Draw(*activeCamera); grid->Draw(*activeCamera);
ImGui::Begin("Debug"); ImGui::Begin("Debug");
if (ImGui::CollapsingHeader("Cube")) if (ImGui::CollapsingHeader("Grid"))
{ {
ImGui::SliderFloat3("Position", &(cubePosition[0]), -2.0f, 2.0f); ImGui::SliderFloat3("Position", &(cubePosition[0]), -2.0f, 2.0f);
ImGui::SliderFloat3("Orientation", &(cubeOrientation[0]), 0.0f, glm::two_pi<float>()); ImGui::SliderFloat3("Orientation", &(cubeOrientation[0]), 0.0f, glm::two_pi<float>());

View file

@ -2,7 +2,7 @@
#include <string> #include <string>
#include "backend/Camera.hpp" #include "backend/Camera.hpp"
#include "Cuboid.hpp" #include "Grid.hpp"
struct GLFWwindow; struct GLFWwindow;
@ -47,5 +47,5 @@ private:
CameraBase* activeCamera; CameraBase* activeCamera;
glm::vec3 cubeOrientation, cubePosition, cubeScale; glm::vec3 cubeOrientation, cubePosition, cubeScale;
Cuboid* cube; Grid* grid;
}; };

View file

@ -1,6 +1,6 @@
add_executable(visualizer add_executable(visualizer
"main.cpp" "Application.cpp" "Cuboid.cpp" "main.cpp" "Application.cpp" "Cuboid.cpp"
) "Grid.cpp")
target_sources(visualizer PUBLIC target_sources(visualizer PUBLIC
${VENDOR_DIR}/imgui/backends/imgui_impl_opengl3.cpp ${VENDOR_DIR}/imgui/backends/imgui_impl_opengl3.cpp

View file

@ -77,9 +77,6 @@ Cuboid::Cuboid()
} }
type = PrimitiveType::Lines; type = PrimitiveType::Lines;
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::InitializeShader(const CameraBase& camera) const void Cuboid::InitializeShader(const CameraBase& camera) const

View file

@ -15,9 +15,4 @@ public:
Cuboid(); Cuboid();
void InitializeShader(const CameraBase& camera) const override; void InitializeShader(const CameraBase& camera) const override;
private:
// TODO: Remove view and projection matrices from cube class
glm::mat4 view, perspective;
}; };

102
src/Grid.cpp Normal file
View file

@ -0,0 +1,102 @@
#include "Grid.hpp"
#include <stdexcept>
#include <vector>
#include "backend/Camera.hpp"
#include "backend/ObjectManager.hpp"
#include "Util.hpp"
Grid::Grid(const glm::vec2& size, unsigned int linesAlongWidth, unsigned int linesAlongHeight)
{
std::vector<float> vertices;
std::vector<unsigned int> indices;
glm::vec2 halfSize = size / 2.0f;
// Unoptimized memory usage
for (unsigned int x = 0; x <= linesAlongWidth; x++)
{
vertices.push_back(-halfSize.x + (float)x * size.x / (float)linesAlongWidth);
vertices.push_back(-halfSize.y);
vertices.push_back(-halfSize.x + (float)x * size.x / (float)linesAlongWidth);
vertices.push_back(halfSize.y);
indices.push_back(2 * x);
indices.push_back(2 * x + 1);
}
unsigned int lastIndex = indices.back() + 1;
for (unsigned int y = 0; y <= linesAlongHeight; y++)
{
vertices.push_back(-halfSize.x);
vertices.push_back(-halfSize.y + (float)y * size.y / (float)linesAlongHeight);
vertices.push_back(halfSize.x);
vertices.push_back(-halfSize.y + (float)y * size.y / (float)linesAlongHeight);
indices.push_back(lastIndex + 2 * y);
indices.push_back(lastIndex + 2 * y + 1);
}
vao = VAOFactory::Produce(vertices, indices,
{
{ 2, GL_FLOAT, GL_FALSE, 2 * sizeof(float), (void*)0 }
}
);
shader = ShaderManager::GetInstance().Get(GRID_ID);
if (shader == nullptr)
{
shader = ShaderFactory::Produce(
R"(
#version 460 core
layout (location = 0) in vec2 aPos;
uniform mat4 model;
uniform mat4 view;
uniform mat4 perspective;
void main()
{
gl_Position = perspective * view * model * vec4(aPos, 0.0f, 1.0f);
}
)",
R"(
#version 460 core
out vec4 FragColor;
uniform vec4 gridColor;
void main()
{
FragColor = gridColor;
}
)"
);
if (!shader->Good())
{
throw std::runtime_error("Shader creation failed");
}
ShaderManager::GetInstance().Register(GRID_ID, shader);
}
type = PrimitiveType::Lines;
}
void Grid::InitializeShader(const CameraBase& camera) const
{
if(glm::dot(glm::rotate(camera.GetQuaternion(), glm::vec3(0.0f, 0.0f, 1.0f)), glm::rotate(GetQuaternion(), glm::vec3(0.0f, 0.0f, 1.0f))) > 0)
shader->SetUniform("gridColor", glm::vec4(0.5f));
else
shader->SetUniform("gridColor", glm::vec4(0.0f));
shader->SetUniform("model", transformation);
shader->SetUniform("view", camera.GetView());
shader->SetUniform("perspective", camera.GetProjection());
}

13
src/Grid.hpp Normal file
View file

@ -0,0 +1,13 @@
#pragma once
#include "backend/Drawable.hpp"
#include "backend/Transformable.hpp"
class Grid :
public Transformable, public Drawable
{
public:
Grid(const glm::vec2& size, unsigned int linesAlongWidth, unsigned int linesAlongHeight);
void InitializeShader(const CameraBase& camera) const override;
};

View file

@ -1,3 +1,4 @@
#pragma once #pragma once
#define CUBOID_ID 0x1 #define CUBOID_ID 0x1
#define GRID_ID 0x2