ESO Lua File v100012

ingame/inventory/gamepad/guildbank_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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
local ITEM_TEMPLATE = "ZO_GamepadItemSubEntryTemplate"
local CATEGORY_HEADER_TEMPLATE = "ZO_GamepadMenuEntryHeaderTemplate"
-------------------------------------
-- Gamepad Guild Bank Inventory List
-------------------------------------
ZO_GamepadGuildBankInventoryList = ZO_GamepadBankCommonInventoryList:Subclass()
function ZO_GamepadGuildBankInventoryList:New(...)
    return ZO_GamepadBankCommonInventoryList.New(self, ...)
end
do
    local NO_DEPOSIT_PERMISSIONS_STRING = zo_strformat(GetString(SI_GAMEPAD_GUILD_BANK_NO_DEPOSIT_PERMISSIONS), GetNumGuildMembersRequiredForPrivilege(GUILD_PRIVILEGE_BANK_DEPOSIT))
    local NO_WITHDRAW_PERMISSIONS_STRING = GetString(SI_GAMEPAD_GUILD_BANK_NO_WITHDRAW_PERMISSIONS)
    local NO_ITEMS_TO_WITHDRAW_STRING = GetString(SI_GAMEPAD_GUILD_BANK_NO_WITHDRAW_ITEMS)
    function ZO_GamepadGuildBankInventoryList:RefreshList()
        if self.control:IsHidden() then
            self.isDirty = true
            return
        end
        local guildId = GetSelectedGuildBankId()
        local shouldShowList = false
        -- Assume we have all these privileges unless otherwise specified.
        local guildHasDepositPrivilege = true
        local playerCanWithdrawItem = true
        local playerCanWithdrawGold = true
        if guildId then
            guildHasDepositPrivilege = DoesGuildHavePrivilege(guildId, GUILD_PRIVILEGE_BANK_DEPOSIT)
            playerCanWithdrawItem = DoesPlayerHaveGuildPermission(guildId, GUILD_PERMISSION_BANK_WITHDRAW)
            playerCanWithdrawGold = DoesPlayerHaveGuildPermission(guildId, GUILD_PERMISSION_BANK_WITHDRAW_GOLD)
            if GAMEPAD_GUILD_BANK:IsLoadingGuildBank() then
                self:SetNoItemText("")
            elseif self.mode == BANKING_GAMEPAD_MODE_DEPOSIT then
                if not guildHasDepositPrivilege then
                    self:SetNoItemText(NO_DEPOSIT_PERMISSIONS_STRING)
                else
                    shouldShowList = DoesPlayerHaveGuildPermission(guildId, GUILD_PERMISSION_BANK_DEPOSIT)
                end
            elseif self.mode == BANKING_GAMEPAD_MODE_WITHDRAW then
                if not (playerCanWithdrawItem or playerCanWithdrawGold) then
                    self:SetNoItemText(NO_WITHDRAW_PERMISSIONS_STRING)
                else
                    self:SetNoItemText(NO_ITEMS_TO_WITHDRAW_STRING)
                    shouldShowList = playerCanWithdrawItem
                end
            else
                self:SetNoItemText("")
            end
        else
            self:SetNoItemText("")
        end
        self.list:Clear()
        local function CanWithdrawOrDeposit(currencyType)
            local canUse = true
            -- Check if there are funds to withdraw or if the player's wallet isn't full, depending on the mode
            if self.mode == BANKING_GAMEPAD_MODE_WITHDRAW then
                canUse = GetGuildBankedCurrencyAmount(currencyType) ~= 0 and 
                            GetCarriedCurrencyAmount(currencyType) ~= GetMaxCarriedCurrencyAmount(currencyType)
            elseif self.mode == BANKING_GAMEPAD_MODE_DEPOSIT then
                canUse = GetGuildBankedCurrencyAmount(currencyType) ~= GetMaxGuildBankCurrencyAmount(currencyType) and 
                          GetCarriedCurrencyAmount(currencyType) ~= 0
            end
            return canUse
        end
        local shouldAddDepositWithdrawEntry = self.mode == BANKING_GAMEPAD_MODE_WITHDRAW and playerCanWithdrawGold or 
                                              self.mode == BANKING_GAMEPAD_MODE_DEPOSIT and guildHasDepositPrivilege
        if shouldAddDepositWithdrawEntry then
            self:AddDepositWithdrawEntry(CURT_MONEY, CanWithdrawOrDeposit(CURT_MONEY))
        end
        if shouldShowList then
            ZO_ClearTable(self.dataBySlotIndex)
            local slots = self:GenerateSlotTable()
            local template = self.template
            local currentBestCategoryName = nil
            for i, itemData in ipairs(slots) do
                local entry = ZO_GamepadEntryData:New(itemData.name, itemData.iconFile)
                self:SetupItemEntry(entry, itemData)
                if itemData.bestGamepadItemCategoryName ~= currentBestCategoryName then
                    currentBestCategoryName = itemData.bestGamepadItemCategoryName
                    entry:SetHeader(currentBestCategoryName)
                    self.list:AddEntryWithHeader(template, entry)
                else
                    self.list:AddEntry(template, entry)
                end
                self.dataBySlotIndex[itemData.slotIndex] = entry
            end
        end
        self.list:Commit()
        self.isDirty = false
    end
