Back to Home

ESO Lua File v101042

ingame/endlessdungeon/endlessdungeonbufftracker_shared.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
ZO_ENDLESS_DUNGEON_BUFF_TRACKER_GRID_LIST_OFFSET_X = ZO_SCROLL_BAR_WIDTH * 0.5
ZO_ENDLESS_DUNGEON_BUFF_TRACKER_GRID_LIST_OFFSET_Y = 15
ZO_ENDLESS_DUNGEON_BUFF_TRACKER_GRID_LIST_MAX_ENTRY_ROWS = 5
ZO_EndlessDungeonBuffTracker_Shared = ZO_DeferredInitializingObject:Subclass()
function ZO_EndlessDungeonBuffTracker_Shared:Initialize(control)
    self.control = control
    control.object = self
    self.progressLabel = self.control:GetNamedChild("Progress")
    self.nextInstanceIntervalOffsetS = 0
    local scene = ZO_Scene:New(self:GetSceneName(), SCENE_MANAGER)
    self.scene = scene
    self.fragment = ZO_FadeSceneFragment:New(control)
    scene:AddFragment(self.fragment)
    -- AddOnLoaded is fired before DeferredInitialize will ever be called, so we have to do
    -- this here instead of in InitializeEvents.
    local function OnAddOnLoaded(_, name)
        if name == "ZO_Ingame" then
            self:UpdateProgress()
            EVENT_MANAGER:UnregisterForEvent(self:GetSceneName(), EVENT_ADD_ON_LOADED)
        end
    end
    EVENT_MANAGER:RegisterForEvent(self:GetSceneName(), EVENT_ADD_ON_LOADED, OnAddOnLoaded)
    ZO_DeferredInitializingObject.Initialize(self, scene)
end
function ZO_EndlessDungeonBuffTracker_Shared:OnDeferredInitialize()
end
function ZO_EndlessDungeonBuffTracker_Shared:InitializeControls()
    self.gridListControl = self.control:GetNamedChild("List")
    self.emptyLabel = self.control:GetNamedChild("Empty")
    self.titleLabel = self.control:GetNamedChild("Title")
    self.keybindContainer = self.control:GetNamedChild("KeybindContainer")
    self.switchToSummaryKeybindButton = self.keybindContainer:GetNamedChild("SwitchToSummary")
    self.closeKeybindButton = self.keybindContainer:GetNamedChild("Close")
end
function ZO_EndlessDungeonBuffTracker_Shared:InitializeGridList(gridEntryTemplateName, gridHeaderTemplateName)
    self.gridEntryTemplateName = gridEntryTemplateName
    self.gridHeaderTemplateName = gridHeaderTemplateName
end
function ZO_EndlessDungeonBuffTracker_Shared:InitializeKeybindStripDescriptor()
    self.switchToSummaryKeybindDescriptor =
    {
        -- Even though this is an ethereal keybind, the name will still be read during screen narration
        name = GetString(SI_ENDLESS_DUNGEON_BUFF_TRACKER_SWITCH_TO_SUMMARY_KEYBIND),
        keybind = "UI_SHORTCUT_TERTIARY",
        ethereal = true,
        narrateEthereal = function()
            return ENDLESS_DUNGEON_MANAGER:IsEndlessDungeonCompleted()
        end,
        etherealNarrationOrder = 1,
        callback = function()
            ENDLESS_DUNGEON_SUMMARY:Show()
        end,
        enabled = function()
            return ENDLESS_DUNGEON_MANAGER:IsEndlessDungeonCompleted()
        end,
    }
    self.closeKeybindDescriptor =
    {
        -- Even though this is an ethereal keybind, the name will still be read during screen narration
        name = GetString(SI_DIALOG_CLOSE),
        keybind = "TOGGLE_ENDLESS_DUNGEON_BUFF_TRACKER",
        ethereal = true,
        narrateEthereal = true,
        etherealNarrationOrder = 2,
        callback = function()
            SCENE_MANAGER:HideCurrentScene()
        end,
    }
    local backKeybindDescriptor = ZO_DeepTableCopy(KEYBIND_STRIP:GetDefaultGamepadBackButtonDescriptor())
    backKeybindDescriptor.ethereal = true
    backKeybindDescriptor.narrateEthereal = false
    self.keybindStripDescriptor =
    {
        -- Switch To Summary
        self.switchToSummaryKeybindDescriptor,
        -- Close
        self.closeKeybindDescriptor,
        -- Back
        backKeybindDescriptor,
    }
    self.switchToSummaryKeybindButton:SetKeybindButtonDescriptor(self.switchToSummaryKeybindDescriptor)
    self.closeKeybindButton:SetKeybindButtonDescriptor(self.closeKeybindDescriptor)
