2015-06-15 16:23:57 +00:00
|
|
|
//
|
|
|
|
// debug_hud.cpp
|
|
|
|
// imguiex
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "debug_hud.h"
|
|
|
|
#include "imgui.h"
|
|
|
|
|
|
|
|
void DebugHUD_InitDefaults( DebugHUD *hud )
|
|
|
|
{
|
2015-07-08 03:35:09 +00:00
|
|
|
hud->show_test_window = true;
|
|
|
|
hud->show_example_window = true;
|
|
|
|
hud->rotation_speed = 15.0f;
|
2015-06-15 16:23:57 +00:00
|
|
|
|
2015-07-08 03:35:09 +00:00
|
|
|
hud->cubeColor1[0] = 0.4f;
|
|
|
|
hud->cubeColor1[1] = 0.4f;
|
|
|
|
hud->cubeColor1[2] = 1.0f;
|
|
|
|
hud->cubeColor1[3] = 1.0f;
|
2015-06-15 16:23:57 +00:00
|
|
|
|
2015-07-08 03:35:09 +00:00
|
|
|
hud->cubeColor2[0] = 1.0f;
|
|
|
|
hud->cubeColor2[1] = 0.4f;
|
|
|
|
hud->cubeColor2[2] = 0.4f;
|
|
|
|
hud->cubeColor2[3] = 1.0f;
|
2015-06-15 16:23:57 +00:00
|
|
|
}
|
|
|
|
|
2017-08-11 05:36:28 +00:00
|
|
|
void DebugHUD_DoInterface(DebugHUD *hud)
|
2015-06-15 16:23:57 +00:00
|
|
|
{
|
|
|
|
if (hud->show_test_window)
|
|
|
|
{
|
2017-08-11 05:36:28 +00:00
|
|
|
ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiCond_FirstUseEver);
|
|
|
|
ImGui::ShowTestWindow(&hud->show_test_window );
|
2015-06-15 16:23:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hud->show_example_window)
|
|
|
|
{
|
2017-08-11 05:36:28 +00:00
|
|
|
ImGui::SetNextWindowSize(ImVec2(350, 200), ImGuiCond_FirstUseEver);
|
2015-07-08 03:35:09 +00:00
|
|
|
ImGui::Begin("Another Window", &hud->show_example_window);
|
2015-06-15 16:23:57 +00:00
|
|
|
ImGui::ColorEdit3("Cube 1 Color", hud->cubeColor1);
|
|
|
|
ImGui::ColorEdit3("Cube 2 Color", hud->cubeColor2);
|
2015-07-08 03:35:09 +00:00
|
|
|
ImGui::SliderFloat("Rotation Speed", &hud->rotation_speed, 0.0f, 200.0f);
|
2015-06-15 16:23:57 +00:00
|
|
|
ImGui::End();
|
|
|
|
}
|
2015-07-08 03:35:09 +00:00
|
|
|
}
|