All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 36s
1.11.6 Changelog (In Progress) --- * Update submodule reference * Update dalamud sdk * Reworked the Syncshell Admin Page - Fixed that owners are visible in the list, Removed Pin/Remove/Ban buttons on Owners. - Styling is done similiar as settings page. - Added 1 or 3 day(s) option for inactive check. + Added new functions on the Server Top Bar button - Right click on the button will disconnect you from Lightless - Shift+Left click will open the settings page + Added colors section in the settings to change accent colors. - The nameplate coloring has been moved to this section + Added pin option from Dalamud in the UI. + Added ability to pause syncing while going in Instance/Duty + Added functionality to make syncshell folders + Fixed nameplate bug in PVP + added self-threshold warning Co-authored-by: defnotken <itsdefnotken@gmail.com> Co-authored-by: CakeAndBanana <admin@cakeandbanana.nl> Co-authored-by: thijmenh <thijmenhogenkamp@gmail.com> Co-authored-by: choco <choco@noreply.git.lightless-sync.org> Co-authored-by: cake <cake@noreply.git.lightless-sync.org> Co-authored-by: choco <thijmenhogenkamp@gmail.com> Reviewed-on: #4
103 lines
3.4 KiB
C#
103 lines
3.4 KiB
C#
using System.Globalization;
|
|
using System.Numerics;
|
|
using LightlessSync.LightlessConfiguration;
|
|
|
|
namespace LightlessSync.UI
|
|
{
|
|
internal static class UIColors
|
|
{
|
|
private static readonly Dictionary<string, string> DefaultHexColors = new(StringComparer.OrdinalIgnoreCase)
|
|
{
|
|
{ "LightlessPurple", "#ad8af5" },
|
|
{ "LightlessBlue", "#a6c2ff" },
|
|
{ "LightlessYellow", "#ffe97a" },
|
|
{ "PairBlue", "#88a2db" },
|
|
{ "DimRed", "#d44444" },
|
|
};
|
|
|
|
private static LightlessConfigService? _configService;
|
|
|
|
public static void Initialize(LightlessConfigService configService)
|
|
{
|
|
_configService = configService;
|
|
}
|
|
|
|
public static Vector4 Get(string name)
|
|
{
|
|
if (_configService?.Current.CustomUIColors.TryGetValue(name, out var customColorHex) == true)
|
|
return HexToRgba(customColorHex);
|
|
|
|
if (!DefaultHexColors.TryGetValue(name, out var hex))
|
|
throw new ArgumentException($"Color '{name}' not found in UIColors.");
|
|
|
|
return HexToRgba(hex);
|
|
}
|
|
|
|
public static void Set(string name, Vector4 color)
|
|
{
|
|
if (!DefaultHexColors.ContainsKey(name))
|
|
throw new ArgumentException($"Color '{name}' not found in UIColors.");
|
|
|
|
if (_configService != null)
|
|
{
|
|
_configService.Current.CustomUIColors[name] = RgbaToHex(color);
|
|
_configService.Save();
|
|
}
|
|
}
|
|
|
|
public static void Reset(string name)
|
|
{
|
|
if (_configService != null)
|
|
{
|
|
_configService.Current.CustomUIColors.Remove(name);
|
|
_configService.Save();
|
|
}
|
|
}
|
|
|
|
public static void ResetAll()
|
|
{
|
|
if (_configService != null)
|
|
{
|
|
_configService.Current.CustomUIColors.Clear();
|
|
_configService.Save();
|
|
}
|
|
}
|
|
|
|
public static Vector4 GetDefault(string name)
|
|
{
|
|
if (!DefaultHexColors.TryGetValue(name, out var hex))
|
|
throw new ArgumentException($"Color '{name}' not found in UIColors.");
|
|
|
|
return HexToRgba(hex);
|
|
}
|
|
|
|
public static bool IsCustom(string name)
|
|
{
|
|
return _configService?.Current.CustomUIColors.ContainsKey(name) == true;
|
|
}
|
|
|
|
public static IEnumerable<string> GetColorNames()
|
|
{
|
|
return DefaultHexColors.Keys;
|
|
}
|
|
|
|
public static Vector4 HexToRgba(string hexColor)
|
|
{
|
|
hexColor = hexColor.TrimStart('#');
|
|
int r = int.Parse(hexColor.Substring(0, 2), NumberStyles.HexNumber);
|
|
int g = int.Parse(hexColor.Substring(2, 2), NumberStyles.HexNumber);
|
|
int b = int.Parse(hexColor.Substring(4, 2), NumberStyles.HexNumber);
|
|
int a = hexColor.Length == 8 ? int.Parse(hexColor.Substring(6, 2), NumberStyles.HexNumber) : 255;
|
|
return new Vector4(r / 255f, g / 255f, b / 255f, a / 255f);
|
|
}
|
|
|
|
public static string RgbaToHex(Vector4 color)
|
|
{
|
|
int r = (int)(color.X * 255);
|
|
int g = (int)(color.Y * 255);
|
|
int b = (int)(color.Z * 255);
|
|
int a = (int)(color.W * 255);
|
|
return $"#{r:X2}{g:X2}{b:X2}{(a != 255 ? a.ToString("X2") : "")}";
|
|
}
|
|
}
|
|
} |