end
do
    local BANK_MODE_INFO = {
        [BANKING_GAMEPAD_MODE_DEPOSIT] = { requirement = GUILD_PERMISSION_BANK_DEPOSIT, errorMessage = GetString("SI_GUILDBANKRESULT",  GUILD_BANK_NO_DEPOSIT_PERMISSION)},
        [BANKING_GAMEPAD_MODE_WITHDRAW] = { requirement = GUILD_PERMISSION_BANK_WITHDRAW, errorMessage = GetString("SI_GUILDBANKRESULT", GUILD_BANK_NO_WITHDRAW_PERMISSION)},
    }
    function ZO_GamepadGuildBankInventoryList:SetBankMode(mode)
        local modeInfo = BANK_MODE_INFO[mode]
        if modeInfo then
            self.mode = mode
            self.guildrequirement = modeInfo.requirement
            self.requirementFailMessage = modeInfo.errorMessage
        end
    end
end
-----------------------
-- Gamepad Guild Bank
-----------------------
local GAMEPAD_GUILD_BANK_SCENE_NAME = "gamepad_guild_bank"
ZO_GuildBank_Gamepad = ZO_BankingCommon_Gamepad:Subclass()
function ZO_GuildBank_Gamepad:New(...)
    return ZO_BankingCommon_Gamepad.New(self, ...)
end
function ZO_GuildBank_Gamepad:Initialize(control)
    GAMEPAD_GUILD_BANK_SCENE = ZO_InteractScene:New(GAMEPAD_GUILD_BANK_SCENE_NAME, SCENE_MANAGER, GUILD_BANKING_INTERACTION)
    ZO_BankingCommon_Gamepad.Initialize(self, control, GAMEPAD_GUILD_BANK_SCENE)
    self:SetBankedBag(BAG_GUILDBANK)
    self:SetCarriedBag(BAG_BACKPACK)
    local function OnOpenGuildBank()
        if IsInGamepadPreferredMode() then
            SCENE_MANAGER:Show(GAMEPAD_GUILD_BANK_SCENE_NAME)
        end
    end
    self.control:RegisterForEvent(EVENT_OPEN_GUILD_BANK, OnOpenGuildBank)
end
function ZO_GuildBank_Gamepad:OnSceneShowing()
    ZO_SharedInventory_SelectAccessibleGuildBank(self.lastSelectedGuildBankId)
    TriggerTutorial(TUTORIAL_TRIGGER_GUILD_BANK_OPENED)
end
function ZO_GuildBank_Gamepad:AddKeybinds()
    KEYBIND_STRIP:AddKeybindButtonGroup(self.currentKeybindStripDescriptor)
