2023-08-16 14:13:14 -04:00
|
|
|
#define SATDUMP_DLL_EXPORT 1
|
|
|
|
|
|
2021-02-17 23:21:59 +01:00
|
|
|
#include "style.h"
|
|
|
|
|
#include "imgui/imgui.h"
|
|
|
|
|
#include "imgui/imgui_internal.h"
|
|
|
|
|
//#include <config.h>
|
|
|
|
|
//#include <options.h>
|
2023-02-26 01:12:02 +00:00
|
|
|
#include "logger.h"
|
2021-02-17 23:21:59 +01:00
|
|
|
#include <filesystem>
|
2022-03-05 12:44:19 +01:00
|
|
|
#include "core/module.h"
|
2022-09-07 18:44:52 +02:00
|
|
|
#include "resources.h"
|
2021-02-17 23:21:59 +01:00
|
|
|
|
2023-09-03 21:53:04 -04:00
|
|
|
#ifdef __APPLE__
|
|
|
|
|
#include <CoreGraphics/CGDirectDisplay.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-06-12 21:14:32 +02:00
|
|
|
namespace style
|
|
|
|
|
{
|
2023-08-16 14:13:14 -04:00
|
|
|
SATDUMP_DLL ImFont *baseFont;
|
|
|
|
|
SATDUMP_DLL ImFont *bigFont;
|
|
|
|
|
SATDUMP_DLL ImFont *hugeFont;
|
2021-06-12 21:14:32 +02:00
|
|
|
|
2022-09-07 18:44:52 +02:00
|
|
|
bool setDefaultStyle()
|
2021-06-12 21:14:32 +02:00
|
|
|
{
|
2023-08-23 15:45:10 -04:00
|
|
|
float round = pow(2.0f, ui_scale);
|
2022-09-04 20:33:58 +02:00
|
|
|
ImGui::GetStyle().WindowRounding = round;
|
|
|
|
|
ImGui::GetStyle().ChildRounding = round;
|
|
|
|
|
ImGui::GetStyle().FrameRounding = round;
|
|
|
|
|
ImGui::GetStyle().GrabRounding = round;
|
|
|
|
|
ImGui::GetStyle().PopupRounding = round;
|
|
|
|
|
ImGui::GetStyle().ScrollbarRounding = round;
|
2021-02-17 23:21:59 +01:00
|
|
|
|
|
|
|
|
ImGui::StyleColorsDark();
|
2022-09-08 21:51:50 +02:00
|
|
|
// ImGui::StyleColorsLight();
|
2021-02-17 23:21:59 +01:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-23 15:45:10 -04:00
|
|
|
bool setLightStyle()
|
2021-06-12 21:14:32 +02:00
|
|
|
{
|
2023-08-23 15:45:10 -04:00
|
|
|
float round = pow(2.0f, ui_scale);
|
2022-09-04 20:33:58 +02:00
|
|
|
ImGui::GetStyle().WindowRounding = round;
|
|
|
|
|
ImGui::GetStyle().ChildRounding = round;
|
|
|
|
|
ImGui::GetStyle().FrameRounding = round;
|
|
|
|
|
ImGui::GetStyle().GrabRounding = round;
|
|
|
|
|
ImGui::GetStyle().PopupRounding = round;
|
|
|
|
|
ImGui::GetStyle().ScrollbarRounding = round;
|
2021-06-12 21:14:32 +02:00
|
|
|
|
|
|
|
|
ImGui::StyleColorsLight();
|
|
|
|
|
|
|
|
|
|
/*auto &style = ImGui::GetStyle();
|
|
|
|
|
|
|
|
|
|
ImVec4 *colors = style.Colors;
|
|
|
|
|
|
|
|
|
|
colors[ImGuiCol_Text] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_TextDisabled] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_WindowBg] = ImVec4(0.06f, 0.06f, 0.06f, 0.94f);
|
|
|
|
|
colors[ImGuiCol_ChildBg] = ImVec4(1.00f, 1.00f, 1.00f, 0.00f);
|
|
|
|
|
colors[ImGuiCol_PopupBg] = ImVec4(0.08f, 0.08f, 0.08f, 0.94f);
|
|
|
|
|
colors[ImGuiCol_Border] = ImVec4(0.43f, 0.43f, 0.50f, 0.50f);
|
|
|
|
|
colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f);
|
|
|
|
|
colors[ImGuiCol_FrameBg] = ImVec4(0.20f, 0.21f, 0.22f, 0.54f);
|
|
|
|
|
colors[ImGuiCol_FrameBgHovered] = ImVec4(0.20f, 0.21f, 0.22f, 0.54f);
|
|
|
|
|
colors[ImGuiCol_FrameBgActive] = ImVec4(0.20f, 0.21f, 0.22f, 0.54f);
|
|
|
|
|
colors[ImGuiCol_TitleBg] = ImVec4(0.04f, 0.04f, 0.04f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_TitleBgActive] = ImVec4(0.29f, 0.29f, 0.29f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.00f, 0.00f, 0.00f, 0.51f);
|
|
|
|
|
colors[ImGuiCol_MenuBarBg] = ImVec4(0.14f, 0.14f, 0.14f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_ScrollbarBg] = ImVec4(0.02f, 0.02f, 0.02f, 0.53f);
|
|
|
|
|
colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.31f, 0.31f, 0.31f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.41f, 0.41f, 0.41f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.51f, 0.51f, 0.51f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_CheckMark] = ImVec4(0.24f, 0.52f, 0.88f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_SliderGrab] = ImVec4(0.24f, 0.52f, 0.88f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_SliderGrabActive] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_Button] = ImVec4(0.44f, 0.44f, 0.44f, 0.40f);
|
|
|
|
|
colors[ImGuiCol_ButtonHovered] = ImVec4(0.44f, 0.44f, 0.44f, 0.45f);
|
|
|
|
|
colors[ImGuiCol_ButtonActive] = ImVec4(0.44f, 0.44f, 0.44f, 0.40f);
|
|
|
|
|
colors[ImGuiCol_Header] = ImVec4(0.63f, 0.63f, 0.70f, 0.31f);
|
|
|
|
|
colors[ImGuiCol_HeaderHovered] = ImVec4(0.63f, 0.63f, 0.70f, 0.40f);
|
|
|
|
|
colors[ImGuiCol_HeaderActive] = ImVec4(0.63f, 0.63f, 0.70f, 0.31f);
|
|
|
|
|
colors[ImGuiCol_Separator] = ImVec4(0.43f, 0.43f, 0.50f, 0.50f);
|
|
|
|
|
colors[ImGuiCol_SeparatorHovered] = ImVec4(0.72f, 0.72f, 0.72f, 0.78f);
|
|
|
|
|
colors[ImGuiCol_SeparatorActive] = ImVec4(0.51f, 0.51f, 0.51f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_ResizeGrip] = ImVec4(0.91f, 0.91f, 0.91f, 0.25f);
|
|
|
|
|
colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.81f, 0.81f, 0.81f, 0.67f);
|
|
|
|
|
colors[ImGuiCol_ResizeGripActive] = ImVec4(0.46f, 0.46f, 0.46f, 0.95f);
|
|
|
|
|
colors[ImGuiCol_PlotLines] = ImVec4(0.4f, 0.9f, 1.0f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.00f, 0.43f, 0.35f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_PlotHistogram] = ImVec4(0.73f, 0.60f, 0.15f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.60f, 0.00f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_TextSelectedBg] = ImVec4(0.87f, 0.87f, 0.87f, 0.35f);
|
|
|
|
|
colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.35f);
|
|
|
|
|
colors[ImGuiCol_DragDropTarget] = ImVec4(1.00f, 1.00f, 0.00f, 0.90f);
|
|
|
|
|
colors[ImGuiCol_NavHighlight] = ImVec4(0.60f, 0.60f, 0.60f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_NavWindowingHighlight] = ImVec4(1.00f, 1.00f, 1.00f, 0.70f);*/
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-23 15:45:10 -04:00
|
|
|
bool setDarkStyle()
|
2021-06-12 21:14:32 +02:00
|
|
|
{
|
2023-08-23 15:45:10 -04:00
|
|
|
float round = pow(2.0f, ui_scale);
|
2022-09-04 20:33:58 +02:00
|
|
|
ImGui::GetStyle().WindowRounding = round;
|
|
|
|
|
ImGui::GetStyle().ChildRounding = round;
|
|
|
|
|
ImGui::GetStyle().FrameRounding = round;
|
|
|
|
|
ImGui::GetStyle().GrabRounding = round;
|
|
|
|
|
ImGui::GetStyle().PopupRounding = round;
|
|
|
|
|
ImGui::GetStyle().ScrollbarRounding = round;
|
2021-02-17 23:21:59 +01:00
|
|
|
|
|
|
|
|
ImGui::StyleColorsDark();
|
|
|
|
|
|
2021-06-12 21:14:32 +02:00
|
|
|
auto &style = ImGui::GetStyle();
|
|
|
|
|
|
|
|
|
|
ImVec4 *colors = style.Colors;
|
|
|
|
|
|
|
|
|
|
colors[ImGuiCol_Text] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_TextDisabled] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_WindowBg] = ImVec4(0.06f, 0.06f, 0.06f, 0.94f);
|
|
|
|
|
colors[ImGuiCol_ChildBg] = ImVec4(1.00f, 1.00f, 1.00f, 0.00f);
|
|
|
|
|
colors[ImGuiCol_PopupBg] = ImVec4(0.08f, 0.08f, 0.08f, 0.94f);
|
|
|
|
|
colors[ImGuiCol_Border] = ImVec4(0.43f, 0.43f, 0.50f, 0.50f);
|
|
|
|
|
colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f);
|
|
|
|
|
colors[ImGuiCol_FrameBg] = ImVec4(0.20f, 0.21f, 0.22f, 0.54f);
|
|
|
|
|
colors[ImGuiCol_FrameBgHovered] = ImVec4(0.20f, 0.21f, 0.22f, 0.54f);
|
|
|
|
|
colors[ImGuiCol_FrameBgActive] = ImVec4(0.20f, 0.21f, 0.22f, 0.54f);
|
|
|
|
|
colors[ImGuiCol_TitleBg] = ImVec4(0.04f, 0.04f, 0.04f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_TitleBgActive] = ImVec4(0.29f, 0.29f, 0.29f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.00f, 0.00f, 0.00f, 0.51f);
|
|
|
|
|
colors[ImGuiCol_MenuBarBg] = ImVec4(0.14f, 0.14f, 0.14f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_ScrollbarBg] = ImVec4(0.02f, 0.02f, 0.02f, 0.53f);
|
|
|
|
|
colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.31f, 0.31f, 0.31f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.41f, 0.41f, 0.41f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.51f, 0.51f, 0.51f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_CheckMark] = ImVec4(0.24f, 0.52f, 0.88f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_SliderGrab] = ImVec4(0.24f, 0.52f, 0.88f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_SliderGrabActive] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_Button] = ImVec4(0.44f, 0.44f, 0.44f, 0.40f);
|
|
|
|
|
colors[ImGuiCol_ButtonHovered] = ImVec4(0.44f, 0.44f, 0.44f, 0.45f);
|
|
|
|
|
colors[ImGuiCol_ButtonActive] = ImVec4(0.44f, 0.44f, 0.44f, 0.40f);
|
|
|
|
|
colors[ImGuiCol_Header] = ImVec4(0.63f, 0.63f, 0.70f, 0.31f);
|
|
|
|
|
colors[ImGuiCol_HeaderHovered] = ImVec4(0.63f, 0.63f, 0.70f, 0.40f);
|
|
|
|
|
colors[ImGuiCol_HeaderActive] = ImVec4(0.63f, 0.63f, 0.70f, 0.31f);
|
|
|
|
|
colors[ImGuiCol_Separator] = ImVec4(0.43f, 0.43f, 0.50f, 0.50f);
|
|
|
|
|
colors[ImGuiCol_SeparatorHovered] = ImVec4(0.72f, 0.72f, 0.72f, 0.78f);
|
|
|
|
|
colors[ImGuiCol_SeparatorActive] = ImVec4(0.51f, 0.51f, 0.51f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_ResizeGrip] = ImVec4(0.91f, 0.91f, 0.91f, 0.25f);
|
|
|
|
|
colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.81f, 0.81f, 0.81f, 0.67f);
|
|
|
|
|
colors[ImGuiCol_ResizeGripActive] = ImVec4(0.46f, 0.46f, 0.46f, 0.95f);
|
|
|
|
|
colors[ImGuiCol_PlotLines] = ImVec4(0.4f, 0.9f, 1.0f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.00f, 0.43f, 0.35f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_PlotHistogram] = ImVec4(0.73f, 0.60f, 0.15f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.60f, 0.00f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_TextSelectedBg] = ImVec4(0.87f, 0.87f, 0.87f, 0.35f);
|
|
|
|
|
colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.35f);
|
|
|
|
|
colors[ImGuiCol_DragDropTarget] = ImVec4(1.00f, 1.00f, 0.00f, 0.90f);
|
|
|
|
|
colors[ImGuiCol_NavHighlight] = ImVec4(0.60f, 0.60f, 0.60f, 1.00f);
|
|
|
|
|
colors[ImGuiCol_NavWindowingHighlight] = ImVec4(1.00f, 1.00f, 1.00f, 0.70f);
|
2021-02-17 23:21:59 +01:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-12 21:14:32 +02:00
|
|
|
void beginDisabled()
|
|
|
|
|
{
|
2021-02-17 23:21:59 +01:00
|
|
|
ImGui::PushItemFlag(ImGuiItemFlags_Disabled, true);
|
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(0.44f, 0.44f, 0.44f, 0.15f));
|
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_FrameBg, ImVec4(0.20f, 0.21f, 0.22f, 0.30f));
|
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1.00f, 1.00f, 1.00f, 0.65f));
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-12 21:14:32 +02:00
|
|
|
void endDisabled()
|
|
|
|
|
{
|
2021-02-17 23:21:59 +01:00
|
|
|
ImGui::PopItemFlag();
|
|
|
|
|
ImGui::PopStyleColor(3);
|
|
|
|
|
}
|
2022-09-07 18:44:52 +02:00
|
|
|
|
2022-09-14 01:26:34 +02:00
|
|
|
void setFonts()
|
2023-08-23 15:45:10 -04:00
|
|
|
{
|
|
|
|
|
setFonts(ui_scale);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setFonts(float dpi_scaling)
|
2022-09-08 21:51:50 +02:00
|
|
|
{
|
2023-09-03 21:53:04 -04:00
|
|
|
ImGuiIO &io = ImGui::GetIO();
|
|
|
|
|
(void)io;
|
|
|
|
|
io.Fonts->Clear();
|
2022-09-17 17:20:24 +02:00
|
|
|
static const ImWchar def[] = {0x20, 0x2300, 0}; //default range
|
2022-09-13 23:40:18 +02:00
|
|
|
static ImFontConfig config;
|
2023-09-03 21:53:04 -04:00
|
|
|
float macos_fbs = macos_framebuffer_scale();
|
|
|
|
|
float font_scaling = dpi_scaling * macos_fbs;
|
|
|
|
|
|
|
|
|
|
baseFont = io.Fonts->AddFontFromFileTTF(resources::getResourcePath("fonts/Roboto-Medium.ttf").c_str(), 16.0f * font_scaling, &config, def);
|
2022-09-17 17:20:24 +02:00
|
|
|
config.MergeMode = true;
|
2023-01-22 18:21:08 +01:00
|
|
|
static const ImWchar list[6][3] = {{0xf000, 0xf0ff, 0}, {0xf400, 0xf4ff, 0}, {0xf800, 0xf8ff, 0}, {0xfc00, 0xfcff, 0}, {0xea00, 0xeaff, 0}, {0xf200, 0xf2ff, 0}};
|
2022-09-17 17:20:24 +02:00
|
|
|
|
2023-01-22 18:21:08 +01:00
|
|
|
for (int i = 0; i < 6; i++)
|
2023-09-03 21:53:04 -04:00
|
|
|
baseFont = io.Fonts->AddFontFromFileTTF(resources::getResourcePath("fonts/font.ttf").c_str(), 16.0f * font_scaling, &config, list[i]);
|
2022-09-17 17:20:24 +02:00
|
|
|
|
2023-08-16 21:35:34 -04:00
|
|
|
config.MergeMode = false;
|
2023-09-03 21:53:04 -04:00
|
|
|
bigFont = io.Fonts->AddFontFromFileTTF(resources::getResourcePath("fonts/Roboto-Medium.ttf").c_str(), 45.0f * font_scaling); //, &config, ranges);
|
|
|
|
|
//hugeFont = io.Fonts->AddFontFromFileTTF(resources::getResourcePath("fonts/Roboto-Medium.ttf").c_str(), 128.0f * font_scaling); //, &config, ranges);
|
|
|
|
|
io.Fonts->Build();
|
|
|
|
|
io.FontGlobalScale = 1 / macos_fbs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float macos_framebuffer_scale()
|
|
|
|
|
{
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
|
CGDirectDisplayID display_id = CGMainDisplayID();
|
|
|
|
|
CGDisplayModeRef display_mode = CGDisplayCopyDisplayMode(display_id);
|
|
|
|
|
float return_value = (float)CGDisplayModeGetPixelWidth(display_mode) / (float)CGDisplayPixelsWide(display_id);
|
|
|
|
|
CGDisplayModeRelease(display_mode);
|
|
|
|
|
return return_value;
|
|
|
|
|
#else
|
|
|
|
|
return 1.0f;
|
|
|
|
|
#endif
|
2022-09-07 18:44:52 +02:00
|
|
|
}
|
2021-02-17 23:21:59 +01:00
|
|
|
}
|