ESO Lua File v100010

ingame/leaderboards/raidleaderboards.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
-----------------
-- Raid Leaderboards
-----------------
local HEADER_ICONS =
{
    [RAID_CATEGORY_TRIAL] =
    {
        up = "EsoUI/Art/Journal/leaderboard_indexIcon_raids_up.dds", 
        down = "EsoUI/Art/Journal/leaderboard_indexIcon_raids_down.dds", 
        over = "EsoUI/Art/Journal/leaderboard_indexIcon_raids_over.dds",
    },
    [RAID_CATEGORY_CHALLENGE] =
    {
        up = "EsoUI/Art/Journal/leaderboard_indexIcon_challenge_up.dds", 
        down = "EsoUI/Art/Journal/leaderboard_indexIcon_challenge_down.dds", 
        over = "EsoUI/Art/Journal/leaderboard_indexIcon_challenge_over.dds",
    },
}
local UPDATE_INTERVAL_SECS = 1
local ZO_RaidLeaderboardsManager = ZO_LeaderboardBase:Subclass()
function ZO_RaidLeaderboardsManager:New(control)
    RAID_LEADERBOARD_FRAGMENT = ZO_FadeSceneFragment:New(control)
    local manager = ZO_LeaderboardBase.New(self, control, RAID_LEADERBOARD_FRAGMENT)
    manager.currentTime = GetControl(control, "CurrentTime")
    manager.currentTimePenaltyIcon = GetControl(control, "CurrentTimePenalty")
    manager.currentTimePenaltyIcon:SetParent(manager.currentTime)
    manager.scoringInfoHelpIcon = GetControl(control, "ScoringInfoHelp")
    manager.scoringInfoHelpIcon:SetParent(manager.scoringInfoLabel)
    RAID_LEADERBOARD_FRAGMENT:RegisterCallback("StateChange",   function(oldState, state)
                                                                    if state == SCENE_FRAGMENT_SHOWING then
                                                                        manager:UpdatePlayerInfo()
                                                                        manager:UpdatePlayerParticipationStatus()
                                                                        manager:UpdateRaidTimer()
                                                                        QueryRaidLeaderboardData()
                                                                    end
                                                                end)
    manager.raidListNodes = {}
    manager:InitializeCategories()
    local function SelectCurrentRaid()
        local currentRaidId = GetCurrentParticipatingRaidId()
        if currentRaidId > 0 then
            manager:SelectRaidById(currentRaidId, RAID_LEADERBOARD_SELECT_OPTION_PREFER_WEEKLY)
        end
    end
    EVENT_MANAGER:RegisterForEvent("RaidLeaderboards", EVENT_RAID_LEADERBOARD_DATA_CHANGED, function() manager:OnDataChanged() end)
    EVENT_MANAGER:RegisterForEvent("RaidLeaderboards", EVENT_RAID_LEADERBOARD_PLAYER_DATA_CHANGED, function() manager:UpdatePlayerInfo() end)
    EVENT_MANAGER:RegisterForEvent("RaidLeaderboards", EVENT_RAID_PARTICIPATION_UPDATE, function() SelectCurrentRaid(); manager:UpdatePlayerParticipationStatus() end)
    EVENT_MANAGER:RegisterForEvent("RaidLeaderboards", EVENT_RAID_TIMER_STATE_UPDATE, function() manager:UpdatePlayerParticipationStatus(); manager:UpdateRaidTimer() end)
    EVENT_MANAGER:RegisterForEvent("RaidLeaderboards", EVENT_PLAYER_ACTIVATED, SelectCurrentRaid)
    return manager
end
local function GetSingleRaidEntryInfo(entryIndex, raidIndex)
    return GetRaidLeaderboardEntryInfo(raidIndex, entryIndex)
end
local function TimeFormatFunction(timeMs)
    return ZO_FormatTimeMilliseconds(timeMs, TIME_FORMAT_STYLE_COLONS, TIME_FORMAT_PRECISION_MILLISECONDS_NO_HOURS_OR_DAYS)
end
local function GetRaidLeaderboardTitleName(raidIndex)
    local raidName, isWeekly = GetRaidLeaderboardInfo(raidIndex)
    if isWeekly then
        return zo_strformat(SI_RAID_LEADERBOARDS_WEEKLY_RAID, raidName)
    else
        return zo_strformat(SI_RAID_LEADERBOARDS_RAID_NAME, raidName)
    end
