Back to Home

ESO Lua File v100033

ingame/restyle/gamepad/restyle_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
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
-- Interact Scenes
local GAMEPAD_RESTYLE_ROOT_SCENE_NAME = "gamepad_restyle_root"
local ZO_Restyle_Gamepad = ZO_Object:Subclass()
function ZO_Restyle_Gamepad:New(...)
    local restyle = ZO_Object.New(self)
    restyle:Initialize(...)
    return restyle
end
function ZO_Restyle_Gamepad:Initialize(control)
    self.control = control
    self.header = control:GetNamedChild("HeaderContainer"):GetNamedChild("Header")
    GAMEPAD_RESTYLE_ROOT_SCENE = ZO_InteractScene:New(GAMEPAD_RESTYLE_ROOT_SCENE_NAME, SCENE_MANAGER, ZO_DYEING_STATION_INTERACTION)
    SYSTEMS:RegisterGamepadRootScene("restyle", GAMEPAD_RESTYLE_ROOT_SCENE)
    ZO_GamepadGenericHeader_Initialize(self.header, ZO_GAMEPAD_HEADER_TABBAR_CREATE)
    self.headerData =
    {
        titleText = GetString(SI_RESTYLE_STATION_MENU_ROOT_TITLE)
    }
    GAMEPAD_RESTYLE_ROOT_SCENE:RegisterCallback("StateChange", function(oldState, newState)
        if newState == SCENE_SHOWING then
            self:SetMode(RESTYLE_MODE_SELECTION)
            self.modeList:Activate()
            local currentlySelectedData = self.modeList:GetTargetData()
            self:UpdateOptionLeftTooltip(currentlySelectedData.mode)
            KEYBIND_STRIP:AddKeybindButtonGroup(self.keybindStripDescriptorRoot)
            ZO_GamepadGenericHeader_Refresh(self.header, self.headerData)
            TriggerTutorial(TUTORIAL_TRIGGER_DYEING_OPENED)
            if IsESOPlusSubscriber() then
                TriggerTutorial(TUTORIAL_TRIGGER_DYEING_OPENED_AS_SUBSCRIBER)
            end
        elseif newState == SCENE_HIDDEN then
            self.modeList:Deactivate()
            KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptorRoot)
        end
    end)
end
function ZO_Restyle_Gamepad:SetMode(mode)
    if self.mode ~= mode then
        self.mode = mode
        SetRestylePreviewMode(mode)
    end
end
function ZO_Restyle_Gamepad:GetMode()
    return self.mode
end
local function ZO_RestyleGamepadRootEntry_OnSetup(control, data, selected, selectedDuringRebuild, enabled, activated)
    ZO_SharedGamepadEntry_OnSetup(control, data, selected, selectedDuringRebuild, enabled, activated)
    if data.mode == RESTYLE_MODE_COLLECTIBLE and not CanUseCollectibleDyeing() then
        if selected then
            control.label:SetColor(ZO_NORMAL_TEXT:UnpackRGBA())
        else
            control.label:SetColor(ZO_GAMEPAD_DISABLED_UNSELECTED_COLOR:UnpackRGBA())
        end
    end
end
function ZO_Restyle_Gamepad:InitializeModeList()
    self.modeList = ZO_GamepadVerticalItemParametricScrollList:New(self.control:GetNamedChild("Mask"):GetNamedChild("Container"):GetNamedChild("RootList"))
    self.modeList:SetAlignToScreenCenter(true)
    local function AddEntry(name, mode, icon, sceneName)
        local data = ZO_GamepadEntryData:New(GetString(name), icon)
        data:SetIconTintOnSelection(true)
        data.mode = mode
        data.sceneName = sceneName
        self.modeList:AddEntry("ZO_GamepadItemEntryTemplate", data)
    end
        function(list, selectedData)
            self.currentlySelectedOptionData = selectedData
            self:UpdateOptionLeftTooltip(selectedData.mode)
            KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptorRoot)
        end
    )
    self.modeList:Clear()
    AddEntry(SI_DYEING_DYE_EQUIPMENT_TAB, RESTYLE_MODE_EQUIPMENT, "EsoUI/Art/Restyle/Gamepad/gp_dyes_tabIcon_outfitStyleDye.dds", "gamepad_restyle_station")
    AddEntry(SI_DYEING_DYE_COLLECTIBLE_TAB, RESTYLE_MODE_COLLECTIBLE, "EsoUI/Art/Dye/Gamepad/dye_tabIcon_costumeDye.dds", "gamepad_restyle_station")
    self.modeList:Commit()
