Back to Home

ESO Lua File v101041

ingame/cadwell/keyboard/cadwell.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
---------------------
--Cadwell Manager
---------------------
local ZO_CadwellManager = ZO_Object:Subclass()
function ZO_CadwellManager:New(control)
    local manager = ZO_Object.New(self)
    manager.control = control
    manager.zoneInfoContainer = control:GetNamedChild("ZoneInfoContainer")
    manager.zoneStepContainer = control:GetNamedChild("ZoneStepContainer")
    manager.titleText = control:GetNamedChild("TitleText")
    manager.descriptionText = control:GetNamedChild("DescriptionText")
    manager.objectivesText = control:GetNamedChild("ObjectivesText")
    manager.objectiveLinePool = ZO_ControlPool:New("ZO_Cadwell_ObjectiveLine", control, "Objective")
    manager.currentCadwellProgressionLevel = GetCadwellProgressionLevel()
    manager:RefreshList()
    local function OnCadwellProgressionLevelChanged(event, cadwellProgression)
        MAIN_MENU_KEYBOARD:UpdateSceneGroupButtons("journalSceneGroup")
        manager.currentCadwellProgressionLevel = cadwellProgression
        manager:RefreshList()
    end
    local function OnPOIUpdated()
        if manager.currentCadwellProgressionLevel > CADWELL_PROGRESSION_LEVEL_BRONZE then
            manager:RefreshList()
        end
    end
    control:RegisterForEvent(EVENT_POI_UPDATED, OnPOIUpdated)
    control:RegisterForEvent(EVENT_CADWELL_PROGRESSION_LEVEL_CHANGED, OnCadwellProgressionLevelChanged)
    return manager
end
function ZO_CadwellManager:InitializeCategoryList(control)
    self.navigationTree = ZO_Tree:New(control:GetNamedChild("NavigationContainerScrollChild"), 60, -10, 300)
    local progressionLevelToIcon = 
    {
        [CADWELL_PROGRESSION_LEVEL_SILVER] = 
        {
            "EsoUI/Art/Cadwell/cadwell_indexIcon_silver_down.dds",
            "EsoUI/Art/Cadwell/cadwell_indexIcon_silver_up.dds",
            "EsoUI/Art/Cadwell/cadwell_indexIcon_silver_over.dds",
        },
        [CADWELL_PROGRESSION_LEVEL_GOLD] = 
        {
            "EsoUI/Art/Cadwell/cadwell_indexIcon_gold_down.dds",
            "EsoUI/Art/Cadwell/cadwell_indexIcon_gold_up.dds",
            "EsoUI/Art/Cadwell/cadwell_indexIcon_gold_over.dds",
        },
    }
    local function GetIconsForCadwellProgressionLevel(progressionLevel)
        if progressionLevelToIcon[progressionLevel] then
            return unpack(progressionLevelToIcon[progressionLevel])
        end
    end
    local function TreeHeaderSetup(node, control, progressionLevel, open)
        control.progressionLevel = progressionLevel
        control.text:SetModifyTextType(MODIFY_TEXT_TYPE_UPPERCASE)
        control.text:SetText(GetString("SI_CADWELLPROGRESSIONLEVEL", progressionLevel))
        local down, up, over = GetIconsForCadwellProgressionLevel(progressionLevel)
        control.icon:SetTexture(open and down or up)
        control.iconHighlight:SetTexture(over)
        ZO_IconHeader_Setup(control, open)
    end
    self.navigationTree:AddTemplate("ZO_IconHeader", TreeHeaderSetup, nil, nil, nil, 0)
    local function TreeEntrySetup(node, control, data, open)
        control:SetText(zo_strformat(SI_CADWELL_QUEST_NAME_FORMAT, data.name))
        GetControl(control, "CompletedIcon"):SetHidden(not data.completed)
        control:SetSelected(false)
    end
    local function TreeEntryOnSelected(control, data, selected, reselectingDuringRebuild)
        control:SetSelected(selected)
        if selected and not reselectingDuringRebuild then
            self:RefreshDetails()
        end
    end
    local function TreeEntryEquality(left, right)
        return left.name == right.name
    end
    self.navigationTree:AddTemplate("ZO_CadwellNavigationEntry", TreeEntrySetup, TreeEntryOnSelected, TreeEntryEquality)
    self.navigationTree:SetExclusive(true)
    self.navigationTree:SetOpenAnimation("ZO_TreeOpenAnimation")
