Back to Home

ESO Lua File v101041

internalingame/tribute/gamepad/tributepatronselection_gamepad.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
--------------
--Focus Grid--
--------------
ZO_TributePatronSelection_Gamepad_FocusArea_Grid = ZO_GamepadMultiFocusArea_Base:Subclass()
function ZO_TributePatronSelection_Gamepad_FocusArea_Grid:HandleMovement(horizontalResult, verticalResult)
    --Pipe directional input through to the grid list
    self.gridList:HandleMoveInDirection(horizontalResult, verticalResult)
    return true
end
function ZO_TributePatronSelection_Gamepad_FocusArea_Grid:CanBeSelected()
    return self.gridList:HasEntries()
end
function ZO_TributePatronSelection_Gamepad_FocusArea_Grid:HandleMovePrevious()
    local consumed = false
    return consumed
end
function ZO_TributePatronSelection_Gamepad_FocusArea_Grid:HandleMoveNext()
    local consumed = false
    return consumed
end
------------------
--Focus Drafted --
------------------
ZO_TributePatronSelection_Gamepad_FocusArea_Drafted = ZO_GamepadMultiFocusArea_Base:Subclass()
local PATRON_DRAFT_ID_ORDER =
{
    TRIBUTE_PATRON_DRAFT_ID_FIRST_PLAYER_FIRST_PICK,
    TRIBUTE_PATRON_DRAFT_ID_SECOND_PLAYER_FIRST_PICK,
    TRIBUTE_PATRON_DRAFT_ID_NEUTRAL,
    TRIBUTE_PATRON_DRAFT_ID_SECOND_PLAYER_SECOND_PICK,
    TRIBUTE_PATRON_DRAFT_ID_FIRST_PLAYER_SECOND_PICK,
}
function ZO_TributePatronSelection_Gamepad_FocusArea_Drafted:HandleMovement(horizontalResult, verticalResult)
    local newDraftId = self.currentDraftId
    local patronStalls = TRIBUTE:GetPatronStalls()
    local currentDraftIndex = ZO_IndexOfElementInNumericallyIndexedTable(PATRON_DRAFT_ID_ORDER, self.currentDraftId)
    if verticalResult == MOVEMENT_CONTROLLER_MOVE_NEXT then
        --Find the first patron stall with data following the currently selected stall
        for i = currentDraftIndex, #PATRON_DRAFT_ID_ORDER do
            if i > currentDraftIndex then
                local draftId = PATRON_DRAFT_ID_ORDER[i]
                local stall = patronStalls[draftId]
                if stall and stall:GetDataSource() then
                    newDraftId = draftId
                    break
                end
            end
        end
    elseif verticalResult == MOVEMENT_CONTROLLER_MOVE_PREVIOUS then
        --Find the first patron stall with data before the currently selected stall
        for i = currentDraftIndex, 1, -1 do
            if i < currentDraftIndex then
                local draftId = PATRON_DRAFT_ID_ORDER[i]
                local stall = patronStalls[draftId]
                if stall and stall:GetDataSource() then
                    newDraftId = draftId
                    break
                end
            end
        end
    end
    local HIGHLIGHT_PATRON = true
    self:SetDraftId(newDraftId, HIGHLIGHT_PATRON)
    return true
end
function ZO_TributePatronSelection_Gamepad_FocusArea_Drafted:CanBeSelected()
    --If any stalls have data we can select this focus area
    for _, patronStall in pairs(TRIBUTE:GetPatronStalls()) do
        if patronStall:GetDataSource() then
            return true
        end
    end
    return false
end
function ZO_TributePatronSelection_Gamepad_FocusArea_Drafted:HandleMovePrevious()
    local consumed = false
    return consumed
end
function ZO_TributePatronSelection_Gamepad_FocusArea_Drafted:HandleMoveNext()
    local consumed = false
    return consumed
end
function ZO_TributePatronSelection_Gamepad_FocusArea_Drafted:SetDraftId(draftId, doHighlight)
    if draftId ~= self.currentDraftId then
        self.currentDraftId = draftId
        if doHighlight then
            SetHighlightedTributePatron(self.currentDraftId)
        end
    end
end
function ZO_TributePatronSelection_Gamepad_FocusArea_Drafted:RefreshTooltips()
    local patronStalls = TRIBUTE:GetPatronStalls()
    if ZO_TRIBUTE_PATRON_SELECTION_MANAGER:ShouldShowGamepadTooltips() then
        patronStalls[self.currentDraftId]:ShowTooltip()
    else
        patronStalls[self.currentDraftId]:HideTooltip()
    end
