From c6189b2dc3b5f72449e61185943ddaee4bf1863c Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Tue, 21 Dec 2021 14:54:22 +0100 Subject: [PATCH] made cube rotate --- src/Application.cpp | 20 +++++++++++++++++--- src/backend/Transformable.cpp | 2 +- src/main.cpp | 2 +- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/src/Application.cpp b/src/Application.cpp index 4220efa..64eeb7a 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -6,6 +6,10 @@ #include #include +#ifdef NDEBUG + #define FULLSCREEN +#endif + Application::~Application() { if (cube != nullptr) @@ -26,7 +30,11 @@ void Application::Init(int width, int height, const std::string& title) if (window == nullptr) glfwInit(); - GLFWmonitor* monitor = glfwGetPrimaryMonitor(); + int windowWidth = width, windowHeight = height; + GLFWmonitor* monitor = NULL; + +#ifdef FULLSCREEN + monitor = glfwGetPrimaryMonitor(); const GLFWvidmode* mode = glfwGetVideoMode(monitor); glfwWindowHint(GLFW_RED_BITS, mode->redBits); @@ -34,8 +42,12 @@ void Application::Init(int width, int height, const std::string& title) glfwWindowHint(GLFW_BLUE_BITS, mode->blueBits); glfwWindowHint(GLFW_REFRESH_RATE, mode->refreshRate); + windowWidth = mode->width; + windowHeight = mode->height; +#endif + // Create GLFW window - window = glfwCreateWindow(mode->width, mode->height, title.c_str(), monitor, NULL); + window = glfwCreateWindow(windowWidth, windowHeight, title.c_str(), monitor, NULL); if (window == nullptr) { const char* errorbuf; @@ -61,7 +73,7 @@ void Application::Init(int width, int height, const std::string& title) throw std::runtime_error("Failed to initialize GLAD"); } - glViewport(0, 0, mode->width, mode->height); + glViewport(0, 0, windowWidth, windowHeight); glEnable(GL_DEPTH_TEST); // Register GLFW callbacks @@ -92,6 +104,8 @@ void Application::Launch() { glfwPollEvents(); + cube->Rotate(glm::vec3(0.2f, 1.0f, -0.4f), 1.0f); + glClearColor(0.0f, 0.0f, 0.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); diff --git a/src/backend/Transformable.cpp b/src/backend/Transformable.cpp index 30d38f4..85f3041 100644 --- a/src/backend/Transformable.cpp +++ b/src/backend/Transformable.cpp @@ -1,7 +1,7 @@ #include "Transformable.hpp" Transformable::Transformable() : - position(0.0f), scale(1.0f), orientation(0.0, 0.0, 0.0, 0.0) + position(0.0f), scale(1.0f), orientation(0.0, 0.0, 0.0, 1.0) { CalculateTransformationMatrix(); } diff --git a/src/main.cpp b/src/main.cpp index 6b9d963..e523a6f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -7,7 +7,7 @@ int main(int argc, char** argv) try { - app.Init(800, 800, "Visualizer"); + app.Init(1280, 720, "Visualizer"); } catch (const std::runtime_error& err) {