end
function ZO_GuildBank_Gamepad:RemoveKeybinds()
    KEYBIND_STRIP:RemoveKeybindButtonGroup(self.currentKeybindStripDescriptor)
end
function ZO_GuildBank_Gamepad:OnSelectionChangedCallback()
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.currentKeybindStripDescriptor)
end
function ZO_GuildBank_Gamepad:OnWithdrawDepositStateChanged(oldState, newState)
    if newState == SCENE_SHOWING then
        self:UpdateGuildBankList()
        self.depositList:RefreshList()
    elseif newState == SCENE_SHOWN then
        GAMEPAD_TOOLTIPS:ClearTooltip(GAMEPAD_LEFT_TOOLTIP)
    end
end
function ZO_GuildBank_Gamepad:CreateEventTable()
    local function OnCloseGuildBank()
        SCENE_MANAGER:Hide(GAMEPAD_GUILD_BANK_SCENE_NAME)
            
        self.loadingGuildBank = false
        self.withdrawLoadingControl:SetHidden(true)
        self:ClearAllGuildBankItems()
    end
    local function OnGuildBankOpenError()
        if self.loadingGuildBank then
            self.loadingGuildBank = false
            self.withdrawLoadingControl:SetHidden(true)
            self:ClearAllGuildBankItems()
        end
    end
    local function OnGuildBankUpdated()
        self:UpdateGuildBankList()
        self:RefreshHeaderData()
    end
    local function OnInventoryUpdated(eventId, bagId, slotIndex, _, itemSoundCategory)
        self:RefreshHeaderData()
        KEYBIND_STRIP:UpdateKeybindButtonGroup(self.currentKeybindStripDescriptor)
        self:LayoutInventoryItemTooltip(self.currentItemList:GetTargetData())
    end
    local function OnGuildBankTransferError(_, reason)
        if reason == GUILD_BANK_ITEM_NOT_FOUND or reason == GUILD_BANK_NOT_IN_A_GUILD then
            GAMEPAD_GUILD_BANK_ERROR:Show(reason)
        end
    end
    
    local function OnGuildBankSelected()
        self.loadingGuildBank = true
        GAMEPAD_TOOLTIPS:ClearTooltip(GAMEPAD_LEFT_TOOLTIP)
        self.withdrawLoadingControl:SetHidden(false)
        self:RefreshHeaderData()
        self.depositList:RefreshList()
        self:ClearAllGuildBankItems()
    end
    local function OnGuildBankDeselected()
        self:ClearAllGuildBankItems()
    end
    local function OnGuildBankReady()
        self.loadingGuildBank = false
        self.withdrawLoadingControl:SetHidden(true)
        if GAMEPAD_GUILD_BANK_SCENE:IsShowing() then
            KEYBIND_STRIP:UpdateKeybindButtonGroup(self.currentKeybindStripDescriptor)
        end
        OnGuildBankUpdated()
    end
    local function RefreshHeaderData()
        self:RefreshHeaderData()
    end
    local function RefreshLists()
        self.depositList:RefreshList()
        self.withdrawList:RefreshList()
    end
    local function AlertAndRefreshHeader(currencyType, currentCurrency, oldCurrency, reason)       
        local alertString
        local amount
        local IS_GAMEPAD = true
        if reason == CURRENCY_CHANGE_REASON_GUILD_BANK_DEPOSIT then
            amount = oldCurrency - currentCurrency
            alertString = zo_strformat(SI_GAMEPAD_BANK_GOLD_AMOUNT_DEPOSITED, ZO_CurrencyControl_FormatCurrencyAndAppendIcon(amount, useShortFormat, currencyType, IS_GAMEPAD))
        elseif CURRENCY_CHANGE_REASON_GUILD_BANK_WITHDRAWAL then
            amount = currentCurrency - oldCurrency
            alertString = zo_strformat(SI_GAMEPAD_BANK_GOLD_AMOUNT_WITHDRAWN, ZO_CurrencyControl_FormatCurrencyAndAppendIcon(amount, useShortFormat, currencyType, IS_GAMEPAD)) 
        end
       
        if alertString then       
            ZO_AlertNoSuppression(UI_ALERT_CATEGORY_ALERT, nil, alertString)
        end
        RefreshHeaderData()
    end
    local function UpdateMoney(event, currentMoney, oldMoney, reason)
        RefreshLists()
        AlertAndRefreshHeader(CURT_MONEY, currentMoney, oldMoney, reason)
    end
    local function UpdateGuildBankedMoney()
        RefreshLists()
        RefreshHeaderData()
    end
    local function OnGuildRanksChanged(_, guildId)
        if guildId == GetSelectedGuildBankId() then
            KEYBIND_STRIP:UpdateKeybindButtonGroup(self.currentKeybindStripDescriptor)
            RefreshLists()
        end
    end
    local function OnGuildMemberRankChanged(_, guildId, displayName)
        if guildId == GetSelectedGuildBankId() and displayName == GetDisplayName() then
            KEYBIND_STRIP:UpdateKeybindButtonGroup(self.currentKeybindStripDescriptor)
            RefreshLists()
        end
    end
    local function OnGuildSizeChanged()
        KEYBIND_STRIP:UpdateKeybindButtonGroup(self.currentKeybindStripDescriptor)
    end
    local function OnGuildLeft(event, guildId, guildName)
        ZO_Dialogs_ReleaseAllDialogsOfName("GUILD_BANK_GAMEPAD_CHANGE_ACTIVE_GUILD")
    end
    self.eventTable =   {
        [EVENT_CLOSE_GUILD_BANK] = OnCloseGuildBank,
        [EVENT_GUILD_BANK_OPEN_ERROR] = OnGuildBankOpenError,
        [EVENT_GUILD_BANK_SELECTED] = OnGuildBankSelected,
        [EVENT_GUILD_BANK_DESELECTED] = OnGuildBankDeselected,
        [EVENT_GUILD_BANK_ITEMS_READY] = OnGuildBankReady,
        [EVENT_GUILD_BANK_ITEM_ADDED] = OnGuildBankUpdated,
        [EVENT_GUILD_BANK_ITEM_REMOVED] = OnGuildBankUpdated,
        [EVENT_GUILD_BANK_UPDATED_QUANTITY] = OnGuildBankUpdated,
        [EVENT_GUILD_BANK_TRANSFER_ERROR] = OnGuildBankTransferError,
        [EVENT_MONEY_UPDATE] = UpdateMoney,
        [EVENT_GUILD_BANKED_MONEY_UPDATE] = UpdateGuildBankedMoney,
        [EVENT_GUILD_RANKS_CHANGED] = OnGuildRanksChanged,
        [EVENT_GUILD_RANK_CHANGED] = OnGuildRanksChanged,
        [EVENT_GUILD_MEMBER_RANK_CHANGED] = OnGuildMemberRankChanged,
        [EVENT_GUILD_MEMBER_ADDED] = OnGuildSizeChanged,
        [EVENT_GUILD_MEMBER_REMOVED] = OnGuildSizeChanged,
        [EVENT_GUILD_SELF_LEFT_GUILD] = OnGuildLeft,
        [EVENT_INVENTORY_FULL_UPDATE] = OnInventoryUpdated,
        [EVENT_INVENTORY_SINGLE_SLOT_UPDATE] = OnInventoryUpdated,
    }
