Back to Home

ESO Lua File v101041

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
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
-- 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:RefreshVisible()
            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)
    if data.mode == RESTYLE_MODE_COMPANION_EQUIPMENT or data.mode == RESTYLE_MODE_COMPANION_COLLECTIBLE then
        enabled = enabled and ZO_HasActiveOrBlockedCompanion()
    end
    data.enabled = enabled
    ZO_SharedGamepadEntry_OnSetup(control, data, selected, selectedDuringRebuild, enabled, activated)
    if (data.mode == RESTYLE_MODE_COLLECTIBLE or data.mode == RESTYLE_MODE_COMPANION_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
    local function OnSelectedDataChanged(list, selectedData)
        if GAMEPAD_RESTYLE_ROOT_SCENE:IsShowing() then
            self.currentlySelectedOptionData = selectedData
            self:UpdateOptionLeftTooltip(selectedData.mode)
            KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptorRoot)
        end
    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")
    AddEntry(SI_GAMEPAD_DYEING_COMPANION_EQUIPMENT_TAB, RESTYLE_MODE_COMPANION_EQUIPMENT, "EsoUI/Art/Restyle/Gamepad/gp_dyes_tabIcon_companionOutfitStyleDye.dds", "gamepad_restyle_station")
    AddEntry(SI_GAMEPAD_DYEING_COMPANION_COLLECTIBLE_TAB, RESTYLE_MODE_COMPANION_COLLECTIBLE, "EsoUI/Art/Dye/Gamepad/dye_tabIcon_companionCostumeDye.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))
    elseif restyleMode == RESTYLE_MODE_COMPANION_EQUIPMENT then
        GAMEPAD_TOOLTIPS:LayoutTitleAndDescriptionTooltip(GAMEPAD_LEFT_TOOLTIP, GetString(SI_GAMEPAD_DYEING_COMPANION_EQUIPMENT_TAB), GetString(SI_GAMEPAD_DYEING_COMPANION_EQUIPMENT_TAB_DESCRIPTION))
    elseif restyleMode == RESTYLE_MODE_COMPANION_COLLECTIBLE then
        local descriptionOne
        local descriptionTwo
        local descriptionThree
        if ZO_HasActiveOrBlockedCompanion() and CanUseCollectibleDyeing() then
            descriptionOne = ZO_DEFAULT_ENABLED_COLOR:Colorize(GetString(SI_ESO_PLUS_STATUS_UNLOCKED))
            descriptionTwo = GetString(SI_GAMEPAD_DYEING_COMPANION_COLLECTIBLE_TAB_DESCRIPTION_UNLOCKED)
        else
            descriptionOne = ZO_DEFAULT_ENABLED_COLOR:Colorize(GetString(SI_ESO_PLUS_STATUS_LOCKED))
            descriptionTwo = GetString(SI_GAMEPAD_DYEING_COMPANION_COLLECTIBLE_TAB_DESCRIPTION_LOCKED)
            descriptionThree = GetString(SI_OUTFIT_COMPANION_DISABLED_DESCRIPTION)
        end
        GAMEPAD_TOOLTIPS:LayoutTitleAndMultiSectionDescriptionTooltip(GAMEPAD_LEFT_TOOLTIP, GetString(SI_GAMEPAD_DYEING_COMPANION_COLLECTIBLE_TAB), descriptionOne, descriptionTwo, descriptionThree)
    elseif restyleMode == RESTYLE_MODE_COMPANION_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 or targetMode == RESTYLE_MODE_COMPANION_EQUIPMENT then
                    local expectedActorCategory = ZO_OUTFIT_MANAGER.GetActorCategoryByRestyleMode(targetMode)
                    local actorCategory, outfitIndex = ZO_OUTFITS_SELECTOR_GAMEPAD:GetCurrentActorCategoryAndIndex()
                    if not actorCategory or actorCategory ~= expectedActorCategory then
                        ZO_OUTFITS_SELECTOR_GAMEPAD:SetCurrentActorCategory(expectedActorCategory)
                        actorCategory, outfitIndex = ZO_OUTFITS_SELECTOR_GAMEPAD:GetCurrentActorCategoryAndIndex()
                    end
                    if outfitIndex then
                        ZO_OUTFITS_SELECTOR_GAMEPAD:SetCurrentActorCategory(actorCategory)
                        targetMode = ZO_OUTFIT_MANAGER.GetRestyleModeByActorCategory(actorCategory)
                    end
                end
                self:SetMode(targetMode)
                ZO_RESTYLE_STATION_GAMEPAD:Update()
                SCENE_MANAGER:Push(targetData.sceneName)
            end,
            enabled = function()
                local targetData = self.modeList:GetTargetData()
                local targetMode = targetData.mode
                if targetMode == RESTYLE_MODE_COMPANION_EQUIPMENT or targetMode == RESTYLE_MODE_COMPANION_COLLECTIBLE then
                    return ZO_HasActiveOrBlockedCompanion()
                end
                return true
            end,
            visible = function()
                local targetData = self.modeList:GetTargetData()
                if targetData.mode == RESTYLE_MODE_COLLECTIBLE or targetData.mode == RESTYLE_MODE_COMPANION_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