-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathCodeFinder.cs
92 lines (75 loc) · 2.41 KB
/
CodeFinder.cs
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
using HarmonyLib;
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.Emit;
namespace Multiplayer.Client
{
public class CodeFinder
{
private MethodBase inMethod;
private int pos;
private List<CodeInstruction> list;
public int Pos => pos;
public CodeFinder(MethodBase inMethod, List<CodeInstruction> list)
{
this.inMethod = inMethod;
this.list = list;
}
public CodeFinder Advance(int steps)
{
pos += steps;
return this;
}
public CodeFinder Forward(OpCode opcode, object operand = null)
{
Find(opcode, operand, 1);
return this;
}
public CodeFinder Backward(OpCode opcode, object operand = null)
{
Find(opcode, operand, -1);
return this;
}
public CodeFinder Find(OpCode opcode, object operand, int direction)
{
while (pos < list.Count && pos >= 0)
{
if (Matches(list[pos], opcode, operand)) return this;
pos += direction;
}
throw new Exception($"Couldn't find instruction ({opcode}) with operand ({operand}) in {inMethod.FullDescription()}.");
}
public CodeFinder Find(Predicate<CodeInstruction> predicate, int direction)
{
while (pos < list.Count && pos >= 0)
{
if (predicate(list[pos])) return this;
pos += direction;
}
throw new Exception($"Couldn't find instruction using predicate ({predicate.Method}) in method {inMethod.FullDescription()}.");
}
public CodeFinder Start()
{
pos = 0;
return this;
}
public CodeFinder End()
{
pos = list.Count - 1;
return this;
}
private bool Matches(CodeInstruction inst, OpCode opcode, object operand)
{
if (inst.opcode != opcode) return false;
if (operand == null) return true;
if (opcode == OpCodes.Stloc_S)
return (inst.operand as LocalBuilder).LocalIndex == (int)operand;
return Equals(inst.operand, operand);
}
public static implicit operator int(CodeFinder finder)
{
return finder.pos;
}
}
}