#include "queryTool.h" #include "imgui_wrap.h" #include #include #include #include #include #include QueryTool::QueryTool() : clicked {"Click something for details"} { } 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(bool & open) { ImGui::SetNextWindowSize({-1, -1}); ImGui::Begin("Query Tool", &open); ImGui::TextUnformatted(clicked.c_str()); ImGui::End(); }