ESO Lua File v100012

ingame/group/gamepad/zo_groupingtools_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
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
local LFG_BACKGROUND_TEXTURE_SQUARE_DIMENSION = 1024
local LFG_BACKGROUND_TEXTURE_USED_WIDTH = 940
ZO_LFG_BACKGROUND_TEXTURE_COORD_RIGHT = LFG_BACKGROUND_TEXTURE_USED_WIDTH / LFG_BACKGROUND_TEXTURE_SQUARE_DIMENSION
ZO_LFG_BACKGROUND_PADDING = 8
ZO_LFG_BACKGROUND_X = ZO_GAMEPAD_QUADRANT_2_3_WIDTH - 2 * ZO_LFG_BACKGROUND_PADDING
ZO_LFG_BACKGROUND_Y = ZO_LFG_BACKGROUND_X * LFG_BACKGROUND_TEXTURE_SQUARE_DIMENSION / LFG_BACKGROUND_TEXTURE_USED_WIDTH
--------------------------------------------
-- Grouping Tools Manager Gamepad
--------------------------------------------
local ACTIVITY_DOT_GAP = 24
local ACTIVITY_DOT_SELECTED_COLOR = ZO_ColorDef:New("FFFFFF")
local ACTIVITY_DOT_UNSELECTED_COLOR = ZO_ColorDef:New("888888")
local ENTRY_TYPE_ROLES = 1
local ENTRY_TYPE_LOCATION = 2
local ENTRY_TYPE_WORLD_SELECTOR = 3
local ENTRY_TYPE_AVA_SELECTOR = 4
local ENTRY_TYPE_WORLD_LOCATIONS_DROPDOWN = 5
local ENTRY_TYPE_AVA_GROUPSIZE_DROPDOWN = 6
local ACTIVITY_TYPE_TO_LOCATION_ICON = {
    [LFG_ACTIVITY_WORLD]            = "EsoUI/Art/LFG/Gamepad/LFG_activityIcon_world.dds",
    [LFG_ACTIVITY_AVA]              = "EsoUI/Art/LFG/Gamepad/LFG_activityIcon_ava.dds",
    [LFG_ACTIVITY_DUNGEON]          = "EsoUI/Art/LFG/Gamepad/LFG_activityIcon_normalDungeon.dds",
    [LFG_ACTIVITY_MASTER_DUNGEON]   = "EsoUI/Art/LFG/Gamepad/LFG_activityIcon_veteranDungeon.dds",
    [LFG_ACTIVITY_TRIAL]            = "EsoUI/Art/LFG/Gamepad/LFG_activityIcon_trial.dds",
}
local function CreateListEntry(data, entryType)
    local text = data.name
    local icon = ACTIVITY_TYPE_TO_LOCATION_ICON[data.activityType]
    
    local newEntry = ZO_GamepadEntryData:New(text, icon)
    newEntry:SetLocked(data.isLocked)
    newEntry:SetSelected(data.isSelected)
    newEntry.data = {
        data = data,
        entryType = entryType
    }
    newEntry:SetEnabled(not data.isLocked)
    newEntry:SetIconTintOnSelection(true)
    return newEntry
end
local ZO_GroupingToolsManager_Gamepad = ZO_Object.MultiSubclass(ZO_GroupingToolsManager_Shared, ZO_Gamepad_ParametricList_Screen)
function ZO_GroupingToolsManager_Gamepad:New(control)
    local manager = ZO_Object.New(self)
    manager:Initialize(control)
    return manager
end
function ZO_GroupingToolsManager_Gamepad:Initialize(control)
    ZO_GroupingToolsManager_Shared.Initialize(self, control)
    ZO_Gamepad_ParametricList_Screen.Initialize(self, control, ZO_GAMEPAD_HEADER_TABBAR_CREATE)
    GAMEPAD_GROUPING_TOOLS_SCENE = ZO_Scene:New("groupingToolsGamepad", SCENE_MANAGER)
    GAMEPAD_GROUPING_TOOLS_SCENE:RegisterCallback("StateChange",    function(oldState, newState)
                                                                if(newState == SCENE_SHOWING) then
                                                                    self:ClearUpdate()
                                                                    ZO_GamepadGenericHeader_Activate(self.header)
                                                                    self:SetActivitySelectorInQueueMode(IsCurrentlySearchingForGroup())
                                                                    SCENE_MANAGER:AddFragment(GAMEPAD_GROUP_ROLES_FRAGMENT)
                                                                elseif(newState == SCENE_HIDDEN) then
                                                                    self:CloseComboBoxes()
                                                                    self.mainList:Deactivate()
                                                                    ZO_GamepadGenericHeader_Deactivate(self.header)
                                                                    SCENE_MANAGER:RemoveFragment(GAMEPAD_GROUP_ROLES_FRAGMENT)
                                                                end
                                                                ZO_Gamepad_ParametricList_Screen.OnStateChanged(self, oldState, newState)
                                                            end)
    self.locationInfoControl = self.control:GetNamedChild("LocationInfo")
    self.listIndexMemory = {}
    CALLBACK_MANAGER:RegisterCallback("OnGroupStatusChange", function() self:RefreshHeader(self.activeHeaderData) end)
