Back to Home

ESO Lua File v101041

ingame/actionbar/abilityslot.lua

[◄ back to folders ]
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
--Uses ZO_SlotUtil.lua behavior
ABILITY_SLOT_TYPE_ACTIONBAR = 1
ABILITY_SLOT_TYPE_UTILITY = 2
local USE_BASE_ABILITY = true
function ZO_ActionSlot_SetupSlot(iconControl, buttonControl, icon, normalFrame, downFrame, cooldownIconControl, mouseOverTexture)
    iconControl:SetHidden(false)
    iconControl:SetTexture(icon)
    if cooldownIconControl then
        cooldownIconControl:SetTexture(icon)
    end
    if mouseOverTexture then
        buttonControl:SetMouseOverTexture(mouseOverTexture)
    end
    buttonControl:SetNormalTexture(normalFrame)
    buttonControl:SetPressedTexture(downFrame)
end
function ZO_ActionSlot_ClearSlot(iconControl, buttonControl, normalFrame, downFrame, cooldownIconControl, mouseOverTexture)
    iconControl:SetHidden(true)
    if cooldownIconControl then
        cooldownIconControl:SetHidden(true)
    end
    if mouseOverTexture then
        buttonControl:SetMouseOverTexture(mouseOverTexture)
    end
    buttonControl:SetNormalTexture(normalFrame)
    buttonControl:SetPressedTexture(downFrame)
end
function ZO_ActionSlot_SetUnusable(iconControl, unusable, useDesaturation)
    if unusable then
        if useDesaturation
        then
            iconControl:SetDesaturation(1)
            iconControl:SetColor(ZO_DEFAULT_ENABLED_COLOR:UnpackRGBA())
        else
            iconControl:SetDesaturation(0)
            iconControl:SetColor(ZO_DEFAULT_DISABLED_COLOR:UnpackRGBA())
        end
    else
        iconControl:SetDesaturation(0)
        iconControl:SetColor(ZO_DEFAULT_ENABLED_COLOR:UnpackRGBA())
    end
end
local function TryPlaceAction(abilitySlot)
    if(GetCursorContentType() ~= MOUSE_CONTENT_EMPTY)
    then
        local button = ZO_ActionBar_GetButton(abilitySlot.slotNum)
        if button then
            local slotNum = button:GetSlot()
            ZO_ActionBar_AttemptPlacement(slotNum)
            return true
        end
    end
end
local function TryPlaceUtilitySlotAction(utilitySlot)
    if GetCursorContentType() ~= MOUSE_CONTENT_EMPTY then
        ZO_ActionBar_AttemptPlacement(utilitySlot.slotNum, utilitySlot.object:GetHotbarCategory())
        return true
    end
end
local function TryPickupAction(abilitySlot)
    local lockedReason = GetActionBarLockedReason()
    if lockedReason == ACTION_BAR_LOCKED_REASON_COMBAT then
        ZO_Alert(UI_ALERT_CATEGORY_ERROR, SOUNDS.NEGATIVE_CLICK, GetString("SI_RESPECRESULT", RESPEC_RESULT_IS_IN_COMBAT))
        return false
    elseif lockedReason == ACTION_BAR_LOCKED_REASON_NOT_RESPECCABLE then
        ZO_Alert(UI_ALERT_CATEGORY_ERROR, SOUNDS.NEGATIVE_CLICK, GetString("SI_RESPECRESULT", RESPEC_RESULT_ACTIVE_HOTBAR_NOT_RESPECCABLE))
        return false
    end
    if abilitySlot.hotbarCategory ~= HOTBAR_CATEGORY_COMPANION then
        local button = ZO_ActionBar_GetButton(abilitySlot.slotNum, abilitySlot.hotbarCategory)
        if button then
            local slotNum = button:GetSlot()
            ZO_ActionBar_AttemptPickup(slotNum, abilitySlot.hotbarCategory)
            return true
        end
    end
end
local function TryPickupUtilitySlotAction(utilitySlot)
    ZO_ActionBar_AttemptPickup(utilitySlot.slotNum, utilitySlot.object:GetHotbarCategory())
    return true
end
local function ClearAbilitySlot(slotNum, hotbarCategory)
    local slotType = GetSlotType(slotNum, hotbarCategory)
    if slotType == ACTION_TYPE_ITEM then
        local soundCategory = GetSlotItemSound(slotNum, hotbarCategory)
        if soundCategory ~= ITEM_SOUND_CATEGORY_NONE then
            PlayItemSound(soundCategory, ITEM_SOUND_ACTION_UNEQUIP)
        end
    end
    ClearSlot(slotNum, hotbarCategory)
