ESO Lua File v100012

common/zo_options/zo_sharedoptions.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
-- this table stores everything needed to setup every setting control
-- each OptionsPanel_Whatever.lua file creates a table and adds itself to this one.
ZO_SharedOptions_SettingsData  = {} 
SETTING_TYPE_CUSTOM = 5000 --this must be bigger than EsoGameDataEnums::cSettingSystemTypeSize, currently 16
ZO_SharedOptions = ZO_Object:Subclass()
function ZO_SharedOptions:New(control)
    local sharedOptions = ZO_Object.New(self)
    sharedOptions:Initialize(control)
    return sharedOptions
end
function ZO_SharedOptions:Initialize(control)  
    self.controlTable = {}
    self.panelNames = {}
    self.isGamepadOptions = false
end
function ZO_SharedOptions:IsGamepadOptions()
    return self.isGamepadOptions
end
function ZO_SharedOptions:SaveCachedSettings()
    -- We only care about saving cached setting messages ingame
    if SendAllCachedSettingMessages then
        SendAllCachedSettingMessages()
    end
end
function ZO_SharedOptions:GetControlTypeFromControl(control)
    local data = control.data
    if data.controlType == OPTIONS_FINITE_LIST then
        if self:IsGamepadOptions() then
            return OPTIONS_HORIZONTAL_SCROLL_LIST
        else
            return OPTIONS_DROPDOWN
        end
    end
    return data.controlType
end
function ZO_SharedOptions:GetControlType(controlType)
    if controlType == OPTIONS_FINITE_LIST then
        if self:IsGamepadOptions() then
            return OPTIONS_HORIZONTAL_SCROLL_LIST
        else
            return OPTIONS_DROPDOWN
        end
    end
    return controlType
end
function ZO_SharedOptions:InitializeControl(control, selected)
    local data = control.data
    local text = nil
    if type(data.text) == "string" then
        text = data.text
    else
        text = GetString(data.text)
    end
    local controlType = self:GetControlTypeFromControl(control)
    control.optionsManager = self
    if controlType == OPTIONS_SECTION_TITLE then
        GetControl(control, "Label"):SetText(text)
    elseif controlType == OPTIONS_DROPDOWN then
        GetControl(control, "Name"):SetText(text)
    elseif controlType == OPTIONS_HORIZONTAL_SCROLL_LIST then
        GetControl(control, "Name"):SetText(text)
        ZO_Options_SetupScrollList(control, selected)
    elseif controlType == OPTIONS_CHECKBOX then
        GetControl(control, "Name"):SetText(text)
    elseif controlType == OPTIONS_SLIDER then
        GetControl(control, "Name"):SetText(text)
        ZO_Options_SetupSlider(control, selected)
    elseif controlType == OPTIONS_INVOKE_CALLBACK  then
        GetControl(control, "Name"):SetText(text)
    elseif controlType == OPTIONS_CUSTOM then
        if data.customSetupFunction then
            data.customSetupFunction(control)
        end
    end
end
function ZO_SharedOptions:IsControlTypeAnOption(data)
     local controlType = self:GetControlType(data.controlType)
    return controlType == OPTIONS_DROPDOWN
               or controlType == OPTIONS_CHECKBOX
               or controlType == OPTIONS_SLIDER
               or controlType == OPTIONS_HORIZONTAL_SCROLL_LIST
end
function ZO_SharedOptions:LoadDefaults(control, data) 
    if self:IsControlTypeAnOption(data) then
        ResetSettingToDefault(data.system, data.settingId)
    elseif data.customResetToDefaultsFunction then
    end
end
function ZO_SharedOptions:GetSettingsData(panel, system, settingId)
    return ZO_SharedOptions_SettingsData[panel][system][settingId]
end