end
function ZO_GuildBank_Gamepad:RegisterForEvents()
    ZO_BankingCommon_Gamepad.RegisterForEvents(self)
end
function ZO_GuildBank_Gamepad:UnregisterForEvents()
    ZO_BankingCommon_Gamepad.UnregisterForEvents(self)
end
function ZO_GuildBank_Gamepad:OnDeferredInitialization()
    self.withdrawLoadingControl = self.control:GetNamedChild("Loading")
    if self.loadingGuildBank then
        GAMEPAD_TOOLTIPS:ClearTooltip(GAMEPAD_LEFT_TOOLTIP)
        self.withdrawLoadingControl:SetHidden(false)
    end
end
do
    local function DepositItemFilter(itemData)
        return not itemData.stolen and not IsItemBound(itemData.bagId, itemData.slotIndex) and not (itemData.itemType == ITEMTYPE_TROPHY)
    end
    function ZO_GuildBank_Gamepad:InitializeLists()
        local function OnSelectedDataCallback(...)
            self:OnSelectionChanged(...)
        end
        local SETUP_LIST_LOCALLY = true
        local withdrawList = self:AddList("withdraw", SETUP_LIST_LOCALLY, ZO_GamepadGuildBankInventoryList, BANKING_GAMEPAD_MODE_WITHDRAW, self.bankedBag, SLOT_TYPE_GUILD_BANK_ITEM, OnSelectedDataCallback, nil, nil, nil, nil, nil, ZO_SharedGamepadEntry_OnSetup)
        self:SetWithdrawList(withdrawList)
        local depositList = self:AddList("deposit", SETUP_LIST_LOCALLY, ZO_GamepadGuildBankInventoryList, BANKING_GAMEPAD_MODE_DEPOSIT, self.carriedBag, SLOT_TYPE_ITEM, OnSelectedDataCallback, nil, nil, nil, nil, nil, ZO_SharedGamepadEntry_OnSetup)
        depositList:SetItemFilterFunction(DepositItemFilter)
        self:SetDepositList(depositList)
    end
