2022-07-02 16:22:38 +02:00
|
|
|
#include <hex/api/imhex_api.hpp>
|
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
|
|
|
|
2022-07-02 16:22:38 +02:00
|
|
|
#include <hex/helpers/net.hpp>
|
|
|
|
#include <hex/helpers/utils.hpp>
|
|
|
|
#include <hex/helpers/logger.hpp>
|
|
|
|
|
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
|
|
|
|
2022-07-14 11:38:23 +02:00
|
|
|
namespace {
|
2022-10-02 17:30:26 +02:00
|
|
|
|
|
|
|
std::vector<std::fs::path> userFolders;
|
|
|
|
|
|
|
|
void loadUserFoldersFromSetting(nlohmann::json &setting) {
|
2022-07-14 11:38:23 +02:00
|
|
|
userFolders.clear();
|
|
|
|
std::vector<std::string> paths = setting;
|
|
|
|
for (const auto &path : paths) {
|
|
|
|
// JSON reads char8_t as array, char8_t is not supported as of now
|
|
|
|
std::u8string_view uString(reinterpret_cast<const char8_t *>(&path.front()), reinterpret_cast<const char8_t *>(std::next(&path.back())));
|
|
|
|
userFolders.emplace_back(uString);
|
|
|
|
}
|
|
|
|
}
|
2022-10-02 17:30:26 +02:00
|
|
|
|
|
|
|
}
|
2022-07-14 11:38:23 +02:00
|
|
|
|
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;
|
|
|
|
});
|
|
|
|
|
2022-07-31 20:07:15 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.general", "hex.builtin.setting.general.sync_pattern_source", 0, [](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;
|
2022-07-02 16:22:38 +02:00
|
|
|
|
|
|
|
ImHexApi::System::enableSystemThemeDetection(selection == 0);
|
|
|
|
if (selection != 0)
|
|
|
|
ImHexApi::System::setTheme(static_cast<ImHexApi::System::Theme>(selection));
|
|
|
|
|
2021-02-10 18:17:09 +01:00
|
|
|
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,
|
2022-07-30 21:38:46 +02:00
|
|
|
"hex.builtin.setting.interface.scaling.x3_0"_lang,
|
|
|
|
"hex.builtin.setting.interface.scaling.x4_0"_lang,
|
2022-02-21 21:46:25 +01:00
|
|
|
};
|
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;
|
|
|
|
});
|
|
|
|
|
2022-05-22 23:26:46 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.interface", "hex.builtin.setting.interface.wiki_explain_language", "en", [](auto name, nlohmann::json &setting) {
|
|
|
|
static auto lang = std::string(setting);
|
|
|
|
|
|
|
|
if (ImGui::InputText(name.data(), lang, ImGuiInputTextFlags_CharsNoBlank)) {
|
|
|
|
setting = std::string(lang.c_str()); // remove following zero bytes
|
|
|
|
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;
|
|
|
|
});
|
|
|
|
|
2022-10-06 21:26:24 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.interface", "hex.builtin.setting.interface.multi_windows", 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;
|
|
|
|
}, true);
|
|
|
|
|
2022-05-27 20:42:07 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.highlight_color", 0x60C08080, [](auto name, nlohmann::json &setting) {
|
|
|
|
static auto color = static_cast<color_t>(setting);
|
|
|
|
|
|
|
|
std::array<float, 4> colorArray = {
|
|
|
|
((color >> 0) & 0x000000FF) / float(0xFF),
|
|
|
|
((color >> 8) & 0x000000FF) / float(0xFF),
|
|
|
|
((color >> 16) & 0x000000FF) / float(0xFF),
|
|
|
|
((color >> 24) & 0x000000FF) / float(0xFF)
|
|
|
|
};
|
|
|
|
|
|
|
|
if (ImGui::ColorEdit4(name.data(), colorArray.data(), ImGuiColorEditFlags_AlphaBar | ImGuiColorEditFlags_AlphaPreviewHalf | ImGuiColorEditFlags_NoDragDrop | ImGuiColorEditFlags_NoInputs)) {
|
|
|
|
color =
|
|
|
|
(color_t(colorArray[0] * 0xFF) << 0) |
|
|
|
|
(color_t(colorArray[1] * 0xFF) << 8) |
|
|
|
|
(color_t(colorArray[2] * 0xFF) << 16) |
|
|
|
|
(color_t(colorArray[3] * 0xFF) << 24);
|
|
|
|
|
|
|
|
setting = color;
|
2021-03-29 23:07:18 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2022-05-27 20:42:07 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.bytes_per_row", 16, [](auto name, nlohmann::json &setting) {
|
2021-09-20 23:40:36 +02:00
|
|
|
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.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;
|
|
|
|
});
|
|
|
|
|
2022-05-27 20:42:07 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.visualizer", "hex.builtin.visualizer.hexadecimal.8bit", [](auto name, nlohmann::json &setting) {
|
|
|
|
auto &visualizers = ContentRegistry::HexEditor::impl::getVisualizers();
|
2021-09-20 23:40:36 +02:00
|
|
|
|
2022-05-27 20:42:07 +02:00
|
|
|
auto selectedVisualizer = setting;
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
if (ImGui::BeginCombo(name.data(), LangEntry(selectedVisualizer))) {
|
|
|
|
|
|
|
|
for (const auto &[unlocalizedName, visualizer] : visualizers) {
|
|
|
|
if (ImGui::Selectable(LangEntry(unlocalizedName))) {
|
|
|
|
setting = unlocalizedName;
|
2022-07-14 11:38:23 +02:00
|
|
|
result = true;
|
2022-05-27 20:42:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::EndCombo();
|
2021-09-20 23:40:36 +02:00
|
|
|
}
|
|
|
|
|
2022-05-27 20:42:07 +02:00
|
|
|
return result;
|
2021-09-20 23:40:36 +02:00
|
|
|
});
|
2022-02-18 22:34:54 +01:00
|
|
|
|
2022-09-18 16:22:08 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.sync_scrolling", 0, [](auto name, nlohmann::json &setting) {
|
|
|
|
static bool syncScrolling = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::Checkbox(name.data(), &syncScrolling)) {
|
|
|
|
setting = static_cast<int>(syncScrolling);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2022-10-07 11:28:44 +02:00
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.byte_padding", 0, [](auto name, nlohmann::json &setting) {
|
|
|
|
static int padding = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::SliderInt(name.data(), &padding, 0, 50)) {
|
|
|
|
setting = padding;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
ContentRegistry::Settings::add("hex.builtin.setting.hex_editor", "hex.builtin.setting.hex_editor.char_padding", 0, [](auto name, nlohmann::json &setting) {
|
|
|
|
static int padding = static_cast<int>(setting);
|
|
|
|
|
|
|
|
if (ImGui::SliderInt(name.data(), &padding, 0, 50)) {
|
|
|
|
setting = padding;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2022-02-21 21:46:25 +01:00
|
|
|
|
2022-05-27 20:42:07 +02:00
|
|
|
/* Fonts */
|
|
|
|
|
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-27 00:01:28 +01:00
|
|
|
return fs::openFileBrowser(fs::DialogMode::Open, { {"TTF Font", "ttf"} },
|
2022-03-04 11:36:37 +01:00
|
|
|
[&](const std::fs::path &path) {
|
2022-10-04 09:10:58 +02:00
|
|
|
fontPath = hex::toUTF8String(path);
|
2022-02-21 21:46:25 +01:00
|
|
|
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-05-27 20:42:07 +02:00
|
|
|
/* Folders */
|
|
|
|
|
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) {
|
2022-03-27 00:01:28 +01:00
|
|
|
hex::unused(name);
|
|
|
|
|
2022-07-14 11:38:23 +02:00
|
|
|
static size_t currentItemIndex = [&setting] {loadUserFoldersFromSetting(setting); return 0; }();
|
2022-07-02 17:53:13 +02:00
|
|
|
|
2022-07-14 11:38:23 +02:00
|
|
|
auto saveToSetting = [&setting] {
|
|
|
|
std::vector<std::string> folderStrings;
|
|
|
|
for (const auto &folder : userFolders) {
|
|
|
|
auto utfString = folder.u8string();
|
|
|
|
// JSON stores char8_t as array, char8_t is not supported as of now
|
|
|
|
folderStrings.emplace_back(reinterpret_cast<const char *>(&utfString.front()), reinterpret_cast<const char *>(std::next(&utfString.back())));
|
|
|
|
}
|
2022-07-02 17:53:13 +02:00
|
|
|
setting = folderStrings;
|
2022-07-14 11:38:23 +02:00
|
|
|
ImHexApi::System::setAdditionalFolderPaths(userFolders);
|
2022-07-02 17:53:13 +02:00
|
|
|
};
|
|
|
|
|
2022-07-14 11:38:23 +02:00
|
|
|
bool result = false;
|
|
|
|
|
2022-02-18 22:34:54 +01:00
|
|
|
if (!ImGui::BeginListBox("", ImVec2(-38, -FLT_MIN))) {
|
|
|
|
return false;
|
|
|
|
} else {
|
2022-07-14 11:38:23 +02:00
|
|
|
for (size_t n = 0; n < userFolders.size(); n++) {
|
2022-02-18 22:34:54 +01:00
|
|
|
const bool isSelected = (currentItemIndex == n);
|
2022-10-04 09:10:58 +02:00
|
|
|
if (ImGui::Selectable(hex::toUTF8String(userFolders.at(n)).c_str(), isSelected)) { currentItemIndex = n; }
|
2022-02-18 22:34:54 +01:00
|
|
|
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-27 00:01:28 +01:00
|
|
|
fs::openFileBrowser(fs::DialogMode::Folder, {}, [&](const std::fs::path &path) {
|
2022-07-14 11:38:23 +02:00
|
|
|
if (std::find(userFolders.begin(), userFolders.end(), path) == userFolders.end()) {
|
|
|
|
userFolders.emplace_back(path);
|
|
|
|
saveToSetting();
|
2022-04-17 23:05:03 +02:00
|
|
|
result = true;
|
2022-02-18 22:34:54 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2022-03-05 23:32:30 +01:00
|
|
|
ImGui::InfoTooltip("hex.builtin.setting.folders.add_folder"_lang);
|
2022-02-18 22:34:54 +01:00
|
|
|
|
|
|
|
if (ImGui::IconButton(ICON_VS_REMOVE_CLOSE, ImGui::GetCustomColorVec4(ImGuiCustomCol_DescButton), ImVec2(30, 30))) {
|
2022-07-14 11:38:23 +02:00
|
|
|
if (!userFolders.empty()) {
|
|
|
|
userFolders.erase(std::next(userFolders.begin(), currentItemIndex));
|
|
|
|
saveToSetting();
|
2022-07-02 17:53:13 +02:00
|
|
|
|
2022-04-17 23:05:03 +02:00
|
|
|
result = true;
|
2022-02-18 22:34:54 +01:00
|
|
|
}
|
|
|
|
}
|
2022-03-05 23:32:30 +01:00
|
|
|
ImGui::InfoTooltip("hex.builtin.setting.folders.remove_folder"_lang);
|
2022-02-18 22:34:54 +01:00
|
|
|
|
|
|
|
ImGui::EndGroup();
|
|
|
|
|
2022-04-17 23:05:03 +02:00
|
|
|
return result;
|
2022-02-18 22:34:54 +01:00
|
|
|
});
|
2022-07-01 14:05:32 +02:00
|
|
|
|
|
|
|
/* Proxy */
|
|
|
|
|
|
|
|
static const std::string proxySetting { "hex.builtin.setting.proxy" };
|
|
|
|
|
|
|
|
// init hex::Net proxy url
|
|
|
|
hex::Net::setProxy(ContentRegistry::Settings::read(proxySetting, "hex.builtin.setting.proxy.url", ""));
|
|
|
|
|
|
|
|
ContentRegistry::Settings::addCategoryDescription(proxySetting, "hex.builtin.setting.proxy.description");
|
|
|
|
|
|
|
|
ContentRegistry::Settings::add(
|
|
|
|
proxySetting, "hex.builtin.setting.proxy.url", "", [](auto name, nlohmann::json &setting) {
|
|
|
|
static std::string proxyUrl = static_cast<std::string>(setting);
|
|
|
|
static bool enableProxy = !proxyUrl.empty();
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
if (ImGui::Checkbox("hex.builtin.setting.proxy.enable"_lang, &enableProxy)) {
|
|
|
|
setting = enableProxy ? proxyUrl : "";
|
|
|
|
hex::Net::setProxy(enableProxy ? proxyUrl : "");
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::BeginDisabled(!enableProxy);
|
|
|
|
if (ImGui::InputText("##proxy_url", proxyUrl)) {
|
|
|
|
setting = proxyUrl;
|
|
|
|
hex::Net::setProxy(proxyUrl);
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
ImGui::EndDisabled();
|
|
|
|
|
|
|
|
ImGui::InfoTooltip("hex.builtin.setting.proxy.url.tooltip"_lang);
|
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
|
|
|
|
ImGui::TextFormatted("{}", name);
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
false);
|
2021-01-22 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
2022-07-02 16:22:38 +02:00
|
|
|
|
|
|
|
static void loadInterfaceScalingSetting() {
|
|
|
|
float interfaceScaling = 1.0F;
|
|
|
|
switch (ContentRegistry::Settings::read("hex.builtin.setting.interface", "hex.builtin.setting.interface.scaling", 0)) {
|
|
|
|
default:
|
|
|
|
case 0:
|
2022-07-29 17:37:30 +02:00
|
|
|
interfaceScaling = ImHexApi::System::getNativeScale();
|
2022-07-02 16:22:38 +02:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
interfaceScaling = 0.5F;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
interfaceScaling = 1.0F;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
interfaceScaling = 1.5F;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
interfaceScaling = 2.0F;
|
|
|
|
break;
|
2022-07-30 21:38:46 +02:00
|
|
|
case 5:
|
|
|
|
interfaceScaling = 3.0F;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
interfaceScaling = 4.0F;
|
|
|
|
break;
|
2022-07-02 16:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ImHexApi::System::impl::setGlobalScale(interfaceScaling);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void loadFontSettings() {
|
|
|
|
std::fs::path fontFile = ContentRegistry::Settings::read("hex.builtin.setting.font", "hex.builtin.setting.font.font_path", "");
|
2022-08-01 13:57:52 +02:00
|
|
|
if (!fs::exists(fontFile) || !fs::isRegularFile(fontFile))
|
2022-07-02 16:22:38 +02:00
|
|
|
fontFile.clear();
|
|
|
|
|
|
|
|
// If no custom font has been specified, search for a file called "font.ttf" in one of the resource folders
|
|
|
|
if (fontFile.empty()) {
|
|
|
|
for (const auto &dir : fs::getDefaultPaths(fs::ImHexPath::Resources)) {
|
|
|
|
auto path = dir / "font.ttf";
|
|
|
|
if (fs::exists(path)) {
|
2022-10-04 09:10:58 +02:00
|
|
|
log::info("Loading custom front from {}", hex::toUTF8String(path));
|
2022-07-02 16:22:38 +02:00
|
|
|
|
|
|
|
fontFile = path;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-20 15:47:28 +02:00
|
|
|
ImHexApi::System::impl::setCustomFontPath(fontFile);
|
|
|
|
|
2022-07-02 16:22:38 +02:00
|
|
|
// If a custom font has been loaded now, also load the font size
|
2022-08-16 11:49:07 +02:00
|
|
|
float fontSize = ImHexApi::System::DefaultFontSize * ImHexApi::System::getGlobalScale();
|
2022-07-02 16:22:38 +02:00
|
|
|
if (!fontFile.empty()) {
|
|
|
|
fontSize = ContentRegistry::Settings::read("hex.builtin.setting.font", "hex.builtin.setting.font.font_size", 13) * ImHexApi::System::getGlobalScale();
|
|
|
|
}
|
|
|
|
|
|
|
|
ImHexApi::System::impl::setFontSize(fontSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void loadThemeSettings() {
|
|
|
|
auto theme = ContentRegistry::Settings::read("hex.builtin.setting.interface", "hex.builtin.setting.interface.color", static_cast<i64>(ImHexApi::System::Theme::Dark));
|
|
|
|
|
|
|
|
ImHexApi::System::enableSystemThemeDetection(theme == 0);
|
|
|
|
ImHexApi::System::setTheme(static_cast<ImHexApi::System::Theme>(theme));
|
|
|
|
}
|
|
|
|
|
2022-07-14 11:38:23 +02:00
|
|
|
static void loadFoldersSettings() {
|
|
|
|
static const std::string dirsSetting { "hex.builtin.setting.folders" };
|
|
|
|
auto dirs = ContentRegistry::Settings::getSetting(dirsSetting, dirsSetting);
|
|
|
|
loadUserFoldersFromSetting(dirs);
|
|
|
|
ImHexApi::System::setAdditionalFolderPaths(userFolders);
|
|
|
|
}
|
|
|
|
|
2022-07-02 16:22:38 +02:00
|
|
|
void loadSettings() {
|
|
|
|
loadInterfaceScalingSetting();
|
|
|
|
loadFontSettings();
|
|
|
|
loadThemeSettings();
|
2022-07-14 11:38:23 +02:00
|
|
|
loadFoldersSettings();
|
2022-07-02 16:22:38 +02:00
|
|
|
}
|
|
|
|
|
2022-02-18 22:34:54 +01:00
|
|
|
}
|