using Mono.Cecil;
using Mono.Cecil.Cil;
namespace StardewModdingAPI.AssemblyRewriters.Finders
{
/// Finds incompatible CIL instructions that reference a given field and throws an .
public class FieldFinder : IInstructionRewriter
{
/*********
** Properties
*********/
/// 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;
/*********
** Accessors
*********/
/// A brief noun phrase indicating what the instruction finder matches.
public string NounPhrase { get; }
/*********
** Public methods
*********/
/// Construct an instance.
/// The full type name for which to find references.
/// The field name for which to find references.
/// A brief noun phrase indicating what the instruction finder matches (or null to generate one).
public FieldFinder(string fullTypeName, string fieldName, string nounPhrase = null)
{
this.FullTypeName = fullTypeName;
this.FieldName = fieldName;
this.NounPhrase = nounPhrase ?? $"{fullTypeName}.{fieldName} field";
}
/// Rewrite a method definition for compatibility.
/// The module being rewritten.
/// The method definition to rewrite.
/// Metadata for mapping assemblies to the current platform.
/// Whether the mod was compiled on a different platform.
/// Returns whether the instruction was rewritten.
/// The CIL instruction is not compatible, and can't be rewritten.
public virtual bool Rewrite(ModuleDefinition module, MethodDefinition method, PlatformAssemblyMap assemblyMap, bool platformChanged)
{
return false;
}
/// Rewrite a CIL instruction for compatibility.
/// The module being rewritten.
/// The CIL rewriter.
/// The instruction to rewrite.
/// Metadata for mapping assemblies to the current platform.
/// Whether the mod was compiled on a different platform.
/// Returns whether the instruction was rewritten.
/// The CIL instruction is not compatible, and can't be rewritten.
public virtual bool Rewrite(ModuleDefinition module, ILProcessor cil, Instruction instruction, PlatformAssemblyMap assemblyMap, bool platformChanged)
{
if (!this.IsMatch(instruction))
return false;
throw new IncompatibleInstructionException(this.NounPhrase);
}
/*********
** Protected methods
*********/
/// Get whether a CIL instruction matches.
/// The IL instruction.
protected bool IsMatch(Instruction instruction)
{
FieldReference fieldRef = RewriteHelper.AsFieldReference(instruction);
return
fieldRef != null
&& fieldRef.DeclaringType.FullName == this.FullTypeName
&& fieldRef.Name == this.FieldName;
}
}
}