Back to Home

ESO Lua File v101041

ingame/groupfinder/gamepad/groupfinder_additionalfilters_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
--------------------------------------------------------------
-- ZO_GroupFinder_AdditionalFilters_Gamepad
--------------------------------------------------------------
ZO_GroupFinder_AdditionalFilters_Gamepad = ZO_GroupFinder_AdditionalFilters_Shared:Subclass()
function ZO_GroupFinder_AdditionalFilters_Gamepad:Initialize()
    ZO_GroupFinder_AdditionalFilters_Shared.Initialize(self)
end
function ZO_GroupFinder_AdditionalFilters_Gamepad:InitializeFiltersDialog()
    local function setupFunction(dialog)
        ZO_GenericGamepadDialog_RefreshText(dialog, GetString(SI_GROUP_FINDER_FILTERS_TITLE))
        if not dialog.dropdowns then
            dialog.dropdowns = {}
        end
        dialog:setupFunc()
    end
    local function OnReleaseDialog(dialog)
        if dialog.dropdowns then
            for _, dropdown in ipairs(dialog.dropdowns) do
                dropdown:Deactivate()
            end
        end
        dialog.dropdowns = nil
    end
    ZO_Dialogs_RegisterCustomDialog("GROUP_FINDER_ADDITIONAL_FILTERS_GAMEPAD",
    {
        gamepadInfo =
        {
            dialogType = GAMEPAD_DIALOGS.PARAMETRIC,
        },
        setup = setupFunction,
        finishedCallback = function()
            GROUP_FINDER_SEARCH_RESULTS_LIST_SCREEN_GAMEPAD:RefreshCategory()
        end,
        parametricList = self:BuildFiltersList(),
        blockDialogReleaseOnPress = true,
        buttons =
        {
            {
                keybind = "DIALOG_PRIMARY",
                text = SI_GAMEPAD_SELECT_OPTION,
                callback = function(dialog)
                    local targetData = dialog.entryList:GetTargetData()
                    if targetData and targetData.callback then
                        targetData.callback(dialog)
                    end
                end,
                enabled = function(dialog)
                    local enabled = true
                    local targetData = dialog.entryList:GetTargetData()
                    if targetData then
                        if type(targetData.enabled) == "function" then
                            enabled = targetData.enabled(dialog)
                        else
                            enabled = targetData.enabled
                        end
                    end
                    return enabled
                end,
            },
            {
                keybind = "DIALOG_NEGATIVE",
                text = SI_DIALOG_CANCEL,
                callback = function(dialog)
                    CancelGroupFinderFilterOptionsChanges()
                    ZO_Dialogs_ReleaseDialogOnButtonPress("GROUP_FINDER_ADDITIONAL_FILTERS_GAMEPAD")
                end,
            },
            {
                keybind = "DIALOG_SECONDARY",
                text = SI_DIALOG_CONFIRM,
                callback = function(dialog)
                    ZO_Dialogs_ReleaseDialogOnButtonPress("GROUP_FINDER_ADDITIONAL_FILTERS_GAMEPAD")
                    GROUP_FINDER_SEARCH_RESULTS_LIST_SCREEN_GAMEPAD:RefreshFooter()
                    GROUP_FINDER_SEARCH_MANAGER:ExecuteSearch()
                end,
            },
            {
                keybind = "DIALOG_RESET",
                text = SI_GROUP_FINDER_FILTERS_RESET,
                enabled = function(dialog)
                    -- TODO GroupFinder: Check to see if filters are already default
                    return true
                end,
                callback = function(dialog)
                    ResetGroupFinderFilterOptionsToDefault()
                    self:Refresh()
                    -- Re-narrate the selection when the filters are reset
                    SCREEN_NARRATION_MANAGER:QueueDialog(dialog)
                    dialog.info.setup(dialog)
                end,
            },
        },
        onHidingCallback = OnReleaseDialog,
        noChoiceCallback = OnReleaseDialog,
    })
end
function ZO_GroupFinder_AdditionalFilters_Gamepad:ShowDialog()
    ZO_Dialogs_ShowGamepadDialog("GROUP_FINDER_ADDITIONAL_FILTERS_GAMEPAD")