end
function ZO_EndlessDungeonBuffTracker_Shared:InitializeEvents()
    ENDLESS_DUNGEON_MANAGER:RegisterCallback("BuffStackCountChanged", ZO_GetCallbackForwardingFunction(self, self.OnBuffStackCountChanged))
    ENDLESS_DUNGEON_MANAGER:RegisterCallback("StateChanged", ZO_GetCallbackForwardingFunction(self, self.OnDungeonStateChanged))
    ENDLESS_DUNGEON_MANAGER:RegisterCallback("DungeonInitialized", self.UpdateProgress, self)
    self.refreshGroups = ZO_Refresh:New()
    self.refreshGroups:AddRefreshGroup("UpdateBuffs",
    {
        RefreshAll = function()
            self:UpdateGridList()
        end,
    })
    self.refreshGroups:RefreshAll("UpdateBuffs")
    self.control:SetHandler("OnUpdate", function()
        self.refreshGroups:UpdateRefreshGroups()
    end)
end
function ZO_EndlessDungeonBuffTracker_Shared.InitializeGridEntryControl(control)
    control.highlightTexture = control:GetNamedChild("Highlight")
    control.iconTexture = control:GetNamedChild("Icon")
    control.stackCountLabel = control:GetNamedChild("StackCount")
end
function ZO_EndlessDungeonBuffTracker_Shared.CompareGridEntries(left, right)
    return left.abilityId == right.abilityId
end
function ZO_EndlessDungeonBuffTracker_Shared:GetScene()
    return self.scene
end
function ZO_EndlessDungeonBuffTracker_Shared:GetNextInstanceIntervalOffsetS()
    local currentOffset = self.nextInstanceIntervalOffsetS
    self.nextInstanceIntervalOffsetS = (currentOffset + ZO_ENDLESS_DUNGEON_BUFF_GRID_ENTRY_ANIMATION_INTERVAL_OFFSET_S) % ZO_ENDLESS_DUNGEON_BUFF_GRID_ENTRY_ANIMATION_INTERVAL_OFFSET_MAX_S
    return currentOffset
end
function ZO_EndlessDungeonBuffTracker_Shared:SetupGridEntry(control, data)
    control.object = self
    control:Layout(data)
end
function ZO_EndlessDungeonBuffTracker_Shared.SetupGridHeader(control, data, selected)
end
function ZO_EndlessDungeonBuffTracker_Shared:ResetGridEntry(control)
    if self.focusGridEntry == control then
        self:SetGridEntryFocus(control, false)
    end
    control:Reset()
end
function ZO_EndlessDungeonBuffTracker_Shared:SetGridEntryFocus(control, isFocus)
    if self.focusGridEntry and self.focusGridEntry ~= control then
        self.focusGridEntry:SetHighlightHidden(true)
        self.focusGridEntry = nil
    end
    if control then
        if isFocus then
            self.focusGridEntry = control
        end
        control:SetHighlightHidden(not isFocus)
    end
end
function ZO_EndlessDungeonBuffTracker_Shared:UpdateKeybinds()
    local hideKeybind = not ENDLESS_DUNGEON_MANAGER:IsEndlessDungeonCompleted()
    self.switchToSummaryKeybindButton:SetHidden(hideKeybind)
    if hideKeybind then
        self.closeKeybindButton:SetAnchor(TOPLEFT)
    else
        self.closeKeybindButton:SetAnchor(TOPLEFT, self.switchToSummaryKeybindButton, TOPRIGHT, 40, 0)
    end
end
function ZO_EndlessDungeonBuffTracker_Shared:UpdateProgress()
    if ENDLESS_DUNGEON_MANAGER:IsEndlessDungeonStarted() then
        self.progressLabel:SetText(ENDLESS_DUNGEON_MANAGER:GetCurrentProgressionText())
    else
        self.progressLabel:SetText("")
    end
end
function ZO_EndlessDungeonBuffTracker_Shared.CompareBuffEntries(entry1, entry2)
    return entry1.abilityName < entry2.abilityName
