Back to Home

ESO Lua File v101041

ingame/skillsadvisor/gamepad/skillsadvisor_buildselection_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
--------------
--Initialize--
--------------
local SkillsAdvisorBuildSelectionRoot_Gamepad = ZO_Gamepad_ParametricList_Screen:Subclass()
function SkillsAdvisorBuildSelectionRoot_Gamepad:New(...)
    return ZO_Gamepad_ParametricList_Screen.New(self, ...)
end
function SkillsAdvisorBuildSelectionRoot_Gamepad:Initialize(control)
    local ACTIVATE_LIST_ON_SHOW = true
    GAMEPAD_SKILLS_ADVISOR_BUILD_SELECTION_ROOT_SCENE = ZO_Scene:New("gamepad_skills_advisor_build_selection_root", SCENE_MANAGER)
    GAMEPAD_SKILLS_SCENE_GROUP:AddScene("gamepad_skills_advisor_build_selection_root")
    GAMEPAD_SKILLS_ADVISOR_BUILD_SELECTION_ROOT_SCENE:SetHideSceneConfirmationCallback(ZO_GamepadSkills.OnConfirmHideScene)
    ZO_Gamepad_ParametricList_Screen.Initialize(self, control, ZO_GAMEPAD_HEADER_TABBAR_DONT_CREATE, ACTIVATE_LIST_ON_SHOW, GAMEPAD_SKILLS_ADVISOR_BUILD_SELECTION_ROOT_SCENE)
    local skillAdvisorBuildSelectionFragment = ZO_FadeSceneFragment:New(control)
    GAMEPAD_SKILLS_ADVISOR_BUILD_SELECTION_ROOT_SCENE:AddFragment(skillAdvisorBuildSelectionFragment)
    local function OnDataUpdated()
        self:RefreshBuildSelectionList()
    end
    ZO_SKILLS_ADVISOR_SINGLETON:RegisterCallback("OnSelectedSkillBuildUpdated", OnDataUpdated)
end
function SkillsAdvisorBuildSelectionRoot_Gamepad:InitializeKeybindStripDescriptors()
    self.keybindStripDescriptor =
    {
        alignment = KEYBIND_STRIP_ALIGN_LEFT,
        -- Select
        {
            name = GetString(SI_GAMEPAD_SELECT_OPTION),
            keybind = "UI_SHORTCUT_PRIMARY",
            sound = SOUNDS.SKILLS_ADVISOR_SELECT,
            callback = function()
                    local list = self:GetMainList()
                    local selectedData = list:GetSelectedData()
                    ZO_SKILLS_ADVISOR_SINGLETON:OnSkillBuildSelected(selectedData.skillBuildIndex)
                    SCENE_MANAGER:HideCurrentScene()
                end,
        },
    }
    ZO_Gamepad_AddBackNavigationKeybindDescriptors(self.keybindStripDescriptor, GAME_NAVIGATION_TYPE_BUTTON)
end
function SkillsAdvisorBuildSelectionRoot_Gamepad:OnDeferredInitialize()
    self.headerData =
    {
        titleText = GetString(SI_SKILLS_ADVISOR_TITLE),
    }
end
function SkillsAdvisorBuildSelectionRoot_Gamepad:SetupList(list)
    local function BuildEntrySetup(control, data, selected, reselectingDuringRebuild, enabled, active)
        ZO_SharedGamepadEntry_OnSetup(control, data, selected, reselectingDuringRebuild, enabled, active)
        control.selectedIcon:SetHidden(ZO_SKILLS_ADVISOR_SINGLETON:GetSelectedSkillBuildIndex() ~= data.skillBuildIndex)
    end
    list:AddDataTemplate("ZO_SkillsAdvisorBuildSelection_Gamepad_MenuEntryTemplate", BuildEntrySetup, ZO_GamepadMenuEntryTemplateParametricListFunction, nil, "ZO_SkillBuild_Template")
  
    local function OnSelectedMenuEntry(_, selectedData, previousData)
        if GAMEPAD_SKILLS_ADVISOR_BUILD_SELECTION_ROOT_SCENE:GetState() ~= SCENE_HIDDEN then
            self:RefreshTooltip(selectedData)
            KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
        end
    end
    local selectedIndex = ZO_SKILLS_ADVISOR_SINGLETON:GetSelectedSkillBuildIndex()
    if not selectedIndex then
        selectedIndex = 1
    end
    list:SetDefaultSelectedIndex(selectedIndex)
end
function SkillsAdvisorBuildSelectionRoot_Gamepad:RefreshTooltip(data)
    if self.scene:IsShowing() then
        GAMEPAD_TOOLTIPS:LayoutSkillBuild(GAMEPAD_LEFT_TOOLTIP, data.skillBuildId)
    end
end
function SkillsAdvisorBuildSelectionRoot_Gamepad:RefreshBuildSelectionList()
    local list = self:GetMainList()
    local numSkillBuilds = ZO_SKILLS_ADVISOR_SINGLETON:GetNumSkillBuildOptions()
    list:Clear()
    for skillBuildIndex = 1, numSkillBuilds do
        local skillBuild = ZO_SKILLS_ADVISOR_SINGLETON:GetAvailableSkillBuildByIndex(skillBuildIndex)
        local entryData = ZO_GamepadEntryData:New(skillBuild.name)
        entryData.skillBuildId = skillBuild.id
        entryData.skillBuildIndex = skillBuild.index
        list:AddEntry("ZO_SkillsAdvisorBuildSelection_Gamepad_MenuEntryTemplate", entryData)
    end
    list:Commit()
end
-- Scene state change callbacks overriden from ZO_Gamepad_ParametricList_Screen
function SkillsAdvisorBuildSelectionRoot_Gamepad:OnShowing()
    ZO_Gamepad_ParametricList_Screen.OnShowing(self)
    local list = self:GetMainList()
    local selectedIndex = ZO_SKILLS_ADVISOR_SINGLETON:GetSelectedSkillBuildIndex()
    -- There my be no selected index if no skill builds have been added to data
    if selectedIndex then
        list:SetSelectedIndexWithoutAnimation(selectedIndex)
    end
    local selectedData = list:GetSelectedData()
    self:RefreshTooltip(selectedData)
end
function SkillsAdvisorBuildSelectionRoot_Gamepad:PerformUpdate()
    -- Include update functionality here if the screen uses self.dirty to track needing to update
    self.dirty = false
end
    control.selectedIcon = control:GetNamedChild("SelectedIcon")
    control.selectedIcon:GetNamedChild("Highlight"):SetHidden(true)
end
    ZO_GAMEPAD_SKILLS_ADVISOR_BUILD_SELECT_WINDOW = SkillsAdvisorBuildSelectionRoot_Gamepad:New(control)
end