-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPersistentCompanion.lua
More file actions
317 lines (261 loc) · 10.8 KB
/
Copy pathPersistentCompanion.lua
File metadata and controls
317 lines (261 loc) · 10.8 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
local folderName, addon = ...
local math_floor = _G.math.floor
local C_PetJournal_DismissSummonedPet = _G.C_PetJournal.DismissSummonedPet
local C_PetJournal_GetSummonedPetGUID = _G.C_PetJournal.GetSummonedPetGUID
local C_PetJournal_SummonPetByGUID = _G.C_PetJournal.SummonPetByGUID
local C_Timer_After = _G.C_Timer.After
local C_UnitAuras_GetPlayerAuraBySpellID = _G.C_UnitAuras.GetPlayerAuraBySpellID
local GetActionInfo = _G.GetActionInfo
local IsStealthed = _G.IsStealthed
local MuteSoundFile = _G.MuteSoundFile
local UnitAffectingCombat = _G.UnitAffectingCombat
local UnitInVehicle = _G.UnitInVehicle
local UnitIsDeadOrGhost = _G.UnitIsDeadOrGhost
local UnitOnTaxi = _G.UnitOnTaxi
local UnmuteSoundFile = _G.UnmuteSoundFile
local stealthSpells = {
[1784] = true, -- Rogue: Stealth
[1856] = true, -- Rogue: Vanish
[114018] = true, -- Rogue: Shroud of Concealment
[5215] = true, -- Druid: Prowl
[199483] = true, -- Hunter: Camouflage
[66] = true, -- Mage: Invisibility
[110959] = true, -- Mage: Greater Invisibility
[198158] = true, -- Mage: Mass Invisibility
[58984] = true, -- Night Elf: Shadowmeld
}
local realmName = GetRealmName()
local playerName = UnitName("player")
-- To be mapped to saved variable. Must be a table to work!!
local desiredCompanion = nil
local tickerHandle = nil
local noResummon = false
local isHooked = false
local function ResummonPet()
if not LP_config or not LP_config.persistentCompanion_enabled then return end
if noResummon then return end
if not UnitAffectingCombat("player")
and desiredCompanion[playerName]
and desiredCompanion[playerName] ~= C_PetJournal_GetSummonedPetGUID()
and not UnitOnTaxi("player")
and not UnitInVehicle("player")
and not UnitIsDeadOrGhost("player")
and not IsFalling("player") -- Not while "Parasol Fall" is happening.
and C_UnitAuras_GetPlayerAuraBySpellID(211898) == nil -- Not while "Eye of Kilrogg" replaces the current pet.
and not (LP_config.persistentCompanion_dismissWhileStealthed and IsStealthed()) -- Not while stealthed (if option enabled).
and not (HouseEditorFrame and HouseEditorFrame.LayoutModeFrame and HouseEditorFrame.LayoutModeFrame:IsShown()) -- While the house layout is shown, the pet gets dismissed and the character is "stunned".
then
-- print("Resummoning", desiredCompanion[playerName])
-- Mute the pet summon sound if option is enabled
if LP_config.persistentCompanion_muteSummonSound then
MuteSoundFile(565429)
end
C_PetJournal_SummonPetByGUID(desiredCompanion[playerName], folderName)
-- Unmute after a short delay if option is enabled
if LP_config.persistentCompanion_muteSummonSound then
C_Timer_After(0.5, function()
UnmuteSoundFile(565429)
end)
end
end
end
local function CheckPet()
-- Value is only reliable after some time.
-- While checking we want no restoring.
noResummon = true
C_Timer_After(0.6, function()
desiredCompanion[playerName] = C_PetJournal_GetSummonedPetGUID()
-- print("Current pet:", C_PetJournal_GetSummonedPetGUID())
noResummon = false
end)
end
-- slot / 12 is the button prefix.
-- https://warcraft.wiki.gg/wiki/Action_slot
local buttonPrefix = {
[0] = "ActionButton", -- Action Bar 1 (page 1)
[10] = "ActionButton", -- Action Bar 1 (page 1, skyriding)
[1] = "ActionButton", -- Action Bar 1 (page 2)
[5] = "MultiBarBottomLeftButton", -- Action Bar 2
[4] = "MultiBarBottomRightButton", -- Action Bar 3
[2] = "MultiBarRightButton", -- Action Bar 4
[3] = "MultiBarLeftButton", -- Action Bar 5
[12] = "MultiBar5Button", -- Action Bar 6
[13] = "MultiBar6Button", -- Action Bar 7
[13] = "MultiBar6Button", -- Action Bar 7
[14] = "MultiBar7Button", -- Action Bar 8
}
local function SlotToActionButton(actionSlot)
local buttonPrefixIndex = math_floor(actionSlot/12)
local buttonIndex = actionSlot % 12
if buttonIndex == 0 then
buttonPrefixIndex = buttonPrefixIndex - 1
buttonIndex = 12
end
if not buttonPrefix[buttonPrefixIndex] then return nil end
return buttonPrefix[buttonPrefixIndex] .. buttonIndex
end
local hookedButton = {}
local hookedButtonScript = {} -- Store the hooked script reference for verification
local activeButton = {}
local function TrackPetActionButton(actionSlot)
local actionButtonName = SlotToActionButton(actionSlot)
local actionButton = _G[actionButtonName]
if not actionButton then
print(folderName, "error:", actionSlot, "has no action button. Should never happen!")
return
end
local actionType, id = GetActionInfo(actionSlot)
if actionType and actionType == "summonpet" then
-- print(actionSlot, id, C_PetJournal.GetPetInfoByPetID(id))
-- Check if hook was lost (button was recreated with same name but different frame)
local currentScript = actionButton:GetScript("OnClick")
if hookedButton[actionButton] and hookedButtonScript[actionButton] ~= currentScript then
hookedButton[actionButton] = nil
end
if not hookedButton[actionButton] then
actionButton:HookScript("OnClick", function(self, _, down)
if down then return end
if not activeButton[self] then return end
CheckPet()
end)
hookedButton[actionButton] = true
hookedButtonScript[actionButton] = actionButton:GetScript("OnClick")
end
activeButton[actionButton] = true
elseif activeButton[actionButton] then
activeButton[actionButton] = nil
end
end
local eventFrame = CreateFrame("Frame")
local function TrackAllPetActionButtons()
for actionSlot = 1, 72 do
TrackPetActionButton(actionSlot)
end
-- 73 to 120 are class specific.
for actionSlot = 121, 132 do
TrackPetActionButton(actionSlot)
end
-- 133 to 144 are unknown.
for actionSlot = 145, 180 do
TrackPetActionButton(actionSlot)
end
end
-- Some spells summon a pet, after which the addon should not resummon the previous pet.
local dismissCompanionSpells = {
[23012] = true, -- Orc Orphan Grunth (BC, Orgrimmar)
[23013] = true, -- Human Orphan Randis (BC, Stormwind)
[39478] = true, -- Blood Elf Orphan Salandria (BC, Shattrath)
[39479] = true, -- Draenei Orphan Dornaa (BC, Shattrath)
[65352] = true, -- Oracle Orphan Roo (Wrath, Dalaran)
[65353] = true, -- Wolvar Orphan Kekek (Wrath, Dalaran)
[282839] = true, -- Kul Tiran Orphan Liam (BfA, Boralus)
[283612] = true, -- Zandalari Orphan Azala (BfA, Dazar'alor)
[1228496] = true, -- Kobold Orphan Skibbles (TWW, Dornogal)
[1230149] = true, -- Arathi Orphan Destien (TWW, quest line)
[1230182] = true, -- Nerubian Orphan Theadis (TWW, quest line)
[1230184] = true, -- Goblin Orphan Kitzy (TWW, quest line)
}
local function EventFrameScript(self, event, ...)
if event == "BATTLE_PET_CURSOR_CLEAR"
or event == "PLAYER_ENTERING_WORLD"
or event == "EDIT_MODE_LAYOUTS_UPDATED"
or event == "ACTIONBAR_SLOT_CHANGED"
or event == "UPDATE_BONUS_ACTIONBAR" then
-- New slot is not ready immediately after the event.
C_Timer_After(0.1, TrackAllPetActionButtons)
elseif event == "UNIT_SPELLCAST_SUCCEEDED" then
local unit, _, spellId = ...
if unit == "player" then
if dismissCompanionSpells[spellId] then
if desiredCompanion then
desiredCompanion[playerName] = nil
end
return
end
if LP_config and LP_config.persistentCompanion_dismissWhileStealthed then
if stealthSpells[spellId] then
local petGUID = C_PetJournal_GetSummonedPetGUID()
if petGUID then
-- print("Entering stealth, dismissing pet:", petGUID)
C_PetJournal_DismissSummonedPet(petGUID, folderName)
end
end
end
end
elseif event == "PLAYER_REGEN_DISABLED" then
if LP_config and LP_config.persistentCompanion_dismissInCombat then
local petGUID = C_PetJournal_GetSummonedPetGUID()
-- print("Entering combat, dismissing pet.", petGUID)
if petGUID then
C_PetJournal_DismissSummonedPet(petGUID, folderName)
end
end
elseif event == "ADDON_LOADED" then
local addonName = ...
if addonName == "LudiusPlus" then
LP_desiredCompanion = LP_desiredCompanion or {}
LP_desiredCompanion[realmName] = LP_desiredCompanion[realmName] or {}
desiredCompanion = LP_desiredCompanion[realmName]
self:UnregisterEvent("ADDON_LOADED")
addon.SetupOrTeardownPersistentCompanion()
end
end
end
local function SetupPersistentCompanion()
-- print("SetupPersistentCompanion")
eventFrame:RegisterEvent("ACTIONBAR_SLOT_CHANGED")
eventFrame:RegisterEvent("BATTLE_PET_CURSOR_CLEAR")
eventFrame:RegisterEvent("EDIT_MODE_LAYOUTS_UPDATED")
eventFrame:RegisterEvent("PLAYER_ENTERING_WORLD")
if LP_config and LP_config.persistentCompanion_dismissInCombat then eventFrame:RegisterEvent("PLAYER_REGEN_DISABLED") end
if LP_config and LP_config.persistentCompanion_dismissWhileStealthed then eventFrame:RegisterEvent("UNIT_SPELLCAST_SUCCEEDED") end
eventFrame:RegisterEvent("UPDATE_BONUS_ACTIONBAR")
eventFrame:SetScript("OnEvent", EventFrameScript)
-- Track all pet action buttons
TrackAllPetActionButtons()
-- Start ticker
if tickerHandle then
tickerHandle:Cancel()
end
tickerHandle = C_Timer.NewTicker(1, ResummonPet)
-- Hook only once.
if not isHooked then
hooksecurefunc(C_PetJournal, "SummonPetByGUID", function(_, caller)
if caller ~= folderName then
CheckPet()
end
end)
hooksecurefunc(C_PetJournal, "DismissSummonedPet", function(_, caller)
if caller ~= folderName then
CheckPet()
end
end)
isHooked = true
end
end
local function TeardownPersistentCompanion()
-- print("TeardownPersistentCompanion")
eventFrame:UnregisterEvent("ACTIONBAR_SLOT_CHANGED")
eventFrame:UnregisterEvent("BATTLE_PET_CURSOR_CLEAR")
eventFrame:UnregisterEvent("EDIT_MODE_LAYOUTS_UPDATED")
eventFrame:UnregisterEvent("PLAYER_ENTERING_WORLD")
eventFrame:UnregisterEvent("PLAYER_REGEN_DISABLED")
eventFrame:UnregisterEvent("UNIT_SPELLCAST_SUCCEEDED")
eventFrame:UnregisterEvent("UPDATE_BONUS_ACTIONBAR")
eventFrame:SetScript("OnEvent", nil)
-- Stop ticker
if tickerHandle then
tickerHandle:Cancel()
tickerHandle = nil
end
end
function addon.SetupOrTeardownPersistentCompanion()
if LP_config and LP_config.persistentCompanion_enabled then
SetupPersistentCompanion()
else
TeardownPersistentCompanion()
end
end
-- Initialize when addon loads
eventFrame:RegisterEvent("ADDON_LOADED")
eventFrame:SetScript("OnEvent", EventFrameScript)