using System; using System.Reflection; using Mono.Cecil; using Mono.Cecil.Cil; using StardewModdingAPI.AssemblyRewriters.Framework; namespace StardewModdingAPI.AssemblyRewriters.Rewriters { /// Rewrites references to one field with another. public class FieldReplaceRewriter : BaseFieldRewriter { /********* ** Properties *********/ /// The type whose field to which references should be rewritten. private readonly Type Type; /// The field name to rewrite. private readonly string FromFieldName; /// The new field name to reference. private readonly string ToFieldName; /********* ** Accessors *********/ /// A brief noun phrase indicating what the instruction finder matches. public override string NounPhrase { get; } /********* ** Public methods *********/ /// Construct an instance. /// The type whose field to which references should be rewritten. /// The field name to rewrite. /// The new field name to reference. /// A brief noun phrase indicating what the instruction finder matches (or null to generate one). public FieldReplaceRewriter(Type type, string fromFieldName, string toFieldName, string nounPhrase = null) { this.Type = type; this.FromFieldName = fromFieldName; this.ToFieldName = toFieldName; this.NounPhrase = nounPhrase ?? $"{type.Name}.{fromFieldName} field"; } /********* ** Protected methods *********/ /// Get whether a field reference should be rewritten. /// The IL instruction. /// The field reference. /// Whether the mod was compiled on a different platform. protected override bool IsMatch(Instruction instruction, FieldReference fieldRef, bool platformChanged) { return fieldRef.DeclaringType.FullName == this.Type.FullName && fieldRef.Name == this.FromFieldName; } /// Rewrite a method for compatibility. /// The module being rewritten. /// The CIL rewriter. /// The instruction which references the field. /// The field reference invoked by the . /// Metadata for mapping assemblies to the current platform. protected override void Rewrite(ModuleDefinition module, ILProcessor cil, Instruction instruction, FieldReference fieldRef, PlatformAssemblyMap assemblyMap) { FieldInfo field = this.Type.GetField(this.ToFieldName); if(field == null) throw new InvalidOperationException($"The {this.Type.FullName} class doesn't have a {this.ToFieldName} field."); FieldReference newRef = module.Import(field); cil.Replace(instruction, cil.Create(instruction.OpCode, newRef)); } } }