end
function ZO_GroupingToolsManager_Gamepad:InitializeHeader()
    local function OnActivityChanged(newActivityIndex)
        if self.selectedActivityIndex ~= newActivityIndex then
            self.selectedActivityIndex = newActivityIndex
            self:RefreshLocationsList()
        end
    end
    self.tabsTable= {}
    for i = 1, #self.activitiesData do
        local data = {
            text = self.activitiesData[i].name,
            callback = function() OnActivityChanged(i) end,
        }
        table.insert(self.tabsTable, data)
    end
    self.mainHeaderData = {
        tabBarEntries = self.tabsTable
    }
    self.queueHeaderData = {
        titleText = GetString(SI_GAMEPAD_LFG_QUEUED_ACTIVITIES),
    }
    ZO_GamepadGenericHeader_SetDataLayout(self.header, ZO_GAMEPAD_HEADER_LAYOUTS.DATA_PAIRS_TOGETHER)
    ZO_GamepadGenericHeader_Refresh(self.header, self.mainHeaderData)
    self.activeHeaderData = self.mainHeaderData
end
function ZO_GroupingToolsManager_Gamepad:RefreshHeader(headerData)
    GAMEPAD_GENERIC_FOOTER:Refresh(GAMEPAD_GROUP_DATA:GetFooterData())
end
function ZO_GroupingToolsManager_Gamepad:RefreshQueuedActivities()
    self.mainList:Clear()
    --Get the number of requests. For LFM searches, this actually returns the number of separate role requests.
    local numRequests = GetNumLFGRequests()
    --If searching for members, avoid showing an entry for every position we're looking to fill
    if IsUnitGrouped("player") then
        numRequests = 1
    end
    local requestsByActivity = {
        [LFG_ACTIVITY_WORLD] = {},
        [LFG_ACTIVITY_AVA] = {},
        [LFG_ACTIVITY_DUNGEON] = {},
        [LFG_ACTIVITY_MASTER_DUNGEON] = {},
        [LFG_ACTIVITY_TRIAL] = {},
    }
    for i = 1, numRequests do
        local activityType, lfgIndex = GetLFGRequestInfo(i)
        table.insert(requestsByActivity[activityType], lfgIndex)
    end
    for activityIndex = 1, #self.activitiesData do
        local activityType = self.activitiesData[activityIndex].type
        if self:IsAllOptionSelected(activityType) then
            local location = self.locationsData[activityType][LFG_LOCATIONS_ALL_INDEX]
            local entryData = CreateListEntry(location, ENTRY_TYPE_LOCATION)
            entryData.header = self.activitiesData[activityIndex].name
            self.mainList:AddEntryWithHeader("ZO_GroupingToolsGamepadLocationEntry", entryData)
        else
            local lfgIndices = requestsByActivity[activityType]
            local isFirstEntry = true
            for index = 1, #lfgIndices do
                local location = self:GetLocationFromLFGIndex(activityType, lfgIndices[index])
                local entryData = CreateListEntry(location, ENTRY_TYPE_LOCATION)
                if isFirstEntry then
                    isFirstEntry = false
                    entryData.header = self.activitiesData[activityIndex].name
                    self.mainList:AddEntryWithHeader("ZO_GroupingToolsGamepadLocationEntry", entryData)
                else
                    self.mainList:AddEntry("ZO_GroupingToolsGamepadLocationEntry", entryData)
                end
            end
        end
    end
    self.mainList:Commit()
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GroupingToolsManager_Gamepad:SetActivitySelectorInQueueMode(isSearching)
    if isSearching then
        self:RefreshHeader(self.queueHeaderData)
        self.activeHeaderData = self.queueHeaderData
    else
        self:RefreshHeader(self.mainHeaderData)
        self.activeHeaderData = self.mainHeaderData
    end