end
local function CanUseBank(requestPermission)
    local guildId = GetSelectedGuildBankId()
    if guildId then
        return DoesPlayerHaveGuildPermission(guildId, requestPermission)
    else
        return false
    end
end
local function NotEnoughSpace(reason)
    local message = zo_strformat(reason)
    ZO_AlertNoSuppression(UI_ALERT_CATEGORY_ALERT, nil, message)
    PlaySound(SOUNDS.GENERAL_ALERT_ERROR)
end
local function DepositItem(list)
    local targetData = list:GetTargetData()
    if targetData then
        if GetNumBagUsedSlots(BAG_GUILDBANK) < GetBagSize(BAG_GUILDBANK) then
            TransferToGuildBank(targetData.itemData.bagId, targetData.itemData.slotIndex)
        else
            NotEnoughSpace(SI_GUILDBANKRESULT5)
        end
    end
end
local function WithdrawItem(list)
    local targetData = list:GetTargetData()
    if targetData then
        if GetNumBagFreeSlots(BAG_BACKPACK) > 0 then
            TransferFromGuildBank(targetData.itemData.slotIndex)
        else
            NotEnoughSpace(SI_INVENTORY_ERROR_INVENTORY_FULL)
        end
    end
end
local CURRENT_DATA_TYPE_NONE = 0
local CURRENT_DATA_TYPE_GOLD_SELECTOR = 1
local CURRENT_DATA_TYPE_ITEM_DATA = 2
local function GetCurrentDataType(list)
    local targetData = list:GetTargetData()
    if targetData then
        if targetData.currencyType == CURT_MONEY then
            return CURRENT_DATA_TYPE_GOLD_SELECTOR
        else
            return CURRENT_DATA_TYPE_ITEM_DATA
        end
    end
    return CURRENT_DATA_TYPE_NONE
