forked from Jabberie/Jamba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibActionButtonJamba-1.0.lua
1602 lines (1429 loc) · 54.3 KB
/
LibActionButtonJamba-1.0.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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--[[
Copyright (c) 2010-2018, Hendrik "nevcairiel" Leppkes <[email protected]>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the developer nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
]]
local MAJOR_VERSION = "LibActionButtonJamba-1.0"
local MINOR_VERSION = 71
if not LibStub then error(MAJOR_VERSION .. " requires LibStub.") end
local lib, oldversion = LibStub:NewLibrary(MAJOR_VERSION, MINOR_VERSION)
if not lib then return end
-- Lua functions
local _G = _G
local type, error, tostring, tonumber, assert, select = type, error, tostring, tonumber, assert, select
local setmetatable, wipe, unpack, pairs, next = setmetatable, wipe, unpack, pairs, next
local str_match, format, tinsert, tremove = string.match, format, tinsert, tremove
-- Global vars/functions that we don't upvalue since they might get hooked, or upgraded
-- List them here for Mikk's FindGlobals script
-- Note: No WoW API function get upvalued to allow proper interaction with any addons that try to hook them.
-- GLOBALS: LibStub, CreateFrame, InCombatLockdown, ClearCursor, GetCursorInfo, GameTooltip, GameTooltip_SetDefaultAnchor
-- GLOBALS: GetBindingKey, GetBindingText, SetBinding, SetBindingClick, GetCVar, GetMacroInfo
-- GLOBALS: PickupAction, PickupItem, PickupMacro, PickupPetAction, PickupSpell, PickupCompanion, PickupEquipmentSet
-- GLOBALS: CooldownFrame_SetTimer, UIParent, IsSpellOverlayed, SpellFlyout, GetMouseFocus, SetClampedTextureRotation
-- GLOBALS: GetActionInfo, GetActionTexture, HasAction, GetActionText, GetActionCount, GetActionCooldown, IsAttackAction
-- GLOBALS: IsAutoRepeatAction, IsEquippedAction, IsCurrentAction, IsConsumableAction, IsUsableAction, IsStackableAction, IsActionInRange
-- GLOBALS: GetSpellLink, GetMacroSpell, GetSpellTexture, GetSpellCount, GetSpellCooldown, IsAttackSpell, IsCurrentSpell
-- GLOBALS: FindSpellBookSlotBySpellID, IsUsableSpell, IsConsumableSpell, IsSpellInRange, IsAutoRepeatSpell
-- GLOBALS: GetItemIcon, GetItemCount, GetItemCooldown, IsEquippedItem, IsCurrentItem, IsUsableItem, IsConsumableItem, IsItemInRange
-- GLOBALS: GetActionCharges, IsItemAction, GetSpellCharges
-- GLOBALS: RANGE_INDICATOR, ATTACK_BUTTON_FLASH_TIME, TOOLTIP_UPDATE_TIME
-- GLOBALS: ZoneAbilityFrame, HasZoneAbility, GetLastZoneAbilitySpellTexture
local KeyBound = LibStub("LibKeyBound-1.0", true)
local CBH = LibStub("CallbackHandler-1.0")
local LBG = LibStub("LibButtonGlow-1.0", true)
local Masque = LibStub("Masque", true)
lib.eventFrame = lib.eventFrame or CreateFrame("Frame")
lib.eventFrame:UnregisterAllEvents()
lib.buttonRegistry = lib.buttonRegistry or {}
lib.activeButtons = lib.activeButtons or {}
lib.actionButtons = lib.actionButtons or {}
lib.nonActionButtons = lib.nonActionButtons or {}
lib.ChargeCooldowns = lib.ChargeCooldowns or {}
lib.NumChargeCooldowns = lib.NumChargeCooldowns or 0
lib.ACTION_HIGHLIGHT_MARKS = lib.ACTION_HIGHLIGHT_MARKS or setmetatable({}, { __index = ACTION_HIGHLIGHT_MARKS })
lib.callbacks = lib.callbacks or CBH:New(lib)
local Generic = CreateFrame("CheckButton")
local Generic_MT = {__index = Generic}
local Action = setmetatable({}, {__index = Generic})
local Action_MT = {__index = Action}
local PetAction = setmetatable({}, {__index = Generic})
local PetAction_MT = {__index = PetAction}
local Spell = setmetatable({}, {__index = Generic})
local Spell_MT = {__index = Spell}
local Item = setmetatable({}, {__index = Generic})
local Item_MT = {__index = Item}
local Macro = setmetatable({}, {__index = Generic})
local Macro_MT = {__index = Macro}
local Custom = setmetatable({}, {__index = Generic})
local Custom_MT = {__index = Custom}
local type_meta_map = {
empty = Generic_MT,
action = Action_MT,
--pet = PetAction_MT,
spell = Spell_MT,
item = Item_MT,
macro = Macro_MT,
custom = Custom_MT
}
local ButtonRegistry, ActiveButtons, ActionButtons, NonActionButtons = lib.buttonRegistry, lib.activeButtons, lib.actionButtons, lib.nonActionButtons
local Update, UpdateButtonState, UpdateUsable, UpdateCount, UpdateCooldown, UpdateTooltip, UpdateNewAction, ClearNewActionHighlight
local StartFlash, StopFlash, UpdateFlash, UpdateHotkeys, UpdateRangeTimer, UpdateOverlayGlow
local UpdateFlyout, ShowGrid, HideGrid, UpdateGrid, SetupSecureSnippets, WrapOnClick
local ShowOverlayGlow, HideOverlayGlow
local EndChargeCooldown
local InitializeEventHandler, OnEvent, ForAllButtons, OnUpdate
local function GameTooltip_GetOwnerForbidden()
if GameTooltip:IsForbidden() then
return nil
end
return GameTooltip:GetOwner()
end
local DefaultConfig = {
outOfRangeColoring = "button",
tooltip = "enabled",
showGrid = false,
colors = {
range = { 0.8, 0.1, 0.1 },
mana = { 0.5, 0.5, 1.0 }
},
hideElements = {
macro = false,
hotkey = false,
equipped = false,
},
keyBoundTarget = false,
clickOnDown = false,
flyoutDirection = "UP",
}
--- Create a new action button.
-- @param id Internal id of the button (not used by LibActionButton-1.0, only for tracking inside the calling addon)
-- @param name Name of the button frame to be created (not used by LibActionButton-1.0 aside from naming the frame)
-- @param header Header that drives these action buttons (if any)
function lib:CreateButton(id, name, header, config)
if type(name) ~= "string" then
error("Usage: CreateButton(id, name. header): Buttons must have a valid name!", 2)
end
if not header then
error("Usage: CreateButton(id, name, header): Buttons without a secure header are not yet supported!", 2)
end
if not KeyBound then
KeyBound = LibStub("LibKeyBound-1.0", true)
end
local button = setmetatable(CreateFrame("CheckButton", name, header, "SecureActionButtonTemplate, ActionButtonTemplate"), Generic_MT)
button:RegisterForDrag("LeftButton", "RightButton")
button:RegisterForClicks("AnyUp")
-- Frame Scripts
button:SetScript("OnEnter", Generic.OnEnter)
button:SetScript("OnLeave", Generic.OnLeave)
button:SetScript("PreClick", Generic.PreClick)
button:SetScript("PostClick", Generic.PostClick)
button.id = id
button.header = header
-- Mapping of state -> action
button.state_types = {}
button.state_actions = {}
-- Store the LAB Version that created this button for debugging
button.__LAB_Version = MINOR_VERSION
-- just in case we're not run by a header, default to state 0
button:SetAttribute("state", 0)
SetupSecureSnippets(button)
WrapOnClick(button)
-- adjust hotkey style for better readability
button.HotKey:SetFont(button.HotKey:GetFont(), 13, "OUTLINE")
button.HotKey:SetVertexColor(0.75, 0.75, 0.75)
-- adjust count/stack size
button.Count:SetFont(button.Count:GetFont(), 16, "OUTLINE")
-- Store the button in the registry, needed for event and OnUpdate handling
if not next(ButtonRegistry) then
InitializeEventHandler()
end
ButtonRegistry[button] = true
button:UpdateConfig(config)
-- run an initial update
button:UpdateAction()
UpdateHotkeys(button)
-- somewhat of a hack for the Flyout buttons to not error.
button.action = 0
lib.callbacks:Fire("OnButtonCreated", button)
return button
end
function SetupSecureSnippets(button)
button:SetAttribute("_custom", Custom.RunCustom)
-- secure UpdateState(self, state)
-- update the type and action of the button based on the state
button:SetAttribute("UpdateState", [[
local state = ...
self:SetAttribute("state", state)
local type, action = (self:GetAttribute(format("labtype-%s", state)) or "empty"), self:GetAttribute(format("labaction-%s", state))
self:SetAttribute("type", type)
if type ~= "empty" and type ~= "custom" then
local action_field = (type == "pet") and "action" or type
self:SetAttribute(action_field, action)
self:SetAttribute("action_field", action_field)
end
local onStateChanged = self:GetAttribute("OnStateChanged")
if onStateChanged then
self:Run(onStateChanged, state, type, action)
end
]])
-- this function is invoked by the header when the state changes
button:SetAttribute("_childupdate-state", [[
self:RunAttribute("UpdateState", message)
self:CallMethod("UpdateAction")
]])
-- secure PickupButton(self, kind, value, ...)
-- utility function to place a object on the cursor
button:SetAttribute("PickupButton", [[
local kind, value = ...
if kind == "empty" then
return "clear"
elseif kind == "action" or kind == "pet" then
local actionType = (kind == "pet") and "petaction" or kind
return actionType, value
elseif kind == "spell" or kind == "item" or kind == "macro" then
return "clear", kind, value
else
print("LibActionButton-1.0: Unknown type: " .. tostring(kind))
return false
end
]])
button:SetAttribute("OnDragStart", [[
if (self:GetAttribute("buttonlock") and not IsModifiedClick("PICKUPACTION")) or self:GetAttribute("LABdisableDragNDrop") then return false end
local state = self:GetAttribute("state")
local type = self:GetAttribute("type")
-- if the button is empty, we can't drag anything off it
if type == "empty" or type == "custom" then
return false
end
-- Get the value for the action attribute
local action_field = self:GetAttribute("action_field")
local action = self:GetAttribute(action_field)
-- non-action fields need to change their type to empty
if type ~= "action" and type ~= "pet" then
self:SetAttribute(format("labtype-%s", state), "empty")
self:SetAttribute(format("labaction-%s", state), nil)
-- update internal state
self:RunAttribute("UpdateState", state)
-- send a notification to the insecure code
self:CallMethod("ButtonContentsChanged", state, "empty", nil)
end
-- return the button contents for pickup
return self:RunAttribute("PickupButton", type, action)
]])
button:SetAttribute("OnReceiveDrag", [[
if self:GetAttribute("LABdisableDragNDrop") then return false end
local kind, value, subtype, extra = ...
if not kind or not value then return false end
local state = self:GetAttribute("state")
local buttonType, buttonAction = self:GetAttribute("type"), nil
if buttonType == "custom" then return false end
-- action buttons can do their magic themself
-- for all other buttons, we'll need to update the content now
if buttonType ~= "action" and buttonType ~= "pet" then
-- with "spell" types, the 4th value contains the actual spell id
if kind == "spell" then
if extra then
value = extra
else
print("no spell id?", ...)
end
elseif kind == "item" and value then
value = format("item:%d", value)
end
-- Get the action that was on the button before
if buttonType ~= "empty" then
buttonAction = self:GetAttribute(self:GetAttribute("action_field"))
end
-- TODO: validate what kind of action is being fed in here
-- We can only use a handful of the possible things on the cursor
-- return false for all those we can't put on buttons
self:SetAttribute(format("labtype-%s", state), kind)
self:SetAttribute(format("labaction-%s", state), value)
-- update internal state
self:RunAttribute("UpdateState", state)
-- send a notification to the insecure code
self:CallMethod("ButtonContentsChanged", state, kind, value)
else
-- get the action for (pet-)action buttons
buttonAction = self:GetAttribute("action")
end
return self:RunAttribute("PickupButton", buttonType, buttonAction)
]])
button:SetScript("OnDragStart", nil)
-- Wrapped OnDragStart(self, button, kind, value, ...)
button.header:WrapScript(button, "OnDragStart", [[
return self:RunAttribute("OnDragStart")
]])
-- Wrap twice, because the post-script is not run when the pre-script causes a pickup (doh)
-- we also need some phony message, or it won't work =/
button.header:WrapScript(button, "OnDragStart", [[
return "message", "update"
]], [[
self:RunAttribute("UpdateState", self:GetAttribute("state"))
]])
button:SetScript("OnReceiveDrag", nil)
-- Wrapped OnReceiveDrag(self, button, kind, value, ...)
button.header:WrapScript(button, "OnReceiveDrag", [[
return self:RunAttribute("OnReceiveDrag", kind, value, ...)
]])
-- Wrap twice, because the post-script is not run when the pre-script causes a pickup (doh)
-- we also need some phony message, or it won't work =/
button.header:WrapScript(button, "OnReceiveDrag", [[
return "message", "update"
]], [[
self:RunAttribute("UpdateState", self:GetAttribute("state"))
]])
end
function WrapOnClick(button)
-- Wrap OnClick, to catch changes to actions that are applied with a click on the button.
button.header:WrapScript(button, "OnClick", [[
if self:GetAttribute("type") == "action" then
local type, action = GetActionInfo(self:GetAttribute("action"))
return nil, format("%s|%s", tostring(type), tostring(action))
end
]], [[
local type, action = GetActionInfo(self:GetAttribute("action"))
if message ~= format("%s|%s", tostring(type), tostring(action)) then
self:RunAttribute("UpdateState", self:GetAttribute("state"))
end
]])
end
-----------------------------------------------------------
--- utility
function lib:GetAllButtons()
local buttons = {}
for button in next, ButtonRegistry do
buttons[button] = true
end
return buttons
end
function Generic:ClearSetPoint(...)
self:ClearAllPoints()
self:SetPoint(...)
end
function Generic:NewHeader(header)
self.header = header
self:SetParent(header)
SetupSecureSnippets(self)
WrapOnClick(self)
end
-----------------------------------------------------------
--- state management
function Generic:ClearStates()
for state in pairs(self.state_types) do
self:SetAttribute(format("labtype-%s", state), nil)
self:SetAttribute(format("labaction-%s", state), nil)
end
wipe(self.state_types)
wipe(self.state_actions)
end
function Generic:SetState(state, kind, action)
if not state then state = self:GetAttribute("state") end
state = tostring(state)
-- we allow a nil kind for setting a empty state
if not kind then kind = "empty" end
if not type_meta_map[kind] then
error("SetStateAction: unknown action type: " .. tostring(kind), 2)
end
if kind ~= "empty" and action == nil then
error("SetStateAction: an action is required for non-empty states", 2)
end
if kind ~= "custom" and action ~= nil and type(action) ~= "number" and type(action) ~= "string" or (kind == "custom" and type(action) ~= "table") then
error("SetStateAction: invalid action data type, only strings and numbers allowed", 2)
end
if kind == "item" then
if tonumber(action) then
action = format("item:%s", action)
else
local itemString = str_match(action, "^|c%x+|H(item[%d:]+)|h%[")
if itemString then
action = itemString
end
end
end
self.state_types[state] = kind
self.state_actions[state] = action
self:UpdateState(state)
end
function Generic:UpdateState(state)
if not state then state = self:GetAttribute("state") end
state = tostring(state)
self:SetAttribute(format("labtype-%s", state), self.state_types[state])
self:SetAttribute(format("labaction-%s", state), self.state_actions[state])
if state ~= tostring(self:GetAttribute("state")) then return end
if self.header then
self.header:SetFrameRef("updateButton", self)
self.header:Execute([[
local frame = self:GetFrameRef("updateButton")
control:RunFor(frame, frame:GetAttribute("UpdateState"), frame:GetAttribute("state"))
]])
else
-- TODO
end
self:UpdateAction()
end
function Generic:GetAction(state)
if not state then state = self:GetAttribute("state") end
state = tostring(state)
return self.state_types[state] or "empty", self.state_actions[state]
end
function Generic:UpdateAllStates()
for state in pairs(self.state_types) do
self:UpdateState(state)
end
end
function Generic:ButtonContentsChanged(state, kind, value)
state = tostring(state)
self.state_types[state] = kind or "empty"
self.state_actions[state] = value
lib.callbacks:Fire("OnButtonContentsChanged", self, state, self.state_types[state], self.state_actions[state])
self:UpdateAction(self)
end
function Generic:DisableDragNDrop(flag)
if InCombatLockdown() then
error("LibActionButton-1.0: You can only toggle DragNDrop out of combat!", 2)
end
if flag then
self:SetAttribute("LABdisableDragNDrop", true)
else
self:SetAttribute("LABdisableDragNDrop", nil)
end
end
function Generic:AddToButtonFacade(group)
if type(group) ~= "table" or type(group.AddButton) ~= "function" then
error("LibActionButton-1.0:AddToButtonFacade: You need to supply a proper group to use!", 2)
end
group:AddButton(self)
self.LBFSkinned = true
end
function Generic:AddToMasque(group)
if type(group) ~= "table" or type(group.AddButton) ~= "function" then
error("LibActionButton-1.0:AddToMasque: You need to supply a proper group to use!", 2)
end
group:AddButton(self)
self.MasqueSkinned = true
end
function Generic:UpdateAlpha()
UpdateCooldown(self)
end
-----------------------------------------------------------
--- frame scripts
-- copied (and adjusted) from SecureHandlers.lua
local function PickupAny(kind, target, detail, ...)
if kind == "clear" then
ClearCursor()
kind, target, detail = target, detail, ...
end
if kind == 'action' then
PickupAction(target)
elseif kind == 'item' then
PickupItem(target)
elseif kind == 'macro' then
PickupMacro(target)
elseif kind == 'petaction' then
PickupPetAction(target)
elseif kind == 'spell' then
PickupSpell(target)
elseif kind == 'companion' then
PickupCompanion(target, detail)
elseif kind == 'equipmentset' then
PickupEquipmentSet(target)
end
end
function Generic:OnEnter()
if self.config.tooltip ~= "disabled" and (self.config.tooltip ~= "nocombat" or not InCombatLockdown()) then
UpdateTooltip(self)
end
if KeyBound then
KeyBound:Set(self)
end
if self._state_type == "action" and self.NewActionTexture then
ClearNewActionHighlight(self._state_action, false, false)
UpdateNewAction(self)
end
end
function Generic:OnLeave()
if GameTooltip:IsForbidden() then return end
GameTooltip:Hide()
end
-- Insecure drag handler to allow clicking on the button with an action on the cursor
-- to place it on the button. Like action buttons work.
function Generic:PreClick()
if self._state_type == "action" or self._state_type == "pet"
or InCombatLockdown() or self:GetAttribute("LABdisableDragNDrop")
then
return
end
-- check if there is actually something on the cursor
local kind, value, subtype = GetCursorInfo()
if not (kind and value) then return end
self._old_type = self._state_type
if self._state_type and self._state_type ~= "empty" then
self._old_type = self._state_type
self:SetAttribute("type", "empty")
--self:SetState(nil, "empty", nil)
end
self._receiving_drag = true
end
local function formatHelper(input)
if type(input) == "string" then
return format("%q", input)
else
return tostring(input)
end
end
function Generic:PostClick()
UpdateButtonState(self)
if self._receiving_drag and not InCombatLockdown() then
if self._old_type then
self:SetAttribute("type", self._old_type)
self._old_type = nil
end
local oldType, oldAction = self._state_type, self._state_action
local kind, data, subtype, extra = GetCursorInfo()
self.header:SetFrameRef("updateButton", self)
self.header:Execute(format([[
local frame = self:GetFrameRef("updateButton")
control:RunFor(frame, frame:GetAttribute("OnReceiveDrag"), %s, %s, %s, %s)
control:RunFor(frame, frame:GetAttribute("UpdateState"), %s)
]], formatHelper(kind), formatHelper(data), formatHelper(subtype), formatHelper(extra), formatHelper(self:GetAttribute("state"))))
PickupAny("clear", oldType, oldAction)
end
self._receiving_drag = nil
if self._state_type == "action" and lib.ACTION_HIGHLIGHT_MARKS[self._state_action] then
ClearNewActionHighlight(self._state_action, false, false)
end
end
-----------------------------------------------------------
--- configuration
local function merge(target, source, default)
for k,v in pairs(default) do
if type(v) ~= "table" then
if source and source[k] ~= nil then
target[k] = source[k]
else
target[k] = v
end
else
if type(target[k]) ~= "table" then target[k] = {} else wipe(target[k]) end
merge(target[k], type(source) == "table" and source[k], v)
end
end
return target
end
function Generic:UpdateConfig(config)
if config and type(config) ~= "table" then
error("LibActionButton-1.0: UpdateConfig requires a valid configuration!", 2)
end
local oldconfig = self.config
if not self.config then self.config = {} end
-- merge the two configs
merge(self.config, config, DefaultConfig)
if self.config.outOfRangeColoring == "button" or (oldconfig and oldconfig.outOfRangeColoring == "button") then
UpdateUsable(self)
end
if self.config.outOfRangeColoring == "hotkey" then
self.outOfRange = nil
elseif oldconfig and oldconfig.outOfRangeColoring == "hotkey" then
self.HotKey:SetVertexColor(0.75, 0.75, 0.75)
end
if self.config.hideElements.macro then
self.Name:Hide()
else
self.Name:Show()
end
self:SetAttribute("flyoutDirection", self.config.flyoutDirection)
UpdateHotkeys(self)
UpdateGrid(self)
Update(self)
self:RegisterForClicks(self.config.clickOnDown and "AnyDown" or "AnyUp")
end
-----------------------------------------------------------
--- event handler
function ForAllButtons(method, onlyWithAction)
assert(type(method) == "function")
for button in next, (onlyWithAction and ActiveButtons or ButtonRegistry) do
method(button)
end
end
function InitializeEventHandler()
lib.eventFrame:SetScript("OnEvent", OnEvent)
lib.eventFrame:RegisterEvent("PLAYER_ENTERING_WORLD")
lib.eventFrame:RegisterEvent("ACTIONBAR_SHOWGRID")
lib.eventFrame:RegisterEvent("ACTIONBAR_HIDEGRID")
--lib.eventFrame:RegisterEvent("ACTIONBAR_PAGE_CHANGED")
--lib.eventFrame:RegisterEvent("UPDATE_BONUS_ACTIONBAR")
lib.eventFrame:RegisterEvent("ACTIONBAR_SLOT_CHANGED")
lib.eventFrame:RegisterEvent("UPDATE_BINDINGS")
lib.eventFrame:RegisterEvent("UPDATE_SHAPESHIFT_FORM")
lib.eventFrame:RegisterEvent("UPDATE_VEHICLE_ACTIONBAR")
lib.eventFrame:RegisterEvent("PLAYER_MOUNT_DISPLAY_CHANGED")
lib.eventFrame:RegisterEvent("ACTIONBAR_UPDATE_STATE")
lib.eventFrame:RegisterEvent("ACTIONBAR_UPDATE_USABLE")
lib.eventFrame:RegisterEvent("ACTIONBAR_UPDATE_COOLDOWN")
lib.eventFrame:RegisterEvent("PLAYER_TARGET_CHANGED")
lib.eventFrame:RegisterEvent("TRADE_SKILL_SHOW")
lib.eventFrame:RegisterEvent("TRADE_SKILL_CLOSE")
lib.eventFrame:RegisterEvent("ARCHAEOLOGY_CLOSED")
lib.eventFrame:RegisterEvent("PLAYER_ENTER_COMBAT")
lib.eventFrame:RegisterEvent("PLAYER_LEAVE_COMBAT")
lib.eventFrame:RegisterEvent("START_AUTOREPEAT_SPELL")
lib.eventFrame:RegisterEvent("STOP_AUTOREPEAT_SPELL")
lib.eventFrame:RegisterEvent("UNIT_ENTERED_VEHICLE")
lib.eventFrame:RegisterEvent("UNIT_EXITED_VEHICLE")
lib.eventFrame:RegisterEvent("COMPANION_UPDATE")
lib.eventFrame:RegisterEvent("UNIT_INVENTORY_CHANGED")
lib.eventFrame:RegisterEvent("LEARNED_SPELL_IN_TAB")
lib.eventFrame:RegisterEvent("PET_STABLE_UPDATE")
lib.eventFrame:RegisterEvent("PET_STABLE_SHOW")
lib.eventFrame:RegisterEvent("SPELL_ACTIVATION_OVERLAY_GLOW_SHOW")
lib.eventFrame:RegisterEvent("SPELL_ACTIVATION_OVERLAY_GLOW_HIDE")
lib.eventFrame:RegisterEvent("SPELL_UPDATE_CHARGES")
lib.eventFrame:RegisterEvent("UPDATE_SUMMONPETS_ACTION")
lib.eventFrame:RegisterEvent("SPELL_UPDATE_ICON")
-- With those two, do we still need the ACTIONBAR equivalents of them?
lib.eventFrame:RegisterEvent("SPELL_UPDATE_COOLDOWN")
lib.eventFrame:RegisterEvent("SPELL_UPDATE_USABLE")
lib.eventFrame:RegisterEvent("PLAYER_EQUIPMENT_CHANGED")
lib.eventFrame:RegisterEvent("LOSS_OF_CONTROL_ADDED")
lib.eventFrame:RegisterEvent("LOSS_OF_CONTROL_UPDATE")
lib.eventFrame:Show()
lib.eventFrame:SetScript("OnUpdate", OnUpdate)
end
function OnEvent(frame, event, arg1, ...)
if (event == "UNIT_INVENTORY_CHANGED" and arg1 == "player") or event == "LEARNED_SPELL_IN_TAB" then
local tooltipOwner = GameTooltip_GetOwnerForbidden()
if tooltipOwner and ButtonRegistry[tooltipOwner] then
tooltipOwner:SetTooltip()
end
elseif event == "ACTIONBAR_SLOT_CHANGED" then
for button in next, ButtonRegistry do
if button._state_type == "action" and (arg1 == 0 or arg1 == tonumber(button._state_action)) then
ClearNewActionHighlight(button._state_action, true, false)
Update(button)
end
end
elseif event == "PLAYER_ENTERING_WORLD" or event == "UPDATE_SHAPESHIFT_FORM" or event == "UPDATE_VEHICLE_ACTIONBAR" then
ForAllButtons(Update)
elseif event == "ACTIONBAR_PAGE_CHANGED" or event == "UPDATE_BONUS_ACTIONBAR" then
-- TODO: Are these even needed?
elseif event == "ACTIONBAR_SHOWGRID" then
ShowGrid()
elseif event == "ACTIONBAR_HIDEGRID" then
HideGrid()
elseif event == "UPDATE_BINDINGS" then
ForAllButtons(UpdateHotkeys)
elseif event == "PLAYER_TARGET_CHANGED" then
UpdateRangeTimer()
elseif (event == "ACTIONBAR_UPDATE_STATE") or
((event == "UNIT_ENTERED_VEHICLE" or event == "UNIT_EXITED_VEHICLE") and (arg1 == "player")) or
((event == "COMPANION_UPDATE") and (arg1 == "MOUNT")) then
ForAllButtons(UpdateButtonState, true)
elseif event == "ACTIONBAR_UPDATE_USABLE" then
for button in next, ActionButtons do
UpdateUsable(button)
end
elseif event == "SPELL_UPDATE_USABLE" then
for button in next, NonActionButtons do
UpdateUsable(button)
end
elseif event == "PLAYER_MOUNT_DISPLAY_CHANGED" then
for button in next, ActiveButtons do
UpdateUsable(button)
end
elseif event == "ACTIONBAR_UPDATE_COOLDOWN" then
for button in next, ActionButtons do
UpdateCooldown(button)
if GameTooltip:GetOwner() == button then
UpdateTooltip(button)
end
end
elseif event == "SPELL_UPDATE_COOLDOWN" then
for button in next, NonActionButtons do
UpdateCooldown(button)
if GameTooltip_GetOwnerForbidden() == button then
UpdateTooltip(button)
end
end
elseif event == "LOSS_OF_CONTROL_ADDED" then
for button in next, ActiveButtons do
UpdateCooldown(button)
if GameTooltip_GetOwnerForbidden() == button then
UpdateTooltip(button)
end
end
elseif event == "LOSS_OF_CONTROL_UPDATE" then
for button in next, ActiveButtons do
UpdateCooldown(button)
end
elseif event == "TRADE_SKILL_SHOW" or event == "TRADE_SKILL_CLOSE" or event == "ARCHAEOLOGY_CLOSED" then
ForAllButtons(UpdateButtonState, true)
elseif event == "PLAYER_ENTER_COMBAT" then
for button in next, ActiveButtons do
if button:IsAttack() then
StartFlash(button)
end
end
elseif event == "PLAYER_LEAVE_COMBAT" then
for button in next, ActiveButtons do
if button:IsAttack() then
StopFlash(button)
end
end
elseif event == "START_AUTOREPEAT_SPELL" then
for button in next, ActiveButtons do
if button:IsAutoRepeat() then
StartFlash(button)
end
end
elseif event == "STOP_AUTOREPEAT_SPELL" then
for button in next, ActiveButtons do
if button.flashing == 1 and not button:IsAttack() then
StopFlash(button)
end
end
elseif event == "PET_STABLE_UPDATE" or event == "PET_STABLE_SHOW" then
ForAllButtons(Update)
elseif event == "SPELL_ACTIVATION_OVERLAY_GLOW_SHOW" then
for button in next, ActiveButtons do
local spellId = button:GetSpellId()
if spellId and spellId == arg1 then
ShowOverlayGlow(button)
else
if button._state_type == "action" then
local actionType, id = GetActionInfo(button._state_action)
if actionType == "flyout" and FlyoutHasSpell(id, arg1) then
ShowOverlayGlow(button)
end
end
end
end
elseif event == "SPELL_ACTIVATION_OVERLAY_GLOW_HIDE" then
for button in next, ActiveButtons do
local spellId = button:GetSpellId()
if spellId and spellId == arg1 then
HideOverlayGlow(button)
else
if button._state_type == "action" then
local actionType, id = GetActionInfo(button._state_action)
if actionType == "flyout" and FlyoutHasSpell(id, arg1) then
HideOverlayGlow(button)
end
end
end
end
elseif event == "PLAYER_EQUIPMENT_CHANGED" then
for button in next, ActiveButtons do
if button._state_type == "item" then
Update(button)
end
end
elseif event == "SPELL_UPDATE_CHARGES" then
ForAllButtons(UpdateCount, true)
elseif event == "UPDATE_SUMMONPETS_ACTION" then
for button in next, ActiveButtons do
if button._state_type == "action" then
local actionType, id = GetActionInfo(button._state_action)
if actionType == "summonpet" then
local texture = GetActionTexture(button._state_action)
if texture then
button.icon:SetTexture(texture)
end
end
end
end
elseif event == "SPELL_UPDATE_ICON" then
ForAllButtons(Update, true)
end
end
local flashTime = 0
local rangeTimer = -1
function OnUpdate(_, elapsed)
flashTime = flashTime - elapsed
rangeTimer = rangeTimer - elapsed
-- Run the loop only when there is something to update
if rangeTimer <= 0 or flashTime <= 0 then
for button in next, ActiveButtons do
-- Flashing
if button.flashing == 1 and flashTime <= 0 then
if button.Flash:IsShown() then
button.Flash:Hide()
else
button.Flash:Show()
end
end
-- Range
if rangeTimer <= 0 then
local inRange = button:IsInRange()
local oldRange = button.outOfRange
button.outOfRange = (inRange == false)
if oldRange ~= button.outOfRange then
if button.config.outOfRangeColoring == "button" then
UpdateUsable(button)
elseif button.config.outOfRangeColoring == "hotkey" then
local hotkey = button.HotKey
if hotkey:GetText() == RANGE_INDICATOR then
if inRange == false then
hotkey:Show()
else
hotkey:Hide()
end
end
if inRange == false then
hotkey:SetVertexColor(unpack(button.config.colors.range))
else
hotkey:SetVertexColor(0.75, 0.75, 0.75)
end
end
end
end
end
-- Update values
if flashTime <= 0 then
flashTime = flashTime + ATTACK_BUTTON_FLASH_TIME
end
if rangeTimer <= 0 then
rangeTimer = TOOLTIP_UPDATE_TIME
end
end
end
local gridCounter = 0
function ShowGrid()
gridCounter = gridCounter + 1
if gridCounter >= 1 then
for button in next, ButtonRegistry do
if button:IsShown() then
button:SetAlpha(1.0)
end
end
end
end
function HideGrid()
if gridCounter > 0 then
gridCounter = gridCounter - 1
end
if gridCounter == 0 then
for button in next, ButtonRegistry do
if button:IsShown() and not button:HasAction() and not button.config.showGrid then
button:SetAlpha(0.0)
end
end
end
end
function UpdateGrid(self)
if self.config.showGrid then
self:SetAlpha(1.0)
elseif gridCounter == 0 and self:IsShown() and not self:HasAction() then
self:SetAlpha(0.0)
end
end
-----------------------------------------------------------
--- KeyBound integration
function Generic:GetBindingAction()
return self.config.keyBoundTarget or "CLICK "..self:GetName()..":LeftButton"
end
function Generic:GetHotkey()
local name = "CLICK "..self:GetName()..":LeftButton"
local key = GetBindingKey(self.config.keyBoundTarget or name)
if not key and self.config.keyBoundTarget then
key = GetBindingKey(name)
end
if key then
return KeyBound and KeyBound:ToShortKey(key) or key
end
end
local function getKeys(binding, keys)
keys = keys or ""
for i = 1, select("#", GetBindingKey(binding)) do
local hotKey = select(i, GetBindingKey(binding))
if keys ~= "" then
keys = keys .. ", "
end
keys = keys .. GetBindingText(hotKey, "KEY_")
end
return keys
end
function Generic:GetBindings()
local keys, binding
if self.config.keyBoundTarget then
keys = getKeys(self.config.keyBoundTarget)
end
keys = getKeys("CLICK "..self:GetName()..":LeftButton")
return keys
end
function Generic:SetKey(key)
if self.config.keyBoundTarget then
SetBinding(key, self.config.keyBoundTarget)
else
SetBindingClick(key, self:GetName(), "LeftButton")
end
lib.callbacks:Fire("OnKeybindingChanged", self, key)
end
local function clearBindings(binding)
while GetBindingKey(binding) do
SetBinding(GetBindingKey(binding), nil)
end