end
function ZO_Restyle_Gamepad:UpdateOptionLeftTooltip(restyleMode)
    if restyleMode == RESTYLE_MODE_EQUIPMENT then
        GAMEPAD_TOOLTIPS:LayoutTitleAndDescriptionTooltip(GAMEPAD_LEFT_TOOLTIP, GetString(SI_DYEING_DYE_EQUIPMENT_TAB), GetString(SI_GAMEPAD_DYEING_EQUIPMENT_DESCRIPTION))
    elseif restyleMode == RESTYLE_MODE_COLLECTIBLE then
        local descriptionOne
        local descriptionTwo
        if CanUseCollectibleDyeing() then
            descriptionOne = ZO_DEFAULT_ENABLED_COLOR:Colorize(GetString(SI_ESO_PLUS_STATUS_UNLOCKED))
            descriptionTwo = GetString(SI_DYEING_COLLECTIBLE_TAB_DESCRIPTION_UNLOCKED)
        else
            descriptionOne = ZO_DEFAULT_ENABLED_COLOR:Colorize(GetString(SI_ESO_PLUS_STATUS_LOCKED))
            descriptionTwo = GetString(SI_DYEING_COLLECTIBLE_TAB_DESCRIPTION_LOCKED)
        end
        GAMEPAD_TOOLTIPS:LayoutTitleAndMultiSectionDescriptionTooltip(GAMEPAD_LEFT_TOOLTIP, GetString(SI_DYEING_DYE_COLLECTIBLE_TAB), descriptionOne, descriptionTwo)
    elseif restyleMode == RESTYLE_MODE_OUTFIT then
        GAMEPAD_TOOLTIPS:LayoutTitleAndDescriptionTooltip(GAMEPAD_LEFT_TOOLTIP, GetString(SI_DYEING_DYE_OUTFIT_STYLES_TAB), GetString(SI_GAMEPAD_RESTYLE_OUTFITS_DESCRIPTION))
    end
end
function ZO_Restyle_Gamepad:InitializeKeybindStripDescriptorsRoot()
    self.keybindStripDescriptorRoot =
    {
        -- Select mode.
        {
            keybind = "UI_SHORTCUT_PRIMARY",
            alignment = KEYBIND_STRIP_ALIGN_LEFT,
            name = function()
                return GetString(SI_GAMEPAD_SELECT_OPTION)
            end,
        
            callback = function()
                local targetData = self.modeList:GetTargetData()
                local targetMode = targetData.mode
                if targetMode == RESTYLE_MODE_EQUIPMENT then
                    local outfitIndex = ZO_OUTFITS_SELECTOR_GAMEPAD:GetCurrentOutfitIndex()
                    if outfitIndex then
                        targetMode = RESTYLE_MODE_OUTFIT
                    end
                end
                self:SetMode(targetMode)
                ZO_RESTYLE_STATION_GAMEPAD:Update()
                SCENE_MANAGER:Push(targetData.sceneName)
            end,
            visible = function()
                local targetData = self.modeList:GetTargetData()
                if targetData.mode == RESTYLE_MODE_COLLECTIBLE then
                    return CanUseCollectibleDyeing()
                end
                return true
            end
        },
    }
    ZO_Gamepad_AddBackNavigationKeybindDescriptors(self.keybindStripDescriptorRoot, GAME_NAVIGATION_TYPE_BUTTON)
    ZO_Gamepad_AddListTriggerKeybindDescriptors(self.keybindStripDescriptorRoot, self.modeList)
end
function ZO_Restyle_Gamepad:CancelExit()
    MAIN_MENU_MANAGER:CancelBlockingSceneNextScene()
end
function ZO_Restyle_Gamepad:UndoPendingChanges()
    PlaySound(SOUNDS.DYEING_UNDO_CHANGES)
end
function ZO_Restyle_Gamepad:ConfirmCommitSelection()
    ZO_RESTYLE_STATION_GAMEPAD:CompleteDyeChanges()
end
function ZO_Restyle_Gamepad:AttemptExit()
    SCENE_MANAGER:HideCurrentScene()
end
    RESTYLE_GAMEPAD = ZO_Restyle_Gamepad:New(control)
    SYSTEMS:RegisterGamepadObject("restyle", RESTYLE_GAMEPAD)
end