end
local function TryShowActionMenu(abilitySlot)
    if abilitySlot.hotbarCategory ~= HOTBAR_CATEGORY_COMPANION then
        local button = ZO_ActionBar_GetButton(abilitySlot.slotNum, abilitySlot.hotbarCategory)
        if button then
            local slotNum = button:GetSlot()
            if IsSlotUsed(slotNum, abilitySlot.hotbarCategory) and not IsActionSlotRestricted(slotNum, abilitySlot.hotbarCategory) then
                ClearMenu()
                AddMenuItem(GetString(SI_ABILITY_ACTION_CLEAR_SLOT), function() ClearAbilitySlot(slotNum, abilitySlot.hotbarCategory) end)
                ShowMenu(abilitySlot)
                return true
            end
        end
    end
end
local function TryShowUtilitySlotActionMenu(utilitySlot)
    local hotbarCategory = utilitySlot.object:GetHotbarCategory()
    if IsSlotUsed(utilitySlot.slotNum, hotbarCategory) and not IsActionSlotRestricted(utilitySlot.slotNum, hotbarCategory) then
        ClearMenu()
        AddMenuItem(GetString(SI_ABILITY_ACTION_CLEAR_SLOT), function() ClearAbilitySlot(utilitySlot.slotNum, hotbarCategory) end)
        ShowMenu(utilitySlot)
        return true
    end
end
local AbilityClicked =
{
    [ABILITY_SLOT_TYPE_ACTIONBAR] =
    {
        [MOUSE_BUTTON_INDEX_LEFT] =
        {
            function(abilitySlot) 
                return TryPlaceAction(abilitySlot)
            end,
        },
        [MOUSE_BUTTON_INDEX_RIGHT] =
        {
            function(abilitySlot)
                return TryShowActionMenu(abilitySlot)
            end,
        },
    },
    [ABILITY_SLOT_TYPE_UTILITY] =
    {
        [MOUSE_BUTTON_INDEX_LEFT] =
        {
            function(utilitySlot)
                return TryPlaceUtilitySlotAction(utilitySlot)
            end,
        },
        [MOUSE_BUTTON_INDEX_RIGHT] =
        {
            function(utilitySlot)
                return TryShowUtilitySlotActionMenu(utilitySlot)
            end,
        },
    }
}
function ZO_AbilitySlot_OnSlotClicked(abilitySlot, buttonId)
    return RunClickHandlers(AbilityClicked, abilitySlot, buttonId)
end
local function TryClearUtilitySlot(utilitySlot)
    local hotbarCategory = utilitySlot.object:GetHotbarCategory()
    if IsSlotUsed(utilitySlot.slotNum, hotbarCategory) and not IsActionSlotRestricted(utilitySlot.slotNum, hotbarCategory) then
        ClearSlot(utilitySlot.slotNum, hotbarCategory)
        return true
    end
end
local AbilityDoubleClicked =
{
    [ABILITY_SLOT_TYPE_UTILITY] =
    {
        [MOUSE_BUTTON_INDEX_LEFT] =
        {
            function(utilitySlot)
                return TryClearUtilitySlot(utilitySlot)
            end,
        },
    }
}
function ZO_AbilitySlot_OnSlotDoubleClicked(abilitySlot, buttonId)
    return RunClickHandlers(AbilityDoubleClicked, abilitySlot, buttonId)
end
local AbilityMouseUp =
{
}
function ZO_AbilitySlot_OnSlotMouseUp(abilitySlot, upInside, buttonId)
    return RunClickHandlers(AbilityMouseUp, abilitySlot, buttonId, upInside)
end
local AbilityMouseDown =
{
}
function ZO_AbilitySlot_OnSlotMouseDown(abilitySlot, buttonId)
    return RunClickHandlers(AbilityMouseDown, abilitySlot, buttonId)
end
local AbilityDragStart =
{
    [ABILITY_SLOT_TYPE_ACTIONBAR] =
    {
        function(abilitySlot)
            return TryPickupAction(abilitySlot)
        end,
    },
    [ABILITY_SLOT_TYPE_UTILITY] =
    {
        function(utilitySlot)
            return TryPickupUtilitySlotAction(utilitySlot)
        end,
    },
}
function ZO_AbilitySlot_OnDragStart(abilitySlot, button)
    local t = GetCursorContentType()
    if(t ~= MOUSE_CONTENT_EMPTY) then
        return false
    end
    return RunHandlers(AbilityDragStart, abilitySlot, button)