end
function ZO_GuildBank_Gamepad:InitializeKeybindStripDescriptors()
    local switchActiveGuildKeybind = {
        keybind = "UI_SHORTCUT_TERTIARY",
        name = GetString(SI_TRADING_HOUSE_GUILD_LABEL),
        callback = function()
            ZO_Dialogs_ShowGamepadDialog("GUILD_BANK_GAMEPAD_CHANGE_ACTIVE_GUILD")
        end,
        visible = function()
            return GetNumGuilds() > 1
        end,
    }
    {
        alignment = KEYBIND_STRIP_ALIGN_LEFT,
        {
            keybind = "UI_SHORTCUT_PRIMARY",
            name =  function()
                            local currentDataType = GetCurrentDataType(self.withdrawList)
                            if currentDataType == CURRENT_DATA_TYPE_GOLD_SELECTOR then
                                return GetString(SI_BANK_WITHDRAW_GOLD_BIND)
                            elseif currentDataType == CURRENT_DATA_TYPE_ITEM_DATA then
                                return GetString(SI_BANK_WITHDRAW)
                            end
                        end,
            enabled = function()
                            local data = self.withdrawList:GetTargetData()
                            if data then
                                return data.enabled
                            end
                            return true
                        end,
            visible =   function()
                            local currentDataType = GetCurrentDataType(self.withdrawList)
                            if currentDataType == CURRENT_DATA_TYPE_GOLD_SELECTOR then
                                return CanUseBank(GUILD_PERMISSION_BANK_WITHDRAW_GOLD)
                            elseif currentDataType == CURRENT_DATA_TYPE_ITEM_DATA then
                                return CanUseBank(GUILD_PERMISSION_BANK_WITHDRAW) and GetNumBagUsedSlots(BAG_GUILDBANK) > 0
                            end
                            return false
                        end,
            callback =  function()
                            local currentDataType = GetCurrentDataType(self.withdrawList)
                            if currentDataType == CURRENT_DATA_TYPE_GOLD_SELECTOR then
                                KEYBIND_STRIP:RemoveKeybindButtonGroup(self.currentKeybindStripDescriptor)
                                self:SetMaxInputFunction(GetMaxGuildBankWithdrawal)
                                self:ShowSelector()
                            elseif currentDataType == CURRENT_DATA_TYPE_ITEM_DATA then
                                return WithdrawItem(self.withdrawList)
                            end
                        end,
        },
        switchActiveGuildKeybind,
    })
    ZO_Gamepad_AddBackNavigationKeybindDescriptors(self.withdrawKeybindStripDescriptor, GAME_NAVIGATION_TYPE_BUTTON)
    {
        alignment = KEYBIND_STRIP_ALIGN_LEFT,
        {
            keybind = "UI_SHORTCUT_PRIMARY",
            name =  function()
                            local currentDataType = GetCurrentDataType(self.depositList)
                            if currentDataType == CURRENT_DATA_TYPE_GOLD_SELECTOR then
                                return GetString(SI_BANK_DEPOSIT_GOLD_BIND)
                            elseif currentDataType == CURRENT_DATA_TYPE_ITEM_DATA then
                                return GetString(SI_BANK_DEPOSIT)
                            end
                        end,
            enabled = function()
                            local data = self.depositList:GetTargetData()
                            if data then
                                return data.enabled
                            end
                            return true
                        end,
            visible =   function()
                            local currentDataType = GetCurrentDataType(self.depositList)
                            if currentDataType == CURRENT_DATA_TYPE_GOLD_SELECTOR then
                                return DoesGuildHavePrivilege(GetSelectedGuildBankId(), GUILD_PRIVILEGE_BANK_DEPOSIT)
                            elseif currentDataType == CURRENT_DATA_TYPE_ITEM_DATA then
                                return not self.loadingGuildBank and CanUseBank(GUILD_PERMISSION_BANK_DEPOSIT) and GetNumBagUsedSlots(BAG_BACKPACK) > 0 and DoesGuildHavePrivilege(GetSelectedGuildBankId(), GUILD_PRIVILEGE_BANK_DEPOSIT)
                            end
                            return false
                        end,
            callback =  function()
                            local currentDataType = GetCurrentDataType(self.depositList)
                            if currentDataType == CURRENT_DATA_TYPE_GOLD_SELECTOR then
                                KEYBIND_STRIP:RemoveKeybindButtonGroup(self.currentKeybindStripDescriptor)
                                self:SetMaxInputFunction(GetMaxGuildBankDeposit)
                                self:ShowSelector()
                            elseif currentDataType == CURRENT_DATA_TYPE_ITEM_DATA then
                                return DepositItem(self.depositList)
                            end
                        end,
        },
        switchActiveGuildKeybind,
    })
    ZO_Gamepad_AddBackNavigationKeybindDescriptors(self.depositKeybindStripDescriptor, GAME_NAVIGATION_TYPE_BUTTON)