end
function ZO_RaidLeaderboardsManager:InitializeCategories()
    local addedNode = false
    local numRaids = GetNumRaidLeaderboards()
    if numRaids > 0 then
        self.headers = {}
        for raidIndex = 1, numRaids do
            if not self.raidListNodes[raidIndex] then
                
                local raidName, isWeekly, raidId, category = GetRaidLeaderboardInfo(raidIndex)
                -- add new category headers as needed
                if not self.headers[category] then
                    self.headers[category] = LEADERBOARDS:AddTreeCategory(GetString("SI_RAIDCATEGORY", category), HEADER_ICONS[category].up, HEADER_ICONS[category].down, HEADER_ICONS[category].over)
                    addedNode = true
                end
                
                local nodeName
                if isWeekly then
                    nodeName = GetString(SI_RAID_LEADERBOARDS_WEEKLY)
                else
                    nodeName = zo_strformat(SI_RAID_LEADERBOARDS_RAID_NAME, raidName)
                end
                local node = LEADERBOARDS:AddTreeEntry(self, nodeName, GetRaidLeaderboardTitleName, self.headers[category], raidIndex, GetNumRaidLeaderboardEntries, nil, GetSingleRaidEntryInfo, TimeFormatFunction, GetString(SI_RAID_LEADERBOARDS_HEADER_TIME))
                local nodeData = node:GetData()
                nodeData.raidId = raidId
                nodeData.isWeekly = isWeekly
                self.raidListNodes[raidIndex] = node
                addedNode = true
            end
        end
        if addedNode then
            LEADERBOARDS:UpdateCategories()
        end
    end
end
RAID_LEADERBOARD_SELECT_OPTION_DEFAULT = 0
RAID_LEADERBOARD_SELECT_OPTION_SKIP_WEEKLY = 1
RAID_LEADERBOARD_SELECT_OPTION_PREFER_WEEKLY = 2
function ZO_RaidLeaderboardsManager:SelectRaidById(raidId, selectOption, openLeaderboards)
    selectOption = selectOption or RAID_LEADERBOARD_SELECT_OPTION_DEFAULT
    local selectedNode
    for _, node in ipairs(self.raidListNodes) do
        local nodeData = node:GetData()
        if nodeData.raidId == raidId then
            if selectOption == RAID_LEADERBOARD_SELECT_OPTION_SKIP_WEEKLY then
                if not nodeData.isWeekly then
                    selectedNode = node
                    break
                end
            elseif selectOption == RAID_LEADERBOARD_SELECT_OPTION_PREFER_WEEKLY then
                selectedNode = node
                if nodeData.isWeekly then
                    break
                end
            else
                selectedNode = node
                break
            end
        end
    end
    if selectedNode then
        LEADERBOARDS:SelectNode(selectedNode)
        if openLeaderboards then
            SCENE_MANAGER:Show("leaderboards")
        end
    end
end
function ZO_RaidLeaderboardsManager:OnDataChanged()
    LEADERBOARDS:OnLeaderboardDataChanged(self)
end
local timerLabelLastUpdateSecs = 0
function ZO_RaidLeaderboardsManager:TimerLabelOnUpdate(currentTime)
    if currentTime - timerLabelLastUpdateSecs >= UPDATE_INTERVAL_SECS then
        local secsUntilEnd, secsUntilNextStart = GetRaidOfTheWeekTimes()
        if secsUntilEnd > 0 then
            self.weeklyOpen = true
            self.timerLabel:SetText(zo_strformat(SI_RAID_LEADERBOARDS_CLOSES_IN_TIMER, ZO_FormatTime(secsUntilEnd, TIME_FORMAT_STYLE_COLONS, TIME_FORMAT_PRECISION_TWELVE_HOUR)))
        elseif secsUntilNextStart > 0 then
            self.weeklyOpen = false
            self.timerLabel:SetText(zo_strformat(SI_RAID_LEADERBOARDS_REOPENS_IN_TIMER, ZO_FormatTime(secsUntilNextStart, TIME_FORMAT_STYLE_COLONS, TIME_FORMAT_PRECISION_TWELVE_HOUR)))
        else
            self.timerLabel:SetText("")
        end
        timerLabelLastUpdateSecs = currentTime
    end