end
local PATRON_TILE_GRID_PADDING_X = 12
-- 5 is the number of card slots in a row and 4 is the number of padded spaces between those cards
ZO_TRIBUTE_PATRON_SELECTION_GAMEPAD_HEADER_WIDTH = (ZO_TRIBUTE_PATRON_SELECTION_TILE_WIDTH_GAMEPAD * 5) + (PATRON_TILE_GRID_PADDING_X * 4)
ZO_TRIBUTE_PATRON_SELECTION_GAMEPAD_GRID_WIDTH = ZO_TRIBUTE_PATRON_SELECTION_GAMEPAD_HEADER_WIDTH + ZO_SCROLL_BAR_WIDTH
--TODO Tribute: Determine how much of this logic can be moved to shared
ZO_TributePatronSelection_Gamepad = ZO_Object.MultiSubclass(ZO_GamepadMultiFocusArea_Manager, ZO_TributePatronSelection_Shared)
function ZO_TributePatronSelection_Gamepad:Initialize(control)
    local TEMPLATE_DATA =
    {
        gridListClass = ZO_GridScrollList_Gamepad,
        patronEntryData =
        {
            entryTemplate = "ZO_TributePatronSelectionTile_Gamepad_Control",
            width = ZO_TRIBUTE_PATRON_SELECTION_TILE_WIDTH_GAMEPAD,
            height = ZO_TRIBUTE_PATRON_SELECTION_TILE_HEIGHT_GAMEPAD,
            gridPaddingX = PATRON_TILE_GRID_PADDING_X,
            gridPaddingY = 10,
        },
    }
    ZO_TributePatronSelection_Shared.Initialize(self, control, TEMPLATE_DATA)
    ZO_GamepadMultiFocusArea_Manager.Initialize(self)
    TRIBUTE_PATRON_SELECTION_GAMEPAD_FRAGMENT = ZO_FadeSceneFragment:New(control)
    TRIBUTE_PATRON_SELECTION_GAMEPAD_FRAGMENT:RegisterCallback("StateChange", function(oldState, newState)
        if newState == SCENE_FRAGMENT_SHOWN then
            CALLBACK_MANAGER:RegisterCallback("AllDialogsHidden", self.OnGamepadDialogHidden)
            CALLBACK_MANAGER:RegisterCallback("OnGamepadDialogShowing", self.OnGamepadDialogShowing)
            --TODO Tribute: Switch this to neutral once neutral patrons become a thing
            local DONT_HIGHLIGHT = false
            self.draftArea:SetDraftId(TRIBUTE_PATRON_DRAFT_ID_FIRST_PLAYER_FIRST_PICK, DONT_HIGHLIGHT)
            --Always start off with the grid focused
            self:SelectFocusArea(self.gridArea)
            --If there is a dialog showing, don't activate the focus yet
            if not ZO_Dialogs_IsShowingDialog() then
                self:ActivateCurrentFocus()
            end
            DIRECTIONAL_INPUT:Activate(self, self.control)
            KEYBIND_STRIP:AddKeybindButtonGroup(self.keybindStripDescriptor)
        elseif newState == SCENE_FRAGMENT_HIDING then
            CALLBACK_MANAGER:UnregisterCallback("AllDialogsHidden", self.OnGamepadDialogHidden)
            CALLBACK_MANAGER:UnregisterCallback("OnGamepadDialogShowing", self.OnGamepadDialogShowing)
            self:DeactivateCurrentFocus()
            DIRECTIONAL_INPUT:Deactivate(self)
            KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptor)
        end
    end)
    self.OnGamepadDialogHidden = function()
        self:ActivateCurrentFocus()
    end
    self.OnGamepadDialogShowing = function()
        self:DeactivateCurrentFocus()
    end
end
function ZO_TributePatronSelection_Gamepad:InitializeMultiFocusAreas()
    --Directional input is managed in this class instead of in the grid list
    local FOREGO_DIRECTIONAL_INPUT = true
    local function GridActivateCallback()
        self.gridList:Activate(FOREGO_DIRECTIONAL_INPUT)
    end
    local function GridDeactivateCallback()
        self.gridList:Deactivate(FOREGO_DIRECTIONAL_INPUT)
    end
    self.gridArea = ZO_TributePatronSelection_Gamepad_FocusArea_Grid:New(self, GridActivateCallback, GridDeactivateCallback)
    self.gridArea.gridList = self.gridList
    local function DraftedActivateCallback()
        SetHighlightedTributePatron(self.draftArea.currentDraftId)
    end
    local function DraftedDeactivateCallback()
        local draftId = self.draftArea.currentDraftId
        local patronStalls = TRIBUTE:GetPatronStalls()
        --We need to manually hide the tooltip, as waiting for the state change event to come back will cause a race condition with the grid list tooltip
        patronStalls[draftId]:HideTooltip()
        SetHighlightedTributePatron(nil)
    end
    self.draftArea = ZO_TributePatronSelection_Gamepad_FocusArea_Drafted:New(self, DraftedActivateCallback, DraftedDeactivateCallback)
    self.draftArea:SetKeybindDescriptor(self.draftedSectionKeybindStripDescriptor)
    self:AddNextFocusArea(self.gridArea)
    self:AddNextFocusArea(self.draftArea)
    self:SelectFocusArea(self.gridArea)
