forked from nt153133/__LlamaLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibraryClass.cs
More file actions
363 lines (312 loc) · 9.26 KB
/
Copy pathLibraryClass.cs
File metadata and controls
363 lines (312 loc) · 9.26 KB
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using ff14bot;
using ff14bot.AClasses;
using LlamaLibrary.Events;
using LlamaLibrary.Extensions;
using LlamaLibrary.Logging;
using LlamaLibrary.Memory;
// ReSharper disable InconsistentNaming
namespace LlamaLibrary;
/// <summary>
/// The main entry point for LlamaLibrary, implementing the RebornBuddy <see cref="ILibrary"/> interface.
/// Handles early initialization, memory offset resolution, and safe mode detection.
/// </summary>
public class LibraryClass : ILibrary
{
private const string SafeModeArgument = "-safemode";
private const string TraceListenerName = "LLoggerTraceListener";
private static int _traceListenerAdded;
private static int _treeRootStartHooked;
[DllImport("USER32.dll")]
static extern short GetKeyState(VirtualKeyStates nVirtKey);
/// <summary>
/// Gets a value indicating whether the library is running in safe mode.
/// Safe mode disables or restricts certain features to prevent issues during startup or debugging.
/// </summary>
public static bool SafeMode { get; private set; }
/// <summary>
/// Performs early initialization before memory offsets are resolved.
/// Checks for the "-safemode" command-line argument or Shift+Ctrl key combination to enable safe mode.
/// </summary>
/// <returns>A <see cref="Task"/> representing the asynchronous operation, returning <see langword="true"/> if successful.</returns>
public async Task<bool> PreOffsetWarmup()
{
foreach (var argument in Environment.GetCommandLineArgs())
{
if (!string.Equals(argument, SafeModeArgument, StringComparison.Ordinal))
{
continue;
}
SafeMode = true;
break;
}
// Check if the user is holding down the shift key and ctrl key on startup.
if (GetKeyState(VirtualKeyStates.VK_SHIFT) < 0 && GetKeyState(VirtualKeyStates.VK_CONTROL) < 0)
{
SafeMode = true;
}
EnsureTraceListener();
if (SafeMode)
{
ff14bot.Helpers.Logging.WriteDiagnostic("Safe Mode Enabled");
_ = Task.Run(() => { MessageBox.Show("Safe Mode Enabled", "LlamaLibrary", MessageBoxButton.OK, MessageBoxImage.Warning, MessageBoxResult.OK, MessageBoxOptions.None); });
}
return await OffsetManager.InitLib().ConfigureAwait(false);
}
/// <summary>
/// Performs initialization after memory offsets have been resolved.
/// Sets up post-offset dependencies, login events, and hooks into the bot start cycle.
/// </summary>
/// <returns>A <see cref="Task"/> representing the asynchronous operation, returning <see langword="true"/> if successful.</returns>
public Task<bool> PostOffsetWarmup()
{
OffsetManager.SetPostOffsets();
OffsetManager.SetScriptsThread();
LoginEvents.SetAccountId();
LoginEvents.UpdateInfo();
EnsureTreeRootOnStartHook();
/*
var server = new List<ProductPatterns>();
//server.Add(new ProductPatterns() { ProductName = "LlamaLibrary", Patterns = OffsetManager.LLDict(ForceClientMode.Global) , ClientRegion = ClientRegion.Global});
//server.Add(new ProductPatterns() { ProductName = "LlamaLibraryCN", Patterns = OffsetManager.LLDict(ForceClientMode.CN), ClientRegion = ClientRegion.China });
server.Add(new ProductPatterns() { ProductName = "LlamaLibraryTC", Patterns = OffsetManager.LLDict(ClientRegion.TraditionalChinese), ClientRegion = ClientRegion.TraditionalChinese });
foreach (var productPatterns in server)
{
var productFile = Path.Combine(productPatterns.ProductName + ".json");
File.WriteAllText(productFile, JsonConvert.SerializeObject(productPatterns, Formatting.Indented));
}
*/
return Task.FromResult(true);
}
private static void EnsureTraceListener()
{
if (Interlocked.Exchange(ref _traceListenerAdded, 1) == 1)
{
return;
}
foreach (TraceListener listener in Trace.Listeners)
{
if (string.Equals(listener.Name, TraceListenerName, StringComparison.Ordinal))
{
return;
}
}
var trace = new LLogger("Trace");
Trace.Listeners.Add(new LLoggerTraceListener(trace));
}
private static void EnsureTreeRootOnStartHook()
{
if (Interlocked.Exchange(ref _treeRootStartHooked, 1) == 1)
{
return;
}
TreeRoot.OnStart += OnTreeRootStart;
}
private static void OnTreeRootStart(BotBase bot)
{
if (!Core.IsInGame)
{
return;
}
if (LoginEvents.LastKnownCharacterId != Core.Me.PlayerId())
{
LoginEvents.InvokeOnCharacterSwitched(true);
}
}
}
/// <summary>
/// Defines virtual key codes used for checking keyboard state via Win32 API.
/// </summary>
public enum VirtualKeyStates
{
VK_LBUTTON = 0x01,
VK_RBUTTON = 0x02,
VK_CANCEL = 0x03,
VK_MBUTTON = 0x04,
//
VK_XBUTTON1 = 0x05,
VK_XBUTTON2 = 0x06,
//
VK_BACK = 0x08,
VK_TAB = 0x09,
//
VK_CLEAR = 0x0C,
VK_RETURN = 0x0D,
//
VK_SHIFT = 0x10,
VK_CONTROL = 0x11,
VK_MENU = 0x12,
VK_PAUSE = 0x13,
VK_CAPITAL = 0x14,
//
VK_KANA = 0x15,
VK_HANGEUL = 0x15, /* old name - should be here for compatibility */
VK_HANGUL = 0x15,
VK_JUNJA = 0x17,
VK_FINAL = 0x18,
VK_HANJA = 0x19,
VK_KANJI = 0x19,
//
VK_ESCAPE = 0x1B,
//
VK_CONVERT = 0x1C,
VK_NONCONVERT = 0x1D,
VK_ACCEPT = 0x1E,
VK_MODECHANGE = 0x1F,
//
VK_SPACE = 0x20,
VK_PRIOR = 0x21,
VK_NEXT = 0x22,
VK_END = 0x23,
VK_HOME = 0x24,
VK_LEFT = 0x25,
VK_UP = 0x26,
VK_RIGHT = 0x27,
VK_DOWN = 0x28,
VK_SELECT = 0x29,
VK_PRINT = 0x2A,
VK_EXECUTE = 0x2B,
VK_SNAPSHOT = 0x2C,
VK_INSERT = 0x2D,
VK_DELETE = 0x2E,
VK_HELP = 0x2F,
//
VK_LWIN = 0x5B,
VK_RWIN = 0x5C,
VK_APPS = 0x5D,
//
VK_SLEEP = 0x5F,
//
VK_NUMPAD0 = 0x60,
VK_NUMPAD1 = 0x61,
VK_NUMPAD2 = 0x62,
VK_NUMPAD3 = 0x63,
VK_NUMPAD4 = 0x64,
VK_NUMPAD5 = 0x65,
VK_NUMPAD6 = 0x66,
VK_NUMPAD7 = 0x67,
VK_NUMPAD8 = 0x68,
VK_NUMPAD9 = 0x69,
VK_MULTIPLY = 0x6A,
VK_ADD = 0x6B,
VK_SEPARATOR = 0x6C,
VK_SUBTRACT = 0x6D,
VK_DECIMAL = 0x6E,
VK_DIVIDE = 0x6F,
VK_F1 = 0x70,
VK_F2 = 0x71,
VK_F3 = 0x72,
VK_F4 = 0x73,
VK_F5 = 0x74,
VK_F6 = 0x75,
VK_F7 = 0x76,
VK_F8 = 0x77,
VK_F9 = 0x78,
VK_F10 = 0x79,
VK_F11 = 0x7A,
VK_F12 = 0x7B,
VK_F13 = 0x7C,
VK_F14 = 0x7D,
VK_F15 = 0x7E,
VK_F16 = 0x7F,
VK_F17 = 0x80,
VK_F18 = 0x81,
VK_F19 = 0x82,
VK_F20 = 0x83,
VK_F21 = 0x84,
VK_F22 = 0x85,
VK_F23 = 0x86,
VK_F24 = 0x87,
//
VK_NUMLOCK = 0x90,
VK_SCROLL = 0x91,
//
VK_OEM_NEC_EQUAL = 0x92, // '=' key on numpad
//
VK_OEM_FJ_JISHO = 0x92, // 'Dictionary' key
VK_OEM_FJ_MASSHOU = 0x93, // 'Unregister word' key
VK_OEM_FJ_TOUROKU = 0x94, // 'Register word' key
VK_OEM_FJ_LOYA = 0x95, // 'Left OYAYUBI' key
VK_OEM_FJ_ROYA = 0x96, // 'Right OYAYUBI' key
//
VK_LSHIFT = 0xA0,
VK_RSHIFT = 0xA1,
VK_LCONTROL = 0xA2,
VK_RCONTROL = 0xA3,
VK_LMENU = 0xA4,
VK_RMENU = 0xA5,
//
VK_BROWSER_BACK = 0xA6,
VK_BROWSER_FORWARD = 0xA7,
VK_BROWSER_REFRESH = 0xA8,
VK_BROWSER_STOP = 0xA9,
VK_BROWSER_SEARCH = 0xAA,
VK_BROWSER_FAVORITES = 0xAB,
VK_BROWSER_HOME = 0xAC,
//
VK_VOLUME_MUTE = 0xAD,
VK_VOLUME_DOWN = 0xAE,
VK_VOLUME_UP = 0xAF,
VK_MEDIA_NEXT_TRACK = 0xB0,
VK_MEDIA_PREV_TRACK = 0xB1,
VK_MEDIA_STOP = 0xB2,
VK_MEDIA_PLAY_PAUSE = 0xB3,
VK_LAUNCH_MAIL = 0xB4,
VK_LAUNCH_MEDIA_SELECT = 0xB5,
VK_LAUNCH_APP1 = 0xB6,
VK_LAUNCH_APP2 = 0xB7,
//
VK_OEM_1 = 0xBA, // ';:' for US
VK_OEM_PLUS = 0xBB, // '+' any country
VK_OEM_COMMA = 0xBC, // ',' any country
VK_OEM_MINUS = 0xBD, // '-' any country
VK_OEM_PERIOD = 0xBE, // '.' any country
VK_OEM_2 = 0xBF, // '/?' for US
VK_OEM_3 = 0xC0, // '`~' for US
//
VK_OEM_4 = 0xDB, // '[{' for US
VK_OEM_5 = 0xDC, // '\|' for US
VK_OEM_6 = 0xDD, // ']}' for US
VK_OEM_7 = 0xDE, // ''"' for US
VK_OEM_8 = 0xDF,
//
VK_OEM_AX = 0xE1, // 'AX' key on Japanese AX kbd
VK_OEM_102 = 0xE2, // "<>" or "\|" on RT 102-key kbd.
VK_ICO_HELP = 0xE3, // Help key on ICO
VK_ICO_00 = 0xE4, // 00 key on ICO
//
VK_PROCESSKEY = 0xE5,
//
VK_ICO_CLEAR = 0xE6,
//
VK_PACKET = 0xE7,
//
VK_OEM_RESET = 0xE9,
VK_OEM_JUMP = 0xEA,
VK_OEM_PA1 = 0xEB,
VK_OEM_PA2 = 0xEC,
VK_OEM_PA3 = 0xED,
VK_OEM_WSCTRL = 0xEE,
VK_OEM_CUSEL = 0xEF,
VK_OEM_ATTN = 0xF0,
VK_OEM_FINISH = 0xF1,
VK_OEM_COPY = 0xF2,
VK_OEM_AUTO = 0xF3,
VK_OEM_ENLW = 0xF4,
VK_OEM_BACKTAB = 0xF5,
//
VK_ATTN = 0xF6,
VK_CRSEL = 0xF7,
VK_EXSEL = 0xF8,
VK_EREOF = 0xF9,
VK_PLAY = 0xFA,
VK_ZOOM = 0xFB,
VK_NONAME = 0xFC,
VK_PA1 = 0xFD,
VK_OEM_CLEAR = 0xFE
}