2021-08-29 14:18:45 +02:00
|
|
|
#include <hex/api/content_registry.hpp>
|
|
|
|
#include <hex/api/imhex_api.hpp>
|
|
|
|
|
2022-02-01 18:09:40 +01:00
|
|
|
#include <hex/api/localization.hpp>
|
2021-09-08 15:18:24 +02:00
|
|
|
|
2021-08-29 14:18:45 +02:00
|
|
|
#include <imgui.h>
|
2022-02-18 22:34:54 +01:00
|
|
|
#include <hex/ui/imgui_imhex_extensions.h>
|
|
|
|
#include <fonts/codicons_font.h>
|
2021-08-29 14:18:45 +02:00
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
2021-01-22 18:01:39 +01:00
|
|
|
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
|
|
|
|
void registerSettings() {
|
|
|
|
|
2021-08-22 21:11:01 +02:00
|
|
|
/* General */
|
|
|
|
|
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.general", "hex.builtin.setting.general.show_tips", 1, [](auto name, nlohmann::json &setting) {
|
2021-09-12 13:59:23 +02:00
|
|
|
static bool enabled = static_cast<int>(setting);
|
2021-08-22 21:11:01 +02:00
|
|
|
|
|
|
|
if (ImGui::Checkbox(name.data(), &enabled)) {
|
|
|
|
setting = static_cast<int>(enabled);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2021-09-30 12:00:11 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.general", "hex.builtin.setting.general.auto_load_patterns", 1, [](auto name, nlohmann::json &setting) {
|
|
|
|
static bool enabled = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::Checkbox(name.data(), &enabled)) {
|
|
|
|
setting = static_cast<int>(enabled);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2021-08-22 21:11:01 +02:00
|
|
|
/* Interface */
|
|
|
|
|
2021-02-13 15:15:32 +01:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.interface", "hex.builtin.setting.interface.color", 0, [](auto name, nlohmann::json &setting) {
|
2021-09-12 13:59:23 +02:00
|
|
|
static int selection = static_cast<int>(setting);
|
2021-02-13 15:15:32 +01:00
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
const char *themes[] = {
|
|
|
|
"hex.builtin.setting.interface.color.system"_lang,
|
|
|
|
"hex.builtin.setting.interface.color.dark"_lang,
|
|
|
|
"hex.builtin.setting.interface.color.light"_lang,
|
|
|
|
"hex.builtin.setting.interface.color.classic"_lang
|
2021-02-13 15:15:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
if (ImGui::Combo(name.data(), &selection, themes, IM_ARRAYSIZE(themes))) {
|
2021-02-10 18:17:09 +01:00
|
|
|
setting = selection;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2022-02-21 21:46:25 +01:00
|
|
|
ContentRegistry::Settings::add(
|
|
|
|
"hex.builtin.setting.interface", "hex.builtin.setting.interface.scaling", 0, [](auto name, nlohmann::json &setting) {
|
|
|
|
static int selection = static_cast<int>(setting);
|
2021-08-21 13:55:21 +02:00
|
|
|
|
2022-02-21 21:46:25 +01:00
|
|
|
const char *scaling[] = {
|
|
|
|
"hex.builtin.setting.interface.scaling.native"_lang,
|
|
|
|
"hex.builtin.setting.interface.scaling.x0_5"_lang,
|
|
|
|
"hex.builtin.setting.interface.scaling.x1_0"_lang,
|
|
|
|
"hex.builtin.setting.interface.scaling.x1_5"_lang,
|
|
|
|
"hex.builtin.setting.interface.scaling.x2_0"_lang,
|
|
|
|
};
|
2021-08-21 13:55:21 +02:00
|
|
|
|
2022-02-21 21:46:25 +01:00
|
|
|
if (ImGui::Combo(name.data(), &selection, scaling, IM_ARRAYSIZE(scaling))) {
|
|
|
|
setting = selection;
|
2021-08-27 09:57:03 +02:00
|
|
|
|
2022-02-21 21:46:25 +01:00
|
|
|
ImHexApi::Common::restartImHex();
|
2021-08-27 09:57:03 +02:00
|
|
|
|
2022-02-21 21:46:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
2021-08-21 13:55:21 +02:00
|
|
|
|
2022-02-21 21:46:25 +01:00
|
|
|
return false;
|
|
|
|
},
|
|
|
|
true);
|
2021-08-21 13:55:21 +02:00
|
|
|
|
2021-02-13 15:15:32 +01:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.interface", "hex.builtin.setting.interface.language", "en-US", [](auto name, nlohmann::json &setting) {
|
2021-02-10 18:17:09 +01:00
|
|
|
auto &languages = LangEntry::getSupportedLanguages();
|
|
|
|
|
|
|
|
static int selection = [&]() -> int {
|
|
|
|
u16 index = 0;
|
2022-01-24 20:53:17 +01:00
|
|
|
for (auto &[languageCode, languageName] : languages) {
|
2021-02-11 00:35:30 +01:00
|
|
|
if (languageCode == setting)
|
2021-02-10 18:17:09 +01:00
|
|
|
return index;
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}();
|
|
|
|
|
|
|
|
static auto languageNames = [&]() {
|
2022-01-24 20:53:17 +01:00
|
|
|
std::vector<const char *> result;
|
2021-09-20 12:44:12 +02:00
|
|
|
result.reserve(languages.size());
|
|
|
|
|
2021-02-11 00:35:30 +01:00
|
|
|
for (auto &[languageCode, languageName] : languages)
|
2021-02-10 18:17:09 +01:00
|
|
|
result.push_back(languageName.c_str());
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}();
|
|
|
|
|
|
|
|
|
2021-02-13 15:15:32 +01:00
|
|
|
if (ImGui::Combo(name.data(), &selection, languageNames.data(), languageNames.size())) {
|
2021-02-10 18:17:09 +01:00
|
|
|
|
|
|
|
u16 index = 0;
|
2022-01-24 20:53:17 +01:00
|
|
|
for (auto &[languageCode, languageName] : languages) {
|
2021-02-10 18:17:09 +01:00
|
|
|
if (selection == index) {
|
2021-02-11 00:35:30 +01:00
|
|
|
setting = languageCode;
|
2021-02-10 18:17:09 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2021-03-06 13:09:20 +01:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.interface", "hex.builtin.setting.interface.fps", 60, [](auto name, nlohmann::json &setting) {
|
2021-09-12 13:59:23 +02:00
|
|
|
static int fps = static_cast<int>(setting);
|
2021-03-06 13:09:20 +01:00
|
|
|
|
2021-10-23 12:59:13 +02:00
|
|
|
auto format = fps > 200 ? "hex.builtin.setting.interface.fps.unlocked"_lang : "%d FPS";
|
|
|
|
|
|
|
|
if (ImGui::SliderInt(name.data(), &fps, 15, 201, format, ImGuiSliderFlags_AlwaysClamp)) {
|
2021-03-06 13:09:20 +01:00
|
|
|
setting = fps;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2021-03-29 23:07:18 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.interface", "hex.builtin.setting.interface.highlight_alpha", 0x80, [](auto name, nlohmann::json &setting) {
|
2021-09-12 13:59:23 +02:00
|
|
|
static int alpha = static_cast<int>(setting);
|
2021-03-29 23:07:18 +02:00
|
|
|
|
|
|
|
if (ImGui::SliderInt(name.data(), &alpha, 0x00, 0xFF)) {
|
|
|
|
setting = alpha;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2021-09-20 23:40:36 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.column_count", 16, [](auto name, nlohmann::json &setting) {
|
|
|
|
static int columns = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::SliderInt(name.data(), &columns, 1, 32)) {
|
|
|
|
setting = columns;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.hexii", 0, [](auto name, nlohmann::json &setting) {
|
|
|
|
static bool hexii = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::Checkbox(name.data(), &hexii)) {
|
|
|
|
setting = static_cast<int>(hexii);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.ascii", 1, [](auto name, nlohmann::json &setting) {
|
|
|
|
static bool ascii = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::Checkbox(name.data(), &ascii)) {
|
|
|
|
setting = static_cast<int>(ascii);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2022-01-15 23:44:15 +01:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.advanced_decoding", 1, [](auto name, nlohmann::json &setting) {
|
2021-09-20 23:40:36 +02:00
|
|
|
static bool advancedDecoding = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::Checkbox(name.data(), &advancedDecoding)) {
|
|
|
|
setting = static_cast<int>(advancedDecoding);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.grey_zeros", 1, [](auto name, nlohmann::json &setting) {
|
|
|
|
static bool greyZeros = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::Checkbox(name.data(), &greyZeros)) {
|
|
|
|
setting = static_cast<int>(greyZeros);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.uppercase_hex", 1, [](auto name, nlohmann::json &setting) {
|
|
|
|
static bool upperCaseHex = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::Checkbox(name.data(), &upperCaseHex)) {
|
|
|
|
setting = static_cast<int>(upperCaseHex);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.extra_info", 1, [](auto name, nlohmann::json &setting) {
|
|
|
|
static bool extraInfos = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::Checkbox(name.data(), &extraInfos)) {
|
|
|
|
setting = static_cast<int>(extraInfos);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
2022-02-18 22:34:54 +01:00
|
|
|
|
2022-02-21 21:46:25 +01:00
|
|
|
|
|
|
|
static std::string fontPath;
|
|
|
|
ContentRegistry::Settings::add(
|
|
|
|
"hex.builtin.setting.font", "hex.builtin.setting.font.font_path", "", [](auto name, nlohmann::json &setting) {
|
|
|
|
fontPath = static_cast<std::string>(setting);
|
|
|
|
|
2022-03-03 09:24:09 +01:00
|
|
|
if (ImGui::InputText("##font_path", fontPath)) {
|
2022-02-21 21:46:25 +01:00
|
|
|
setting = fontPath;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
|
|
|
|
if (ImGui::IconButton(ICON_VS_FOLDER_OPENED, ImGui::GetStyleColorVec4(ImGuiCol_Text))) {
|
2022-03-04 11:36:37 +01:00
|
|
|
return fs::openFileBrowser("hex.builtin.setting.font.font_path", fs::DialogMode::Open, {
|
|
|
|
{"TTF Font", "ttf"}
|
2022-02-21 21:46:25 +01:00
|
|
|
},
|
2022-03-04 11:36:37 +01:00
|
|
|
[&](const std::fs::path &path) {
|
2022-02-21 21:46:25 +01:00
|
|
|
fontPath = path.string();
|
|
|
|
setting = fontPath;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
|
|
|
|
ImGui::TextFormatted("{}", name);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
true);
|
|
|
|
|
|
|
|
ContentRegistry::Settings::add(
|
|
|
|
"hex.builtin.setting.font", "hex.builtin.setting.font.font_size", 13, [](auto name, nlohmann::json &setting) {
|
|
|
|
static int fontSize = static_cast<int>(setting);
|
|
|
|
|
|
|
|
ImGui::BeginDisabled(fontPath.empty());
|
2022-02-23 10:16:27 +01:00
|
|
|
ON_SCOPE_EXIT { ImGui::EndDisabled(); };
|
2022-02-21 21:46:25 +01:00
|
|
|
|
|
|
|
if (ImGui::SliderInt(name.data(), &fontSize, 0, 100, "%d", ImGuiSliderFlags_NoInput)) {
|
|
|
|
setting = fontSize;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
true);
|
|
|
|
|
|
|
|
|
2022-02-18 22:34:54 +01:00
|
|
|
static const std::string dirsSetting { "hex.builtin.setting.folders" };
|
|
|
|
|
2022-02-21 21:46:25 +01:00
|
|
|
ContentRegistry::Settings::addCategoryDescription(dirsSetting, "hex.builtin.setting.folders.description");
|
2022-02-18 22:34:54 +01:00
|
|
|
|
|
|
|
ContentRegistry::Settings::add(dirsSetting, dirsSetting, std::vector<std::string> {}, [](auto name, nlohmann::json &setting) {
|
|
|
|
static std::vector<std::string> folders = setting;
|
|
|
|
static int currentItemIndex = 0;
|
|
|
|
|
|
|
|
if (!ImGui::BeginListBox("", ImVec2(-38, -FLT_MIN))) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
for (size_t n = 0; n < folders.size(); n++) {
|
|
|
|
const bool isSelected = (currentItemIndex == n);
|
|
|
|
if (ImGui::Selectable(folders.at(n).c_str(), isSelected)) { currentItemIndex = n; }
|
|
|
|
if (isSelected) { ImGui::SetItemDefaultFocus(); }
|
|
|
|
}
|
|
|
|
ImGui::EndListBox();
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::BeginGroup();
|
|
|
|
|
|
|
|
if (ImGui::IconButton(ICON_VS_NEW_FOLDER, ImGui::GetCustomColorVec4(ImGuiCustomCol_DescButton), ImVec2(30, 30))) {
|
2022-03-04 20:52:39 +01:00
|
|
|
fs::openFileBrowser("Select include folder", fs::DialogMode::Folder, {}, [&](const std::fs::path &path) {
|
2022-02-18 22:34:54 +01:00
|
|
|
auto pathStr = path.string();
|
|
|
|
|
|
|
|
if (std::find(folders.begin(), folders.end(), pathStr) == folders.end()) {
|
|
|
|
folders.emplace_back(pathStr);
|
|
|
|
ContentRegistry::Settings::write(dirsSetting, dirsSetting, folders);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ImGui::IconButton(ICON_VS_REMOVE_CLOSE, ImGui::GetCustomColorVec4(ImGuiCustomCol_DescButton), ImVec2(30, 30))) {
|
|
|
|
if (!folders.empty()) {
|
|
|
|
folders.erase(std::next(folders.begin(), currentItemIndex));
|
|
|
|
ContentRegistry::Settings::write(dirsSetting, dirsSetting, folders);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::EndGroup();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
2021-01-22 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
2022-02-18 22:34:54 +01:00
|
|
|
}
|