-
Notifications
You must be signed in to change notification settings - Fork 0
/
HarmonySnippetsForVS.snippet
132 lines (128 loc) · 3.58 KB
/
HarmonySnippetsForVS.snippet
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Transpiler</Title>
<Description>Harmony Transpiler</Description>
</Header>
<Snippet>
<Code Language="CSharp">
<![CDATA[
[HarmonyPatch(methodName: nameof($TypeName$.$MethodName$))]
[HarmonyTranspiler]
private static IEnumerable<CodeInstruction> $MethodName$_Transpiler(IEnumerable<CodeInstruction> codeInstructions) {
List<CodeInstruction> instructions = codeInstructions.ToList();
CodeReplacementPatch patch = new CodeReplacementPatch(
expectedMatches: 1,
);
patch.ApplySafe(instructions, logger);
return instructions;
}
]]>
</Code>
<Declarations>
<Literal>
<ID>TypeName</ID>
<ToolTip>Name of the Type containing the patched Method</ToolTip>
<Default>TypeName</Default>
</Literal>
<Literal>
<ID>MethodName</ID>
<ToolTip>Name of the patched Method</ToolTip>
<Default>MethodName</Default>
</Literal>
</Declarations>
</Snippet>
</CodeSnippet>
<CodeSnippet Format="1.0.0">
<Header>
<Title>MidFix</Title>
<Description>BTHU MidFix</Description>
</Header>
<Snippet>
<Code Language="CSharp">
<![CDATA[
[HarmonyPatch(methodName: nameof($TypeName$.$MethodName$))]
[BTHarmonyMidFix(nameof($MethodName$_Matcher))]
private static bool $MethodName$_MidFix() {
return true;
}
private static MidFixInstructionMatcher $MethodName$_Matcher() {
return new MidFixInstructionMatcher(
expectedMatches: 1,
);
}
]]>
</Code>
<Declarations>
<Literal>
<ID>TypeName</ID>
<ToolTip>Name of the Type containing the patched Method</ToolTip>
<Default>TypeName</Default>
</Literal>
<Literal>
<ID>MethodName</ID>
<ToolTip>Name of the patched Method</ToolTip>
<Default>MethodName</Default>
</Literal>
</Declarations>
</Snippet>
</CodeSnippet>
<CodeSnippet Format="1.0.0">
<Header>
<Title>Prefix</Title>
<Description>Harmony Prefix</Description>
</Header>
<Snippet>
<Code Language="CSharp">
<![CDATA[
[HarmonyPatch(methodName: nameof($TypeName$.$MethodName$))]
[HarmonyPrefix]
private static bool $MethodName$_Prefix() {
return true;
}
]]>
</Code>
<Declarations>
<Literal>
<ID>TypeName</ID>
<ToolTip>Name of the Type containing the patched Method</ToolTip>
<Default>TypeName</Default>
</Literal>
<Literal>
<ID>MethodName</ID>
<ToolTip>Name of the patched Method</ToolTip>
<Default>MethodName</Default>
</Literal>
</Declarations>
</Snippet>
</CodeSnippet>
<CodeSnippet Format="1.0.0">
<Header>
<Title>Postfix</Title>
<Description>Harmony Postfix</Description>
</Header>
<Snippet>
<Code Language="CSharp">
<![CDATA[
[HarmonyPatch(methodName: nameof($TypeName$.$MethodName$))]
[HarmonyPostfix]
private static void $MethodName$_Postfix() {
}
]]>
</Code>
<Declarations>
<Literal>
<ID>TypeName</ID>
<ToolTip>Name of the Type containing the patched Method</ToolTip>
<Default>TypeName</Default>
</Literal>
<Literal>
<ID>MethodName</ID>
<ToolTip>Name of the patched Method</ToolTip>
<Default>MethodName</Default>
</Literal>
</Declarations>
</Snippet>
</CodeSnippet>
</CodeSnippets>