Back to Home

ESO Lua File v101041

libraries/zo_keybindbutton/zo_clickablekeybindlabel.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
ZO_ClickableKeybindLabelMixin = {}
function ZO_ClickableKeybindLabelMixin:GetKeybind()
    return ZO_Keybindings_ShouldUseGamepadAction(self.alwaysPreferGamepadMode) and self.gamepadPreferredKeybind or self.keybind
end
function ZO_ClickableKeybindLabelMixin:GetKeyboardKeybind()
    return self.keybind
end
function ZO_ClickableKeybindLabelMixin:GetGamepadKeybind()
    return self.gamepadPreferredKeybind
end
function ZO_ClickableKeybindLabelMixin:UpdateEnabledState()
    local keybindEnabled = self.keybindEnabled and self.enabled
    local keybindColor = keybindEnabled and ZO_SELECTED_TEXT or ZO_DISABLED_TEXT
    self:SetColor(keybindColor:UnpackRGBA())
    self:SetAlpha((self:GetKeybind() or self.customKeyText) and 1 or 0)
    ZO_KeyMarkupLabel_SetEdgeFileColor(self, keybindColor)
    end
end
function ZO_ClickableKeybindLabelMixin:SetEnabled(enabled)
    if enabled ~= self.enabled then
        self.enabled = enabled
        self:UpdateEnabledState()
    end
end
function ZO_ClickableKeybindLabelMixin:IsEnabled()
    return self.enabled
end
function ZO_ClickableKeybindLabelMixin:SetKeybindEnabled(enabled)
    if enabled ~= self.keybindEnabled then
        self.keybindEnabled = enabled
        self:UpdateEnabledState()
    end
end
function ZO_ClickableKeybindLabelMixin:SetClickSound(clickSound)
end
function ZO_ClickableKeybindLabelMixin:SetCustomKeyText(keyText)
    self.customKeyText = true
end
function ZO_ClickableKeybindLabelMixin:SetCustomKeyIcon(keyIcon)
    local key = ("|t%f%%:%f%%:%s|t"):format(200, 200, keyIcon)
    self.customKeyText = true
    self:SetText(key)
end
function ZO_ClickableKeybindLabelMixin:SetKeybindEnabledInEdit(enabled)
    self.keybindEnabledInEdit = enabled
end
-- options is a table of various options for displaying the keybind
-- alwaysPreferGamepadMode - if true we will always show a gamepad keybind
-- showUnbound - if false will hide the keybind if it's unbound
-- showAsHold - if true will show the keybind as a hold
-- scalePercent - overrides the default scale percent of the keybind icon
function ZO_ClickableKeybindLabelMixin:SetKeybind(keybind, gamepadPreferredKeybind, options)
    local hadKeybind = self:GetKeybind() ~= nil
    self.keybind = keybind
    self.gamepadPreferredKeybind = gamepadPreferredKeybind
    self.alwaysPreferGamepadMode = options and options.alwaysPreferGamepadMode or nil
    keybind = self:GetKeybind()
    if keybind then
        if hadKeybind then
        end
        local NO_ON_CHANGE_CALLBACK = nil
        local showUnbound = nil
        local showAsHold = nil
        local scalePercent = nil
        if options then
            showUnbound = options.showUnbound
            showAsHold = options.showAsHold
            scalePercent = options.scalePercent
        end
        local function UseDisabledIcon()
            return not self:IsEnabled()
        end
        ZO_Keybindings_RegisterLabelForBindingUpdate(self, self.keybind, showUnbound, self.gamepadPreferredKeybind, NO_ON_CHANGE_CALLBACK, alwaysPreferGamepadMode, showAsHold, scalePercent, UseDisabledIcon)
    else
    end
end
function ZO_ClickableKeybindLabelMixin:SetCallback(callback)
    self.callback = callback
end
function ZO_ClickableKeybindLabelMixin:GetKeybindButtonDescriptorReference()
    return self.keybindDescriptorReference
end
function ZO_ClickableKeybindLabelMixin:SetKeybindButtonDescriptor(keybindDescriptor)
    self.keybindDescriptorReference = keybindDescriptor
    
    if keybindDescriptor.keybind then
        self:SetKeybind(keybindDescriptor.keybind)
    end
    if keybindDescriptor.callback then
        self:SetCallback(keybindDescriptor.callback)
    end
    if keybindDescriptor.sound then
        self:SetClickSound(keybindDescriptor.sound)
    end
    if keybindDescriptor.customKeyText then
        self:SetCustomKeyText(keybindDescriptor.customKeyText)
    end
    if keybindDescriptor.customKeyIcon then
        self:SetCustomKeyIcon(keybindDescriptor.customKeyIcon)
    end
end
function ZO_ClickableKeybindLabelMixin:OnClicked()
    local visible = self.keybindDescriptorReference and self.keybindDescriptorReference.visible or true
    if type(visible) == "function" then
        visible = visible()
    end
    if visible then
        if self.enabled then
            if self.clickSound then
                if type(self.clickSound) == "function" then
                    PlaySound(self.clickSound())
                else
                    PlaySound(self.clickSound)
                end
            end
            if self.callback then
                self.callback(self)
            end
        else
            PlaySound(SOUNDS.KEYBIND_BUTTON_DISABLED)
        end
    end
end
local g_areKeybindsEnabled
local g_keybindLabels = {}
local g_numDisabledReferences = 0
local function OnUpdate()
    local shouldKeybindsBeEnabled = WINDOW_MANAGER:GetFocusControl() == nil and g_numDisabledReferences == 0
    if shouldKeybindsBeEnabled ~= g_areKeybindsEnabled then
        g_areKeybindsEnabled = shouldKeybindsBeEnabled
        for i, keybindButton in ipairs(g_keybindLabels) do
            if not keybindButton.keybindEnabledInEdit then
                keybindButton:SetKeybindEnabled(shouldKeybindsBeEnabled)
            end
        end
    end
end
EVENT_MANAGER:RegisterForUpdate("ClickableKeybindLabelUpdate", 0, OnUpdate)
    g_numDisabledReferences = g_numDisabledReferences + 1
end
    g_numDisabledReferences = g_numDisabledReferences - 1
end
    if upInside and (button == MOUSE_BUTTON_INDEX_LEFT) and self.enabled then
        self:OnClicked()
    end
end
    self.enabled = true
    self.keybindEnabled = true
    zo_mixin(self, ZO_ClickableKeybindLabelMixin)
    ZO_KeyMarkupLabel_SetCustomOffsets(self, -5, 5, -2, 3)
    table.insert(g_keybindLabels, self)
end
end