commit 2a8b38ffc4e4f59ab15d0a6524409504863f0d7a Author: Lauchmelder Date: Sat Jan 8 16:54:36 2022 +0100 Added window diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b76cd25 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.vs/ +[Oo]ut/ +[Bb]uild/ + +*.json \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c4baf1f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,9 @@ +[submodule "vendor/lol"] + path = vendor/lol + url = git@github.com:Lauchmelder23/lol.git +[submodule "vendor/glfw"] + path = vendor/glfw + url = git@github.com:glfw/glfw.git +[submodule "vendor/spdlog"] + path = vendor/spdlog + url = https://github.com/gabime/spdlog diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..1fd9ed9 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +# CMakeList.txt : Top-level CMake project file, do global configuration +# and include sub-projects here. +# +cmake_minimum_required (VERSION 3.8) + +project ("KoiKoi") + + +# Include sub-projects. +add_subdirectory ("vendor/spdlog") +add_subdirectory ("vendor/glfw") +add_subdirectory ("src") diff --git a/src/Application.cpp b/src/Application.cpp new file mode 100644 index 0000000..54e22bc --- /dev/null +++ b/src/Application.cpp @@ -0,0 +1,49 @@ +#include "Application.hpp" + +#include +#include + +#include "Window.hpp" + +void Application::Run() +{ + if (!valid) + { + spdlog::error("Application could not be launched"); + return; + } + + spdlog::debug("Launched Application"); + while (!window->ShouldClose()) + { + glfwPollEvents(); + window->Display(); + } +} + +Application::Application() : + valid(true), window(nullptr) +{ + int success = glfwInit(); + if (success != GLFW_TRUE) + { + const char* buffer; + int result = glfwGetError(&buffer); + spdlog::critical("Failed to initialize GLFW: ({}) {}", result, buffer); + + valid = false; + return; + } + spdlog::debug("GLFW initialized"); + + window = new Window(800, 800, "Koi Koi"); + valid = window->IsValid(); +} + +Application::~Application() +{ + delete window; + + glfwTerminate(); + spdlog::debug("GLFW terminated"); +} diff --git a/src/Application.hpp b/src/Application.hpp new file mode 100644 index 0000000..270a0b1 --- /dev/null +++ b/src/Application.hpp @@ -0,0 +1,24 @@ +#pragma once + +class Window; + +class Application +{ +public: + static Application& GetInstance() + { + static Application app; + return app; + } + +public: + void Run(); + +private: + bool valid; + Window* window; + +private: + Application(); + ~Application(); +}; \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..5375c2d --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,15 @@ +add_executable(koikoi + "main.cpp" + "Application.cpp" + "Window.cpp" + ) + +target_include_directories(koikoi PRIVATE + spdlog + glfw +) + +target_link_libraries(koikoi PRIVATE + spdlog + glfw +) \ No newline at end of file diff --git a/src/Window.cpp b/src/Window.cpp new file mode 100644 index 0000000..4cbde7a --- /dev/null +++ b/src/Window.cpp @@ -0,0 +1,36 @@ +#include "Window.hpp" + +#include +#include + +Window::Window(int width, int height, const std::string& title) : + window(NULL), valid(true) +{ + window = glfwCreateWindow(width, height, title.c_str(), NULL, NULL); + if (window == NULL) + { + const char* buffer; + int result = glfwGetError(&buffer); + spdlog::critical("Failed to create GLFWwindow: ({}) {}", result, buffer); + + valid = false; + return; + } + + spdlog::debug("Created GLFWwindow \n\tDimensions = ({}px, {}px), \n\tTitle = {}, \n\tFullscreen = {}", width, height, title, "NO"); + glfwMakeContextCurrent(window); +} + +Window::~Window() +{ + if (valid) + { + glfwDestroyWindow(window); + spdlog::debug("Destroyed GLFWwindow"); + } +} + +void Window::Display() +{ + glfwSwapBuffers(window); +} diff --git a/src/Window.hpp b/src/Window.hpp new file mode 100644 index 0000000..15ba771 --- /dev/null +++ b/src/Window.hpp @@ -0,0 +1,20 @@ +#pragma once + +#include +#include + +class Window +{ +public: + Window(int width, int height, const std::string& title); + ~Window(); + + inline bool IsValid() { return valid; } + inline bool ShouldClose() { return glfwWindowShouldClose(window); } + + void Display(); + +private: + bool valid; + GLFWwindow* window; +}; diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..fe26e14 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,14 @@ +#include +#include "Application.hpp" + +int main(int argc, char** argv) +{ + spdlog::set_pattern("[%H:%M:%S] [%^%l%$] %v"); + +#ifndef NDEBUG + spdlog::set_level(spdlog::level::debug); +#endif + + Application::GetInstance().Run(); + return 0; +} \ No newline at end of file diff --git a/vendor/glfw b/vendor/glfw new file mode 160000 index 0000000..df8d7bc --- /dev/null +++ b/vendor/glfw @@ -0,0 +1 @@ +Subproject commit df8d7bc892937a8b0f7c604c92a9f64f383cf48c diff --git a/vendor/lol b/vendor/lol new file mode 160000 index 0000000..b702bd0 --- /dev/null +++ b/vendor/lol @@ -0,0 +1 @@ +Subproject commit b702bd00f4e61e7ca1a6fd3da78de87c730e7503 diff --git a/vendor/spdlog b/vendor/spdlog new file mode 160000 index 0000000..729d7f6 --- /dev/null +++ b/vendor/spdlog @@ -0,0 +1 @@ +Subproject commit 729d7f6d8837b6693e7b378408518ea1710f80cb