ESO Lua File v100010

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
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:SaveCachedClientSettings()
                                                    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)
                                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)
    local settingsScrollChild = GetControl(ZO_OptionsWindow, "SettingsScrollChild")
    control:SetParent(settingsScrollChild)
    -- Put the control in the panel table
    if data.panel then
        data.isAnOption = IsControlAnOption(control)
        -- 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)
    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.data)
        end
        self:UpdateCurrentPanelOptions(DONT_SAVE_CURRENT_VALUES)
    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