using System;
using System.Linq;
using Mono.Cecil;
using Mono.Cecil.Cil;
using StardewModdingAPI.Framework.ModLoading.Framework;
namespace StardewModdingAPI.Framework.ModLoading.Rewriters
{
/// Rewrites method references from one parent type to another if the signatures match.
internal class MethodParentRewriter : BaseInstructionHandler
{
/*********
** Fields
*********/
/// The full name of the type whose methods to remap.
private readonly string FromType;
/// The type with methods to map to.
private readonly Type ToType;
/// Whether to only rewrite references if loading the assembly on a different platform than it was compiled on.
private readonly bool OnlyIfPlatformChanged;
/*********
** Public methods
*********/
/// Construct an instance.
/// The type whose methods to remap.
/// The type with methods to map to.
/// Whether to only rewrite references if loading the assembly on a different platform than it was compiled on.
/// A brief noun phrase indicating what the instruction finder matches (or null to generate one).
public MethodParentRewriter(string fromType, Type toType, bool onlyIfPlatformChanged = false, string nounPhrase = null)
: base(nounPhrase ?? $"{fromType.Split('.').Last()} methods")
{
this.FromType = fromType;
this.ToType = toType;
this.OnlyIfPlatformChanged = onlyIfPlatformChanged;
}
/// Construct an instance.
/// The type whose methods to remap.
/// The type with methods to map to.
/// Whether to only rewrite references if loading the assembly on a different platform than it was compiled on.
public MethodParentRewriter(Type fromType, Type toType, bool onlyIfPlatformChanged = false)
: this(fromType.FullName, toType, onlyIfPlatformChanged) { }
/// Perform the predefined logic for an instruction if applicable.
/// The assembly module containing the instruction.
/// The CIL processor.
/// The CIL instruction to handle.
/// Metadata for mapping assemblies to the current platform.
/// Whether the mod was compiled on a different platform.
public override InstructionHandleResult Handle(ModuleDefinition module, ILProcessor cil, Instruction instruction, PlatformAssemblyMap assemblyMap, bool platformChanged)
{
if (!this.IsMatch(instruction, platformChanged))
return InstructionHandleResult.None;
MethodReference methodRef = (MethodReference)instruction.Operand;
methodRef.DeclaringType = module.ImportReference(this.ToType);
return InstructionHandleResult.Rewritten;
}
/*********
** Protected methods
*********/
/// Get whether a CIL instruction matches.
/// The IL instruction.
/// Whether the mod was compiled on a different platform.
protected bool IsMatch(Instruction instruction, bool platformChanged)
{
MethodReference methodRef = RewriteHelper.AsMethodReference(instruction);
return
methodRef != null
&& (platformChanged || !this.OnlyIfPlatformChanged)
&& methodRef.DeclaringType.FullName == this.FromType
&& RewriteHelper.HasMatchingSignature(this.ToType, methodRef);
}
}
}