Clang format gui.h and cpp.

This commit is contained in:
Relintai 2024-09-14 12:10:34 +02:00
parent 69988dcae8
commit c30ef4ce1e
2 changed files with 83 additions and 86 deletions

View File

@ -9,9 +9,9 @@
#include "core/math_defs.h" #include "core/math_defs.h"
#include "core/sfw_time.h" #include "core/sfw_time.h"
#include "render_core/app_window.h"
#include "render_core/input.h" #include "render_core/input.h"
#include "render_core/input_map.h" #include "render_core/input_map.h"
#include "render_core/app_window.h"
#include "core/sfw_core.h" #include "core/sfw_core.h"
#include "object/core_string_names.h" #include "object/core_string_names.h"
@ -24,122 +24,121 @@
//--STRIP //--STRIP
void GUI::test() { void GUI::test() {
ImGuiIO &io = ImGui::GetIO();
(void)io;
ImGuiIO& io = ImGui::GetIO(); (void)io; // Our state
static bool show_demo_window = true;
static bool show_another_window = false;
static ImVec4 clear_color = ImVec4(0.45f, 0.55f, 0.60f, 1.00f);
// Our state // 2. Show a simple window that we create ourselves. We use a Begin/End pair to create a named window.
static bool show_demo_window = true; {
static bool show_another_window = false; static float f = 0.0f;
static ImVec4 clear_color = ImVec4(0.45f, 0.55f, 0.60f, 1.00f); static int counter = 0;
ImGui::Begin("Hello, world!"); // Create a window called "Hello, world!" and append into it.
// 2. Show a simple window that we create ourselves. We use a Begin/End pair to create a named window. ImGui::Text("This is some useful text."); // Display some text (you can use a format strings too)
{ ImGui::Checkbox("Demo Window", &show_demo_window); // Edit bools storing our window open/close state
static float f = 0.0f; ImGui::Checkbox("Another Window", &show_another_window);
static int counter = 0;
ImGui::Begin("Hello, world!"); // Create a window called "Hello, world!" and append into it. ImGui::SliderFloat("float", &f, 0.0f, 1.0f); // Edit 1 float using a slider from 0.0f to 1.0f
ImGui::ColorEdit3("clear color", (float *)&clear_color); // Edit 3 floats representing a color
ImGui::Text("This is some useful text."); // Display some text (you can use a format strings too) if (ImGui::Button("Button")) // Buttons return true when clicked (most widgets return true when edited/activated)
ImGui::Checkbox("Demo Window", &show_demo_window); // Edit bools storing our window open/close state counter++;
ImGui::Checkbox("Another Window", &show_another_window); ImGui::SameLine();
ImGui::Text("counter = %d", counter);
ImGui::SliderFloat("float", &f, 0.0f, 1.0f); // Edit 1 float using a slider from 0.0f to 1.0f ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / io.Framerate, io.Framerate);
ImGui::ColorEdit3("clear color", (float*)&clear_color); // Edit 3 floats representing a color ImGui::End();
}
if (ImGui::Button("Button")) // Buttons return true when clicked (most widgets return true when edited/activated) // 3. Show another simple window.
counter++; if (show_another_window) {
ImGui::SameLine(); ImGui::Begin("Another Window", &show_another_window); // Pass a pointer to our bool variable (the window will have a closing button that will clear the bool when clicked)
ImGui::Text("counter = %d", counter); ImGui::Text("Hello from another window!");
if (ImGui::Button("Close Me"))
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / io.Framerate, io.Framerate); show_another_window = false;
ImGui::End(); ImGui::End();
} }
// 3. Show another simple window.
if (show_another_window)
{
ImGui::Begin("Another Window", &show_another_window); // Pass a pointer to our bool variable (the window will have a closing button that will clear the bool when clicked)
ImGui::Text("Hello from another window!");
if (ImGui::Button("Close Me"))
show_another_window = false;
ImGui::End();
}
} }
void GUI::initialize() { void GUI::initialize() {
ERR_FAIL_COND(_singleton); ERR_FAIL_COND(_singleton);
memnew(GUI); memnew(GUI);
// Decide GL+GLSL versions // Decide GL+GLSL versions
#if defined(__APPLE__) #if defined(__APPLE__)
// GL 3.2 + GLSL 150 // GL 3.2 + GLSL 150
const char* glsl_version = "#version 150"; const char *glsl_version = "#version 150";
#else #else
// GL ES 2.0 + GLSL 100 // GL ES 2.0 + GLSL 100
const char* glsl_version = "#version 100"; const char *glsl_version = "#version 100";
#endif #endif
// Setup Dear ImGui context // Setup Dear ImGui context
IMGUI_CHECKVERSION(); IMGUI_CHECKVERSION();
ImGui::CreateContext(); ImGui::CreateContext();
ImGuiIO& io = ImGui::GetIO(); (void)io; ImGuiIO &io = ImGui::GetIO();
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls (void)io;
io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls
io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls
// Setup Dear ImGui style // Setup Dear ImGui style
ImGui::StyleColorsDark(); ImGui::StyleColorsDark();
//ImGui::StyleColorsLight(); //ImGui::StyleColorsLight();
GLFWwindow *window = (GLFWwindow *)AppWindow::get_singleton()->get_window_handle(); GLFWwindow *window = (GLFWwindow *)AppWindow::get_singleton()->get_window_handle();
// Setup Platform/Renderer backends // Setup Platform/Renderer backends
ImGui_ImplGlfw_InitForOpenGL(window, true); ImGui_ImplGlfw_InitForOpenGL(window, true);
#ifdef __EMSCRIPTEN__ #ifdef __EMSCRIPTEN__
ImGui_ImplGlfw_InstallEmscriptenCallbacks(window, "#canvas"); ImGui_ImplGlfw_InstallEmscriptenCallbacks(window, "#canvas");
#endif #endif
ImGui_ImplOpenGL3_Init(glsl_version); ImGui_ImplOpenGL3_Init(glsl_version);
// Load Fonts // Load Fonts
// - If no fonts are loaded, dear imgui will use the default font. You can also load multiple fonts and use ImGui::PushFont()/PopFont() to select them. // - If no fonts are loaded, dear imgui will use the default font. You can also load multiple fonts and use ImGui::PushFont()/PopFont() to select them.
// - AddFontFromFileTTF() will return the ImFont* so you can store it if you need to select the font among multiple. // - AddFontFromFileTTF() will return the ImFont* so you can store it if you need to select the font among multiple.
// - If the file cannot be loaded, the function will return a nullptr. Please handle those errors in your application (e.g. use an assertion, or display an error and quit). // - If the file cannot be loaded, the function will return a nullptr. Please handle those errors in your application (e.g. use an assertion, or display an error and quit).
// - The fonts will be rasterized at a given size (w/ oversampling) and stored into a texture when calling ImFontAtlas::Build()/GetTexDataAsXXXX(), which ImGui_ImplXXXX_NewFrame below will call. // - The fonts will be rasterized at a given size (w/ oversampling) and stored into a texture when calling ImFontAtlas::Build()/GetTexDataAsXXXX(), which ImGui_ImplXXXX_NewFrame below will call.
// - Use '#define IMGUI_ENABLE_FREETYPE' in your imconfig file to use Freetype for higher quality font rendering. // - Use '#define IMGUI_ENABLE_FREETYPE' in your imconfig file to use Freetype for higher quality font rendering.
// - Read 'docs/FONTS.md' for more instructions and details. // - Read 'docs/FONTS.md' for more instructions and details.
// - Remember that in C/C++ if you want to include a backslash \ in a string literal you need to write a double backslash \\ ! // - Remember that in C/C++ if you want to include a backslash \ in a string literal you need to write a double backslash \\ !
// - Our Emscripten build process allows embedding fonts to be accessible at runtime from the "fonts/" folder. See Makefile.emscripten for details. // - Our Emscripten build process allows embedding fonts to be accessible at runtime from the "fonts/" folder. See Makefile.emscripten for details.
//io.Fonts->AddFontDefault(); //io.Fonts->AddFontDefault();
//io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\segoeui.ttf", 18.0f); //io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\segoeui.ttf", 18.0f);
//io.Fonts->AddFontFromFileTTF("../../misc/fonts/DroidSans.ttf", 16.0f); //io.Fonts->AddFontFromFileTTF("../../misc/fonts/DroidSans.ttf", 16.0f);
//io.Fonts->AddFontFromFileTTF("../../misc/fonts/Roboto-Medium.ttf", 16.0f); //io.Fonts->AddFontFromFileTTF("../../misc/fonts/Roboto-Medium.ttf", 16.0f);
//io.Fonts->AddFontFromFileTTF("../../misc/fonts/Cousine-Regular.ttf", 15.0f); //io.Fonts->AddFontFromFileTTF("../../misc/fonts/Cousine-Regular.ttf", 15.0f);
//ImFont* font = io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\ArialUni.ttf", 18.0f, nullptr, io.Fonts->GetGlyphRangesJapanese()); //ImFont* font = io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\ArialUni.ttf", 18.0f, nullptr, io.Fonts->GetGlyphRangesJapanese());
//IM_ASSERT(font != nullptr); //IM_ASSERT(font != nullptr);
} }
void GUI::destroy() { void GUI::destroy() {
// Cleanup // Cleanup
ImGui_ImplOpenGL3_Shutdown(); ImGui_ImplOpenGL3_Shutdown();
ImGui_ImplGlfw_Shutdown(); ImGui_ImplGlfw_Shutdown();
ImGui::DestroyContext(); ImGui::DestroyContext();
ERR_FAIL_COND(!_singleton); ERR_FAIL_COND(!_singleton);
memdelete(_singleton); memdelete(_singleton);
} }
void GUI::new_frame() { void GUI::new_frame() {
// Start the Dear ImGui frame // Start the Dear ImGui frame
ImGui_ImplOpenGL3_NewFrame(); ImGui_ImplOpenGL3_NewFrame();
ImGui_ImplGlfw_NewFrame(); ImGui_ImplGlfw_NewFrame();
ImGui::NewFrame(); ImGui::NewFrame();
} }
void GUI::render() { void GUI::render() {
// Rendering // Rendering
ImGui::Render(); ImGui::Render();
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData()); ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
} }
GUI::GUI() { GUI::GUI() {
@ -155,4 +154,3 @@ GUI *GUI::get_singleton() {
} }
GUI *GUI::_singleton = NULL; GUI *GUI::_singleton = NULL;

View File

@ -30,7 +30,6 @@ public:
protected: protected:
static GUI *_singleton; static GUI *_singleton;
}; };
//--STRIP //--STRIP