VRCMelonAssistant/ModAssistant/Classes/Themes.cs

149 lines
7.1 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.IO;
using System.Windows.Media;
2020-02-08 12:55:01 +13:00
using ModAssistant.Pages;
2020-02-08 13:46:20 +13:00
using System.Xml;
using System.Windows.Markup;
namespace ModAssistant
{
public class Themes
{
public static string LoadedTheme { get; private set; }
2020-02-03 19:53:12 +13:00
public static List<string> LoadedThemes { get => loadedThemes.Keys.ToList(); }
2020-02-08 12:55:01 +13:00
public static string ThemeDirectory => $"{Environment.CurrentDirectory}/Themes";
private static Dictionary<string, ResourceDictionary> loadedThemes = new Dictionary<string, ResourceDictionary>();
private static List<string> preInstalledThemes = new List<string> { "Light", "Dark" };
2020-02-08 14:09:25 +13:00
/// <summary>
/// Load all themes from local Themes subfolder and from embedded resources.
/// This also refreshes the Themes dropdown in the Options screen.
/// </summary>
public static void LoadThemes()
{
loadedThemes.Clear();
2020-02-08 14:09:25 +13:00
foreach (string localTheme in preInstalledThemes) //Load local themes (Light and Dark)
{
ResourceDictionary theme = LoadTheme(localTheme, true);
loadedThemes.Add(localTheme, theme);
}
2020-02-08 14:09:25 +13:00
if (Directory.Exists(ThemeDirectory)) //Load themes from Themes subfolder if it exists.
{
2020-02-08 12:55:01 +13:00
foreach (string file in Directory.EnumerateFiles(ThemeDirectory))
{
FileInfo info = new FileInfo(file);
2020-02-08 14:09:25 +13:00
//FileInfo includes the extension in its Name field, so we have to split the string and select only the actual name.
string name = info.Name.Split('.').First();
//Ignore Themes without the xaml extension and ignore themes with the same names as others.
//If requests are made I can instead make a Theme class that splits the pre-installed themes from
//user-made ones so that one more user-made Light/Dark theme can be added.
2020-02-08 14:09:25 +13:00
if (info.Extension.ToLower().Contains("xaml") && !loadedThemes.ContainsKey(name))
{
ResourceDictionary theme = LoadTheme(name);
if (theme != null)
{
loadedThemes.Add(name, theme);
}
}
}
}
2020-02-08 14:09:25 +13:00
if (Options.Instance != null && Options.Instance.ApplicationThemeComboBox != null) //Refresh Themes dropdown in Options screen.
{
2020-02-08 12:55:01 +13:00
Options.Instance.ApplicationThemeComboBox.ItemsSource = LoadedThemes;
Options.Instance.ApplicationThemeComboBox.SelectedIndex = LoadedThemes.IndexOf(LoadedTheme);
}
}
2020-02-08 14:09:25 +13:00
/// <summary>
/// Applies a loaded theme to ModAssistant.
/// </summary>
/// <param name="theme">Name of the theme.</param>
/// <param name="element">Page that this is called on (Used for refreshing button icon colors).</param>
public static void ApplyTheme(string theme)
{
ResourceDictionary newTheme = loadedThemes[theme];
if (newTheme != null)
{
Application.Current.Resources.MergedDictionaries.RemoveAt(0);
LoadedTheme = theme;
Application.Current.Resources.MergedDictionaries.Insert(0, newTheme);
2020-02-08 14:09:25 +13:00
ReloadIcons();
}
else throw new ArgumentException($"{theme} does not exist.");
}
2020-02-08 14:09:25 +13:00
/// <summary>
/// Writes a local theme to disk. You cannot write a theme loaded from the Themes subfolder to disk.
/// </summary>
/// <param name="themeName">Name of local theme.</param>
2020-02-08 13:46:20 +13:00
public static void WriteThemeToDisk(string themeName)
{
if (!Directory.Exists(ThemeDirectory))
{
Directory.CreateDirectory(ThemeDirectory);
}
if (!File.Exists($@"{ThemeDirectory}\\{themeName}.xaml"))
{
//Store a local copy of the theme to prevent exceptions trying to access the saved copy while it's being written to.
2020-02-08 13:46:20 +13:00
ResourceDictionary dictionary = LoadTheme(themeName, true);
loadedThemes.Add(themeName, dictionary);
Options.Instance.ApplicationThemeComboBox.ItemsSource = LoadedThemes;
2020-02-08 13:46:20 +13:00
XmlWriterSettings settings = new XmlWriterSettings();
settings.Indent = true;
XmlWriter writer = XmlWriter.Create($@"{ThemeDirectory}\\{themeName}.xaml", settings);
XamlWriter.Save(dictionary, writer);
MainWindow.Instance.MainText = $"Template theme \"{themeName}\" saved to Themes folder.";
}
else MessageBox.Show("Template theme already exists!");
}
2020-02-08 14:09:25 +13:00
/// <summary>
/// Loads a ResourceDictionary from either Embedded Resources or from a file location.
/// </summary>
/// <param name="name">ResourceDictionary file name.</param>
/// <param name="localUri">Specifies whether or not to search in Embedded Resources or in the Themes subfolder.</param>
/// <returns></returns>
private static ResourceDictionary LoadTheme(string name, bool localUri = false)
{
string location = $"{Environment.CurrentDirectory}/Themes/{name}.xaml";
if (!File.Exists(location) && !localUri) return null;
if (localUri) location = $"Themes/{name}.xaml";
Uri uri = new Uri(location, localUri ? UriKind.Relative : UriKind.Absolute);
ResourceDictionary dictionary = new ResourceDictionary();
dictionary.Source = uri;
return dictionary;
}
/// <summary>
/// Reload the icon colors for the About, Info, Options, and Mods buttons from the currently loaded theme.
/// </summary>
private static void ReloadIcons()
{
ResourceDictionary icons = Application.Current.Resources.MergedDictionaries.First(x => x.Source.ToString() == "Resources/Icons.xaml");
ChangeColor(icons, "AboutIconColor", "heartDrawingGroup");
ChangeColor(icons, "InfoIconColor", "info_circleDrawingGroup");
ChangeColor(icons, "OptionsIconColor", "cogDrawingGroup");
ChangeColor(icons, "ModsIconColor", "microchipDrawingGroup");
}
/// <summary>
/// Change the color of an image from the loaded theme.
/// </summary>
/// <param name="icons">ResourceDictionary that contains the image.</param>
/// <param name="ResourceColorName">Resource name of the color to change.</param>
/// <param name="DrawingGroupName">DrawingGroup name for the image.</param>
private static void ChangeColor(ResourceDictionary icons, string ResourceColorName, string DrawingGroupName)
{
Application.Current.Resources[ResourceColorName] = loadedThemes[LoadedTheme][ResourceColorName];
((GeometryDrawing)((DrawingGroup)icons[DrawingGroupName]).Children[0]).Brush = (Brush)Application.Current.Resources[ResourceColorName];
}
}
}