end
local function SetupCustomControlAnchors(control, anchorControl, offsetY)
    local anchor1 = ZO_Anchor:New(TOPLEFT, anchorControl, BOTTOMLEFT)
    local anchor2 = ZO_Anchor:New(TOPRIGHT, anchorControl, BOTTOMRIGHT, 0, offsetY)
    anchor1:AddToControl(control)
    anchor2:AddToControl(control)
end
function ZO_GroupingToolsManager_Gamepad:RefreshLocationInfo(location)
    local isNotAvALocation = location.activityType ~= LFG_ACTIVITY_AVA
    local locationInfoControl = self.locationInfoControl
    locationInfoControl:GetNamedChild("Name"):SetText(location.name)
    locationInfoControl:GetNamedChild("Background"):SetTexture(location.descriptionTextureGamepad)
    local descriptionControl = locationInfoControl:GetNamedChild("Description")
    descriptionControl:SetText(location.description)
    local groupSizeControl = locationInfoControl:GetNamedChild("GroupSize")
    if location.groupType then
        groupSizeControl:SetText(zo_strformat(SI_LFG_LOCATION_GROUP_SIZE, ZO_GROUP_TYPE_TO_SIZE[location.groupType]))
    else
        groupSizeControl:SetText("")
    end
    local campaignControl = locationInfoControl:GetNamedChild("Campaign")
    campaignControl:SetHidden(isNotAvALocation)
    if not isNotAvALocation then
        campaignControl:GetNamedChild("Text"):SetText(self.currentCampaignName)
        local indicator = campaignControl:GetNamedChild("Indicator")
        local text = campaignControl:GetNamedChild("Text")
        local offsetX = select(5, text:GetAnchor(0))
        text:SetWidth(campaignControl:GetWidth() - indicator:GetTextWidth() - offsetX)
        campaignControl:SetHeight(zo_max(indicator:GetTextHeight(), text:GetTextHeight()))
    end
    local anchorControl = isNotAvALocation and groupSizeControl or campaignControl
    local lockControl = locationInfoControl:GetNamedChild("Lock")
    lockControl:SetHidden(not location.isLocked)
    if location.isLocked then
        lockControl:GetNamedChild("Reason"):SetText(location.lockReasonText)
        SetupCustomControlAnchors(lockControl, anchorControl, 48)
        local icon = lockControl:GetNamedChild("Icon")
        local text = lockControl:GetNamedChild("Reason")
        local offsetX = select(5, text:GetAnchor(0))
        text:SetWidth(lockControl:GetWidth() - icon:GetWidth() - offsetX)
        lockControl:SetHeight(zo_max(icon:GetHeight(), text:GetTextHeight()))
    end
end
local function AddEntryToComboBox(comboBox, data, entryType, callback)
    local text = data.name
    local newEntry = comboBox:CreateItemEntry(text, callback)
    newEntry.data = {
        data = data,
        entryType = entryType,
    }
    comboBox:AddItem(newEntry)
