#include "views/view_command_palette.hpp" #include namespace hex { ViewCommandPalette::ViewCommandPalette() : View("Command Palette") { this->m_commandBuffer.resize(1024, 0x00); this->m_lastResults = this->getCommandResults(""); } ViewCommandPalette::~ViewCommandPalette() { } void ViewCommandPalette::drawContent() { if (!this->getWindowOpenState()) return; auto windowPos = SharedData::windowPos; auto windowSize = SharedData::windowSize; auto paletteSize = this->getMinSize(); ImGui::SetNextWindowPos(ImVec2(windowPos.x + (windowSize.x - paletteSize.x) / 2.0F, windowPos.y), ImGuiCond_Always); if (ImGui::BeginPopup("Command Palette")) { if (ImGui::IsKeyDown(ImGui::GetKeyIndex(ImGuiKey_Escape))) ImGui::CloseCurrentPopup(); ImGui::PushItemWidth(paletteSize.x - ImGui::GetStyle().WindowPadding.x * 2); if (ImGui::InputText("##nolabel", this->m_commandBuffer.data(), this->m_commandBuffer.size(), ImGuiInputTextFlags_CallbackEdit | ImGuiInputTextFlags_EnterReturnsTrue, [](ImGuiInputTextCallbackData *callbackData) -> int { auto _this = static_cast(callbackData->UserData); _this->m_lastResults = _this->getCommandResults(callbackData->Buf); return 0; }, this)) { ImGui::CloseCurrentPopup(); } ImGui::PopItemWidth(); if (this->m_justOpened) { ImGui::SetKeyboardFocusHere(0); this->m_justOpened = false; } ImGui::Separator(); for (const auto &result : this->m_lastResults) { ImGui::TextUnformatted(result.c_str()); } ImGui::EndPopup(); } else { this->getWindowOpenState() = false; } } void ViewCommandPalette::drawMenu() { } bool ViewCommandPalette::handleShortcut(int key, int mods) { if (key == GLFW_KEY_P && mods == (GLFW_MOD_SHIFT | GLFW_MOD_CONTROL)) { View::doLater([this] { this->m_justOpened = true; ImGui::OpenPopup("Command Palette"); this->getWindowOpenState() = true; }); return true; } return false; } enum class MatchType { NoMatch, InfoMatch, PartialMatch, PerfectMatch }; std::vector ViewCommandPalette::getCommandResults(std::string_view input) { constexpr auto matchCommand = [](std::string_view currCommand, std::string_view commandToMatch) -> std::pair { if (currCommand.empty()) { return { MatchType::InfoMatch, "" }; } else if (currCommand.size() <= commandToMatch.size()) { if (commandToMatch.starts_with(currCommand)) return { MatchType::PartialMatch, currCommand }; else return { MatchType::NoMatch, { } }; } else { if (currCommand.starts_with(commandToMatch)) return { MatchType::PerfectMatch, currCommand.substr(commandToMatch.length()) }; else return { MatchType::NoMatch, { } }; } }; std::vector results; for (const auto &[type, command, description, callback] : ContentRegistry::CommandPaletteCommands::getEntries()) { if (type == ContentRegistry::CommandPaletteCommands::Type::SymbolCommand) { if (auto [match, value] = matchCommand(input, command); match != MatchType::NoMatch) { if (match != MatchType::PerfectMatch) results.emplace_back(command + " (" + description + ")"); else results.emplace_back(callback(input.substr(command.length()).data())); } } else if (type == ContentRegistry::CommandPaletteCommands::Type::KeywordCommand) { if (auto [match, value] = matchCommand(input, command + " "); match != MatchType::NoMatch) { if (match != MatchType::PerfectMatch) results.emplace_back(command + " (" + description + ")"); else results.emplace_back(callback(input.substr(command.length() + 1).data())); } } } return results; } }