diff --git a/CMakeLists.txt b/CMakeLists.txt index 992cc99..e703c32 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,5 +22,13 @@ FetchContent_Declare( FIND_PACKAGE_ARGS ) +# TODO: compile with all rendering backends and select one at runtime +set(QUARK_RENDERING_BACKEND "OPENGL" CACHE STRING "Rendering backend to use during engine compilation") +set_property(CACHE QUARK_RENDERING_BACKEND PROPERTY STRINGS OPENGL VULKAN) + +if (${QUARK_RENDERING_BACKEND} STREQUAL "VULKAN") + find_package(Vulkan REQUIRED) +endif() + add_subdirectory(quark) add_subdirectory(sandbox) diff --git a/quark/CMakeLists.txt b/quark/CMakeLists.txt index 2cbb93d..8948451 100644 --- a/quark/CMakeLists.txt +++ b/quark/CMakeLists.txt @@ -16,6 +16,8 @@ target_sources(quark src/platform/linux/LinuxWindow.cpp src/platform/linux/LinuxInput.cpp + src/platform/opengl/OpenGLContext.cpp + src/quark/imgui/ImGuiLayer.cpp PUBLIC FILE_SET HEADERS @@ -38,7 +40,11 @@ target_sources(quark src/quark/events/KeyEvent.hpp src/quark/events/MouseEvent.hpp + src/platform/opengl/OpenGLContext.hpp + src/quark/imgui/ImGuiLayer.hpp + + src/quark/photon/RenderingContext.hpp ) target_include_directories(quark INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/src) @@ -54,7 +60,6 @@ target_compile_definitions(quark target_link_libraries(quark PRIVATE - glad glfw PUBLIC @@ -63,6 +68,13 @@ target_link_libraries(quark glm ) +if (${QUARK_RENDERING_BACKEND} STREQUAL "OPENGL") + target_link_libraries(quark PRIVATE glad) +elseif (${QUARK_RENDERING_BACKEND} STREQUAL "VULKAN") + target_link_libraries(quark PRIVATE Vulkan::Vulkan) +endif() + + include(GNUInstallDirs) install( TARGETS quark diff --git a/quark/src/platform/linux/LinuxWindow.cpp b/quark/src/platform/linux/LinuxWindow.cpp index 929ed2c..6c6492d 100644 --- a/quark/src/platform/linux/LinuxWindow.cpp +++ b/quark/src/platform/linux/LinuxWindow.cpp @@ -1,4 +1,7 @@ #include "LinuxWindow.hpp" + +#include "platform/opengl/OpenGLContext.hpp" + #include "quark/Core.hpp" #include "quark/Logger.hpp" #include "quark/events/ApplicationEvent.hpp" @@ -6,7 +9,6 @@ #include "quark/events/MouseEvent.hpp" #include -#include namespace qk { static bool GLFWInitialized = false; @@ -32,6 +34,7 @@ namespace qk { data.width = config.width; data.height = config.height; + QK_CORE_INFO("Creating window {0} ({1}x{2})", data.title, data.width, data.height); if (!GLFWInitialized) { @@ -47,12 +50,9 @@ namespace qk { glfwWindowHintString(GLFW_X11_CLASS_NAME, "testclass"); window = glfwCreateWindow((int)config.width, (int)config.height, config.title.c_str(), nullptr, nullptr); - glfwMakeContextCurrent(window); - int version = gladLoadGL(glfwGetProcAddress); - QK_CORE_ASSERT(version, "Failed to load OpenGL"); - - QK_CORE_INFO("Loaded OpenGL {0}.{1}", GLAD_VERSION_MAJOR(version), GLAD_VERSION_MINOR(version)); + context = std::make_unique(window); + context->Init(); glfwSetWindowUserPointer(window, &data); @@ -145,7 +145,7 @@ namespace qk { void LinuxWindow::OnUpdate() { glfwPollEvents(); - glfwSwapBuffers(window); + context->SwapBuffers(); } constexpr void LinuxWindow::SetVSync(bool enabled) { diff --git a/quark/src/platform/linux/LinuxWindow.hpp b/quark/src/platform/linux/LinuxWindow.hpp index ece5262..a7fdcc7 100644 --- a/quark/src/platform/linux/LinuxWindow.hpp +++ b/quark/src/platform/linux/LinuxWindow.hpp @@ -2,7 +2,9 @@ #include #include +#include #include "quark/Window.hpp" +#include "quark/photon/RenderingContext.hpp" namespace qk { class LinuxWindow : @@ -33,6 +35,7 @@ namespace qk { private: GLFWwindow* window; + std::unique_ptr context; struct WindowData { std::string title; diff --git a/quark/src/platform/opengl/OpenGLContext.cpp b/quark/src/platform/opengl/OpenGLContext.cpp new file mode 100644 index 0000000..a27daa0 --- /dev/null +++ b/quark/src/platform/opengl/OpenGLContext.cpp @@ -0,0 +1,27 @@ +#include "OpenGLContext.hpp" +#include "quark/Core.hpp" + +#include +#include + +namespace qk { + OpenGLContext::OpenGLContext(GLFWwindow* window) : + window(window) + { + + } + + void OpenGLContext::Init() { + glfwMakeContextCurrent(window); + + int version = gladLoadGL(glfwGetProcAddress); + QK_CORE_ASSERT(version, "Failed to load OpenGL"); + + QK_CORE_INFO("Set up OpenGL context: {0}.{1}", GLAD_VERSION_MAJOR(version), GLAD_VERSION_MINOR(version)); + + } + + void OpenGLContext::SwapBuffers() { + glfwSwapBuffers(window); + } +} diff --git a/quark/src/platform/opengl/OpenGLContext.hpp b/quark/src/platform/opengl/OpenGLContext.hpp new file mode 100644 index 0000000..c4e738f --- /dev/null +++ b/quark/src/platform/opengl/OpenGLContext.hpp @@ -0,0 +1,20 @@ +#pragma once + +#include "quark/photon/RenderingContext.hpp" + +struct GLFWwindow; + +namespace qk { + class OpenGLContext : + public RenderingContext + { + public: + OpenGLContext(GLFWwindow* window); + + virtual void Init() override; + virtual void SwapBuffers() override; + + private: + GLFWwindow* window; + }; +} diff --git a/quark/src/quark/Application.cpp b/quark/src/quark/Application.cpp index 4db65b8..179d049 100644 --- a/quark/src/quark/Application.cpp +++ b/quark/src/quark/Application.cpp @@ -39,7 +39,7 @@ namespace qk { } void Application::OnEvent(Event& e) { - QK_CORE_TRACE(e); + // QK_CORE_TRACE(e); EventDispatcher dispatcher(e); dispatcher.Dispatch(std::bind(&Application::OnWindowClose, this, std::placeholders::_1)); diff --git a/quark/src/quark/imgui/ImGuiLayer.cpp b/quark/src/quark/imgui/ImGuiLayer.cpp index e6d3ec8..8480966 100644 --- a/quark/src/quark/imgui/ImGuiLayer.cpp +++ b/quark/src/quark/imgui/ImGuiLayer.cpp @@ -1,7 +1,6 @@ #include "ImGuiLayer.hpp" // TODO: Remove these, these are temporary -#include #include #include diff --git a/quark/src/quark/photon/RenderingContext.hpp b/quark/src/quark/photon/RenderingContext.hpp new file mode 100644 index 0000000..4596246 --- /dev/null +++ b/quark/src/quark/photon/RenderingContext.hpp @@ -0,0 +1,11 @@ +#pragma once + +namespace qk { + class RenderingContext { + public: + virtual ~RenderingContext() { } + + virtual void Init() = 0; + virtual void SwapBuffers() = 0; + }; +} diff --git a/quark/vendor/CMakeLists.txt b/quark/vendor/CMakeLists.txt index f5ba97b..0ebbf3d 100644 --- a/quark/vendor/CMakeLists.txt +++ b/quark/vendor/CMakeLists.txt @@ -2,18 +2,15 @@ # GLAD ######################## -add_library(glad - glad/src/gl.c -) +if (${QUARK_RENDERING_BACKEND} STREQUAL "OPENGL") + add_library(glad + glad/src/gl.c + ) -target_include_directories(glad - PUBLIC glad/include -) - -set_property( - TARGET glad - PROPERTY POSITION_INDEPENDENT_CODE ON -) + target_include_directories(glad + PUBLIC glad/include + ) +endif() ######################## # ImGui @@ -27,19 +24,19 @@ add_library(imgui imgui/imgui_demo.cpp # TODO: this is shit - imgui/backends/imgui_impl_opengl3.cpp imgui/backends/imgui_impl_glfw.cpp ) +if (${QUARK_RENDERING_BACKEND} STREQUAL "OPENGL") + target_sources(imgui PRIVATE imgui/backends/imgui_impl_opengl3.cpp) +elseif (${QUARK_RENDERING_BACKEND} STREQUAL "VULKAN") + target_sources(imgui PRIVATE imgui/backends/imgui_impl_vulkan.cpp) +endif() + target_include_directories(imgui PUBLIC imgui ) -set_property( - TARGET imgui - PROPERTY POSITION_INDEPENDENT_CODE ON -) - ######################## # GLM ######################## diff --git a/sandbox/src/Application.cpp b/sandbox/src/Application.cpp index 7c17c8f..5b0e98c 100644 --- a/sandbox/src/Application.cpp +++ b/sandbox/src/Application.cpp @@ -30,7 +30,7 @@ public: } void OnEvent(qk::Event& event) override { - QK_TRACE(event); + // QK_TRACE(event); } };