Back to Home

ESO Lua File v101041

libraries/zo_directionalinput/zo_directionalinput.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
ZO_DIRECTION_UP = 1
ZO_DIRECTION_DOWN = 2
ZO_DIRECTION_LEFT = 3
ZO_DIRECTION_RIGHT = 4
ZO_OPPOSITE_DIRECTIONS =
{
    [ZO_DIRECTION_UP] = ZO_DIRECTION_DOWN,
    [ZO_DIRECTION_DOWN] = ZO_DIRECTION_UP,
    [ZO_DIRECTION_LEFT] = ZO_DIRECTION_RIGHT,
    [ZO_DIRECTION_RIGHT] = ZO_DIRECTION_LEFT,
}
--Client Input
----------------------------
local ClientInput = ZO_Object:Subclass()
function ClientInput:New()
    local object = ZO_Object.New(self)
    object:Initialize()
    return object
end
function ClientInput:Initialize()
    DIRECTIONAL_INPUT:Activate(self, GuiRoot)
end
function ClientInput:UpdateDirectionalInput()
    SetGamepadLeftStickConsumedByUI(not DIRECTIONAL_INPUT:IsAvailable(ZO_DI_LEFT_STICK))
    SetGamepadRightStickConsumedByUI(not DIRECTIONAL_INPUT:IsAvailable(ZO_DI_RIGHT_STICK))
end
--Directional Input
----------------------------
ZO_DI_LEFT_STICK = 1
ZO_DI_RIGHT_STICK = 2
ZO_DI_DPAD = 3
local NUM_INPUT_DEVICES = 3
local DirectionalInput = ZO_Object:Subclass()
function DirectionalInput:New(...)
    local obj = ZO_Object.New(self)
    obj:Initialize(...)
    return obj
end
function DirectionalInput:Initialize()
    self.inputObjects = {}
    self.inputControls = {}
    self.inputDeviceConsumed = {}
    self.allInputDevices = { ZO_DI_LEFT_STICK, ZO_DI_RIGHT_STICK, ZO_DI_DPAD }
    EVENT_MANAGER:RegisterForUpdate("DirectionalInput", 0, function() self:OnUpdate() end)
    self.updating = false
    self.queuedActivationOperations = {}
end
function DirectionalInput:Activate(object, control)
    assert(control and control.IsControlHidden ~= nil)
    if self.updating then
        self:QueueActivation(object, control)
        return
    end
    -- We use an insertion sort because table.sort is unstable
    -- All the controls take priority over the non-controls
    for index = #self.inputObjects, 1, -1 do
        local currentControl = self.inputControls[index]
        if WINDOW_MANAGER:CompareControlVisualOrder(control, currentControl) >= 0 then
            table.insert(self.inputObjects, index + 1, object)
            table.insert(self.inputControls, index + 1, control)
            return
        end
    end
    table.insert(self.inputObjects, 1, object)
    table.insert(self.inputControls, 1, control)
end
function DirectionalInput:Deactivate(object)
    if self.updating then
        self:QueueDeactivation(object)
        return
    end    
    for i, curObject in ipairs(self.inputObjects) do
        if(curObject == object) then
            table.remove(self.inputObjects, i)
            table.remove(self.inputControls, i)
            break
        end
    end
end
function DirectionalInput:QueueActivation(object, control)
    local op = 
    {
        activate = true,
        object = object,
        control = control,
    }
    table.insert(self.queuedActivationOperations, op)
end
function DirectionalInput:QueueDeactivation(object)
    local op = 
    {
        activate = false,
        object = object,
    }
    table.insert(self.queuedActivationOperations, op)
end
function DirectionalInput:PerformQueuedActivationOperation(op)
    if op.activate then
        self:Activate(op.object, op.control)
    else
        self:Deactivate(op.object)
    end
end
--... = input devices
function DirectionalInput:Consume(...)
    for i = 1, select("#", ...) do
        self.inputDeviceConsumed[select(i, ...)] = true
    end
end
function DirectionalInput:ConsumeAll()
    self:Consume(unpack(self.allInputDevices))
end
function DirectionalInput:AreAllInputDevicesConsumed()
    for i = 1, NUM_INPUT_DEVICES do
        if(self.inputDeviceConsumed[i] == false) then
            return false
        end
    end
    return true
end
-- Continuous updates, this loop will stop once it encounters something that only handles digital inputs
-- The order that objects are activated affects how this works
function DirectionalInput:OnUpdate()
    self.updating = true
    for i = 1, NUM_INPUT_DEVICES do
        self.inputDeviceConsumed[i] = false
    end
    self.inputDeviceConsumed[ZO_DI_LEFT_STICK] = WasGamepadLeftStickConsumedByOverlay()
    local deltaS = 0
    local nowS = GetFrameTimeSeconds()
    if self.lastUpdateS then
        deltaS = nowS - self.lastUpdateS
    end
    self.lastUpdateS = nowS
    for index = #self.inputObjects, 1, -1 do
        local inputObject = self.inputObjects[index]
        inputObject:UpdateDirectionalInput(deltaS)
    end
    self.updating = false
    for i,op in ipairs(self.queuedActivationOperations) do
    end
    ZO_ClearNumericallyIndexedTable(self.queuedActivationOperations)
end
function DirectionalInput:IsAvailable(inputDevice)
    return not self.inputDeviceConsumed[inputDevice]
