ESO Lua File v100012

common/zo_options/keyboard/zo_options_keyboard.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
PANEL_TYPE_SETTINGS = 1
PANEL_TYPE_CONTROLS = 2
ZO_KeyboardOptions = ZO_SharedOptions:Subclass()
function ZO_KeyboardOptions:New(control)
    local options = ZO_SharedOptions.New(self, control)
    return options
end
function ZO_KeyboardOptions:Initialize(control)
    self.currentPanelId = 100 --must be higher than total EsoGameDataEnums::SettingSystemPanel, currently 6
    ZO_SharedOptions.Initialize(self, control)
    OPTIONS_WINDOW_FRAGMENT = ZO_FadeSceneFragment:New(control)
    OPTIONS_WINDOW_FRAGMENT:RegisterCallback("StateChange",   function(oldState, newState)
                                                    if newState == SCENE_FRAGMENT_SHOWING then
                                                        RefreshSettings()
                                                        self:UpdateAllPanelOptions(SAVE_CURRENT_VALUES)
                                                        GetControl(ZO_OptionsWindow, "ApplyButton"):SetHidden(true)
                                                        PushActionLayerByName("OptionsWindow")
                                                    elseif(newState == SCENE_FRAGMENT_HIDING) then
                                                        RemoveActionLayerByName("OptionsWindow")
                                                        self:SaveCachedSettings()
                                                    end
                                                end)
end
function ZO_KeyboardOptions:AddUserPanel(panelIdOrString, panelName, panelType)
    panelType = panelType or PANEL_TYPE_SETTINGS
    local id = panelIdOrString
    if type(panelIdOrString) == "string" then
        id = self.currentPanelId
        _G[panelIdOrString] = id
        self.currentPanelId = self.currentPanelId + 1
    end
    
    self.panelNames[id] = panelName
    
    local callback =    function()
                            SCENE_MANAGER:AddFragment(OPTIONS_WINDOW_FRAGMENT)
                            self:ChangePanels(id)
                        end
    local unselectedCallback =  function()
                                    SCENE_MANAGER:RemoveFragment(OPTIONS_WINDOW_FRAGMENT)
                                    SetCameraOptionsPreviewModeEnabled(false, CAMERA_OPTIONS_PREVIEW_NONE)
                                end
    local panelData = {name = panelName, callback = callback, unselectedCallback = unselectedCallback}
    if panelType == PANEL_TYPE_SETTINGS then
        ZO_GameMenu_AddSettingPanel(panelData)
    else
        ZO_GameMenu_AddControlsPanel(panelData)
    end    
end
function ZO_KeyboardOptions:InitializeControl(control)
    local data = control.data
    ZO_SharedOptions.InitializeControl(self, control)
    -- Catch events...callbacks set in the xml
    if data.eventCallbacks then
        for event, callback in pairs(data.eventCallbacks) do
            CALLBACK_MANAGER:RegisterCallback(event, callback, control)
        end
    end
    local settingsScrollChild = GetControl(ZO_OptionsWindow, "SettingsScrollChild")
    control:SetParent(settingsScrollChild)
    -- Put the control in the panel table
    if data.panel then
        -- Panel doesn't exist yet, so create it
        if not self.controlTable[data.panel] then
            self.controlTable[data.panel] = {}
        end
        -- Add the control to the right panel list
        table.insert(self.controlTable[data.panel], control)
        -- Update visible state
        control:SetHidden(not (data.panel == self.currentPanel))
    end
end
function ZO_KeyboardOptions:ChangePanels(panel)
    -- Hide the old panel
    if self.currentPanel then
        local oldPanel = self.controlTable[self.currentPanel]
        if oldPanel then
            for index = 1, #oldPanel do
                local control = oldPanel[index]
                control:SetHidden(true)
            end
        end
    end
    -- Show the new panel
    local cameraPreviewMode = (panel == SETTING_PANEL_CAMERA)
    SetCameraOptionsPreviewModeEnabled(cameraPreviewMode, CAMERA_OPTIONS_PREVIEW_NONE)
    local newPanel = self.controlTable[panel]
    if newPanel then
        for index = 1, #newPanel do
            local control = newPanel[index]
            control:SetHidden(false)
        end
    end
    local panelName = self.panelNames[panel]
    GetControl(ZO_OptionsWindow, "Title"):SetText(panelName)
    GetControl(ZO_OptionsWindow, "ToggleFirstPersonButton"):SetHidden(not (panel == SETTING_PANEL_CAMERA))
    
    ZO_Scroll_ResetToTop(GetControl(ZO_OptionsWindow, "Settings"))
    self.currentPanel = panel
end
function ZO_KeyboardOptions:ApplySettings(control)
    ApplySettings()
    
    GetControl(ZO_OptionsWindow, "ApplyButton"):SetHidden(true)
    -- Update the panel settings with the new values (may have changed if they are tied to another setting that changed...e.g. ui scale)
    self:UpdateAllPanelOptions(SAVE_CURRENT_VALUES)
end
function ZO_KeyboardOptions:LoadDefaults() 
    local controls = self.controlTable[self.currentPanel]
    if controls then       
        for index, control in pairs(controls) do         
            ZO_SharedOptions.LoadDefaults(self, control, control.data)
        end
        self:UpdateCurrentPanelOptions(DONT_SAVE_CURRENT_VALUES)
    end
end
function ZO_KeyboardOptions:UpdatePanelOptions(panelIndex, saveOptions)
    local controls = self.controlTable[panelIndex]
    for index, control in pairs(controls) do
        local data = control.data
        if self:IsControlTypeAnOption(data) then
            local value = ZO_Options_UpdateOption(control)
            if saveOptions == SAVE_CURRENT_VALUES then
                data.value = value       -- Save the values (can't click cancel to restore old values after this)
            end
        end
    end
end
function ZO_KeyboardOptions:UpdateCurrentPanelOptions(saveOptions)
    self:UpdatePanelOptions(self.currentPanel, saveOptions)
end
-- Pass SAVE_CURRENT_VALUES in the first parameter to save the updated values (can't click cancel to restore afterwards).
-- Pass DONT_SAVE_CURRENT_VALUES to update the values, but not save them (cancel will restore the previous values).
function ZO_KeyboardOptions:UpdateAllPanelOptions(saveOptions)
    for index in pairs(self.controlTable) do
        self:UpdatePanelOptions(index, saveOptions)
    end
end
function ZO_KeyboardOptions:SetSectionTitleData(control, panel, text)
    control.data = 
    {   
        panel = panel,
        controlType = OPTIONS_SECTION_TITLE,
        text = text,
    }
end
    KEYBOARD_OPTIONS = ZO_KeyboardOptions:New(control)
    SYSTEMS:RegisterKeyboardObject("options", KEYBOARD_OPTIONS)
end
--keep this around for backwards compatibility
    KEYBOARD_OPTIONS:InitializeControl(control)
end
    KEYBOARD_OPTIONS:ApplySettings(control)
end
end
function ZO_OptionsWindow_AddUserPanel(panelIdString, panelName, panelType)
    KEYBOARD_OPTIONS:AddUserPanel(panelIdString, panelName, panelType)
end