end
local AbilityReceiveDrag =
{
    [ABILITY_SLOT_TYPE_ACTIONBAR] =
    {
        function(abilitySlot)
            return TryPlaceAction(abilitySlot)
        end,
    },
    [ABILITY_SLOT_TYPE_UTILITY] =
    {
        function(utilitySlot)
            return TryPlaceUtilitySlotAction(utilitySlot)
        end,
    },
}
function ZO_AbilitySlot_OnReceiveDrag(abilitySlot, button)
    local t = GetCursorContentType()
    if(t == MOUSE_CONTENT_EMPTY) then
        return
    end
    return RunHandlers(AbilityReceiveDrag, abilitySlot, button)
end
local function AbilitySlotTooltipBaseInitialize(abilitySlot, tooltip, owner)
    abilitySlot.activeTooltip = tooltip
    InitializeTooltip(tooltip, owner, BOTTOM, 0, -5, TOP)
end
local function SetTooltipToActionBarSlot(tooltip, slotIndex, hotbarCategory)
    local slotType = GetSlotType(slotIndex, hotbarCategory)
    if slotType ~= ACTION_TYPE_NOTHING then
        tooltip:SetAction(slotIndex, hotbarCategory)
        return true
    end
    return false
end
local function TryShowActionBarTooltip(abilitySlot)
    local button = ZO_ActionBar_GetButton(abilitySlot.slotNum, abilitySlot.hotbarCategory)
    if button then
        local actionSlotIndex = button:GetSlot()
        if abilitySlot.hotbarCategory == HOTBAR_CATEGORY_QUICKSLOT_WHEEL then
            --this is a quickslot, use the quickslot path
            if GetSlotType(actionSlotIndex, abilitySlot.hotbarCategory) ~= ACTION_TYPE_NOTHING then
                AbilitySlotTooltipBaseInitialize(abilitySlot, ItemTooltip, abilitySlot)
                return SetTooltipToActionBarSlot(ItemTooltip, actionSlotIndex, abilitySlot.hotbarCategory)
            else
                ClearTooltip(ItemTooltip)
            end
        else
            local hotbar = abilitySlot.hotbarCategory and ACTION_BAR_ASSIGNMENT_MANAGER:GetHotbar(abilitySlot.hotbarCategory) or ACTION_BAR_ASSIGNMENT_MANAGER:GetCurrentHotbar()
            local slotData = hotbar:GetSlotData(actionSlotIndex)
            if slotData then
                -- This is an ability, use the slotData tooltip
                if abilitySlot.activeTooltip then
                    ClearTooltip(abilitySlot.activeTooltip)
                    abilitySlot.activeTooltip = nil
                end
                local tooltip = slotData:GetKeyboardTooltipControl()
                if tooltip then
                    AbilitySlotTooltipBaseInitialize(abilitySlot, tooltip, abilitySlot)
                    slotData:SetKeyboardTooltip(tooltip)
                end
            end
        end
    end
end
local function TryShowUtilitySlotTooltip(utilitySlot, tooltip, owner)
    local hotbarCategory = utilitySlot.object:GetHotbarCategory()
    if GetSlotType(utilitySlot.slotNum, hotbarCategory) ~= ACTION_TYPE_NOTHING then
        AbilitySlotTooltipBaseInitialize(utilitySlot, tooltip, owner)
        return SetTooltipToActionBarSlot(tooltip, utilitySlot.slotNum, hotbarCategory)
    else
        ClearTooltip(tooltip)
    end
end
local AbilityEnter =
{
    [ABILITY_SLOT_TYPE_ACTIONBAR] =
    {
        function(abilitySlot)
            return TryShowActionBarTooltip(abilitySlot)
        end,
    },
    [ABILITY_SLOT_TYPE_UTILITY] =
    {
        function(utilitySlot)
            utilitySlot.object:OnMouseOverUtilitySlot(utilitySlot)
            return TryShowUtilitySlotTooltip(utilitySlot, ItemTooltip, utilitySlot)
        end,
    },
}
function ZO_AbilitySlot_OnMouseEnter(abilitySlot)
    RunHandlers(AbilityEnter, abilitySlot)
end
local AbilityExit =
{
    [ABILITY_SLOT_TYPE_UTILITY] =
    {
        function(utilitySlot)
            utilitySlot.object:OnMouseExitUtilitySlot(utilitySlot)
        end,
    },
}
function ZO_AbilitySlot_OnMouseExit(abilitySlot)
    if(abilitySlot.activeTooltip) then
        ClearTooltip(abilitySlot.activeTooltip)
    end
    abilitySlot.activeTooltip = nil
    RunHandlers(AbilityExit, abilitySlot)
end