end
local function CreateModeData(name, mode, itemList, keybind)
    return {
        text = GetString(name),
        mode = mode,
        itemList = itemList,
        keybind = keybind,
    }
end
function ZO_GuildBank_Gamepad:GetWithdrawMoneyAmount()
    return GetGuildBankedMoney()
end
function ZO_GuildBank_Gamepad:GetMaxBankedFunds(currencyType)
    return GetMaxGuildBankCurrencyAmount(currencyType)
end
function ZO_GuildBank_Gamepad:GetDepositMoneyAmount()
    return GetCarriedCurrencyAmount(CURT_MONEY)
end
function ZO_GuildBank_Gamepad:DepositFunds(currencyType, amount)
    DepositCurrencyIntoGuildBank(currencyType, amount)
end
function ZO_GuildBank_Gamepad:WithdrawFunds(currencyType, amount)
    WithdrawCurrencyFromGuildBank(currencyType, amount)
end
function ZO_GuildBank_Gamepad:OnCategoryChangedCallback(selectedData)
    if self.loadingGuildBank and selectedData.mode == BANKING_GAMEPAD_MODE_WITHDRAW then
        self:SetSelectedInventoryData(nil)
    end
end
function ZO_GuildBank_Gamepad:InitializeHeader()
    ZO_BankingCommon_Gamepad.InitializeHeader(self)
    ZO_GUILD_NAME_FOOTER_FRAGMENT:SetGuildName(GetGuildName(GetSelectedGuildBankId()))
end
function ZO_GuildBank_Gamepad:RefreshGuildBank()
    self.depositList:RefreshList()
end
function ZO_GuildBank_Gamepad:ChangeGuildBank(guildBankId)
    if guildBankId ~= GetSelectedGuildBankId() then
        self.loadingGuildBank = true
        SelectGuildBank(guildBankId)
        self.lastSelectedGuildBankId = guildBankId
    end
end
function ZO_GuildBank_Gamepad:IsLoadingGuildBank()
    return self.loadingGuildBank
end
function ZO_GuildBank_Gamepad:OnRefreshHeaderData()
    ZO_GUILD_NAME_FOOTER_FRAGMENT:SetGuildName(GetGuildName(GetSelectedGuildBankId()))
end
local function GuildBankEntryHeaderTemplateSetup(control, data, selected, selectedDuringRebuild, enabled, activated)
    control:SetText(data.bestGamepadItemCategoryName)
end
local SORT_KEYS =
{
    bestGamepadItemCategoryName = { tiebreaker = "name" },
    name = { tiebreaker = "requiredLevel" },
    requiredLevel = { tiebreaker = "requiredVeterankRank", isNumeric = true },
    requiredVeterankRank = { tiebreaker = "iconFile", isNumeric = true },
    iconFile = { tiebreaker = "uniqueId" },
    uniqueId = { isId64 = true },
}
local function ItemSort(item1, item2)
    return ZO_TableOrderingFunction(item1, item2, "bestGamepadItemCategoryName", SORT_KEYS, ZO_SORT_ORDER_UP)
end
function ZO_GuildBank_Gamepad:UpdateGuildBankList()
    self.withdrawList:RefreshList()
end
function ZO_GuildBank_Gamepad:SetSelectedInventoryData(_, inventoryData)
    self:LayoutInventoryItemTooltip(inventoryData)
end
function ZO_GuildBank_Gamepad:ClearAllGuildBankItems()
    self.withdrawList:ClearList()
end
    GAMEPAD_GUILD_BANK = ZO_GuildBank_Gamepad:New(control)
end