From c2df15a5dc53eac52e666d48bcc1e2ec719e6211 Mon Sep 17 00:00:00 2001 From: Nanako <00sh.chiha+github@gmail.com> Date: Thu, 4 Aug 2022 21:09:00 +0900 Subject: [PATCH] add theme functionality not full implementation --- .../src/cheat-base/cheat/misc/Settings.cpp | 59 +++++++++++++++++-- .../src/cheat-base/cheat/misc/Settings.h | 4 ++ 2 files changed, 59 insertions(+), 4 deletions(-) diff --git a/cheat-base/src/cheat-base/cheat/misc/Settings.cpp b/cheat-base/src/cheat-base/cheat/misc/Settings.cpp index 371650d..0e9d407 100644 --- a/cheat-base/src/cheat-base/cheat/misc/Settings.cpp +++ b/cheat-base/src/cheat-base/cheat/misc/Settings.cpp @@ -1,9 +1,14 @@ #include #include "Settings.h" -#include -#include #include +#include +#include +#include +#include + +#include "shlwapi.h" +#pragma comment(lib, "shlwapi.lib") namespace cheat::feature { @@ -29,11 +34,14 @@ namespace cheat::feature NF(f_ConsoleLogging, "Console Logging", "General::Logging", true), NF(f_FastExitEnable, "Fast Exit", "General::FastExit", false), - NF(f_HotkeyExit, "Hotkeys", "General::FastExit", Hotkey(VK_F12)) - + NF(f_HotkeyExit, "Hotkeys", "General::FastExit", Hotkey(VK_F12)), + themesDir(util::GetCurrentPath() / "themes") + { renderer::SetGlobalFontSize(static_cast(f_FontSize)); f_HotkeyExit.value().PressedEvent += MY_METHOD_HANDLER(Settings::OnExitKeyPressed); + if (!std::filesystem::exists(themesDir)) + std::filesystem::create_directory(themesDir); } const FeatureGUIInfo& Settings::GetGUIInfo() const @@ -42,6 +50,35 @@ namespace cheat::feature return info; } + void Settings::Colors_Export(std::string name) + { + ImGuiStyle &style = ImGui::GetStyle(); + auto colors = style.Colors; + + nlohmann::json json; + for (int i = 0; i < ImGuiCol_COUNT; i++) + json[ImGui::GetStyleColorName((ImGuiCol)i)] = {colors[i].x, colors[i].y, colors[i].z, colors[i].w}; + std::ofstream file(themesDir / (name + ".json")); + file << std::setw(4) << json << std::endl; + } + + void Settings::Colors_Import(std::string name) + { + ImGuiStyle &style = ImGui::GetStyle(); + auto colors = style.Colors; + nlohmann::json json; + std::ifstream file(themesDir / (name + ".json")); + file >> json; + for (int i = 0; i < ImGuiCol_COUNT; i++) + { + auto color = json[ImGui::GetStyleColorName((ImGuiCol)i)]; + colors[i].x = color[0]; + colors[i].y = color[1]; + colors[i].z = color[2]; + colors[i].w = color[3]; + } + } + void Settings::DrawMain() { @@ -123,6 +160,20 @@ namespace cheat::feature ImGui::EndDisabled(); } ImGui::EndGroupPanel(); + + ImGui::BeginGroupPanel("Colors"); + { + static std::string nameBuffer_; + ImGui::InputText("Name", &nameBuffer_); + if (ImGui::Button("Export")) + Colors_Export(nameBuffer_); + if (ImGui::Button("Import")) + Colors_Import(nameBuffer_); + if (ImGui::Button("Open themes folder")) + ShellExecute(nullptr, "open", themesDir.c_str(), nullptr, nullptr, SW_SHOW); + + } + ImGui::EndGroupPanel(); } Settings& Settings::GetInstance() diff --git a/cheat-base/src/cheat-base/cheat/misc/Settings.h b/cheat-base/src/cheat-base/cheat/misc/Settings.h index 710866b..51eadca 100644 --- a/cheat-base/src/cheat-base/cheat/misc/Settings.h +++ b/cheat-base/src/cheat-base/cheat/misc/Settings.h @@ -31,10 +31,14 @@ namespace cheat::feature config::Field f_FastExitEnable; config::Field f_HotkeyExit; + std::filesystem::path themesDir; + static Settings& GetInstance(); const FeatureGUIInfo& GetGUIInfo() const override; void DrawMain() override; + void Colors_Export(std::string name); + void Colors_Import(std::string name); private: