From 1f14089d0d6adbd1072b022dfaeb17a1975e8b38 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 19 Mar 2025 01:44:18 +0000 Subject: Replace basic query tool with a ImGui version --- ui/queryTool.cpp | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ui/queryTool.cpp (limited to 'ui/queryTool.cpp') diff --git a/ui/queryTool.cpp b/ui/queryTool.cpp new file mode 100644 index 0000000..e48bae1 --- /dev/null +++ b/ui/queryTool.cpp @@ -0,0 +1,39 @@ +#include "queryTool.h" +#include "imgui_wrap.h" +#include +#include +#include +#include +#include +#include + +bool +QueryTool::click(const SDL_MouseButtonEvent & event, const Ray & ray) +{ + if (event.button != SDL_BUTTON_LEFT) { + return false; + } + BaryPosition baryPos {}; + RelativeDistance distance {}; + + if (const auto selected = gameState->world.applyOne(&Selectable::intersectRay, ray, baryPos, distance); + selected != gameState->world.end()) { + const auto & ref = *selected.base()->get(); + clicked = typeid(ref).name(); + } + else if (const auto pos = gameState->terrain->intersectRay(ray)) { + clicked = streamed_string(*pos); + } + else { + clicked.clear(); + } + return true; +} + +void +QueryTool::render(const UIShader &, const UIComponent::Position &) +{ + ImGui::Begin("Query Tool"); + ImGui::TextUnformatted(clicked.c_str()); + ImGui::End(); +} -- cgit v1.2.3