150 lines
6.7 KiB
C++
150 lines
6.7 KiB
C++
#include "content/views/view_constants.hpp"
|
|
|
|
#include <hex/helpers/fs.hpp>
|
|
#include <hex/helpers/logger.hpp>
|
|
#include <hex/helpers/utils.hpp>
|
|
|
|
#include <wolv/utils/string.hpp>
|
|
#include <wolv/io/file.hpp>
|
|
|
|
#include <filesystem>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
ViewConstants::ViewConstants() : View::Window("hex.builtin.view.constants.name") {
|
|
this->reloadConstants();
|
|
}
|
|
|
|
void ViewConstants::reloadConstants() {
|
|
this->m_constants.clear();
|
|
this->m_filterIndices.clear();
|
|
|
|
for (const auto &path : fs::getDefaultPaths(fs::ImHexPath::Constants)) {
|
|
if (!wolv::io::fs::exists(path)) continue;
|
|
|
|
std::error_code error;
|
|
for (auto &file : std::fs::directory_iterator(path, error)) {
|
|
if (!file.is_regular_file()) continue;
|
|
|
|
if (file.path().extension() != ".json") continue;
|
|
if (file.path().filename().u8string().starts_with('_')) continue;
|
|
|
|
try {
|
|
auto fileData = wolv::io::File(file.path(), wolv::io::File::Mode::Read).readString();
|
|
auto content = nlohmann::json::parse(fileData);
|
|
|
|
for (auto value : content.at("values")) {
|
|
Constant constant;
|
|
constant.category = content.at("name").get<std::string>();
|
|
constant.name = value.at("name").get<std::string>();
|
|
if (value.contains("desc"))
|
|
constant.description = value.at("desc").get<std::string>();
|
|
constant.value = value.at("value").get<std::string>();
|
|
|
|
auto type = value.at("type");
|
|
if (type == "int10")
|
|
constant.type = ConstantType::Int10;
|
|
else if (type == "int16be")
|
|
constant.type = ConstantType::Int16BigEndian;
|
|
else if (type == "int16le")
|
|
constant.type = ConstantType::Int16LittleEndian;
|
|
else
|
|
throw std::runtime_error("Invalid type");
|
|
|
|
this->m_filterIndices.push_back(this->m_constants.size());
|
|
this->m_constants.push_back(constant);
|
|
}
|
|
} catch (...) {
|
|
log::error("Failed to parse constants file {}", wolv::util::toUTF8String(file.path()));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void ViewConstants::drawContent() {
|
|
ImGui::PushItemWidth(-1);
|
|
|
|
if (ImGuiExt::InputTextIcon("##search", ICON_VS_FILTER, this->m_filter)) {
|
|
this->m_filterIndices.clear();
|
|
|
|
// Filter the constants according to the entered value
|
|
for (u64 i = 0; i < this->m_constants.size(); i++) {
|
|
auto &constant = this->m_constants[i];
|
|
if (hex::containsIgnoreCase(constant.name, this->m_filter) ||
|
|
hex::containsIgnoreCase(constant.category, this->m_filter) ||
|
|
hex::containsIgnoreCase(constant.description, this->m_filter) ||
|
|
hex::containsIgnoreCase(constant.value, this->m_filter))
|
|
this->m_filterIndices.push_back(i);
|
|
}
|
|
}
|
|
|
|
ImGui::PopItemWidth();
|
|
|
|
if (ImGui::BeginTable("##strings", 4, ImGuiTableFlags_Borders | ImGuiTableFlags_Resizable | ImGuiTableFlags_Sortable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_RowBg | ImGuiTableFlags_ScrollY)) {
|
|
ImGui::TableSetupScrollFreeze(0, 1);
|
|
ImGui::TableSetupColumn("hex.builtin.view.constants.row.category"_lang, 0, -1, ImGui::GetID("category"));
|
|
ImGui::TableSetupColumn("hex.builtin.view.constants.row.name"_lang, 0, -1, ImGui::GetID("name"));
|
|
ImGui::TableSetupColumn("hex.builtin.view.constants.row.desc"_lang, 0, -1, ImGui::GetID("desc"));
|
|
ImGui::TableSetupColumn("hex.builtin.view.constants.row.value"_lang, 0, -1, ImGui::GetID("value"));
|
|
|
|
auto sortSpecs = ImGui::TableGetSortSpecs();
|
|
|
|
// Handle table sorting
|
|
if (sortSpecs->SpecsDirty) {
|
|
std::sort(this->m_constants.begin(), this->m_constants.end(), [&sortSpecs](const Constant &left, const Constant &right) -> bool {
|
|
if (sortSpecs->Specs->ColumnUserID == ImGui::GetID("category")) {
|
|
if (sortSpecs->Specs->SortDirection == ImGuiSortDirection_Ascending)
|
|
return left.category > right.category;
|
|
else
|
|
return left.category < right.category;
|
|
} else if (sortSpecs->Specs->ColumnUserID == ImGui::GetID("name")) {
|
|
if (sortSpecs->Specs->SortDirection == ImGuiSortDirection_Ascending)
|
|
return left.name > right.name;
|
|
else
|
|
return left.name < right.name;
|
|
} else if (sortSpecs->Specs->ColumnUserID == ImGui::GetID("desc")) {
|
|
if (sortSpecs->Specs->SortDirection == ImGuiSortDirection_Ascending)
|
|
return left.description > right.description;
|
|
else
|
|
return left.description < right.description;
|
|
} else if (sortSpecs->Specs->ColumnUserID == ImGui::GetID("value")) {
|
|
if (sortSpecs->Specs->SortDirection == ImGuiSortDirection_Ascending)
|
|
return left.value > right.value;
|
|
else
|
|
return left.value < right.value;
|
|
}
|
|
|
|
return false;
|
|
});
|
|
|
|
sortSpecs->SpecsDirty = false;
|
|
}
|
|
|
|
ImGui::TableHeadersRow();
|
|
|
|
ImGuiListClipper clipper;
|
|
clipper.Begin(this->m_filterIndices.size());
|
|
|
|
// Draw the constants table
|
|
while (clipper.Step()) {
|
|
for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) {
|
|
auto &constant = this->m_constants[this->m_filterIndices[i]];
|
|
ImGui::TableNextRow();
|
|
ImGui::TableNextColumn();
|
|
ImGui::TextUnformatted(constant.category.c_str());
|
|
ImGui::TableNextColumn();
|
|
ImGui::TextUnformatted(constant.name.c_str());
|
|
ImGui::TableNextColumn();
|
|
ImGui::TextUnformatted(constant.description.c_str());
|
|
ImGui::TableNextColumn();
|
|
ImGui::TextUnformatted(constant.value.c_str());
|
|
}
|
|
}
|
|
clipper.End();
|
|
|
|
ImGui::EndTable();
|
|
}
|
|
}
|
|
|
|
} |