end
function ZO_GroupFinder_AdditionalFilters_Gamepad:OnSecondarySelection(dropdown, selectedDataName, selectedData)
    ZO_GroupFinder_AdditionalFilters_Shared.OnSecondarySelection(self, dropdown, selectedDataName, selectedData)
    for i = 1, GetGroupFinderFilterNumSecondaryOptions() do
        local _, isSet = GetGroupFinderFilterSecondaryOptionByIndex(i)
        if isSet then
            dropdown:SetItemIndexSelected(i)
        end
    end
end
function ZO_GroupFinder_AdditionalFilters_Gamepad:Refresh()
    local IGNORE_CALLBACK = true
    local category = GetGroupFinderFilterCategory()
    local categoryIndex = category + 1 -- Category Enum starts at 0 so index will always be one greater than value.
    if self.categoryDropdown then
        self.categoryDropdown:SelectItemByIndex(categoryIndex, IGNORE_CALLBACK)
    end
    -- We can't guarantee these will stay the same when we rebuild the list, so clear them out to avoid
    -- cross-contamination.
    self.categoryDropdown = nil
    self.primaryOptionDropdownSingleSelect = nil
    self.primaryOptionDropdown = nil
    self.secondaryOptionDropdown = nil
    self.sizeDropdown = nil
    self.playstyleDropdown = nil
    self.championCheckbox = nil
    self.voipCheckbox = nil
    self.inviteCodeCheckbox = nil
    self.autoAcceptCheckbox = nil
    self.ownRoleOnlyCheckbox = nil
    local dialog = ZO_Dialogs_FindDialog("GROUP_FINDER_ADDITIONAL_FILTERS_GAMEPAD")
    if dialog then
        local RESELECT_ENTRY = true
        local DONT_LIMIT_NUM_ENTRIES = nil
        ZO_GenericParametricListGamepadDialogTemplate_RebuildEntryList(dialog, DONT_LIMIT_NUM_ENTRIES, RESELECT_ENTRY)
    end
