Back to Home

ESO Lua File v101041

ingame/lfg/veterandifficultysettings.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
local function DetermineButtonState(pressed, enabled)
    if pressed then
        if enabled then
            return BSTATE_PRESSED
        else
            return BSTATE_DISABLED_PRESSED
        end
    else
        if enabled then
            return BSTATE_NORMAL
        else
            return BSTATE_DISABLED
        end
    end
end
local function UpdateVeteranStateVisuals(self, isVeteranDifficulty)
    self.hasControlOfDifficulty, self.difficultyControlReason = CanPlayerChangeGroupDifficulty()
    if self.hasControlOfDifficulty or self.isGroupFinder then
        self.normalModeButton:SetHidden(false)
        self.veteranModeButton:SetHidden(false)
        self.difficultyLabel:SetHidden(true)
        local isChampion = CanUnitGainChampionPoints("player")
        --Normal mode button
        local normalButtonPressed = not isVeteranDifficulty
        local normalButtonEnabled = true
        local normalButtonState = DetermineButtonState(normalButtonPressed, normalButtonEnabled)
        local normalButtonLocked = normalButtonPressed --enforce a button always being selected by locking down the pressed one
        self.normalModeButton:SetState(normalButtonState, normalButtonLocked)
        --Veteran mode button
        local veteranButtonPressed = isVeteranDifficulty
        local veteranButtonEnabled = isChampion
        local veteranButtonState = DetermineButtonState(veteranButtonPressed, veteranButtonEnabled)
        local veteranButtonLocked = veteranButtonPressed --enforce a button always being selected by locking down the pressed one
        self.veteranModeButton:SetState(veteranButtonState, veteranButtonLocked)
    else
        self.normalModeButton:SetHidden(true)
        self.veteranModeButton:SetHidden(true)
        self.difficultyLabel:SetHidden(false)
        local dungeonDifficulty = ZO_GetEffectiveDungeonDifficulty()
        local icon = ZO_GetKeyboardDungeonDifficultyIcon(dungeonDifficulty)
        local text = GetString("SI_DUNGEONDIFFICULTY", dungeonDifficulty)
        self.difficultyLabel:SetText(zo_iconTextFormat(icon, 32, 32, text))
    end
end
local function UpdateVeteranState(self, isVeteranDifficulty)
    if isVeteranDifficulty == nil then
        isVeteranDifficulty = ZO_GetEffectiveDungeonDifficulty() == DUNGEON_DIFFICULTY_VETERAN
    end
    UpdateVeteranStateVisuals(self, isVeteranDifficulty)
end
    self.normalModeButton = self:GetNamedChild("NormalDifficulty")
    self.veteranModeButton = self:GetNamedChild("VeteranDifficulty")
    self.difficultyLabel = self:GetNamedChild("DifficultyLabel")
    local function Refresh(unitTag)
        if unitTag == nil or unitTag == "player" then
            UpdateVeteranState(self)
        end
    end
    -- NOTE: There appears to be a bug in the event manager code that is preventing the same function to be registered from the same control for different events...
    -- until that's fixed, split up the handlers.
    local function OnGroupVeteranDifficultyChanged()
        Refresh()
    end
    local function OnChampionPointsChanged(eventId, unitTag, championPoints)
        Refresh(unitTag)
    end
    local function OnPlayerActivated()
        Refresh()
    end
    local function OnLeaderUpdate()
        Refresh()
    end
    local function OnGroupUpdate()
        Refresh()
    end
    local function OnGroupMemberJoined()
        Refresh()
    end
    local function OnGroupMemberLeft()
        Refresh()
    end
    local function OnGroupUpdate()
        Refresh()
    end
    local function OnZoneUpdate(evt, unitTag, newZone)
        if ZO_Group_IsGroupUnitTag(unitTag) or unitTag == "player" then
            Refresh()
        end
    end
    self:RegisterForEvent(EVENT_VETERAN_DIFFICULTY_CHANGED, OnGroupVeteranDifficultyChanged)
    self:RegisterForEvent(EVENT_GROUP_VETERAN_DIFFICULTY_CHANGED, OnGroupVeteranDifficultyChanged)
    self:RegisterForEvent(EVENT_CHAMPION_POINT_UPDATE, OnChampionPointsChanged)
    self:RegisterForEvent(EVENT_LEADER_UPDATE, OnLeaderUpdate)
    self:RegisterForEvent(EVENT_GROUP_UPDATE, OnGroupUpdate)
    self:RegisterForEvent(EVENT_GROUP_MEMBER_JOINED, OnGroupMemberJoined)
    self:RegisterForEvent(EVENT_GROUP_MEMBER_LEFT, OnGroupMemberLeft)
    self:RegisterForEvent(EVENT_PLAYER_ACTIVATED, OnPlayerActivated)
    self:RegisterForEvent(EVENT_ZONE_UPDATE, OnZoneUpdate)
    Refresh()
end
    self.isGroupFinder = true
end
    InitializeTooltip(InformationTooltip, self, BOTTOM, 0, 0)
    SetTooltipText(InformationTooltip, GetString("SI_DUNGEONDIFFICULTY", self.dungeonDifficulty))
end
    ClearTooltip(InformationTooltip)
end
    local isVeteranDifficulty = ZO_ConvertToIsVeteranDifficulty(self.dungeonDifficulty)
    SetVeteranDifficulty(isVeteranDifficulty)
    -- Pre-emptive update based on mostly current state, and the desired difficulty setting.
    UpdateVeteranState(self:GetParent(), isVeteranDifficulty)
end
    InitializeTooltip(InformationTooltip, self, RIGHT, -5, 0)
    local difficultyContainer = self:GetParent()
    local r, g, b
    local SET_TO_FULL_SIZE = true
    if not difficultyContainer.hasControlOfDifficulty then
        r, g, b = ZO_ERROR_COLOR:UnpackRGB()
    else
        r, g, b = ZO_SUCCEEDED_TEXT:UnpackRGB()
    end
    InformationTooltip:AddLine(GetString("SI_GROUPDIFFICULTYCHANGEREASON", difficultyContainer.difficultyControlReason), "", r, g, b, TOPLEFT, MODIFY_TEXT_TYPE_NONE, TEXT_ALIGN_LEFT, SET_TO_FULL_SIZE)
    r, g, b = ZO_NORMAL_TEXT:UnpackRGB()
    InformationTooltip:AddLine(GetString(SI_DUNGEON_DIFFICULTY_HELP_TOOLTIP), "", r, g, b, TOPLEFT, MODIFY_TEXT_TYPE_NONE, TEXT_ALIGN_LEFT, SET_TO_FULL_SIZE)
end
    ClearTooltip(InformationTooltip)
end