using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Reflection; using System.Reflection.Emit; using HarmonyLib; namespace StardewModdingAPI.Framework.ModLoading.RewriteFacades { /// Maps Harmony 1.x HarmonyInstance methods to Harmony 2.x's to avoid breaking older mods. /// This is public to support SMAPI rewriting and should not be referenced directly by mods. [SuppressMessage("ReSharper", "CS1591", Justification = "Documentation not needed for facade classes.")] public class HarmonyInstanceMethods : Harmony { /********* ** Public methods *********/ /// Construct an instance. /// The unique patch identifier. public HarmonyInstanceMethods(string id) : base(id) { } public static Harmony Create(string id) { return new Harmony(id); } public DynamicMethod Patch(MethodBase original, HarmonyMethod prefix = null, HarmonyMethod postfix = null, HarmonyMethod transpiler = null) { try { MethodInfo method = base.Patch(original: original, prefix: prefix, postfix: postfix, transpiler: transpiler); return (DynamicMethod)method; } catch (Exception ex) { var patchTypes = new List(); if (prefix != null) patchTypes.Add("prefix"); if (postfix != null) patchTypes.Add("postfix"); if (transpiler != null) patchTypes.Add("transpiler"); throw new Exception($"Harmony instance {this.Id} failed applying {string.Join("/", patchTypes)} to method {original.DeclaringType?.FullName}.{original.Name}.", ex); } } } }