end
function ZO_EndlessDungeonBuffTracker_Shared:AddGridListBuffEntries(buffType, headerName)
    local buffTable = ENDLESS_DUNGEON_MANAGER:GetAbilityStackCountTable(buffType)
    if not (buffTable and next(buffTable)) then
        -- No buffs.
        return 0
    end
    local gridEntryTemplateName = self.gridEntryTemplateName
    local gridHeaderTemplateName = self.gridHeaderTemplateName
    local buffEntries = {}
    for abilityId, stackCount in pairs(buffTable) do
        local abilityBuffType, isAvatarVision = GetAbilityEndlessDungeonBuffType(abilityId)
        local buffData =
        {
            abilityId = abilityId,
            abilityName = GetAbilityName(abilityId),
            buffType = abilityBuffType,
            iconTexture = GetAbilityIcon(abilityId),
            instanceIntervalOffset = self:GetNextInstanceIntervalOffsetS(),
            isAvatarVision = isAvatarVision,
            stackCount = stackCount,
        }
        local buffEntry = self.entryDataObjectPool:AcquireObject()
        buffEntry:SetDataSource(buffData)
        buffEntry.gridHeaderTemplate = gridHeaderTemplateName
        buffEntry.gridHeaderName = headerName
        table.insert(buffEntries, buffEntry)
    end
    local numBuffsAdded = #buffEntries
    if numBuffsAdded == 0 then
        return 0
    end
    table.sort(buffEntries, self.CompareBuffEntries)
    local gridList = self.gridList
    for _, buffEntry in ipairs(buffEntries) do
        gridList:AddEntry(buffEntry, gridEntryTemplateName)
    end
    return numBuffsAdded
end
function ZO_EndlessDungeonBuffTracker_Shared:UpdateGridList()
    -- Order matters:
    local gridList = self.gridList
    gridList:ClearGridList()
    self.entryDataObjectPool:ReleaseAllObjects()
    local numVerseEntries = self:AddGridListBuffEntries(ENDLESS_DUNGEON_BUFF_TYPE_VERSE, GetString(SI_ENDLESS_DUNGEON_SUMMARY_VERSES_HEADER))
    local numVisionEntries = self:AddGridListBuffEntries(ENDLESS_DUNGEON_BUFF_TYPE_VISION, GetString(SI_ENDLESS_DUNGEON_SUMMARY_VISIONS_HEADER))
    local isListEmpty = (numVerseEntries + numVisionEntries) == 0
    self.emptyLabel:SetHidden(not isListEmpty)
    gridList:CommitGridList()
end
function ZO_EndlessDungeonBuffTracker_Shared:OnBuffStackCountChanged(buffType, abilityId, stackCount, previousStackCount)
    self.refreshGroups:RefreshAll("UpdateBuffs")
end
function ZO_EndlessDungeonBuffTracker_Shared:OnDungeonStateChanged(newState, oldState)
    if self:IsShowing() then
        self:UpdateKeybinds()
    end
end
function ZO_EndlessDungeonBuffTracker_Shared:OnHiding()
    KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptor)
    KEYBIND_STRIP:RestoreDefaultExit()
    PlaySound(SOUNDS.ENDLESS_DUNGEON_BUFF_TRACKER_CLOSE)
end
function ZO_EndlessDungeonBuffTracker_Shared:OnShowing()
    PlaySound(SOUNDS.ENDLESS_DUNGEON_BUFF_TRACKER_OPEN)
end
function ZO_EndlessDungeonBuffTracker_Shared:OnShown()
    KEYBIND_STRIP:RemoveDefaultExit()
    KEYBIND_STRIP:AddKeybindButtonGroup(self.keybindStripDescriptor)
    -- ESO-851958: This is required to force the buff tracker to resize to fit decendents properly when shown as that doesn't always happen reliably
    self.titleLabel:SetText(GetString(SI_ENDLESS_DUNGEON_BUFF_TRACKER_TITLE))
    self:UpdateKeybinds()
    self.refreshGroups:UpdateRefreshGroups()
end
function ZO_EndlessDungeonBuffTracker_Shared.ToggleVisibility()
    if ENDLESS_DUNGEON_MANAGER:IsEndlessDungeonStarted() then
        if SYSTEMS:IsShowing("endlessDungeonBuffTracker") then
            SYSTEMS:HideScene("endlessDungeonBuffTracker")
        else
            SYSTEMS:ShowScene("endlessDungeonBuffTracker")
        end
    end
end
function ZO_EndlessDungeonBuffTracker_Shared:OnGridEntryMouseEnter()
    -- Can be overridden.
end
function ZO_EndlessDungeonBuffTracker_Shared:OnGridEntryMouseExit()
    -- Can be overridden.
end
ZO_EndlessDungeonBuffTracker_Shared:MUST_IMPLEMENT("GetSceneName")