Back to Home

ESO Lua File v101044

ingame/battleground/battlegroundscoreboardroundindicator.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
-- Battleground Scoreboard round winners summary.
local LIGHT_GRAY = ZO_ColorDef:New("CCCCCC")
local KEYBOARD_BG_IMAGE_SMALL_WIDTH = 512
local GAMEPAD_AGGREGATE_TEXTURES =
{
    normal = "EsoUI/Art/MenuBar/Gamepad/gp_playerMenu_icon_leaderBoards.dds",
}
local KEYBOARD_AGGREGATE_TEXTURES =
{
    normal = "EsoUI/Art/Journal/journal_tabIcon_leaderboard_up.dds",
    mouseOver = "EsoUI/Art/Journal/journal_tabIcon_leaderboard_over.dds",
    pressed = "EsoUI/Art/Journal/journal_tabIcon_leaderboard_down.dds",
    disabled = "EsoUI/Art/Journal/journal_tabIcon_leaderboard_disabled.dds",
}
-- Single round with a round number and the winner's flag.
ZO_BattlegroundScoreboardRoundIndicatorRound = ZO_InitializingObject:Subclass()
function ZO_BattlegroundScoreboardRoundIndicatorRound:Initialize(control, parent)
    self.control = control
    control.owner = self
    control.parent = parent
    self.title = self.control:GetNamedChild("Number")
    self.winnerIcon = self.control:GetNamedChild("Icon")
end
function ZO_BattlegroundScoreboardRoundIndicatorRound:SetDetails(roundNumber, color, winnerIcon, tintIcon)
    self.title:SetText(roundNumber)
    self.title:SetColor(color:UnpackRGBA())
    self.control.value = roundNumber
    if winnerIcon ~= nil then
        self.winnerIcon:SetHidden(false)
        self.winnerIcon:SetTexture(winnerIcon)
        if tintIcon == true then
            self.winnerIcon:SetColor(color:UnpackRGBA())
        end
    else
        self.winnerIcon:SetHidden(true)
    end
end
do
    local KEYBOARD_STYLE = 
    {
        indicatorTemplate = "ZO_BattlegroundScoreboardRoundIndicatorRound_Keyboard_Template",
    }
    local GAMEPAD_STYLE = 
    {
        indicatorTemplate = "ZO_BattlegroundScoreboardRoundIndicatorRound_Gamepad_Template",
    }
    function ZO_BattlegroundScoreboardRoundIndicatorRound:InitializePlatformStyle()
        self.platformStyle = ZO_PlatformStyle:New(function(style) self:ApplyPlatformStyle(style) end, KEYBOARD_STYLE, GAMEPAD_STYLE)
    end
end
function ZO_BattlegroundScoreboardRoundIndicatorRound:ApplyPlatformStyle(style)
    ApplyTemplateToControl(self.control, style.indicatorTemplate)
end
-- Round winners summary widget for Battleground Scoreboard.
ZO_BattlegroundScoreboardRoundIndicator = ZO_InitializingObject:Subclass()
function ZO_BattlegroundScoreboardRoundIndicator:Initialize(control, parent)
    self.control = control
    control.owner = self
    self.parent = parent
    self.numberPool = ZO_ControlPool:New("ZO_BattlegroundScoreboardRoundIndicatorRound", control)
    self.currentIndicator = self.control:GetNamedChild("CurrentIndicator")
    self.keyboardBackground = self.control:GetNamedChild("BG_Keyboard")
    self.gamepadBackground = self.control:GetNamedChild("BG_Gamepad")
    self.buttonNextRound = self.control:GetNamedChild("NextRound")
    self.buttonNextRound.parent = self
    self.buttonPreviousRound = self.control:GetNamedChild("PreviousRound")
    self.buttonPreviousRound.parent = self
    self.buttonNextRoundGP = self.control:GetNamedChild("NextButton")
    self.buttonPreviousRoundGP = self.control:GetNamedChild("PreviousButton")
    self.buttonAggregate = self.control:GetNamedChild("Aggregate")
    self.buttonAggregate.parent = self
    local KEYBOARD_STYLE =
    {
        roundMarker = "EsoUI/Art/Battlegrounds/battleground_roundselector.dds",
        isKeyboard = true,
    }
    local GAMEPAD_STYLE =
    {
        roundMarker = "EsoUI/Art/Battlegrounds/battleground_roundselector_gp.dds",
        isKeyboard = false,
    }
    local function UpdatePlatformStyle(style)
        self.currentIndicator:SetTexture(style.roundMarker)
        self.keyboardBackground:SetHidden(not style.isKeyboard)
        self.gamepadBackground:SetHidden(style.isKeyboard)
        self.buttonNextRound:SetHidden(not style.isKeyboard)
        self.buttonPreviousRound:SetHidden(not style.isKeyboard)
        self.buttonNextRoundGP:SetHidden(style.isKeyboard)
        self.buttonPreviousRoundGP:SetHidden(style.isKeyboard)
        local buttonTextures = IsInGamepadPreferredMode() and GAMEPAD_AGGREGATE_TEXTURES or KEYBOARD_AGGREGATE_TEXTURES
        self.buttonAggregate:SetNormalTexture(buttonTextures.normal)
        self.buttonAggregate:SetMouseOverTexture(buttonTextures.mouseOver)
        self.buttonAggregate:SetPressedTexture(buttonTextures.pressed)
        self.buttonAggregate:SetDisabledTexture(buttonTextures.disabled)
    end
    self.platformStyle = ZO_PlatformStyle:New(UpdatePlatformStyle, KEYBOARD_STYLE, GAMEPAD_STYLE)
