-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPlugin.cs
255 lines (203 loc) · 10.2 KB
/
Plugin.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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
using System;
using System.Runtime.InteropServices;
using Dalamud.Game.ClientState.Structs;
using Dalamud.Hooking;
using Dalamud.Plugin;
using Lumina.Excel.GeneratedSheets;
using Microsoft.Win32;
using TabTab.Attributes;
namespace TabTab
{
public class Plugin : IDalamudPlugin
{
private DalamudPluginInterface pluginInterface;
private PluginCommandManager<Plugin> commandManager;
private Configuration config;
private PluginUI ui;
private delegate IntPtr SelectInitialTabTarget(IntPtr targetSystem, IntPtr gameObjects, IntPtr camera,
IntPtr a4);
private delegate IntPtr SelectTabTarget(IntPtr targetSystem, IntPtr camera, IntPtr gameObjects, bool inverse,
IntPtr a5);
private delegate int TargetSortComparator(IntPtr a1, IntPtr a2);
private delegate IntPtr OnTabTarget(IntPtr a1, IntPtr a2, IntPtr a3, IntPtr a4);
public string Name => "TabTab";
private Hook<SelectTabTarget> tabIgnoreDepthHook;
private Hook<SelectTabTarget> tabConeHook;
private Hook<SelectInitialTabTarget> selectInitialTabTargetHook;
private Hook<TargetSortComparator> targetSortComparatorHook;
private Hook<OnTabTarget> tabTargetHook;
public bool Enable = true;
public int Mode = 1;
public void Initialize(DalamudPluginInterface pluginInterface)
{
this.pluginInterface = pluginInterface;
this.config = (Configuration) this.pluginInterface.GetPluginConfig() ?? new Configuration();
this.config.Initialize(this.pluginInterface);
// Load transient config vars
this.Enable = this.config.Enabled;
this.Mode = this.config.Mode;
this.ui = new PluginUI(this);
this.pluginInterface.UiBuilder.OnBuildUi += this.ui.Draw;
this.pluginInterface.UiBuilder.OnOpenConfigUi += this.OpenConfigViaDalamud;
var tabIgnoreDepthAddr =
this.pluginInterface.TargetModuleScanner.ScanText("E8 ?? ?? ?? ?? 48 8B C8 48 85 C0 74 27");
var tabConeAddr = this.pluginInterface.TargetModuleScanner.ScanText("E8 ?? ?? ?? ?? EB 4C 41 B1 01");
PluginLog.Log(
$"Found SelectTabTarget mode addresses: {tabIgnoreDepthAddr.ToInt64():X}, {tabConeAddr.ToInt64():X}");
this.tabIgnoreDepthHook ??=
new Hook<SelectTabTarget>(tabIgnoreDepthAddr, new SelectTabTarget(SelectTabTargetIgnoreDepthDetour));
this.tabIgnoreDepthHook.Enable();
this.tabConeHook ??=
new Hook<SelectTabTarget>(tabConeAddr, new SelectTabTarget(SelectTabTargetConeDetour));
this.tabConeHook.Enable();
var selectInitialTabTargetAddr =
this.pluginInterface.TargetModuleScanner.ScanText("E8 ?? ?? ?? ?? EB 37 48 85 C9");
PluginLog.Log($"Found SelectInitialTabTarget address: {selectInitialTabTargetAddr.ToInt64():X}");
this.selectInitialTabTargetHook ??= new Hook<SelectInitialTabTarget>(selectInitialTabTargetAddr,
new SelectInitialTabTarget(SelectInitialTabTargetDetour));
this.selectInitialTabTargetHook.Enable();
var targetSortComparatorAddr =
this.pluginInterface.TargetModuleScanner.ScanText("40 53 48 83 EC 20 F3 0F 10 01 48 8B D9 F3 0F 10");
PluginLog.Log($"Found TargetSortComparator address: {targetSortComparatorAddr.ToInt64():X}");
this.targetSortComparatorHook ??= new Hook<TargetSortComparator>(targetSortComparatorAddr,
new TargetSortComparator(TargetSortComparatorDetour));
this.targetSortComparatorHook.Enable();
// No longer needed sigs, but used for testing in dev
// (as of 5.4 hotfix)
// TargetSelect: E8 ?? ?? ?? ?? 44 0F B6 C3 48 8B D0
// SwitchTarget: E8 ?? ?? ?? ?? 48 39 B7 ?? ?? ?? ?? 74 6A
// TargetSortComparator for cone mode: 48 83 EC 28 F3 0F 10 01
var tabTargetAddr =
this.pluginInterface.TargetModuleScanner.ScanText(
"41 54 41 56 41 57 48 81 EC ?? ?? ?? ?? 8B 81 ?? ?? ?? ??");
PluginLog.Log($"Found TabTarget address: {tabTargetAddr.ToInt64():X}");
this.tabTargetHook ??= new Hook<OnTabTarget>(tabTargetAddr, new OnTabTarget(OnTabTargetDetour));
this.tabTargetHook.Enable();
this.commandManager = new PluginCommandManager<Plugin>(this, this.pluginInterface);
}
private IntPtr SelectTabTargetIgnoreDepthDetour(IntPtr targetSystem, IntPtr camera, IntPtr gameObjects,
bool inverse,
IntPtr a5)
{
if (!Enable)
{
return tabIgnoreDepthHook.Original(targetSystem, camera, gameObjects, inverse, a5);
}
return SelectCustomTabTarget(targetSystem, camera, gameObjects, inverse, a5);
}
private IntPtr SelectTabTargetConeDetour(IntPtr targetSystem, IntPtr camera, IntPtr gameObjects, bool inverse,
IntPtr a5)
{
if (!Enable)
{
return tabConeHook.Original(targetSystem, camera, gameObjects, inverse, a5);
}
return SelectCustomTabTarget(targetSystem, camera, gameObjects, inverse, a5);
}
private IntPtr SelectInitialTabTargetDetour(IntPtr targetSystem, IntPtr gameObjects, IntPtr camera, IntPtr a4)
{
if (!Enable)
{
return selectInitialTabTargetHook.Original(targetSystem, gameObjects, camera, a4);
}
return SelectCustomTabTarget(targetSystem, camera, gameObjects, false, new IntPtr(1));
}
private IntPtr SelectCustomTabTarget(IntPtr targetSystem, IntPtr camera, IntPtr gameObjects, bool inverse,
IntPtr a5)
{
#if DEBUG
PluginLog.Log($"SelectCustomTabTarget - targetSystem: {targetSystem.ToInt64():X}, gameObjects: {gameObjects.ToInt64():X}, camera: {camera.ToInt64():X}");
var goCount = Marshal.ReadInt64(gameObjects);
PluginLog.Log($"GameObject count: {goCount}");
for (int i = 0; i < goCount; i++)
{
var val = Marshal.ReadIntPtr(gameObjects + (8 * (i + 1)));
PluginLog.Log($"Obj index {i}: {val.ToInt64():X}");
}
#endif
return tabIgnoreDepthHook.Original(targetSystem, camera, gameObjects, inverse, a5);
}
private int TargetSortComparatorDetour(IntPtr a1, IntPtr a2)
{
if (Mode == 1 || Mode == 2)
{
var actorId1 = Marshal.ReadIntPtr(a1 + 16);
var actorId2 = Marshal.ReadIntPtr(a2 + 16);
var actorCurHp1 = Marshal.ReadInt32(actorId1 + ActorOffsets.CurrentHp);
var actorMaxHp1 = Marshal.ReadInt32(actorId1 + ActorOffsets.MaxHp);
var actor1Hp = (float) actorCurHp1 / actorMaxHp1;
var actorCurHp2 = Marshal.ReadInt32(actorId2 + ActorOffsets.CurrentHp);
var actorMaxHp2 = Marshal.ReadInt32(actorId2 + ActorOffsets.MaxHp);
var actor2Hp = (float) actorCurHp2 / actorMaxHp2;
// Ensure we don't call the original method until after checking actor info, otherwise we risk a race condition crash
// The original method should still be called anyways, otherwise the allocated memory for the actor array might not be freed?
var origResult = targetSortComparatorHook.Original(a1, a2);
#if DEBUG
PluginLog.Log(
$"TargetSortComparator: comparing a1 {a1.ToInt64():X} {actorId1.ToInt64():X} to a2 {a2.ToInt64():X} {actorId2.ToInt64():X} = result of {origResult:X}");
PluginLog.Log($"Actor 1 ({actorId1.ToInt64():X}: {actorCurHp1} / {actorMaxHp1} HP - {actor1Hp}");
PluginLog.Log($"Actor 2 ({actorId2.ToInt64():X}: {actorCurHp2} / {actorMaxHp2} HP - {actor2Hp}");
#endif
if (actor1Hp > actor2Hp)
{
return Mode == 1 ? 1 : -1;
}
else if (actor1Hp < actor2Hp)
{
return Mode == 1 ? -1 : 1;
}
else
{
return origResult;
}
}
return targetSortComparatorHook.Original(a1, a2);
}
private IntPtr OnTabTargetDetour(IntPtr a1, IntPtr a2, IntPtr a3, IntPtr a4)
{
#if DEBUG
PluginLog.Log($"TabTarget - a1: {a1.ToInt64():X}, a2: {a2.ToInt64():X}, a3: {a3.ToInt64():X}, a4: {a4.ToInt64():X}");
#endif
return tabTargetHook.Original(a1, a2, a3, a4);
}
[Command("/ptab")]
[HelpMessage("Opens the TabTab plugin configuration.")]
public void OpenConfigViaCommand(string command, string args)
{
this.ui.IsVisible = true;
}
public void OpenConfigViaDalamud(object a, object b)
{
this.ui.IsVisible = true;
}
#region IDisposable Support
protected virtual void Dispose(bool disposing)
{
if (!disposing) return;
this.tabIgnoreDepthHook.Disable();
this.tabConeHook.Disable();
this.selectInitialTabTargetHook.Disable();
this.targetSortComparatorHook.Disable();
this.tabTargetHook.Disable();
this.tabIgnoreDepthHook.Dispose();
this.tabConeHook.Dispose();
this.selectInitialTabTargetHook.Dispose();
this.targetSortComparatorHook.Dispose();
this.tabTargetHook.Dispose();
this.commandManager.Dispose();
// Write transient config values
this.config.Enabled = this.Enable;
this.config.Mode = this.Mode;
this.pluginInterface.SavePluginConfig(this.config);
this.pluginInterface.UiBuilder.OnOpenConfigUi -= this.OpenConfigViaDalamud;
this.pluginInterface.UiBuilder.OnBuildUi -= this.ui.Draw;
this.pluginInterface.Dispose();
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
#endregion
}
}