add window context
This commit is contained in:
parent
aada1f9636
commit
18c0a431dc
|
@ -22,5 +22,13 @@ FetchContent_Declare(
|
||||||
FIND_PACKAGE_ARGS
|
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(quark)
|
||||||
add_subdirectory(sandbox)
|
add_subdirectory(sandbox)
|
||||||
|
|
|
@ -16,6 +16,8 @@ target_sources(quark
|
||||||
src/platform/linux/LinuxWindow.cpp
|
src/platform/linux/LinuxWindow.cpp
|
||||||
src/platform/linux/LinuxInput.cpp
|
src/platform/linux/LinuxInput.cpp
|
||||||
|
|
||||||
|
src/platform/opengl/OpenGLContext.cpp
|
||||||
|
|
||||||
src/quark/imgui/ImGuiLayer.cpp
|
src/quark/imgui/ImGuiLayer.cpp
|
||||||
|
|
||||||
PUBLIC FILE_SET HEADERS
|
PUBLIC FILE_SET HEADERS
|
||||||
|
@ -38,7 +40,11 @@ target_sources(quark
|
||||||
src/quark/events/KeyEvent.hpp
|
src/quark/events/KeyEvent.hpp
|
||||||
src/quark/events/MouseEvent.hpp
|
src/quark/events/MouseEvent.hpp
|
||||||
|
|
||||||
|
src/platform/opengl/OpenGLContext.hpp
|
||||||
|
|
||||||
src/quark/imgui/ImGuiLayer.hpp
|
src/quark/imgui/ImGuiLayer.hpp
|
||||||
|
|
||||||
|
src/quark/photon/RenderingContext.hpp
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(quark INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
target_include_directories(quark INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||||
|
@ -54,7 +60,6 @@ target_compile_definitions(quark
|
||||||
|
|
||||||
target_link_libraries(quark
|
target_link_libraries(quark
|
||||||
PRIVATE
|
PRIVATE
|
||||||
glad
|
|
||||||
glfw
|
glfw
|
||||||
|
|
||||||
PUBLIC
|
PUBLIC
|
||||||
|
@ -63,6 +68,13 @@ target_link_libraries(quark
|
||||||
glm
|
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)
|
include(GNUInstallDirs)
|
||||||
install(
|
install(
|
||||||
TARGETS quark
|
TARGETS quark
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
#include "LinuxWindow.hpp"
|
#include "LinuxWindow.hpp"
|
||||||
|
|
||||||
|
#include "platform/opengl/OpenGLContext.hpp"
|
||||||
|
|
||||||
#include "quark/Core.hpp"
|
#include "quark/Core.hpp"
|
||||||
#include "quark/Logger.hpp"
|
#include "quark/Logger.hpp"
|
||||||
#include "quark/events/ApplicationEvent.hpp"
|
#include "quark/events/ApplicationEvent.hpp"
|
||||||
|
@ -6,7 +9,6 @@
|
||||||
#include "quark/events/MouseEvent.hpp"
|
#include "quark/events/MouseEvent.hpp"
|
||||||
|
|
||||||
#include <GLFW/glfw3.h>
|
#include <GLFW/glfw3.h>
|
||||||
#include <glad/gl.h>
|
|
||||||
|
|
||||||
namespace qk {
|
namespace qk {
|
||||||
static bool GLFWInitialized = false;
|
static bool GLFWInitialized = false;
|
||||||
|
@ -32,6 +34,7 @@ namespace qk {
|
||||||
data.width = config.width;
|
data.width = config.width;
|
||||||
data.height = config.height;
|
data.height = config.height;
|
||||||
|
|
||||||
|
|
||||||
QK_CORE_INFO("Creating window {0} ({1}x{2})", data.title, data.width, data.height);
|
QK_CORE_INFO("Creating window {0} ({1}x{2})", data.title, data.width, data.height);
|
||||||
|
|
||||||
if (!GLFWInitialized) {
|
if (!GLFWInitialized) {
|
||||||
|
@ -47,12 +50,9 @@ namespace qk {
|
||||||
glfwWindowHintString(GLFW_X11_CLASS_NAME, "testclass");
|
glfwWindowHintString(GLFW_X11_CLASS_NAME, "testclass");
|
||||||
|
|
||||||
window = glfwCreateWindow((int)config.width, (int)config.height, config.title.c_str(), nullptr, nullptr);
|
window = glfwCreateWindow((int)config.width, (int)config.height, config.title.c_str(), nullptr, nullptr);
|
||||||
glfwMakeContextCurrent(window);
|
|
||||||
|
|
||||||
int version = gladLoadGL(glfwGetProcAddress);
|
context = std::make_unique<OpenGLContext>(window);
|
||||||
QK_CORE_ASSERT(version, "Failed to load OpenGL");
|
context->Init();
|
||||||
|
|
||||||
QK_CORE_INFO("Loaded OpenGL {0}.{1}", GLAD_VERSION_MAJOR(version), GLAD_VERSION_MINOR(version));
|
|
||||||
|
|
||||||
glfwSetWindowUserPointer(window, &data);
|
glfwSetWindowUserPointer(window, &data);
|
||||||
|
|
||||||
|
@ -145,7 +145,7 @@ namespace qk {
|
||||||
|
|
||||||
void LinuxWindow::OnUpdate() {
|
void LinuxWindow::OnUpdate() {
|
||||||
glfwPollEvents();
|
glfwPollEvents();
|
||||||
glfwSwapBuffers(window);
|
context->SwapBuffers();
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr void LinuxWindow::SetVSync(bool enabled) {
|
constexpr void LinuxWindow::SetVSync(bool enabled) {
|
||||||
|
|
|
@ -2,7 +2,9 @@
|
||||||
|
|
||||||
#include <GLFW/glfw3.h>
|
#include <GLFW/glfw3.h>
|
||||||
#include <any>
|
#include <any>
|
||||||
|
#include <memory>
|
||||||
#include "quark/Window.hpp"
|
#include "quark/Window.hpp"
|
||||||
|
#include "quark/photon/RenderingContext.hpp"
|
||||||
|
|
||||||
namespace qk {
|
namespace qk {
|
||||||
class LinuxWindow :
|
class LinuxWindow :
|
||||||
|
@ -33,6 +35,7 @@ namespace qk {
|
||||||
|
|
||||||
private:
|
private:
|
||||||
GLFWwindow* window;
|
GLFWwindow* window;
|
||||||
|
std::unique_ptr<RenderingContext> context;
|
||||||
|
|
||||||
struct WindowData {
|
struct WindowData {
|
||||||
std::string title;
|
std::string title;
|
||||||
|
|
27
quark/src/platform/opengl/OpenGLContext.cpp
Normal file
27
quark/src/platform/opengl/OpenGLContext.cpp
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
#include "OpenGLContext.hpp"
|
||||||
|
#include "quark/Core.hpp"
|
||||||
|
|
||||||
|
#include <GLFW/glfw3.h>
|
||||||
|
#include <glad/gl.h>
|
||||||
|
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
}
|
20
quark/src/platform/opengl/OpenGLContext.hpp
Normal file
20
quark/src/platform/opengl/OpenGLContext.hpp
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -39,7 +39,7 @@ namespace qk {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Application::OnEvent(Event& e) {
|
void Application::OnEvent(Event& e) {
|
||||||
QK_CORE_TRACE(e);
|
// QK_CORE_TRACE(e);
|
||||||
|
|
||||||
EventDispatcher dispatcher(e);
|
EventDispatcher dispatcher(e);
|
||||||
dispatcher.Dispatch<WindowCloseEvent>(std::bind(&Application::OnWindowClose, this, std::placeholders::_1));
|
dispatcher.Dispatch<WindowCloseEvent>(std::bind(&Application::OnWindowClose, this, std::placeholders::_1));
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#include "ImGuiLayer.hpp"
|
#include "ImGuiLayer.hpp"
|
||||||
|
|
||||||
// TODO: Remove these, these are temporary
|
// TODO: Remove these, these are temporary
|
||||||
#include <glad/gl.h>
|
|
||||||
#include <GLFW/glfw3.h>
|
#include <GLFW/glfw3.h>
|
||||||
|
|
||||||
#include <imgui.h>
|
#include <imgui.h>
|
||||||
|
|
11
quark/src/quark/photon/RenderingContext.hpp
Normal file
11
quark/src/quark/photon/RenderingContext.hpp
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
namespace qk {
|
||||||
|
class RenderingContext {
|
||||||
|
public:
|
||||||
|
virtual ~RenderingContext() { }
|
||||||
|
|
||||||
|
virtual void Init() = 0;
|
||||||
|
virtual void SwapBuffers() = 0;
|
||||||
|
};
|
||||||
|
}
|
19
quark/vendor/CMakeLists.txt
vendored
19
quark/vendor/CMakeLists.txt
vendored
|
@ -2,6 +2,7 @@
|
||||||
# GLAD
|
# GLAD
|
||||||
########################
|
########################
|
||||||
|
|
||||||
|
if (${QUARK_RENDERING_BACKEND} STREQUAL "OPENGL")
|
||||||
add_library(glad
|
add_library(glad
|
||||||
glad/src/gl.c
|
glad/src/gl.c
|
||||||
)
|
)
|
||||||
|
@ -9,11 +10,7 @@ add_library(glad
|
||||||
target_include_directories(glad
|
target_include_directories(glad
|
||||||
PUBLIC glad/include
|
PUBLIC glad/include
|
||||||
)
|
)
|
||||||
|
endif()
|
||||||
set_property(
|
|
||||||
TARGET glad
|
|
||||||
PROPERTY POSITION_INDEPENDENT_CODE ON
|
|
||||||
)
|
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# ImGui
|
# ImGui
|
||||||
|
@ -27,19 +24,19 @@ add_library(imgui
|
||||||
imgui/imgui_demo.cpp
|
imgui/imgui_demo.cpp
|
||||||
|
|
||||||
# TODO: this is shit
|
# TODO: this is shit
|
||||||
imgui/backends/imgui_impl_opengl3.cpp
|
|
||||||
imgui/backends/imgui_impl_glfw.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
|
target_include_directories(imgui
|
||||||
PUBLIC imgui
|
PUBLIC imgui
|
||||||
)
|
)
|
||||||
|
|
||||||
set_property(
|
|
||||||
TARGET imgui
|
|
||||||
PROPERTY POSITION_INDEPENDENT_CODE ON
|
|
||||||
)
|
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# GLM
|
# GLM
|
||||||
########################
|
########################
|
||||||
|
|
|
@ -30,7 +30,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
void OnEvent(qk::Event& event) override {
|
void OnEvent(qk::Event& event) override {
|
||||||
QK_TRACE(event);
|
// QK_TRACE(event);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue