Back to Home

ESO Lua File v101041

ingame/leaderboards/gamepad/leaderboardlist_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
--Layout consts, defining the widths of the list's columns as provided by design--
ZO_GAMEPAD_LEADERBOARD_LIST_RANK_WIDTH = 96 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_LEADERBOARD_LIST_USER_FACING_NAME_WIDTH = 340 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_LEADERBOARD_LIST_CHARACTER_NAME_WIDTH = 340 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_LEADERBOARD_LIST_CLASS_WIDTH = 120 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_LEADERBOARD_LIST_ALLIANCE_WIDTH = 120 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_LEADERBOARD_LIST_PROGRESS_WIDTH = 190 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
ZO_GAMEPAD_LEADERBOARD_LIST_POINTS_WIDTH = 170 - ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_HEADER_DOUBLE_PADDING_X
local LEADERBOARD_LIST_TEMPLATE = "ZO_LeaderboardsPlayerRow_Gamepad"
local PLAYER_NAME_COLOR = ZO_ColorDef:New(GetInterfaceColor(INTERFACE_COLOR_TYPE_LEADERBOARD_COLORS, LEADERBOARD_COLORS_PLAYER_NAME))
local NAME_COLOR = ZO_ColorDef:New(GetInterfaceColor(INTERFACE_COLOR_TYPE_LEADERBOARD_COLORS, LEADERBOARD_COLORS_NAME))
local LEADERBOARD_LIST_ENTRY_SORT_KEYS =
{
    ["rank"] = { isNumeric = true },
    ["displayName"] = { },
    ["characterName"]  = { },
    ["class"] = { tiebreaker = "rank" },
    ["alliance"] = { tiebreaker = "rank", isNumeric = true },
    ["progress"] = { tiebreaker = "rank" },
    ["points"] = { tiebreaker = "rank", isNumeric = true},
}
local LEADERBOARD_TYPE_HIDDEN_COLUMNS =
{
    [LEADERBOARD_TYPE_OVERALL] = 
    {
        ["progress"] = true,
    },
    [LEADERBOARD_TYPE_CLASS] = 
    {
        ["progress"] = true,
    },
    [LEADERBOARD_TYPE_ALLIANCE] = 
    {
        ["progress"] = true,
    },
    [LEADERBOARD_TYPE_BATTLEGROUND] = 
    {
        ["class"] = true,
        ["alliance"] = true,
        ["progress"] = true,
    },
    [LEADERBOARD_TYPE_TRIBUTE] = 
    {
        ["characterName"] = true,
        ["class"] = true,
        ["alliance"] = true,
        ["progress"] = true,
    },
    [LEADERBOARD_TYPE_ENDLESS_DUNGEON_OVERALL] = 
    {
        ["alliance"] = true,
    },
    [LEADERBOARD_TYPE_ENDLESS_DUNGEON_CLASS] = 
    {
        ["alliance"] = true,
    },
}
local LeaderboardList_Gamepad = ZO_Object.MultiSubclass(ZO_GamepadInteractiveSortFilterList, ZO_SocialOptionsDialogGamepad)
function LeaderboardList_Gamepad:New(...)
    return ZO_GamepadInteractiveSortFilterList.New(self, ...)
end
function LeaderboardList_Gamepad:Initialize(control)
    ZO_GamepadInteractiveSortFilterList.Initialize(self, control)
    ZO_SocialOptionsDialogGamepad.Initialize(self)
    self:SetEmptyText(GetString(SI_LEADERBOARDS_NO_RANKINGS_FOUND))
    ZO_ScrollList_AddDataType(self.list, ZO_LEADERBOARD_PLAYER_DATA, LEADERBOARD_LIST_TEMPLATE, ZO_GAMEPAD_INTERACTIVE_FILTER_LIST_ROW_HEIGHT, function(control, data) self:SetupLeaderboardPlayerEntry(control, data) end)
    self:SetMasterList(LEADERBOARD_LIST_MANAGER:GetMasterList())
    self:SetupSort(LEADERBOARD_LIST_ENTRY_SORT_KEYS, "rank", ZO_SORT_ORDER_UP)
    self.loadingIcon = self.container:GetNamedChild("LoadingIcon")
    self.entryList = self.container:GetNamedChild("List")
    self.emptyRow = self.container:GetNamedChild("EmptyRow")
end
function LeaderboardList_Gamepad:InitializeHeader()
    local rankingTypeText = GetString("SI_LEADERBOARDTYPE", LEADERBOARD_TYPE_OVERALL)
    local contentHeaderData = 
    {
        titleText = "",
        data1HeaderText = "",
        data2HeaderText = zo_strformat(SI_GAMEPAD_LEADERBOARDS_CURRENT_RANK_LABEL, rankingTypeText),
        data3HeaderText = "",
    }
    ZO_GamepadInteractiveSortFilterList.InitializeHeader(self, contentHeaderData)
end
function LeaderboardList_Gamepad:InitializeKeybinds()
    local keybindDescriptor = {}
    self:AddSocialOptionsKeybind(keybindDescriptor)
    ZO_Gamepad_AddBackNavigationKeybindDescriptorsWithSound(keybindDescriptor, GAME_NAVIGATION_TYPE_BUTTON, self:GetBackKeybindCallback())
    self:SetKeybindStripDescriptor(keybindDescriptor)
    ZO_GamepadInteractiveSortFilterList.InitializeKeybinds(self)
end
function LeaderboardList_Gamepad:InitializeSearchFilter()
    ZO_GamepadInteractiveSortFilterList.InitializeSearchFilter(self)
end
function LeaderboardList_Gamepad:RefreshLeaderboardType(leaderboardType)
    local hiddenColumns = LEADERBOARD_TYPE_HIDDEN_COLUMNS[leaderboardType]
    if hiddenColumns then
        local HIDDEN = true
        self.sortHeaderGroup:SetHeadersHiddenFromKeyList(hiddenColumns, HIDDEN)
        if hiddenColumns[self.currentSortKey] then
            -- Table was sorted by a column that is gone now: fallback to rank
            self.currentSortKey = "rank"
            self.currentSortOrder = ZO_SORT_ORDER_UP
            self.sortHeaderGroup:SelectHeaderByKey(self.currentSortKey, false, true)
        end
    else
        local SHOWN = false
        self.sortHeaderGroup:SetHeadersHiddenFromKeyList({}, SHOWN)
    end
end
function LeaderboardList_Gamepad:GetNarrationText()
    local narrations = {}
    local selectedData = self:GetSelectedData()
    if selectedData then
        ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(GetString(SI_GAMEPAD_LEADERBOARDS_RANK_HEADER_NARRATION)))
        ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(selectedData.rank))
        ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(ZO_GetPlatformAccountLabel()))
        ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(selectedData.displayName))
        if selectedData.characterName and selectedData.characterName ~= "" then
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(GetString(SI_GAMEPAD_LEADERBOARDS_HEADER_CHARACTER_NAME)))
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(selectedData.characterName))
        end
        if selectedData.class then
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(GetString(SI_LEADERBOARDS_HEADER_CLASS)))
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(zo_strformat(SI_CLASS_NAME, GetClassName(GENDER_MALE, selectedData.class))))
        end
        if selectedData.alliance then
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(GetString(SI_LEADERBOARDS_HEADER_ALLIANCE)))
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(GetString("SI_ALLIANCE", selectedData.alliance)))
        end
        if selectedData.arc then
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(GetString(SI_LEADERBOARDS_HEADER_PROGRESS)))
            local stageNarration, cycleNarration, arcNarration = ZO_EndlessDungeonManager.GetProgressionNarrationDescriptions(selectedData.stage, selectedData.cycle, selectedData.arc)
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(arcNarration))
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(cycleNarration))
            ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(stageNarration))
        end
        ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(GAMEPAD_LEADERBOARDS.headerPointsText))
        ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(selectedData.points))
    end
    return narrations
end
function LeaderboardList_Gamepad:GetBackKeybindCallback()
    return function()
        self:Deactivate()
        GAMEPAD_LEADERBOARDS:ActivateCategories()
    end
end
function LeaderboardList_Gamepad:FilterScrollList()
    local playerName = GetUnitName("player")
    local filteredClass = self.filterDropdown:GetSelectedItemData().classId
    local searchTerm = self:GetCurrentSearch()
    local function SearchCallback(data)
        return searchTerm == "" or self:IsMatch(searchTerm, data)
    end
    
    local function PreAddCallback(data)
        data.recolorName = data.characterName == playerName
    end
    LEADERBOARD_LIST_MANAGER:FilterScrollList(self.list, filteredClass, PreAddCallback, SearchCallback)
end
function LeaderboardList_Gamepad:OnSelectionChanged(oldData, newData)
    ZO_GamepadInteractiveSortFilterList.OnSelectionChanged(self, oldData, newData)
    self:SetupOptions(newData)
end
function LeaderboardList_Gamepad:SetupLeaderboardPlayerEntry(control, data)
    ZO_LeaderboardsManager_Shared.SetupLeaderboardPlayerEntry(GAMEPAD_LEADERBOARDS, control, data)
    
    local leaderboardData = GAMEPAD_LEADERBOARDS:GetSelectedLeaderboardData()
    local shouldHideCharacterLabel = leaderboardData.leaderboardRankType == LEADERBOARD_TYPE_TRIBUTE
    control.characterNameLabel:SetHidden(shouldHideCharacterLabel)
    local nameColor = data.recolorName and PLAYER_NAME_COLOR or NAME_COLOR
    self:ColorName(control, data, nameColor)
    local r, g, b, a = ZO_SELECTED_TEXT:UnpackRGBA()
    control.rankLabel:SetColor(r, g, b, a)
    control.classIcon:SetColor(r, g, b, a)
    control.allianceIcon:SetColor(r, g, b, a)
    control.progressLabel:SetColor(r, g, b, a)
    control.pointsLabel:SetColor(r, g, b, a)
    if not shouldHideCharacterLabel then
        control.characterNameLabel:SetText(ZO_FormatUserFacingCharacterName(data.characterName))
        control.characterNameLabel:SetColor(r, g, b, a)
    end
end
function LeaderboardList_Gamepad:BuildOptionsList()
    local groupId = self:AddOptionTemplateGroup(ZO_SocialOptionsDialogGamepad.GetDefaultHeader)
    self:AddOptionTemplate(groupId, ZO_SocialOptionsDialogGamepad.BuildGamerCardOption, IsConsoleUI)
    self:AddOptionTemplate(groupId, ZO_SocialOptionsDialogGamepad.BuildAddFriendOption, ZO_SocialOptionsDialogGamepad.ShouldAddFriendOption)
end
function LeaderboardList_Gamepad:ColorName(control, data, textColor)
    local textColor = textColor or GAMEPAD_LEADERBOARDS:GetRowColors(self, data)
    local nameControl = GetControl(control, "Name")
    nameControl:SetColor(textColor:UnpackRGBA())
end
function LeaderboardList_Gamepad:RepopulateFilterDropdown(onFilterChangedCallback)
    ZO_Leaderboards_PopulateDropdownFilter(self.filterDropdown, onFilterChangedCallback, LEADERBOARD_LIST_MANAGER.leaderboardRankType)
end
function LeaderboardList_Gamepad:GetSelectedClassFilter()
    local selectedData = self.filterDropdown:GetSelectedItemData()
    if selectedData then
        return selectedData.classId
    end
    return nil
end
function LeaderboardList_Gamepad:SetLoadingSpinnerVisibility(show)
    self.loadingIcon:SetHidden(not show)
    self.entryList:SetHidden(show)
    if show then
        self.emptyRow:SetHidden(true)
    end
    self.isResponsePending = show
end
function LeaderboardList_Gamepad:RefreshFilters()
    if not self.isResponsePending then
        if self:IsLockedForUpdates() then
            self:UpdatePendingUpdateLevel(UPDATE_FILTER)
            return
        end
        self:FilterScrollList()
        self:SortScrollList()
        self:CommitScrollList()
    end
end
    GAMEPAD_LEADERBOARD_LIST = LeaderboardList_Gamepad:New(control)
end