added imgui
This commit is contained in:
parent
8cd67ebc42
commit
198f7e1269
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,3 +1,6 @@
|
||||||
[submodule "vendor/glfw"]
|
[submodule "vendor/glfw"]
|
||||||
path = vendor/glfw
|
path = vendor/glfw
|
||||||
url = git@github.com:glfw/glfw.git
|
url = git@github.com:glfw/glfw.git
|
||||||
|
[submodule "vendor/imgui"]
|
||||||
|
path = vendor/imgui
|
||||||
|
url = git@github.com:ocornut/imgui.git
|
||||||
|
|
|
@ -5,6 +5,19 @@ cmake_minimum_required (VERSION 3.8)
|
||||||
|
|
||||||
project ("Mandelbrot")
|
project ("Mandelbrot")
|
||||||
|
|
||||||
|
set(IMGUI_SOURCE_DIR "${CMAKE_SOURCE_DIR}/vendor/imgui")
|
||||||
|
|
||||||
|
set(IMGUI_INCLUDE_DIRS ${IMGUI_SOURCE_DIR})
|
||||||
|
set(IMGUI_SOURCE_FILES
|
||||||
|
"${IMGUI_SOURCE_DIR}/imgui.cpp"
|
||||||
|
"${IMGUI_SOURCE_DIR}/imgui_demo.cpp"
|
||||||
|
"${IMGUI_SOURCE_DIR}/imgui_draw.cpp"
|
||||||
|
"${IMGUI_SOURCE_DIR}/imgui_tables.cpp"
|
||||||
|
"${IMGUI_SOURCE_DIR}/imgui_widgets.cpp"
|
||||||
|
"${IMGUI_SOURCE_DIR}/backends/imgui_impl_opengl3.cpp"
|
||||||
|
"${IMGUI_SOURCE_DIR}/backends/imgui_impl_glfw.cpp"
|
||||||
|
)
|
||||||
|
|
||||||
# Include sub-projects.
|
# Include sub-projects.
|
||||||
add_subdirectory ("vendor/glfw")
|
add_subdirectory ("vendor/glfw")
|
||||||
add_subdirectory ("vendor/glad")
|
add_subdirectory ("vendor/glad")
|
||||||
|
|
|
@ -3,8 +3,11 @@
|
||||||
|
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
|
||||||
|
#include "backends/imgui_impl_glfw.h"
|
||||||
|
#include "backends/imgui_impl_opengl3.h"
|
||||||
|
|
||||||
Application::Application() :
|
Application::Application() :
|
||||||
window(new Window(1280, 720, "Mandelbrot")), canvas(nullptr)
|
window(new Window(1280, 720, "Mandelbrot")), canvas(nullptr), backgroundColor{ 0.1f, 0.01f, 0.19f }
|
||||||
{
|
{
|
||||||
window->MakeContextCurrent();
|
window->MakeContextCurrent();
|
||||||
|
|
||||||
|
@ -16,10 +19,22 @@ Application::Application() :
|
||||||
glViewport(0, 0, 1280, 720);
|
glViewport(0, 0, 1280, 720);
|
||||||
|
|
||||||
canvas = new Canvas();
|
canvas = new Canvas();
|
||||||
|
|
||||||
|
IMGUI_CHECKVERSION();
|
||||||
|
ImGui::CreateContext();
|
||||||
|
ImGuiIO& io = ImGui::GetIO();
|
||||||
|
|
||||||
|
window->InitImGui();
|
||||||
|
ImGui_ImplOpenGL3_Init("#version 460 core");
|
||||||
|
|
||||||
|
ImGui::StyleColorsDark();
|
||||||
}
|
}
|
||||||
|
|
||||||
Application::~Application()
|
Application::~Application()
|
||||||
{
|
{
|
||||||
|
ImGui_ImplOpenGL3_Shutdown();
|
||||||
|
ImGui_ImplGlfw_Shutdown();
|
||||||
|
ImGui::DestroyContext();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Application::Launch()
|
void Application::Launch()
|
||||||
|
@ -27,12 +42,22 @@ void Application::Launch()
|
||||||
while (!window->ShouldClose())
|
while (!window->ShouldClose())
|
||||||
{
|
{
|
||||||
glfwPollEvents();
|
glfwPollEvents();
|
||||||
|
glClearColor(backgroundColor[0], backgroundColor[1], backgroundColor[2], 1.0f);
|
||||||
glClearColor(0.1f, 0.01f, 0.19f, 1.0f);
|
|
||||||
glClear(GL_COLOR_BUFFER_BIT);
|
glClear(GL_COLOR_BUFFER_BIT);
|
||||||
|
|
||||||
|
ImGui_ImplOpenGL3_NewFrame();
|
||||||
|
ImGui_ImplGlfw_NewFrame();
|
||||||
|
ImGui::NewFrame();
|
||||||
|
|
||||||
canvas->Render();
|
canvas->Render();
|
||||||
|
|
||||||
|
ImGui::Begin("Settings");
|
||||||
|
ImGui::SliderFloat3("Background Color", backgroundColor, 0.0f, 1.0f);
|
||||||
|
ImGui::End();
|
||||||
|
|
||||||
|
ImGui::Render();
|
||||||
|
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
|
||||||
|
|
||||||
window->Display();
|
window->Display();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,4 +14,6 @@ public:
|
||||||
private:
|
private:
|
||||||
Window* window;
|
Window* window;
|
||||||
Canvas* canvas;
|
Canvas* canvas;
|
||||||
|
|
||||||
|
float backgroundColor[3];
|
||||||
};
|
};
|
|
@ -6,9 +6,14 @@ cmake_minimum_required (VERSION 3.8)
|
||||||
# Add source to this project's executable.
|
# Add source to this project's executable.
|
||||||
add_executable (Mandelbrot "main.cpp" "Window.cpp" "Application.cpp" "Canvas.cpp")
|
add_executable (Mandelbrot "main.cpp" "Window.cpp" "Application.cpp" "Canvas.cpp")
|
||||||
|
|
||||||
|
target_sources(Mandelbrot PRIVATE
|
||||||
|
${IMGUI_SOURCE_FILES}
|
||||||
|
)
|
||||||
|
|
||||||
target_include_directories(Mandelbrot PRIVATE
|
target_include_directories(Mandelbrot PRIVATE
|
||||||
glfw
|
glfw
|
||||||
glad
|
glad
|
||||||
|
${IMGUI_INCLUDE_DIRS}
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(Mandelbrot
|
target_link_libraries(Mandelbrot
|
||||||
|
|
|
@ -90,7 +90,7 @@ void Canvas::CreateShaderProgram()
|
||||||
|
|
||||||
void main()
|
void main()
|
||||||
{
|
{
|
||||||
FragColor = vec4(1.0f, 0.0f, 1.0f, 1.0f);
|
FragColor = vec4(0.1f, 0.3f, 0.3f, 1.0f);
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
shaderSourceCString = fragmentShaderSource.c_str();
|
shaderSourceCString = fragmentShaderSource.c_str();
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
|
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
|
||||||
|
#include <backends/imgui_impl_glfw.h>
|
||||||
|
|
||||||
Window::Window(uint32_t width, uint32_t height, const std::string& title) :
|
Window::Window(uint32_t width, uint32_t height, const std::string& title) :
|
||||||
handle(nullptr)
|
handle(nullptr)
|
||||||
{
|
{
|
||||||
|
@ -34,3 +36,8 @@ void Window::Display()
|
||||||
{
|
{
|
||||||
glfwSwapBuffers(handle);
|
glfwSwapBuffers(handle);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Window::InitImGui()
|
||||||
|
{
|
||||||
|
ImGui_ImplGlfw_InitForOpenGL(handle, true);
|
||||||
|
}
|
||||||
|
|
|
@ -14,6 +14,8 @@ public:
|
||||||
inline void MakeContextCurrent() { glfwMakeContextCurrent(handle); }
|
inline void MakeContextCurrent() { glfwMakeContextCurrent(handle); }
|
||||||
void Display();
|
void Display();
|
||||||
|
|
||||||
|
void InitImGui();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
GLFWwindow* handle;
|
GLFWwindow* handle;
|
||||||
};
|
};
|
1
vendor/imgui
vendored
Submodule
1
vendor/imgui
vendored
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 29d462ebce0275345a6ce4621d8fff0ded57c9e5
|
Loading…
Reference in a new issue