extern alias MonoCecilPackage; using MonoCecilPackage.Mono.Cecil; using MonoCecilPackage.Mono.Cecil.Cil; using StardewModdingAPI.Framework.ModLoading.Framework; namespace StardewModdingAPI.Framework.ModLoading.Finders { /// Finds incompatible CIL instructions that reference a given field. internal class FieldFinder : BaseInstructionHandler { /********* ** Fields *********/ /// The full type name for which to find references. private readonly string FullTypeName; /// The field name for which to find references. private readonly string FieldName; /// 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 field name for which to find references. /// The result to return for matching instructions. public FieldFinder(string fullTypeName, string fieldName, InstructionHandleResult result) : base(defaultPhrase: $"{fullTypeName}.{fieldName} field") { this.FullTypeName = fullTypeName; this.FieldName = fieldName; this.Result = result; } /// public override bool Handle(ModuleDefinition module, ILProcessor cil, Instruction instruction) { if (!this.Flags.Contains(this.Result) && RewriteHelper.IsFieldReferenceTo(instruction, this.FullTypeName, this.FieldName)) this.MarkFlag(this.Result); return false; } } }