using Mono.Cecil; using Mono.Cecil.Cil; using StardewModdingAPI.Framework.ModLoading.Framework; namespace StardewModdingAPI.Framework.ModLoading.Finders { /// Finds incompatible CIL instructions that reference a given event. internal class EventFinder : BaseInstructionHandler { /********* ** Fields *********/ /// The full type name for which to find references. private readonly string FullTypeName; /// The event name for which to find references. private readonly string EventName; /// The result to return for matching instructions. private readonly InstructionHandleResult Result; /********* ** Public methods *********/ /// Construct an instance. /// The full type name for which to find references. /// The event name for which to find references. /// The result to return for matching instructions. public EventFinder(string fullTypeName, string eventName, InstructionHandleResult result) : base(defaultPhrase: $"{fullTypeName}.{eventName} event") { this.FullTypeName = fullTypeName; this.EventName = eventName; this.Result = result; } /// public override bool Handle(ModuleDefinition module, ILProcessor cil, Instruction instruction) { if (!this.Flags.Contains(this.Result) && this.IsMatch(instruction)) this.MarkFlag(this.Result); return false; } /********* ** Protected methods *********/ /// Get whether a CIL instruction matches. /// The IL instruction. protected bool IsMatch(Instruction instruction) { MethodReference methodRef = RewriteHelper.AsMethodReference(instruction); return methodRef != null && methodRef.DeclaringType.FullName == this.FullTypeName && (methodRef.Name == "add_" + this.EventName || methodRef.Name == "remove_" + this.EventName); } } }