end
--ZO_Gamepad_ParametricList_Screen overrides
function ZO_GroupingToolsManager_Gamepad:SetupList(list)
    local function OnWorldDropdownEntryChosen(locationData)
        self.worldSelector:SetSelectedLocation(locationData)
        self.selectedWorldGroupLocation = self.worldLocationsDropdown:GetSelectedItemData()
    end
    local function OnGroupSizeDropdownEntryChosen(groupSizeData)
        self.avaSelector:SetGroupType(groupSizeData.groupType)
        self.avaSelector:SetSelectedLocation(groupSizeData)
        self.selectedGroupSize = self.groupSizeDropdown:GetSelectedItemData()
        self:RefreshLocationInfo(self.avaSelector:GetDisplayData())
    end
    local function WorldLocationsComboBoxSetup(dropdown)
        dropdown:SetSortsItems(false) 
        dropdown:ClearItems()
        local locations = self.worldSelector:GetLocations()
        for i = 1, #locations do
            local locationData = locations[i]
            if locationData.playerMeetsRequirements then
                AddEntryToComboBox(dropdown, locationData, ENTRY_TYPE_LOCATION, function() OnWorldDropdownEntryChosen(locationData) end)
            end
        end
        self.worldLocationsDropdown = dropdown
        local canSelectGroup
        if self.selectedWorldGroupLocation then
            canSelectGroup = dropdown:TrySelectItemByData(self.selectedWorldGroupLocation)
        end
        if not self.selectedWorldGroupLocation or not canSelectGroup then
            dropdown:SelectFirstItem()
            self.selectedWorldGroupLocation = dropdown:GetSelectedItemData()
        end
    end
    local function GroupSizeComboBoxSetup(dropdown)
        dropdown:SetSortsItems(false)
        dropdown:ClearItems()
        local locations = self.avaSelector:GetLocations()
        for i = 1, #locations do
            local locationData = locations[i]
            AddEntryToComboBox(dropdown, locationData, ENTRY_TYPE_LOCATION, function() OnGroupSizeDropdownEntryChosen(locationData) end)
        end
        self.groupSizeDropdown = dropdown
        local canSelectGroup
        if self.selectedGroupSize then
            canSelectGroup = dropdown:TrySelectItemByData(self.selectedGroupSize)
        end
        if not self.selectedGroupSize or not canSelectGroup then
            dropdown:SelectFirstItem()
            self.selectedGroupSize = dropdown:GetSelectedItemData()
        end
    end
    local function SetupDropdownEntry(control, data, selected, selectedDuringRebuild, enabled, activated)
        ZO_SharedGamepadEntry_OnSetup(control, data, selected, selectedDuringRebuild, enabled, active)
        
        local entryType = data.data.entryType
        if entryType == ENTRY_TYPE_WORLD_LOCATIONS_DROPDOWN then
            WorldLocationsComboBoxSetup(control.dropdown)
        elseif entryType == ENTRY_TYPE_AVA_GROUPSIZE_DROPDOWN then
            GroupSizeComboBoxSetup(control.dropdown)
        end
    end
    list:AddDataTemplateWithHeader("ZO_GroupingToolsGamepadLocationEntry", ZO_SharedGamepadEntry_OnSetup, ZO_GamepadMenuEntryTemplateParametricListFunction, nil, "ZO_GamepadMenuEntryHeaderTemplate")
    list:AddDataTemplateWithHeader("ZO_Gamepad_Dropdown_Item_Indented", SetupDropdownEntry, ZO_GamepadMenuEntryTemplateParametricListFunction, nil, "ZO_GamepadMenuEntryHeaderTemplate")
    local function OnSelectionChanged(list, entry, oldData, reachedTarget, index)
        if entry then
            local entryData = entry.data
            local entryType = entryData.entryType
            if entryType == ENTRY_TYPE_ROLES then
                SCENE_MANAGER:RemoveFragment(GAMEPAD_NAV_QUADRANT_2_3_BACKGROUND_FRAGMENT)
                SCENE_MANAGER:RemoveFragment(GAMEPAD_GROUPING_TOOLS_LOCATION_INFO_FRAGMENT)
                
                SCENE_MANAGER:AddFragment(GAMEPAD_NAV_QUADRANT_2_BACKGROUND_FRAGMENT)
                GAMEPAD_GROUP_ROLES_BAR:Activate()
                local activityType = self.activitiesData[self.selectedActivityIndex].type
                self.listIndexMemory[activityType] = index
            else
                GAMEPAD_GROUP_ROLES_BAR:Deactivate()
                SCENE_MANAGER:RemoveFragment(GAMEPAD_NAV_QUADRANT_2_BACKGROUND_FRAGMENT)
                
                SCENE_MANAGER:AddFragment(GAMEPAD_NAV_QUADRANT_2_3_BACKGROUND_FRAGMENT)
                SCENE_MANAGER:AddFragment(GAMEPAD_GROUPING_TOOLS_LOCATION_INFO_FRAGMENT)
                if entryType == ENTRY_TYPE_LOCATION then
                    local locationData = entryData.data
                    self:RefreshLocationInfo(locationData)
                    if not IsCurrentlySearchingForGroup() then
                        self.listIndexMemory[locationData.activityType] = index
                    end
                elseif entryType == ENTRY_TYPE_WORLD_SELECTOR or entryType == ENTRY_TYPE_WORLD_LOCATIONS_DROPDOWN then
                    self:RefreshLocationInfo(self.worldSelector:GetDisplayData())
                    self.listIndexMemory[LFG_ACTIVITY_WORLD] = index
                elseif entryType == ENTRY_TYPE_AVA_SELECTOR or entryType == ENTRY_TYPE_AVA_GROUPSIZE_DROPDOWN then
                    self:RefreshLocationInfo(self.avaSelector:GetDisplayData())
                    self.listIndexMemory[LFG_ACTIVITY_AVA] = index
                end
            end
            KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
        end
    end
    local listControl = list.control
    local _, point1, relativeTo1, relativePoint1, offsetX1, offsetY1 = listControl:GetAnchor(0)
    local _, point2, relativeTo2, relativePoint2, offsetX2, offsetY2 = listControl:GetAnchor(1)
    listControl:ClearAnchors()
    listControl:SetAnchor(point1, relativeTo1, relativePoint1, offsetX1, offsetY1 + ZO_ROLES_BAR_ADDITIONAL_HEADER_SPACE)
    listControl:SetAnchor(point2, relativeTo2, relativePoint2, offsetX2, offsetY2)
    self.mainList = list
