-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathWIM_Hooks.lua
463 lines (384 loc) · 14.3 KB
/
WIM_Hooks.lua
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
WIM_ButtonsHooked = false;
WIM_TradeSkillIsHooked = false;
WIM_CraftSkillIsHooked = false;
WIM_InspectIsHooked = false;
function WIM_FriendsFrame_SendMessage()
local name = GetFriendInfo(FriendsFrame.selectedFriend);
WIM_PostMessage(name, "", 5, "", "");
end
function WIM_ChatEdit_ParseText(editBox, send)
local target
local _, _, command, parameter = strfind(editBox:GetText(), '^(/%S+)%s*(%S*)')
if command then
command = strupper(command)
local i = 1
while true do
if getglobal('SLASH_WHISPER'..i) and command == strupper(TEXT(getglobal('SLASH_WHISPER'..i))) and parameter ~= '' then
target = gsub(strlower(parameter), '^%l', strupper)
break
elseif getglobal('SLASH_REPLY'..i) and command == strupper(TEXT(getglobal('SLASH_REPLY'..i))) and ChatEdit_GetLastTellTarget(editBox) ~= '' then
target = ChatEdit_GetLastTellTarget(editBox)
break
elseif not getglobal('SLASH_WHISPER'..i) and not getglobal('SLASH_REPLY'..i) then
break
end
i = i + 1
end
end
if target then
WIM_PostMessage(target, '', 5, '', '')
editBox:SetText('')
editBox:Hide()
else
return WIM_ChatEdit_ParseText_orig(editBox, send)
end
end
function WIM_ChatFrame_ReplyTell(chatFrame)
chatFrame = chatFrame or DEFAULT_CHAT_FRAME
local target = ChatEdit_GetLastTellTarget(chatFrame.editBox)
if target ~= '' then
WIM_PostMessage(target, '', 5, '', '', true)
end
end
function WIM_HookInspect()
if(WIM_InspectIsHooked) then
return;
end
if(InspectPaperDollFrame) then
WIM_InspectPaperDollItemSlotButton_OnClick_orig = InspectPaperDollItemSlotButton_OnClick;
InspectPaperDollItemSlotButton_OnClick = WIM_InspectPaperDollItemSlotButton_OnClick;
WIM_InspectIsHooked = true;
elseif(SuperInspectFrame) then
WIM_SuperInspect_InspectPaperDollItemSlotButton_OnClick_orig = SuperInspect_InspectPaperDollItemSlotButton_OnClick;
SuperInspect_InspectPaperDollItemSlotButton_OnClick = WIM_SuperInspect_InspectPaperDollItemSlotButton_OnClick;
WIM_InspectIsHooked = true;
end
DEFAULT_CHAT_FRAME:AddMessage("Hooking Complete.");
end
function WIM_AtlasLootItem_OnClick(arg1)
if ( IsShiftKeyDown() ) then
if ( WIM_EditBoxInFocus ) then
local color = strsub(getglobal("AtlasLootItem_"..this:GetID().."_Name"):GetText(), 1, 10);
local name = strsub(getglobal("AtlasLootItem_"..this:GetID().."_Name"):GetText(), 11);
WIM_EditBoxInFocus:Insert(color.."|Hitem:"..this.itemID..":0:0:0|h["..name.."]|h|r");
end
end
WIM_AtlasLootItem_OnClick_orig(arg1);
end
function WIM_InspectPaperDollItemSlotButton_OnClick(arg1)
if ( IsShiftKeyDown() ) then
if ( WIM_EditBoxInFocus ) then
WIM_EditBoxInFocus:Insert(GetInventoryItemLink(InspectFrame.unit, this:GetID()));
end
end
WIM_InspectPaperDollItemSlotButton_OnClick_orig(arg1);
end
function WIM_AllInOneInventoryFrameItemButton_OnClick(button, ignShift)
if ( IsShiftKeyDown() ) then
if ( WIM_EditBoxInFocus ) then
local bag, slot = AllInOneInventory_GetIdAsBagSlot(this:GetID());
WIM_EditBoxInFocus:Insert(GetContainerItemLink(bag, slot));
end
end
WIM_AllInOneInventoryFrameItemButton_OnClick_orig(button, ignShift);
end
function WIM_LootFrameItem_OnClick(arg1)
if ( IsShiftKeyDown() ) then
if ( WIM_EditBoxInFocus ) then
WIM_EditBoxInFocus:Insert(GetLootSlotLink(this.slot));
end
end
WIM_LootFrameItem_OnClick_orig(arg1);
end
function WIM_SuperInspect_InspectPaperDollItemSlotButton_OnClick(button, ignoreModifiers)
local itemLink = this.link;
if ( IsShiftKeyDown() ) then
if ( WIM_EditBoxInFocus ) then
local link = "|c"..this.c.."|H"..itemLink.."|h["..GetItemInfo(itemLink).."]|h|r";
WIM_EditBoxInFocus:Insert(link);
end
end
WIM_SuperInspect_InspectPaperDollItemSlotButton_OnClick_orig(button, ignoreModifiers);
end
function WIM_HookTradeSkill()
if(WIM_TradeSkillIsHooked == true and WIM_CraftSkillIsHooked == true) then
return;
end
if(WIM_TradeSkillIsHooked == false and TradeSkillFrame ~= nil) then
WIM_TradeSkillSkillIcon_OnClick_orig = TradeSkillSkillIcon:GetScript("OnClick");
TradeSkillSkillIcon:SetScript("OnClick", function() WIM_TradeSkillSkillIcon_OnClick_orig(); WIM_TradeSkillSkillIcon_OnClick(); end);
for i=1, 8 do
WIM_TradeSkillReagent_OnClick_orig = getglobal("TradeSkillReagent"..i):GetScript("OnClick");
getglobal("TradeSkillReagent"..i):SetScript("OnClick", function() WIM_TradeSkillReagent_OnClick_orig(); WIM_TradeSkillReagent_OnClick(); end);
end
WIM_TradeSkillIsHooked = true;
end
if(WIM_CraftSkillIsHooked == false and CraftFrame ~= nil) then
WIM_CraftIcon_OnClick_orig = CraftIcon:GetScript("OnClick");
CraftIcon:SetScript("OnClick", function() WIM_CraftIcon_OnClick_orig(); WIM_CraftIcon_OnClick(); end);
for i=1, 8 do
WIM_CraftReagent_OnClick_orig = getglobal("CraftReagent"..i):GetScript("OnClick");
getglobal("CraftReagent"..i):SetScript("OnClick", function() WIM_CraftReagent_OnClick_orig(); WIM_CraftReagent_OnClick(); end);
end
WIM_CraftSkillIsHooked = true;
end
end
function WIM_CraftIcon_OnClick(arg1)
if ( IsShiftKeyDown() ) then
if ( WIM_EditBoxInFocus ) then
WIM_EditBoxInFocus:Insert(GetCraftItemLink(GetCraftSelectionIndex()));
end
end
end
function WIM_CraftReagent_OnClick(arg1)
if ( IsShiftKeyDown() ) then
if ( WIM_EditBoxInFocus ) then
WIM_EditBoxInFocus:Insert(GetCraftReagentItemLink(GetCraftSelectionIndex(), this:GetID()));
end
end
end
function WIM_TradeSkillSkillIcon_OnClick(agr1)
if ( IsShiftKeyDown() ) then
if ( WIM_EditBoxInFocus ) then
WIM_EditBoxInFocus:Insert(GetTradeSkillItemLink(TradeSkillFrame.selectedSkill));
end
end
end
function WIM_TradeSkillReagent_OnClick(arg1)
if ( IsShiftKeyDown() ) then
if ( WIM_EditBoxInFocus ) then
WIM_EditBoxInFocus:Insert(GetTradeSkillReagentItemLink(TradeSkillFrame.selectedSkill, this:GetID()));
end
end
end
function WIM_PaperDollItemSlotButton_OnClick(arg1)
if(arg1 == "LeftButton" and IsShiftKeyDown()) then
if(WIM_EditBoxInFocus) then
WIM_EditBoxInFocus:Insert(GetInventoryItemLink("player", this:GetID()));
end
end
WIM_PaperDollItemSlotButton_OnClick_orig(arg1);
end
function WIM_LootLinkItemButton_OnClick(arg1)
if(arg1 == "LeftButton" and IsShiftKeyDown()) then
if(WIM_EditBoxInFocus) then
WIM_EditBoxInFocus:Insert(WIM_LootLink_GetLink(this:GetText()));
end
end
WIM_LootLinkItemButton_OnClick_orig(arg1);
end
-- copy of Lootlink's local function - modified
function WIM_LootLink_GetHyperlink(name)
local itemLink = ItemLinks[name];
DEFAULT_CHAT_FRAME:AddMessage("LootLink_GetHyperlink: "..name);
if( itemLink and itemLink.i ) then
-- Remove instance-specific data that we captured from the link we return
local item = string.gsub(itemLink.i, "(%d+):(%d+):(%d+):(%d+)", "%1:0:%3:%4");
return "item:"..item;
end
return nil;
end
-- copy of Lootlink's local function - modified
function WIM_LootLink_GetLink(name)
local itemLink = ItemLinks[name];
if( itemLink and itemLink.c and itemLink.i ) then
local link = "|c"..itemLink.c.."|H"..WIM_LootLink_GetHyperlink(name).."|h["..name.."]|h|r";
return link;
end
return nil;
end
function WIM_EngInventory_ItemButton_OnClick()
if(arg1 == "LeftButton" and IsShiftKeyDown()) then
if(WIM_EditBoxInFocus) then
local bar, position, itm, bagnum, slotnum;
if (EngInventory_buttons[this:GetName()] ~= nil) then
bar = EngInventory_buttons[this:GetName()]["bar"];
position = EngInventory_buttons[this:GetName()]["position"];
bagnum = EngInventory_bar_positions[bar][position]["bagnum"];
slotnum = EngInventory_bar_positions[bar][position]["slotnum"];
itm = EngInventory_item_cache[bagnum][slotnum];
if(itm) then
WIM_EditBoxInFocus:Insert(GetContainerItemLink(itm["bagnum"], itm["slotnum"]));
end
end
end
end
WIM_EngInventory_ItemButton_OnClick_orig(arg1, arg2);
end
function WIM_FriendsFrame_OnEvent()
if event == 'WHO_LIST_UPDATE' then
WIM_LastWhoListUpdate = GetTime()
if WIM_WhoScanInProgress then
for i=1,GetNumWhoResults() do
local name, guild, level, race, class, zone = GetWhoInfo(i)
if WIM_PlayerCacheQueue[name] then
local callbacks = WIM_PlayerCacheQueue[name].callbacks
WIM_PlayerCacheQueue[name] = nil
WIM_PlayerCache[name] = {
class = class,
level = level,
race = race,
guild = guild,
}
for _, callback in callbacks do
callback(WIM_PlayerCache[name])
end
end
end
if WIM_PlayerCacheQueueEmpty() then
WIM_WhoScanInProgress = false
SetWhoToUI(0)
end
return
end
end
return WIM_FriendsFrame_OnEvent_orig(event)
end
function WIM_SetItemRef (link, text, button)
if (WIM_isLinkURL(link)) then
WIM_DisplayURL(link);
return;
end
if (strsub(link, 1, 6) ~= "player") and ( IsShiftKeyDown() ) and ( not ChatFrameEditBox:IsVisible() ) then
local itemName = gsub(text, ".*%[(.*)%].*", "%1");
if(WIM_EditBoxInFocus) then
WIM_EditBoxInFocus:Insert(text);
end
end
end
function WIM_ItemButton_OnClick(button, ignoreModifiers)
if ( button == "LeftButton" ) and (not ignoreModifiers) and ( IsShiftKeyDown() ) and ( not ChatFrameEditBox:IsVisible() ) and (GameTooltipTextLeft1:GetText()) then
if(WIM_EditBoxInFocus) then
WIM_EditBoxInFocus:Insert(GetContainerItemLink(this:GetParent():GetID(), this:GetID()));
end
end
end
function WIM_WhoList_Update()
if not WIM_WhoScanInProgress then
return WIM_WhoList_Update_orig()
end
end
function WIM_SetUpHooks()
if WIM_ButtonsHooked then
return
end
do
local supress
local orig = ChatFrameEditBox:GetScript('OnTextSet')
ChatFrameEditBox:SetScript('OnTextSet', function()
if not supress then
orig()
else
supress = false
end
end)
ChatFrameEditBox:SetScript('OnChar', function()
if IsControlKeyDown() then -- TODO problem is ctrl-v, maybe find a better solution
return
end
local text = this:GetText()
local _, _, command, name = strfind(text, '^(/%S+)%s*(%a*)')
if command then
local i = 1
while true do
if getglobal('SLASH_WHISPER'..i) then
if strupper(command) == strupper(TEXT(getglobal('SLASH_WHISPER'..i))) and name ~= '' then
local function tryCompleting(candidate)
if strsub(strupper(candidate), 1, strlen(name)) == strupper(name) then
supress = true
this:SetText(text..strsub(candidate, strlen(name) + 1))
this:HighlightText(strlen(text), -1)
return
end
end
for i=1,GetNumFriends() do
tryCompleting(GetFriendInfo(i) or '')
end
for i=1,GetNumGuildMembers(true) do
tryCompleting(GetGuildRosterInfo(i) or '')
end
break
end
else
break
end
i = i + 1
end
end
end)
end
--Hook Friends Frame Send Message Button
FriendsFrame_SendMessage = WIM_FriendsFrame_SendMessage;
--Hook Chat Frame Whisper Parse
WIM_ChatEdit_ParseText_orig = ChatEdit_ParseText
ChatEdit_ParseText = WIM_ChatEdit_ParseText
--Hook Chat Frame Reply
WIM_ChatFrame_ReplyTell_orig = ChatFrame_ReplyTell
ChatFrame_ReplyTell = WIM_ChatFrame_ReplyTell
--Hook WhoList_Update
WIM_WhoList_Update_orig = WhoList_Update
WhoList_Update = WIM_WhoList_Update
--Hook FriendsFrame_OnEvent
WIM_FriendsFrame_OnEvent_orig = FriendsFrame_OnEvent;
FriendsFrame_OnEvent = WIM_FriendsFrame_OnEvent;
--Hook ChatFrame_OnEvent
WIM_ChatFrame_OnEvent_orig = ChatFrame_OnEvent;
ChatFrame_OnEvent = function(event) if(WIM_ChatFrameSupressor_OnEvent(event)) then WIM_ChatFrame_OnEvent_orig(event); end; end;
--Hook SetItemRef
WIM_SetItemRef_orig = SetItemRef;
SetItemRef = function(link, text, button) if(not WIM_isLinkURL(link)) then WIM_SetItemRef_orig(link, text, button); end; WIM_SetItemRef(link, text, button); end;
--Hook Paper Doll Button
WIM_PaperDollItemSlotButton_OnClick_orig = PaperDollItemSlotButton_OnClick;
PaperDollItemSlotButton_OnClick = WIM_PaperDollItemSlotButton_OnClick;
--Hook Loot Frame
WIM_LootFrameItem_OnClick_orig = LootFrameItem_OnClick;
LootFrameItem_OnClick = WIM_LootFrameItem_OnClick;
--Hook ContainerFrameItemButton_OnClick
WIM_ContainerFrameItemButton_OnClick_orig = ContainerFrameItemButton_OnClick;
ContainerFrameItemButton_OnClick = function(button, ignoreModifiers)
if ( button == "LeftButton" ) and (not ignoreModifiers) and ( IsShiftKeyDown() ) and ( not ChatFrameEditBox:IsVisible() ) and (GameTooltipTextLeft1:GetText()) then
if(WIM_EditBoxInFocus) then
WIM_EditBoxInFocus:Insert(GetContainerItemLink(this:GetParent():GetID(), this:GetID()));
return
end
end
WIM_ContainerFrameItemButton_OnClick_orig(button, ignoreModifiers);
-- WIM_ItemButton_OnClick(button, ignoreModifiers);
end;
if (AllInOneInventoryFrameItemButton_OnClick) then
--Hook ContainerFrameItemButton_OnClick
WIM_AllInOneInventoryFrameItemButton_OnClick_orig = AllInOneInventoryFrameItemButton_OnClick;
AllInOneInventoryFrameItemButton_OnClick = function(button, ignoreModifiers) WIM_AllInOneInventoryFrameItemButton_OnClick_orig(button, ignoreModifiers); WIM_ItemButton_OnClick(button, ignoreModifiers); end;
end
if (EngInventory_ItemButton_OnClick) then
--Hook ContainerFrameItemButton_OnClick
WIM_EngInventory_ItemButton_OnClick_orig = EngInventory_ItemButton_OnClick;
EngInventory_ItemButton_OnClick = function(button, ignoreModifiers) WIM_EngInventory_ItemButton_OnClick_orig(button, ignoreModifiers); WIM_ItemButton_OnClick(button, ignoreModifiers); end;
end
if (BrowseButton) then
--Hook BrowseButtons
for i=1, 8 do
local frame = getglobal("BrowseButton"..i.."Item");
local oldFunc = frame:GetScript("OnClick");
frame:SetScript("OnClick", function() oldFunc(); WIM_ItemButton_OnClick(arg1); end);
end
end
WIM_ButtonsHooked = true;
end
function WIM_AddonDetectToHook(theAddon)
if(theAddon == "SuperInspect_UI") then
WIM_HookInspect();
elseif(theAddon == "AtlasLoot") then
WIM_AtlasLootItem_OnClick_orig = AtlasLootItem_OnClick;
AtlasLootItem_OnClick = WIM_AtlasLootItem_OnClick;
elseif(theAddon == "AllInOneInventory") then
WIM_AllInOneInventoryFrameItemButton_OnClick_orig = AllInOneInventoryFrameItemButton_OnClick;
AllInOneInventoryFrameItemButton_OnClick = WIM_AllInOneInventoryFrameItemButton_OnClick;
elseif(theAddon == "EngInventory") then
WIM_EngInventory_ItemButton_OnClick_orig = EngInventory_ItemButton_OnClick;
EngInventory_ItemButton_OnClick = WIM_EngInventory_ItemButton_OnClick;
elseif(theAddon == "LootLink") then
WIM_LootLinkItemButton_OnClick_orig = LootLinkItemButton_OnClick;
LootLinkItemButton_OnClick = WIM_LootLinkItemButton_OnClick;
end
end