src/MCM.UI/Patches/OptionsGauntletScreenPatch.cs
using HarmonyLib;
using HarmonyLib.BUTR.Extensions;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using TaleWorlds.Engine.GauntletUI;
using TaleWorlds.MountAndBlade.GauntletUI;
using TaleWorlds.TwoDimension;
namespace MCM.UI.Patches
{
internal static class OptionsGauntletScreenPatch
{
private static readonly ConditionalWeakTable<object, SpriteCategory?> _spriteCategoriesMCM = new();
public static void Patch(Harmony harmony)
{
harmony.Patch(
AccessTools2.Method(typeof(GauntletOptionsScreen), "OnInitialize"),
postfix: new HarmonyMethod(typeof(OptionsGauntletScreenPatch), nameof(OnInitializePostfix)));
harmony.Patch(
AccessTools2.Method(typeof(GauntletOptionsScreen), "OnFinalize"),
postfix: new HarmonyMethod(typeof(OptionsGauntletScreenPatch), nameof(OnFinalizePostfix)));
}
[SuppressMessage("CodeQuality", "IDE0079:Remove unnecessary suppression", Justification = "For ReSharper")]
[SuppressMessage("ReSharper", "InconsistentNaming")]
[SuppressMessage("ReSharper", "UnusedParameter.Local")]
[MethodImpl(MethodImplOptions.NoInlining)]
private static void OnInitializePostfix(object __instance)
{
var spriteCategoryMCM = UIResourceManager.SpriteData.SpriteCategories.TryGetValue("ui_mcm", out var spriteCategoryMCMVal)
? spriteCategoryMCMVal
: null;
spriteCategoryMCM?.Load(UIResourceManager.ResourceContext, UIResourceManager.UIResourceDepot);
_spriteCategoriesMCM.Add(__instance, spriteCategoryMCM);
}
[SuppressMessage("CodeQuality", "IDE0079:Remove unnecessary suppression", Justification = "For ReSharper")]
[SuppressMessage("ReSharper", "InconsistentNaming")]
[SuppressMessage("ReSharper", "UnusedParameter.Local")]
[MethodImpl(MethodImplOptions.NoInlining)]
private static void OnFinalizePostfix(object __instance)
{
_spriteCategoriesMCM.GetValue(__instance, _ => null)?.Unload();
_spriteCategoriesMCM.Remove(__instance);
}
}
}