end
function ZO_GroupingToolsManager_Gamepad:InitializeKeybindStripDescriptors()
    local function IsCurrentLocationEditable()
        if IsCurrentlySearchingForGroup() then
            return false
        end
        local data = self.mainList:GetTargetData().data
        local type = data.entryType
        if type == ENTRY_TYPE_ROLES then
            return true
        elseif type == ENTRY_TYPE_LOCATION then
            local locationData = data.data
            return (locationData.isAllOption or not self:IsAllOptionSelected(locationData.activityType)) and not locationData.isLocked
        elseif type == ENTRY_TYPE_WORLD_SELECTOR then
            return not self.worldSelector:IsLocked()
        elseif type == ENTRY_TYPE_AVA_SELECTOR then
            return not self.avaSelector:IsLocked()
        elseif type == ENTRY_TYPE_WORLD_LOCATIONS_DROPDOWN or data.entryType == ENTRY_TYPE_AVA_GROUPSIZE_DROPDOWN then
            return true
        end
        return false
    end
    local function OnEntryInputSelected()
        local data = self.mainList:GetTargetData().data
        local locationData = data.data
        local type = data.entryType
        if type == ENTRY_TYPE_ROLES then
            local wasRoleSelected = GAMEPAD_GROUP_ROLES_BAR:IsRoleSelected()
            GAMEPAD_GROUP_ROLES_BAR:ToggleSelected()
            local isRoleSelected = GAMEPAD_GROUP_ROLES_BAR:IsRoleSelected()
            if wasRoleSelected ~= isRoleSelected then
                self:ClearUpdate() --no events for updated roles, so update here for locking on no roles selected
            end
        elseif type == ENTRY_TYPE_LOCATION then
            self:ToggleLocationSelected(locationData)
            PlaySound(SOUNDS.DEFAULT_CLICK)
        elseif type == ENTRY_TYPE_WORLD_SELECTOR then
            self:ToggleSelectorSelected(self.worldSelector)
            PlaySound(SOUNDS.DEFAULT_CLICK)
        elseif type == ENTRY_TYPE_AVA_SELECTOR then
            self:ToggleSelectorSelected(self.avaSelector)
            PlaySound(SOUNDS.DEFAULT_CLICK)
        elseif type == ENTRY_TYPE_WORLD_LOCATIONS_DROPDOWN then
            self.worldLocationsDropdown:Activate()
            self.worldLocationsDropdown:HighlightSelectedItem()
        elseif type == ENTRY_TYPE_AVA_GROUPSIZE_DROPDOWN then
            self.groupSizeDropdown:Activate()
            self.groupSizeDropdown:HighlightSelectedItem()
        end
    end
    local selectDescriptor = {
        name = GetString(SI_GAMEPAD_SELECT_OPTION),
        keybind = "UI_SHORTCUT_PRIMARY",
        callback = OnEntryInputSelected,
        visible = IsCurrentLocationEditable,
    }
    local toggleQueueDescriptor = {
        name = 
            function()
                local textEnum = (IsCurrentlySearchingForGroup() and SI_LFG_LEAVE_QUEUE) or SI_LFG_JOIN_QUEUE
                return GetString(textEnum)
            end,
        keybind = "UI_SHORTCUT_SECONDARY",
        callback =
            function()
                if IsCurrentlySearchingForGroup() then
                    ZO_Dialogs_ShowGamepadDialog("LFG_LEAVE_QUEUE_CONFIRMATION")
                else
                    self:StartSearch()
                    PlaySound(SOUNDS.DIALOG_ACCEPT)
                end
            end,
        visible =
            function()
                local queueCanBeToggled = IsCurrentlySearchingForGroup() or self:IsAnyLocationSelected()
                local playerCanToggleQueue = IsUnitGroupLeader("player") or not IsUnitGrouped("player")
                return queueCanBeToggled and playerCanToggleQueue
            end,
    }
    self.keybindStripDescriptor = {
        alignment = KEYBIND_STRIP_ALIGN_LEFT,
        selectDescriptor,
        toggleQueueDescriptor,
        editRolesDescriptor,
    }
    ZO_Gamepad_AddBackNavigationKeybindDescriptors(self.keybindStripDescriptor, GAME_NAVIGATION_TYPE_BUTTON)
    ZO_Gamepad_AddListTriggerKeybindDescriptors(self.keybindStripDescriptor, self.mainList)