end
function ZO_GroupFinder_AdditionalFilters_Gamepad:BuildFiltersList()
    local parametricList = {}
    local textSearch =
    {
        template = "ZO_Gamepad_GenericDialog_Parametric_TextFieldItem",
        headerTemplate = "ZO_GamepadMenuEntryFullWidthHeaderTemplate",
        header = GetString(SI_GROUP_FINDER_FILTERS_SEARCH),
        templateData =
        {
            focusLostCallback = function(control)
                SetGroupFinderGroupFilterSearchString(control:GetText())
            end,
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                control.highlight:SetHidden(not selected)
                control.editBoxControl:SetMaxInputChars(GROUP_FINDER_GROUP_LISTING_TITLE_MAX_LENGTH)
                control.editBoxControl:SetDefaultText(GetString(SI_GROUP_FINDER_FILTERS_SEARCH))
                control.editBoxControl:SetText(GetGroupFinderGroupFilterSearchString())
                control.editBoxControl.focusLostCallback = data.focusLostCallback
                data.control = control
            end,
            callback = function(dialog)
                local targetData = dialog.entryList:GetTargetData()
                if targetData then
                    local editControl = targetData.control.editBoxControl
                    editControl:TakeFocus()
                end
            end,
        }
    }
    table.insert(parametricList, textSearch)
    local categoryEntry =
    {
        template = "ZO_GamepadDropdownItem",
        headerTemplate = "ZO_GamepadMenuEntryFullWidthHeaderTemplate",
        header = GetString(SI_GAMEPAD_GROUP_FINDER_FILTERS_CATEGORY),
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                local dialog = data.dialog
                self.categoryDropdown = control.dropdown
                table.insert(dialog.dropdowns, self.categoryDropdown)
                self.categoryDropdown:SetNormalColor(ZO_GAMEPAD_COMPONENT_COLORS.UNSELECTED_INACTIVE:UnpackRGB())
                self.categoryDropdown:SetHighlightedColor(ZO_GAMEPAD_COMPONENT_COLORS.SELECTED_ACTIVE:UnpackRGB())
                self.categoryDropdown:SetSelectedItemTextColor(selected)
                self:PopulateCategoryDropdown()
                SCREEN_NARRATION_MANAGER:RegisterDialogDropdown(dialog, self.categoryDropdown)
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    targetControl.dropdown:Activate()
                end
            end,
        },
    }
    table.insert(parametricList, categoryEntry)
    local primaryOptionSingleSelectEntry =
    {
        template = "ZO_GamepadDropdownItem",
        headerTemplate = "ZO_GamepadMenuEntryFullWidthHeaderTemplate",
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                local dialog = data.dialog
                self.primaryOptionDropdownSingleSelect = control.dropdown
                table.insert(dialog.dropdowns, self.primaryOptionDropdownSingleSelect)
                self.primaryOptionDropdownSingleSelect:SetNormalColor(ZO_GAMEPAD_COMPONENT_COLORS.UNSELECTED_INACTIVE:UnpackRGB())
                self.primaryOptionDropdownSingleSelect:SetHighlightedColor(ZO_GAMEPAD_COMPONENT_COLORS.SELECTED_ACTIVE:UnpackRGB())
                self.primaryOptionDropdownSingleSelect:SetSelectedItemTextColor(selected)
                self:PopulatePrimaryDropdownSingleSelect()
                SCREEN_NARRATION_MANAGER:RegisterDialogDropdown(dialog, self.primaryOptionDropdownSingleSelect)
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    targetControl.dropdown:Activate()
                end
            end,
            visible = function(dialog)
                local category = GetGroupFinderFilterCategory()
                return category == GROUP_FINDER_CATEGORY_DUNGEON or category == GROUP_FINDER_CATEGORY_TRIAL or category == GROUP_FINDER_CATEGORY_ARENA or category == GROUP_FINDER_CATEGORY_PVP
            end,
        },
    }
    table.insert(parametricList, primaryOptionSingleSelectEntry)
    local primaryOptionEntry =
    {
        template = "ZO_GamepadMultiSelectionDropdownItem",
        headerTemplate = "ZO_GamepadMenuEntryFullWidthHeaderTemplate",
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                local dialog = data.dialog
                self.primaryOptionDropdown = control.dropdown
                table.insert(dialog.dropdowns, self.primaryOptionDropdown)
                self.primaryOptionDropdown:SetSortsItems(false)
                self.primaryOptionDropdown:SetMaxSelections(GROUP_FINDER_MAX_SEARCHABLE_SELECTIONS)
                self.primaryOptionDropdown:SetNormalColor(ZO_GAMEPAD_COMPONENT_COLORS.UNSELECTED_INACTIVE:UnpackRGB())
                self.primaryOptionDropdown:SetHighlightedColor(ZO_GAMEPAD_COMPONENT_COLORS.SELECTED_ACTIVE:UnpackRGB())
                self.primaryOptionDropdown:SetSelectedItemTextColor(selected)
                self.primaryOptionDropdown.dropDownData = ZO_MultiSelection_ComboBox_Data_Gamepad:New()
                self:PopulatePrimaryDropdown()
                self.primaryOptionDropdown:LoadData(self.primaryOptionDropdown.dropDownData)
                SCREEN_NARRATION_MANAGER:RegisterDialogDropdown(dialog, self.primaryOptionDropdown)
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    targetControl.dropdown:Activate()
                end
            end,
            visible = function(dialog)
                local category = GetGroupFinderFilterCategory()
                return category == GROUP_FINDER_CATEGORY_ZONE
            end,
        },
    }
    table.insert(parametricList, primaryOptionEntry)
    local secondaryOptionEntry =
    {
        template = "ZO_GamepadMultiSelectionDropdownItem",
        headerTemplate = "ZO_GamepadMenuEntryFullWidthHeaderTemplate",
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                local dialog = data.dialog
                self.secondaryOptionDropdown = control.dropdown
                table.insert(dialog.dropdowns, self.secondaryOptionDropdown)
                self.secondaryOptionDropdown:SetSortsItems(false)
                self.secondaryOptionDropdown:SetMaxSelections(GROUP_FINDER_MAX_SEARCHABLE_SELECTIONS)
                self.secondaryOptionDropdown:SetNormalColor(ZO_GAMEPAD_COMPONENT_COLORS.UNSELECTED_INACTIVE:UnpackRGB())
                self.secondaryOptionDropdown:SetHighlightedColor(ZO_GAMEPAD_COMPONENT_COLORS.SELECTED_ACTIVE:UnpackRGB())
                self.secondaryOptionDropdown:SetSelectedItemTextColor(selected)
                self.secondaryOptionDropdown.dropDownData = ZO_MultiSelection_ComboBox_Data_Gamepad:New()
                self:PopulateSecondaryDropdown()
                local function IsSelectionBlockedCallback(item)
                    if item.value == 1 then
                        return true
                    end
                    return false
                end
                self.secondaryOptionDropdown:SetIsSelectionBlockedCallback(IsSelectionBlockedCallback)
                local function OnSelectionBlockedCallback(item)
                    if item.value == 1 then
                        SetGroupFinderFilterSecondaryOptionByIndex(item.value, self.secondaryOptionDropdown:IsItemSelected(item))
                        self.secondaryOptionDropdown:ClearAllSelections()
                        self.secondaryOptionDropdown:SetItemIndexSelected(item.value)
                        self.secondaryOptionDropdown:RefreshSelections()
                        return true
                    end
                    return false
                end
                self.secondaryOptionDropdown:SetOnSelectionBlockedCallback(OnSelectionBlockedCallback)
                SCREEN_NARRATION_MANAGER:RegisterDialogDropdown(dialog, self.secondaryOptionDropdown)
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    targetControl.dropdown:Activate()
                end
            end,
            visible = function(dialog)
                local category = GetGroupFinderFilterCategory()
                return category ~= GROUP_FINDER_CATEGORY_ENDLESS_DUNGEON and category ~= GROUP_FINDER_CATEGORY_CUSTOM
            end,
        },
    }
    table.insert(parametricList, secondaryOptionEntry)
    local groupSizeEntry =
    {
        template = "ZO_GamepadMultiSelectionDropdownItem",
        headerTemplate = "ZO_GamepadMenuEntryFullWidthHeaderTemplate",
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                local dialog = data.dialog
                self.sizeDropdown = control.dropdown
                table.insert(dialog.dropdowns, self.sizeDropdown)
                self.sizeDropdown:SetNormalColor(ZO_GAMEPAD_COMPONENT_COLORS.UNSELECTED_INACTIVE:UnpackRGB())
                self.sizeDropdown:SetHighlightedColor(ZO_GAMEPAD_COMPONENT_COLORS.SELECTED_ACTIVE:UnpackRGB())
                self.sizeDropdown:SetSelectedItemTextColor(selected)
                -- Currently, the group size enum has fewer entries than our max searchable selections, so we'll just
                -- not set a maxSelectedItems on gamepad to avoid a potentially confusing (current/max) select keybind string.
                -- Groupsize is a flag so the max searchable value is going to be two to the searchable size
                internalassert(GROUP_FINDER_SIZE_MAX_VALUE <= math.pow(2, GROUP_FINDER_MAX_SEARCHABLE_SELECTIONS), "Number of possible options exceeds max, please set a max number of selectable items for this dropdown")
                self.sizeDropdown.dropDownData = ZO_MultiSelection_ComboBox_Data_Gamepad:New()
                self:PopulateSizeDropdown()
                self.sizeDropdown:LoadData(self.sizeDropdown.dropDownData)
                SCREEN_NARRATION_MANAGER:RegisterDialogDropdown(dialog, self.sizeDropdown)
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    targetControl.dropdown:Activate()
                end
            end,
        },
    }
    table.insert(parametricList, groupSizeEntry)
    local playstyleEntry =
    {
        template = "ZO_GamepadMultiSelectionDropdownItem",
        headerTemplate = "ZO_GamepadMenuEntryFullWidthHeaderTemplate",
        header = GetString(SI_GROUP_FINDER_HEADER_LABEL_PLAYSTYLE),
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                local dialog = data.dialog
                self.playstyleDropdown = control.dropdown
                table.insert(dialog.dropdowns, self.playstyleDropdown)
                self.playstyleDropdown:SetSortsItems(false)
                self.playstyleDropdown:SetMaxSelections(GROUP_FINDER_MAX_SEARCHABLE_SELECTIONS)
                self.playstyleDropdown:SetNormalColor(ZO_GAMEPAD_COMPONENT_COLORS.UNSELECTED_INACTIVE:UnpackRGB())
                self.playstyleDropdown:SetHighlightedColor(ZO_GAMEPAD_COMPONENT_COLORS.SELECTED_ACTIVE:UnpackRGB())
                self.playstyleDropdown:SetSelectedItemTextColor(selected)
                self.playstyleDropdown.dropDownData = ZO_MultiSelection_ComboBox_Data_Gamepad:New()
                self:PopulatePlaystyleDropdown()
                self.playstyleDropdown:LoadData(self.playstyleDropdown.dropDownData)
                SCREEN_NARRATION_MANAGER:RegisterDialogDropdown(dialog, self.playstyleDropdown)
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    targetControl.dropdown:Activate()
                end
            end,
            visible = function(dialog)
                local category = GetGroupFinderFilterCategory()
                return category == GROUP_FINDER_CATEGORY_DUNGEON or category == GROUP_FINDER_CATEGORY_TRIAL or category == GROUP_FINDER_CATEGORY_ARENA
            end,
        },
    }
    table.insert(parametricList, playstyleEntry)
    local championCheckboxEntry =
    {
        template = "ZO_CheckBoxTemplate_WithoutIndent_Gamepad",
        text = zo_strformat(SI_GROUP_FINDER_CHAMPION_REQUIRED_TEXT, ZO_GetChampionIconMarkupString(ZO_GROUP_LISTING_CHAMPION_ICON_SIZE)),
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                self.championCheckbox = control.checkBox
                ZO_GamepadCheckBoxTemplate_Setup(control, data, selected, reselectingDuringRebuild, enabled, active)
                self:UpdateCheckStateRequireChampion()
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    ZO_GamepadCheckBoxTemplate_OnClicked(targetControl)
                    SetGroupFinderFilterRequiresChampion(ZO_GamepadCheckBoxTemplate_IsChecked(targetControl))
                    SCREEN_NARRATION_MANAGER:QueueDialog(dialog)
                    local RESELECT_ENTRY = true
                    local DONT_LIMIT_NUM_ENTRIES = nil
                    ZO_GenericParametricListGamepadDialogTemplate_RebuildEntryList(dialog, DONT_LIMIT_NUM_ENTRIES, RESELECT_ENTRY)
                end
            end,
            enabled = function(dialog)
                return IsUnitChampion("player")
            end,
            checked = function()
                return DoesGroupFinderFilterRequireChampion()
            end,
        },
    }
    table.insert(parametricList, championCheckboxEntry)
    local championPointsEntry =
    {
        template = "ZO_GroupFinder_ChampionPoint_EditBox_Gamepad",
        headerTemplate = "ZO_GamepadMenuEntryFullWidthHeaderTemplate",
        templateData =
        {
            focusLostCallback = function(control)
                local newChampionPoints = control:GetText()
                SetGroupFinderFilterChampionPoints(tonumber(newChampionPoints))
            end,
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                control.highlight:SetHidden(not selected)
                self.championTextBoxControl = control.editBoxControl
                control.editBoxControl.focusLostCallback = data.focusLostCallback
                self:UpdateCheckStateRequireChampion()
            end,
            callback = function(dialog)
                local targetData = dialog.entryList:GetTargetData()
                if targetData then
                    local editControl = dialog.entryList:GetTargetControl().editBoxControl
                    editControl:TakeFocus()
                end
            end,
            visible = function(dialog)
                return DoesGroupFinderFilterRequireChampion()
            end,
        }
    }
    table.insert(parametricList, championPointsEntry)
    local voipCheckboxEntry =
    {
        template = "ZO_CheckBoxTemplate_WithoutIndent_Gamepad",
        text = GetString(SI_GROUP_FINDER_FILTERS_VOIP),
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                self.voipCheckbox = control.checkBox
                ZO_GamepadCheckBoxTemplate_Setup(control, data, selected, reselectingDuringRebuild, enabled, active)
                self:UpdateCheckStateRequireVOIP()
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    ZO_GamepadCheckBoxTemplate_OnClicked(targetControl)
                    SetGroupFinderFilterRequiresVOIP(ZO_GamepadCheckBoxTemplate_IsChecked(targetControl))
                    SCREEN_NARRATION_MANAGER:QueueDialog(dialog)
                end
            end,
            checked = function()
                return DoesGroupFinderFilterRequireVOIP()
            end,
        },
    }
    table.insert(parametricList, voipCheckboxEntry)
    local inviteCodeCheckboxEntry =
    {
        template = "ZO_CheckBoxTemplate_WithoutIndent_Gamepad",
        text = GetString(SI_GROUP_FINDER_FILTERS_INVITE_CODE),
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                self.inviteCodeCheckbox = control.checkBox
                ZO_GamepadCheckBoxTemplate_Setup(control, data, selected, reselectingDuringRebuild, enabled, active)
                self:UpdateCheckStateInviteCode()
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    ZO_GamepadCheckBoxTemplate_OnClicked(targetControl)
                    SetGroupFinderFilterRequiresInviteCode(ZO_GamepadCheckBoxTemplate_IsChecked(targetControl))
                    SCREEN_NARRATION_MANAGER:QueueDialog(dialog)
                end
            end,
            checked = function()
                return DoesGroupFinderFilterRequireInviteCode()
            end,
        },
    }
    table.insert(parametricList, inviteCodeCheckboxEntry)
    local autoAcceptCheckboxEntry =
    {
        template = "ZO_CheckBoxTemplate_WithoutIndent_Gamepad",
        text = GetString(SI_GROUP_FINDER_FILTERS_AUTO_ACCEPT),
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                self.autoAcceptCheckbox = control.checkBox
                ZO_GamepadCheckBoxTemplate_Setup(control, data, selected, reselectingDuringRebuild, enabled, active)
                self:UpdateCheckStateAutoAcceptRequests()
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    ZO_GamepadCheckBoxTemplate_OnClicked(targetControl)
                    SetGroupFinderFilterAutoAcceptRequests(ZO_GamepadCheckBoxTemplate_IsChecked(targetControl))
                    SCREEN_NARRATION_MANAGER:QueueDialog(dialog)
                end
            end,
            checked = function()
                return DoesGroupFinderFilterAutoAcceptRequests()
            end,
        },
    }
    table.insert(parametricList, autoAcceptCheckboxEntry)
    local ownRoleCheckboxEntry =
    {
        template = "ZO_CheckBoxTemplate_WithoutIndent_Gamepad",
        text = GetString(SI_GROUP_FINDER_FILTERS_OWN_ROLE),
        templateData =
        {
            setup = function(control, data, selected, reselectingDuringRebuild, enabled, active)
                self.ownRoleOnlyCheckbox = control.checkBox
                ZO_GamepadCheckBoxTemplate_Setup(control, data, selected, reselectingDuringRebuild, enabled, active)
                self:UpdateCheckStateOwnRoles()
            end,
            callback = function(dialog)
                local targetControl = dialog.entryList:GetTargetControl()
                if targetControl then
                    ZO_GamepadCheckBoxTemplate_OnClicked(targetControl)
                    SetGroupFinderFilterEnforceRoles(ZO_GamepadCheckBoxTemplate_IsChecked(targetControl))
                    SCREEN_NARRATION_MANAGER:QueueDialog(dialog)
                end
            end,
            checked = function()
                return DoesGroupFinderFilterRequireEnforceRoles()
            end,
        },
    }
    table.insert(parametricList, ownRoleCheckboxEntry)
    return parametricList
end
ZO_GROUP_FINDER_ADDITIONAL_FILTERS_GAMEPAD = ZO_GroupFinder_AdditionalFilters_Gamepad:New()