end
function ZO_RaidLeaderboardsManager:UpdatePlayerInfo()
    local rank, bestTimeMs = GetRaidLeaderboardLocalPlayerInfo(self.selectedSubType)
    if rank and rank > 0 then
        self.currentRankLabel:SetText(zo_strformat(SI_RAID_LEADERBOARDS_CURRENT_RANK, rank))
    else
        self.currentRankLabel:SetText(GetString(SI_RAID_LEADERBOARDS_NOT_RANKED))
    end
    if bestTimeMs and bestTimeMs > 0 then
        self.currentScoreLabel:SetText(zo_strformat(SI_RAID_LEADERBOARDS_BEST_TIME, TimeFormatFunction(bestTimeMs)))
    else
        self.currentScoreLabel:SetText(GetString(SI_RAID_LEADERBOARDS_NO_TIME_RECORDED))
    end
    local _, isWeekly = GetRaidLeaderboardInfo(self.selectedSubType)
    self.timerLabel:SetHidden(not isWeekly)
    if isWeekly then
        self.timerLabel:SetHandler("OnUpdate", function(_, currentTime) self:TimerLabelOnUpdate(currentTime) end)
    else
        timerLabelLastUpdateSecs = 0
        self.timerLabel:SetHandler("OnUpdate", nil)
    end
end
function ZO_RaidLeaderboardsManager:UpdatePlayerParticipationStatus()
    self.participating, self.credited = GetPlayerRaidParticipationInfo(self.selectedSubType)
    if self.participating then
        if self.credited then
            self.scoringInfoHelpIcon:SetHidden(true)
            self.scoringInfoLabel:SetText(GetString(SI_RAID_LEADERBOARDS_PARTICIPATING))
        else
            self.scoringInfoHelpIcon:SetHidden(false)
            self.scoringInfoLabel:SetText(GetString(SI_RAID_LEADERBOARDS_PARTICIPATING_NOT_ELIGIBLE))
        end
    else
        self.scoringInfoHelpIcon:SetHidden(true)
        self.scoringInfoLabel:SetText(GetString(SI_RAID_LEADERBOARDS_NOT_PARTICIPATING))
    end
end
function ZO_RaidLeaderboardsManager:CurrentRaidTimeOnUpdate()
    local raidDuration, penaltyTime = GetCurrentRaidTime()
    if raidDuration then
        self.currentTime:SetText(TimeFormatFunction(raidDuration))
    end
    self.currentTimePenalty = penaltyTime
    self.currentTimePenaltyIcon:SetHidden(not penaltyTime)
end
function ZO_RaidLeaderboardsManager:UpdateRaidTimer()
    local raidInProgress, raidComplete = GetPlayerRaidProgressInfo(self.selectedSubType)
    local showTimer = raidInProgress or raidComplete
    self.currentTime:SetHidden(not showTimer)
    if showTimer then
        self.currentTime:SetHandler("OnUpdate", function() self:CurrentRaidTimeOnUpdate() end)
    else
        self.currentTime:SetHandler("OnUpdate", nil)
    end
end
function ZO_RaidLeaderboardsManager:SetCurrentTimePenaltyTooltip(control)
    if self.currentTimePenalty then
        InitializeTooltip(InformationTooltip, control, TOPRIGHT, -5, 0)
        SetTooltipText(InformationTooltip, zo_strformat(SI_RAID_LEADERBOARDS_PENALTY_INFO, ZO_FormatTime(self.currentTimePenalty, TIME_FORMAT_STYLE_COLONS, TIME_FORMAT_PRECISION_TWELVE_HOUR)))
    end
end
function ZO_RaidLeaderboardsManager:OnSubtypeSelected(subType)
    self.selectedSubType = subType
end
    InitializeTooltip(InformationTooltip, control, TOPRIGHT, -5, 0)
    SetTooltipText(InformationTooltip, GetString(SI_RAID_LEADERBOARDS_PENALTY_INFO))
end
    ClearTooltip(InformationTooltip)
end
    InitializeTooltip(InformationTooltip, control, TOPLEFT, 5, 0)
    SetTooltipText(InformationTooltip, GetString(SI_RAID_LEADERBOARDS_RANK_HELP_TOOLTIP))
end
    ClearTooltip(InformationTooltip)
end
    InitializeTooltip(InformationTooltip, control, TOPRIGHT, -5, 0)
    SetTooltipText(InformationTooltip, GetString(SI_RAID_LEADERBOARDS_PARTICIPATING_NOT_ELIGIBLE_HELP_TOOLTIP))
end
    ClearTooltip(InformationTooltip)
end
    RAID_LEADERBOARDS = ZO_RaidLeaderboardsManager:New(self)
end