end
function ZO_GroupingToolsManager_Gamepad:PerformUpdate()
    self.dirty = false
end
--ZO_GroupingToolsManager_Shared overrides
function ZO_GroupingToolsManager_Gamepad:OnGroupingToolsStatusUpdate(isSearching)
    ZO_GroupingToolsManager_Shared.OnGroupingToolsStatusUpdate(self, isSearching)
    if not self.control:IsControlHidden() then
        self:SetActivitySelectorInQueueMode(isSearching)
        KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
    end
end
function ZO_GroupingToolsManager_Gamepad:OnLevelUpdate(unitTag)
    ZO_GroupingToolsManager_Shared.OnLevelUpdate(self, unitTag)
end
function ZO_GroupingToolsManager_Gamepad:RefreshLocationsList()
    if not SCENE_MANAGER:IsShowing("groupingToolsGamepad") then
        return
    end
    if IsCurrentlySearchingForGroup() then
        self:RefreshQueuedActivities()
        return
    end
    self.mainList:Clear()
    self.mainList:AddEntry("ZO_GroupingToolsGamepadLocationEntry", CreateListEntry({}, ENTRY_TYPE_ROLES))
    local selectedActivity = self.activitiesData[self.selectedActivityIndex]
    local activityType = selectedActivity.type
    local locationsByActivity = self.locationsData[activityType]
    if activityType == LFG_ACTIVITY_WORLD then
        local entryData = CreateListEntry(self.worldSelector, ENTRY_TYPE_WORLD_SELECTOR)
        self.mainList:AddEntry("ZO_GroupingToolsGamepadLocationEntry", entryData)
        if self.worldSelector:IsSelected() then
            local dropdownData = {
                entryType = ENTRY_TYPE_WORLD_LOCATIONS_DROPDOWN,
            }
            local newEntry = ZO_GamepadEntryData:New()
            newEntry.data = dropdownData
            newEntry.header = GetString(SI_LFG_WORLD_LOCATIONS_HEADER)
            self.mainList:AddEntryWithHeader("ZO_Gamepad_Dropdown_Item_Indented", newEntry)
        end
    elseif activityType == LFG_ACTIVITY_AVA then
        local entryData = CreateListEntry(self.avaSelector, ENTRY_TYPE_AVA_SELECTOR)
        self.mainList:AddEntry("ZO_GroupingToolsGamepadLocationEntry", entryData)
        if self.avaSelector:IsSelected() then
            local dropdownData = {
                entryType = ENTRY_TYPE_AVA_GROUPSIZE_DROPDOWN,
            }
            local newEntry = ZO_GamepadEntryData:New()
            newEntry.data = dropdownData
            newEntry.header = GetString(SI_LFG_GROUP_SIZE_LIST_HEADER)
            self.mainList:AddEntryWithHeader("ZO_Gamepad_Dropdown_Item_Indented", newEntry)
        end
    else
        for i = 1, #locationsByActivity do
            local location = locationsByActivity[i]
            self.mainList:AddEntry("ZO_GroupingToolsGamepadLocationEntry", CreateListEntry(location, ENTRY_TYPE_LOCATION))
            --Don't continue to add individual locations when the all option is selected
            if location.isSelected and location.isAllOption then
                break
            end
        end
    end
    self.mainList:SetSelectedIndex(self.listIndexMemory[activityType] or 2) --don't select roles by default
    self.mainList:Commit()
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GroupingToolsManager_Gamepad:CloseComboBoxes()
    if self.worldLocationsDropdown and self.worldLocationsDropdown:IsActive() then
        self.worldLocationsDropdown:Deactivate()
    elseif self.groupSizeDropdown and self.groupSizeDropdown:IsActive() then
        self.groupSizeDropdown:Deactivate()
    end
end
function ZO_GroupingToolsManager_Gamepad:ClearSelections()
    ZO_GroupingToolsManager_Shared.ClearSelections(self)
end
--XML Callbacks
    GROUPING_TOOLS_GAMEPAD = ZO_GroupingToolsManager_Gamepad:New(self)
end