end
-- Params:
-- numRounds: (number) Total rounds in this match.
-- viewedRound: (number) Current round number.
function ZO_BattlegroundScoreboardRoundIndicator:SetDetails(numRounds, viewedRound, showAggregatedScores)
    if numRounds <= 1 or viewedRound == nil then
        self.control:SetHidden(true)
        return
    else
        self.control:SetHidden(false)
    end
    self.currentRound = GetCurrentBattlegroundRoundIndex()
    local canMoveNext = viewedRound < self.currentRound or (not showAggregatedScores and self.showAggregateButton)  -- Moving next from the last valid round will enter the Aggregate.
    local canMovePrevious = viewedRound > 1
    local currentRound = self.currentRound
    self.buttonNextRound:SetEnabled(canMoveNext)
    self.buttonNextRoundGP:SetEnabled(canMoveNext)
    self.buttonPreviousRound:SetEnabled(canMovePrevious)
    self.buttonPreviousRoundGP:SetEnabled(canMovePrevious)
    local currentBattlegroundId = GetCurrentBattlegroundId()
    -- From various team scores, calculate the single winner of each round.
    local roundWinners = {}
    for roundIndex = 1, numRounds do
        local bestScore = 0
        local bestTeams = {} -- Maybe tied
        if roundIndex <= currentRound then
            for teamId = BATTLEGROUND_TEAM_ITERATION_BEGIN, BATTLEGROUND_TEAM_ITERATION_END do
                if DoesBattlegroundHaveTeam(currentBattlegroundId, teamId) and DidCurrentBattlegroundTeamWinOrTieRound(teamId, roundIndex) then
                    table.insert(bestTeams, teamId)
                end
            end
        end
        roundWinners[roundIndex] = bestTeams
    end
    self.numberPool:ReleaseAllObjects()
    local previousControl = nil
    for roundNumber = 1, numRounds do
        local roundControl = self.numberPool:AcquireObject()
        local round = ZO_BattlegroundScoreboardRoundIndicatorRound:New(roundControl, self)
        if #roundWinners[roundNumber] > 0 and (roundNumber < currentRound or (roundNumber == currentRound and GetCurrentBattlegroundState() > BATTLEGROUND_STATE_RUNNING)) then
            -- If there was a tie, then roundWinners[idx] have more than 1 entry.
            if #roundWinners[roundNumber] == 1  then
                local winnningTeam = roundWinners[roundNumber][1]
                local icon = ZO_GetBattlegroundTeamIcon(winnningTeam)
                local color = roundNumber == viewedRound and ZO_WHITE or GetBattlegroundTeamColor(winnningTeam)
                round:SetDetails(roundNumber, color, icon)
            else
                local tie_image
                local tiedTeams = roundWinners[roundNumber]
                if #tiedTeams == 3  then
                    tie_image = "EsoUI/Art/Battlegrounds/battlegrounds_scoreIcon_tie_three_way.dds"
                else
                    internalassert(#tiedTeams == 2)
                    -- Sort ties in canonical team order.
                    table.sort(tiedTeams, function(a,b) return a < b end)
                    if tiedTeams[1] == BATTLEGROUND_TEAM_FIRE_DRAKES then
                        if tiedTeams[2] == BATTLEGROUND_TEAM_PIT_DAEMONS then
                            tie_image = "EsoUI/Art/Battlegrounds/battlegrounds_scoreIcon_tie_orange_green.dds"
                        else
                            internalassert(tiedTeams[2] == BATTLEGROUND_TEAM_STORM_LORDS)
                            tie_image = "EsoUI/Art/Battlegrounds/battlegrounds_scoreIcon_tie_orange_purple.dds"
                        end
                    else
                        internalassert(tiedTeams[1] == BATTLEGROUND_TEAM_PIT_DAEMONS)
                        internalassert(tiedTeams[2] == BATTLEGROUND_TEAM_STORM_LORDS)
                        tie_image = "EsoUI/Art/Battlegrounds/battlegrounds_scoreIcon_tie_green_purple.dds"
                    end
                end
                local TINT_IMAGE = true
                round:SetDetails(roundNumber, LIGHT_GRAY, tie_image, TINT_IMAGE)
            end
        elseif roundNumber == currentRound then
            local NO_ICON = nil
            local color = roundNumber == viewedRound and ZO_WHITE or ZO_HIGHLIGHT_TEXT
            round:SetDetails(roundNumber, color, NO_ICON)
        else
            -- Future rounds.
            local NO_ICON = nil
            round:SetDetails(roundNumber, ZO_DISABLED_TEXT, NO_ICON)
        end
        if roundNumber == 1 then
            roundControl:SetAnchor(TOPLEFT, nil, nil, 0, 20)
        else
            roundControl:SetAnchor(TOPLEFT, previousControl, TOPRIGHT, 20)
        end
        if roundNumber == viewedRound then
            self.currentIndicator:SetAnchor(TOP, roundControl, BOTTOM, 0, 10)
        end
        if self.keyboardBackground:GetWidth() < KEYBOARD_BG_IMAGE_SMALL_WIDTH then
            self.keyboardBackground:SetTexture("EsoUI/Art/Battlegrounds/battlegrounds_scoreboardBG_rounds.dds")
        else
            self.keyboardBackground:SetTexture("EsoUI/Art/Battlegrounds/battlegrounds_scoreboardBG_roundsLarge.dds")
        end
        previousControl = roundControl
    end
    if self.showAggregateButton then
        self.buttonAggregate:SetHidden(false)
        self.buttonAggregate:ClearAnchors()
        if previousControl then
            self.buttonAggregate:SetAnchor(TOPLEFT, previousControl, TOPRIGHT, 20, 25)
        else
            self.buttonAggregate:SetAnchor(TOPLEFT, self.control)
        end
        if showAggregatedScores then
            self.currentIndicator:ClearAnchors()
            self.currentIndicator:SetAnchor(TOP, self.buttonAggregate, BOTTOM, 0, -5)
        end
    else
        self.buttonAggregate:SetHidden(true)
    end
end
function ZO_BattlegroundScoreboardRoundIndicator:IsVisible()
    return not self.control:IsHidden()
end
function ZO_BattlegroundScoreboardRoundIndicator:GetKeybindsNarrationData()
    local narrations = {}
    table.insert(narrations,
    {
        name = GetString(SI_BATTLEGROUND_SCOREBOARD_PREVIOUS_ROUND),
        keybindName = ZO_Keybindings_GetHighestPriorityNarrationStringFromAction(self.buttonPreviousRoundGP:GetKeybind()),
        enabled = self.buttonPreviousRoundGP:IsEnabled(),
    })
    table.insert(narrations,
    {
        name = GetString(SI_BATTLEGROUND_SCOREBOARD_NEXT_ROUND),
        keybindName = ZO_Keybindings_GetHighestPriorityNarrationStringFromAction(self.buttonNextRoundGP:GetKeybind()),
        enabled = self.buttonNextRoundGP:IsEnabled(),
    })
    return narrations
end
function ZO_BattlegroundScoreboardRoundIndicator:MoveViewedRound(deltaIndex)
    local CLAMP_ROUND = true
    if self.showAggregateButton then
        if not self.parent:ShouldShowAggregateScores() and self.parent:GetViewedRound() == self.currentRound and deltaIndex > 0 then
            self:ShowAggregateScores(true)
            return
        elseif self.parent:ShouldShowAggregateScores() and deltaIndex < 0 then
            self.parent:SetViewedRound(self.currentRound, CLAMP_ROUND)
            return
        end
    end
    self.parent:SetViewedRound(self.parent:GetViewedRound() + deltaIndex, CLAMP_ROUND)
end
function ZO_BattlegroundScoreboardRoundIndicator:ShowAggregateScores()
    if self.showAggregateButton then
        self.parent:ShowAggregateScores(true)
    end
end
function ZO_BattlegroundScoreboardRoundIndicator:OnRoundNumberClick(roundIndex)
    local DONT_CLAMP_ROUND = false
    self.parent:SetViewedRound(roundIndex, DONT_CLAMP_ROUND)
end
function ZO_BattlegroundScoreboardRoundIndicator:OnKeybindDown(keybind)
    if keybind == "BATTLEGROUND_SCOREBOARD_NEXT_ROUND" then
        self:MoveViewedRound(1)
    elseif keybind == "BATTLEGROUND_SCOREBOARD_PREVIOUS_ROUND" then
        self:MoveViewedRound(-1)
    end
end
--[[ xml functions ]]--
    control.parent:MoveViewedRound(1)
end
    InitializeTooltip(InformationTooltip, control, LEFT, 0, 0, RIGHT)
    SetTooltipText(InformationTooltip, GetString(SI_BATTLEGROUND_SCOREBOARD_NEXT_ROUND))
end
    ClearTooltip(InformationTooltip)
end
    control.parent:MoveViewedRound(-1)
end
    InitializeTooltip(InformationTooltip, control, RIGHT, 0, 0, LEFT)
    SetTooltipText(InformationTooltip, GetString(SI_BATTLEGROUND_SCOREBOARD_PREVIOUS_ROUND))
end
    ClearTooltip(InformationTooltip)
end
    if upInside then
        control.parent:OnRoundNumberClick(control.value)
    end
end
    control.parent:ShowAggregateScores()
end
    InitializeTooltip(InformationTooltip, control, RIGHT, 0, 0, LEFT)
    SetTooltipText(InformationTooltip, GetString(SI_BATTLEGROUND_SCOREBOARD_SHOW_AGGREGATE))
end
    ClearTooltip(InformationTooltip)
end