end
function ZO_CadwellManager:RefreshList()
    if self.control:IsHidden() then
        self.dirty = true
        return
    end
    self.navigationTree:Reset()
    local zones = {}
    for progressionLevel = CADWELL_PROGRESSION_LEVEL_SILVER, CADWELL_PROGRESSION_LEVEL_GOLD do
        local numZones = GetNumZonesForCadwellProgressionLevel(progressionLevel)
        if self.currentCadwellProgressionLevel < progressionLevel then
            break
        end
        if numZones > 0 then
            local parent = self.navigationTree:AddNode("ZO_IconHeader", progressionLevel)
            for zoneIndex = 1, numZones do
                local zoneName, zoneDescription, zoneOrder = GetCadwellZoneInfo(progressionLevel, zoneIndex)
                local zoneCompleted = true
                local objectives = {}
                local numObjectives = GetNumPOIsForCadwellProgressionLevelAndZone(progressionLevel, zoneIndex)
                for objectiveIndex = 1, numObjectives do
                    local name, openingText, closingText, objectiveOrder, discovered, completed = GetCadwellZonePOIInfo(progressionLevel, zoneIndex, objectiveIndex)
                    zoneCompleted = zoneCompleted and completed
                    table.insert(objectives, {name = name, openingText = openingText, closingText = closingText, order = objectiveOrder, discovered = discovered, completed = completed})
                end
                table.sort(objectives, ZO_CadwellSort)
                table.insert(zones, {name = zoneName, description = zoneDescription, order = zoneOrder, completed = zoneCompleted, objectives = objectives, parent = parent})
            end
        end
    end
    table.sort(zones, ZO_CadwellSort)
    for i = 1, #zones do
        local zoneInfo = zones[i]
        local parent = zoneInfo.parent
        self.navigationTree:AddNode("ZO_CadwellNavigationEntry", zoneInfo, parent)
    end
    self.navigationTree:Commit()
    self:RefreshDetails()
end
function ZO_CadwellManager:RefreshDetails()
    self.objectiveLinePool:ReleaseAllObjects()
    local selectedData = self.navigationTree:GetSelectedData()
    if not selectedData or not selectedData.objectives then
        self.zoneInfoContainer:SetHidden(true)
        self.zoneStepContainer:SetHidden(true)
        return
    else
        self.zoneInfoContainer:SetHidden(false)
        self.zoneStepContainer:SetHidden(false)
    end
    self.titleText:SetText(zo_strformat(SI_CADWELL_ZONE_NAME_FORMAT, selectedData.name))
    self.descriptionText:SetText(zo_strformat(SI_CADWELL_ZONE_DESC_FORMAT, selectedData.description))
    local previous
    for i = 1, #selectedData.objectives do
        local objectiveInfo = selectedData.objectives[i]
        local objectiveLine = self.objectiveLinePool:AcquireObject()
        if objectiveInfo.discovered and not objectiveInfo.completed then
            objectiveLine:SetColor(ZO_SELECTED_TEXT:UnpackRGBA())
            GetControl(objectiveLine, "Check"):SetHidden(true)
            objectiveLine:SetText(zo_strformat(SI_CADWELL_OBJECTIVE_FORMAT, objectiveInfo.name, objectiveInfo.openingText))
        elseif not objectiveInfo.discovered then
            objectiveLine:SetColor(ZO_DISABLED_TEXT:UnpackRGBA())
            GetControl(objectiveLine, "Check"):SetHidden(true)
            objectiveLine:SetText(zo_strformat(SI_CADWELL_OBJECTIVE_FORMAT, objectiveInfo.name, objectiveInfo.openingText))
        else
            objectiveLine:SetColor(ZO_NORMAL_TEXT:UnpackRGBA())
            GetControl(objectiveLine, "Check"):SetHidden(false)
            objectiveLine:SetText(zo_strformat(SI_CADWELL_OBJECTIVE_FORMAT, objectiveInfo.name, objectiveInfo.closingText))
        end
        if not previous then
            objectiveLine:SetAnchor(TOPLEFT, self.objectivesText, BOTTOMLEFT, 25, 15)
        else
            objectiveLine:SetAnchor(TOPLEFT, previous, BOTTOMLEFT, 0, 15)
        end
        previous = objectiveLine
    end
end
function ZO_CadwellManager:OnShown()
    if self.dirty then
        self:RefreshList()
        self.dirty = false
    end
end
--XML Handlers
function ZO_Cadwell_OnShown()
    CADWELLS_ALMANAC:OnShown()
end
    CADWELLS_ALMANAC = ZO_CadwellManager:New(control)
end