end
--... = input devices
function DirectionalInput:GetX(...)
    local numArgs = select("#", ...)
    if(numArgs == 0) then
        return self:GetX(unpack(self.allInputDevices))
    end
    local resultX = 0
    for i = 1, numArgs do
        local inputDevice = select(i, ...)
        if(self:IsAvailable(inputDevice)) then
            local x = self:GetXFromInputDevice(inputDevice)
            local y = self:GetYFromInputDevice(inputDevice)
            if(zo_abs(x) > zo_abs(y)) then
                resultX = x
                break
            end
        end
    end
    if(resultX ~= 0) then
        self:Consume(...)
    end
    return resultX
end
--... = input devices
function DirectionalInput:GetY(...)
    local numArgs = select("#", ...)
    if(numArgs == 0) then
        return self:GetY(unpack(self.allInputDevices))
    end
    local resultY = 0
    for i = 1, numArgs do
        local inputDevice = select(i, ...)
        if(self:IsAvailable(inputDevice)) then
            local x = self:GetXFromInputDevice(inputDevice)
            local y = self:GetYFromInputDevice(inputDevice)
            if(zo_abs(y) > zo_abs(x)) then
                resultY = y
                break
            end
        end
    end
    if(resultY ~= 0) then
        self:Consume(...)
    end
    return resultY
end
--... = input devices
function DirectionalInput:GetXY(...)
    local numArgs = select("#", ...)
    if(numArgs == 0) then
        return self:GetXY(unpack(self.allInputDevices))
    end
    
    for i = 1, numArgs do
        local inputDevice = select(i, ...)
        if(self:IsAvailable(inputDevice)) then
            local x = self:GetXFromInputDevice(inputDevice)
            local y = self:GetYFromInputDevice(inputDevice)
            if(x ~= 0 or y ~= 0) then
                self:Consume(...)
                return x, y
            end
        end
    end
    --even if there's no input on X,Y we might as well consume the devices since they have no input and won't be used
    self:Consume(...)
    return 0, 0
end
local DIGITAL_BUTTON_MAGNITUDE = 1.0
local INPUT_DEVICE_QUERY_X =
{
    [ZO_DI_LEFT_STICK] = function(self)
        return GetGamepadOrKeyboardLeftStickX(GAMEPAD_INCLUDE_DEADZONE)
    end,
    [ZO_DI_RIGHT_STICK] = function(self)
        return GetGamepadOrKeyboardRightStickX(GAMEPAD_INCLUDE_DEADZONE)
    end,
    [ZO_DI_DPAD] = function(self)
        local hasFocusControl = WINDOW_MANAGER:HasFocusControl()
        local negativeMagnitude = 0
        local positiveMagnitude = 0
        if IsKeyDown(KEY_GAMEPAD_DPAD_LEFT) or (IsKeyDown(KEY_LEFTARROW) and not hasFocusControl) then
            negativeMagnitude = -DIGITAL_BUTTON_MAGNITUDE
        end
        if IsKeyDown(KEY_GAMEPAD_DPAD_RIGHT) or (IsKeyDown(KEY_RIGHTARROW) and not hasFocusControl) then
            positiveMagnitude = DIGITAL_BUTTON_MAGNITUDE
        end
        return negativeMagnitude + positiveMagnitude
    end,
}
function DirectionalInput:GetXFromInputDevice(inputDevice)
    return INPUT_DEVICE_QUERY_X[inputDevice](self)
end
local INPUT_DEVICE_QUERY_Y =
{
    [ZO_DI_LEFT_STICK] = function(self)
        return GetGamepadOrKeyboardLeftStickY(GAMEPAD_INCLUDE_DEADZONE)
    end,
    [ZO_DI_RIGHT_STICK] = function(self)
        return GetGamepadOrKeyboardRightStickY(GAMEPAD_INCLUDE_DEADZONE)
    end,
    [ZO_DI_DPAD] = function(self)
        local hasFocusControl = WINDOW_MANAGER:HasFocusControl()
        local negativeMagnitude = 0
        local positiveMagnitude = 0
        if IsKeyDown(KEY_GAMEPAD_DPAD_DOWN) or (IsKeyDown(KEY_DOWNARROW) and not hasFocusControl) then
            negativeMagnitude = -DIGITAL_BUTTON_MAGNITUDE
        end
        if IsKeyDown(KEY_GAMEPAD_DPAD_UP) or (IsKeyDown(KEY_UPARROW) and not hasFocusControl) then
            positiveMagnitude = DIGITAL_BUTTON_MAGNITUDE
        end
        return negativeMagnitude + positiveMagnitude
    end,
}
function DirectionalInput:GetYFromInputDevice(inputDevice)
    return INPUT_DEVICE_QUERY_Y[inputDevice](self)
end
function DirectionalInput:GetRightTriggerMagnitude()
    local USE_KEYBOARD = false
    local key, mod1, mod2, mod3, mod4 = GetHighestPriorityActionBindingInfoFromName("UI_SHORTCUT_RIGHT_TRIGGER", USE_KEYBOARD)
    if IsKeyDown(key) then
        return DIGITAL_BUTTON_MAGNITUDE
    end
end
function DirectionalInput:GetLeftTriggerMagnitude()
    local USE_KEYBOARD = false
    local key, mod1, mod2, mod3, mod4 = GetHighestPriorityActionBindingInfoFromName("UI_SHORTCUT_LEFT_TRIGGER", USE_KEYBOARD)
    if IsKeyDown(key) then
        return DIGITAL_BUTTON_MAGNITUDE
    end
end
function DirectionalInput:IsListening(object)
    for i, inputObject in ipairs(self.inputObjects) do
        if inputObject == object then
            return true
        end
    end
    return false
end
DIRECTIONAL_INPUT = DirectionalInput:New()
CLIENT_INPUT = ClientInput:New()