end
function ZO_TributePatronSelection_Gamepad:OnGridSelectionChanged(oldSelectedData, selectedData)
    -- Deselect previous tile
    if oldSelectedData and oldSelectedData.dataEntry then
        if oldSelectedData.dataEntry.control then
            oldSelectedData.dataEntry.control.object:SetSelected(false)
        end
        oldSelectedData.isSelected = false
    end
    -- Select newly selected tile.
    if selectedData and selectedData.dataEntry then
        if selectedData.dataEntry.control then
            selectedData.dataEntry.control.object:SetSelected(true)
        end
        selectedData.isSelected = true
    else
    end
end
----------------------------------
-- Functions Overridden From Base
----------------------------------
function ZO_TributePatronSelection_Gamepad:InitializeGridList()
    ZO_TributePatronSelection_Shared.InitializeGridList(self)
    self.gridList:SetScrollToExtent(true)
    self.gridList:SetOnSelectedDataChangedCallback(function(...) self:OnGridSelectionChanged(...) end)
end
function ZO_TributePatronSelection_Gamepad:InitializeControls()
    self.selectionText = self.control:GetNamedChild("SubHeaderText")
    self.divider = self.control:GetNamedChild("Divider")
    self.matchInfo = self.control:GetNamedChild("HeaderMatchInfo")
    self.timerContainer = self.control:GetNamedChild("HeaderTimer")
    self.timerText = self.timerContainer:GetNamedChild("Text")
end
function ZO_TributePatronSelection_Gamepad:InitializeKeybindStripDescriptors()
    self.keybindStripDescriptor =
    {
        alignment = KEYBIND_STRIP_ALIGN_CENTER,
        {
            name = GetString(SI_TRIBUTE_DECK_SELECTION_CONFIRM_ACTION),
            order = 2,
            keybind = "UI_SHORTCUT_SECONDARY",
            callback = function() 
                ZO_TRIBUTE_PATRON_SELECTION_MANAGER:ConfirmSelection() 
            end,
            enabled = function()
                return ZO_TRIBUTE_PATRON_SELECTION_MANAGER:GetSelectedPatron() ~= nil
            end,
            visible = function()
                return self:ShouldShowConfirm()
            end,
        },
        {
            name= function()
                if self:IsCurrentFocusArea(self.gridArea) then
                    return GetString(SI_TRIBUTE_DECK_SELECTION_GAMEPAD_VIEW_DRAFTED_PATRONS_ACTION)
                else
                    return GetString(SI_TRIBUTE_DECK_SELECTION_GAMEPAD_DRAFT_PATRONS_ACTION)
                end
            end,
            order = 4,
            keybind = "UI_SHORTCUT_QUATERNARY",
            callback = function()
                if self:IsCurrentFocusArea(self.gridArea) then
                    self:ActivateFocusArea(self.draftArea)
                else
                    self:ActivateFocusArea(self.gridArea)
                end
                KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
            end,
            visible = function()
                return self.draftArea:CanBeSelected()
            end,
        },
        {
            keybind = "UI_SHORTCUT_NEGATIVE",
            ethereal = true,
            callback = function()
              local NO_EVENT = nil
              local NOT_INTERCEPTING_CLOSE_ACTION = false
              TRIBUTE:RequestExitTribute(NO_EVENT, NOT_INTERCEPTING_CLOSE_ACTION)
            end,
        },
    }
    self.draftedSectionKeybindStripDescriptor =
    {
        alignment = KEYBIND_STRIP_ALIGN_CENTER,
        {
            name = GetString(SI_TRIBUTE_DECK_SELECTION_GAMEPAD_TOGGLE_TOOLTIPS_ACTION),
            order = 3,
            keybind = "UI_SHORTCUT_TERTIARY",
            callback = function()
                ZO_TRIBUTE_PATRON_SELECTION_MANAGER:ToggleShowGamepadTooltips()
                self.draftArea:RefreshTooltips()
            end,
        },
    }
end
function ZO_TributePatronSelection_Gamepad:CanShow()
    return IsInGamepadPreferredMode()
end
function ZO_TributePatronSelection_Gamepad:Show()
    local RESET_TO_TOP = true
    local DONT_RESELECT_DATA = false
    local ANIMATE_INSTANTLY = true
    self:RefreshGridList(RESET_TO_TOP, DONT_RESELECT_DATA, ANIMATE_INSTANTLY)
    SCENE_MANAGER:AddFragmentGroup(ZO_GAMEPAD_TRIBUTE_PATRON_SELECTION_FRAGMENT_GROUP)
end
function ZO_TributePatronSelection_Gamepad:Hide()
    SCENE_MANAGER:RemoveFragmentGroup(ZO_GAMEPAD_TRIBUTE_PATRON_SELECTION_FRAGMENT_GROUP)
end
-------------------------
-- Global XML Functions
-------------------------
    TRIBUTE_PATRON_SELECTION_GAMEPAD = ZO_TributePatronSelection_Gamepad:New(control)
end