blob: ac2facec0df1f93770cb4e62feeb0ba500124304 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
using Mono.Cecil;
using Mono.Cecil.Cil;
namespace StardewModdingAPI.AssemblyRewriters.Framework
{
/// <summary>Base class for a field finder.</summary>
public abstract class BaseFieldFinder : IInstructionFinder
{
/*********
** Accessors
*********/
/// <summary>A brief noun phrase indicating what the instruction finder matches.</summary>
public abstract string NounPhrase { get; }
/*********
** Public methods
*********/
/// <summary>Get whether a CIL instruction matches.</summary>
/// <param name="instruction">The IL instruction.</param>
/// <param name="platformChanged">Whether the mod was compiled on a different platform.</param>
public bool IsMatch(Instruction instruction, bool platformChanged)
{
if (instruction.OpCode != OpCodes.Ldfld && instruction.OpCode != OpCodes.Ldsfld && instruction.OpCode != OpCodes.Stfld && instruction.OpCode != OpCodes.Stsfld)
return false; // not a field reference
return this.IsMatch(instruction, (FieldReference)instruction.Operand, platformChanged);
}
/*********
** Protected methods
*********/
/// <summary>Get whether a field reference should be rewritten.</summary>
/// <param name="instruction">The IL instruction.</param>
/// <param name="fieldRef">The field reference.</param>
/// <param name="platformChanged">Whether the mod was compiled on a different platform.</param>
protected abstract bool IsMatch(Instruction instruction, FieldReference fieldRef, bool platformChanged);
/// <summary>Whether an instruction is a static field reference.</summary>
/// <param name="instruction">The IL instruction.</param>
protected bool IsStaticField(Instruction instruction)
{
return instruction.OpCode == OpCodes.Ldsfld || instruction.OpCode == OpCodes.Stsfld;
}
}
}
|