Back to Home

ESO Lua File v101041

publicallingames/currency/gamepad/currencyselector_gamepad.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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
ZO_CURRENCY_SELECTOR_BUTTON_ANIMATION_DURATION_GAMEPAD = 25
local DEGREE_THRESHOLD =  30 * (ZO_PI / 180)
local MAGNITUDE_THRESHOLD = 0.1
local g_directionalInputX, g_directionalInputY = 0, 0
-- ZO_CurrencySelector_Gamepad's horizontal movement and ZO_Spinner_Gamepad's vertical movement share a MagnitudeQuery function in order to bias sensitivity to vertical movement over horizontal movement
local function MagnitudeQuery(direction)
    if direction == GAMEPAD_SPINNER_DIRECTION_VERTICAL then
        -- Reset g_directionalInputX, g_directionalInputY when MagnitudeQuery is called from ZO_Spinner_Gamepad, values carry over for ZO_CurrencySelector_Gamepad
        g_directionalInputX, g_directionalInputY = DIRECTIONAL_INPUT:GetXY(ZO_DI_LEFT_STICK)
    end
    if direction == GAMEPAD_SPINNER_DIRECTION_VERTICAL and math.abs(g_directionalInputY) < MAGNITUDE_THRESHOLD then
        g_directionalInputY = DIRECTIONAL_INPUT:GetY(ZO_DI_DPAD)
        return g_directionalInputY
    elseif direction == MOVEMENT_CONTROLLER_DIRECTION_HORIZONTAL and math.abs(g_directionalInputX) < MAGNITUDE_THRESHOLD then
        g_directionalInputX = DIRECTIONAL_INPUT:GetX(ZO_DI_DPAD)
        return -g_directionalInputX
    end
    local angle = math.atan2(g_directionalInputY, g_directionalInputX)
    local absAngle = math.abs(angle)
    
    if direction == GAMEPAD_SPINNER_DIRECTION_VERTICAL then
        if absAngle >= DEGREE_THRESHOLD and absAngle <= ZO_PI - DEGREE_THRESHOLD then
            -- When there is vertical movement, the horizontal movement is consumed to ensure that pressing the L-stick at an angle doesn't cause horizontal and vertical movement
            g_directionalInputX = 0
            return g_directionalInputY
        else
            g_directionalInputY = DIRECTIONAL_INPUT:GetY(ZO_DI_DPAD)
            return g_directionalInputY
        end
    else
        if absAngle < DEGREE_THRESHOLD or absAngle > ZO_PI - DEGREE_THRESHOLD then
            g_directionalInputY = 0
            return -g_directionalInputX
        else
            g_directionalInputX = DIRECTIONAL_INPUT:GetX(ZO_DI_DPAD)
            return -g_directionalInputX
        end
    end
end
-----------------------
-- Digit Spinner
-----------------------
ZO_CurrencySelectorDigitSpinner_Gamepad = ZO_Spinner_Gamepad:Subclass()
function ZO_CurrencySelectorDigitSpinner_Gamepad:Initialize(control, min, max, isGamepad, spinnerMode, accelerationTime, magnitudeQueryFunction, owner)
    ZO_Spinner_Gamepad.Initialize(self, control, min, max, isGamepad, spinnerMode, accelerationTime, magnitudeQueryFunction)
    self.owner = owner
end
do
    local MOVEMENT_RELEASED = true
    function ZO_CurrencySelectorDigitSpinner_Gamepad:OnButtonUp()
        ZO_Spinner_Gamepad.OnButtonUp(self)
        self.atMaxAccelerationFactor = false
        self.owner:AnimateButtons(nil, nil, MOVEMENT_RELEASED)
    end
end
-----------------------
-- Digit
-----------------------
ZO_CurrencySelectorDigit_Gamepad = ZO_InitializingObject:Subclass()
function ZO_CurrencySelectorDigit_Gamepad:Initialize(control, valueChangedCallback)
    self.control = control
    self.color = ZO_SELECTED_TEXT
    self.alpha = 1
    self.decrease = self.control:GetNamedChild("Decrease")
    self.increase = self.control:GetNamedChild("Increase")
    self.display = self.control:GetNamedChild("Display")
    local ACCELERATION_TIME = 250
    self.spinner = ZO_CurrencySelectorDigitSpinner_Gamepad:New(self.control, 0, 9, GAMEPAD_SPINNER_DIRECTION_VERTICAL, SPINNER_MODE_WRAP, ACCELERATION_TIME, MagnitudeQuery, self)
    self.spinner:SetValue(0)
    --Ignore tooltip narration when narrating these spinners
    self.spinner:SetCanNarrateTooltips(false)
    self.buttonUpAnimation = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_GamepadCurrencySelector_ButtonBumpUpAnimation", self.increase)
    self.buttonDownAnimation = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_GamepadCurrencySelector_ButtonBumpDownAnimation", self.decrease)
    self.playUpAnimBackwardsFunction = function() self.buttonUpAnimation:PlayBackward() end
    self.playDownAnimBackwardsFunction = function() self.buttonDownAnimation:PlayBackward() end
    self.spinner:RegisterCallback("OnValueChanged", valueChangedCallback)
    self:Deactivate()
    --Register the spinner for narration
    SCREEN_NARRATION_MANAGER:RegisterSpinner(self.spinner)
end
function ZO_CurrencySelectorDigit_Gamepad:SetHidden(hidden)
    self.control:SetHidden(hidden)
end
function ZO_CurrencySelectorDigit_Gamepad:SetValue(value)
    self.spinner:SetValue(value)
end
function ZO_CurrencySelectorDigit_Gamepad:GetValue()
    return self.spinner:GetValue()
end
function ZO_CurrencySelectorDigit_Gamepad:SetAlpha(alpha)
    self.alpha = alpha
end
function ZO_CurrencySelectorDigit_Gamepad:SetTextColor(color)
    self.color = color
end
function ZO_CurrencySelectorDigit_Gamepad:UpdateTextColor()
    local r, g, b = self.color:UnpackRGB()
    self.display:SetColor(r, g, b, self.alpha)
end
function ZO_CurrencySelectorDigit_Gamepad:SetActive(active)
    self.spinner:SetButtonsHidden(not active)
    if active then
        self.spinner:Activate()
    else
        self.spinner:Deactivate()
    end
    self.display:SetFont(active and "ZoFontGamepad42" or "ZoFontGamepad34")
end
function ZO_CurrencySelectorDigit_Gamepad:Activate()
    self:SetActive(true)
end
function ZO_CurrencySelectorDigit_Gamepad:Deactivate()
    self:SetActive(false)
end
function ZO_CurrencySelectorDigit_Gamepad:AnimateButtons(previousValue, newValue, buttonReleased)
    if previousValue ~= newValue then
        if self.spinner:IsAtMaxAccelerationFactor() then
            if not self.isUpButtonAnimatedOut or not self.isDownButtonAnimatedOut then
                if g_directionalInputY > 0 then
                    self.buttonUpAnimation:PlayForward()
                    self.isUpButtonAnimatedOut = true
                elseif g_directionalInputY < 0 then
                    self.buttonDownAnimation:PlayForward()
                    self.isDownButtonAnimatedOut = true
                end
            end
        else
            if g_directionalInputY > 0 or g_directionalInputX < 0 then
                self.buttonUpAnimation:PlayForward()
                zo_callLater(self.playUpAnimBackwardsFunction, ZO_CURRENCY_SELECTOR_BUTTON_ANIMATION_DURATION_GAMEPAD)
            elseif g_directionalInputY < 0 or g_directionalInputX > 0 then
                self.buttonDownAnimation:PlayForward()
                zo_callLater(self.playDownAnimBackwardsFunction, ZO_CURRENCY_SELECTOR_BUTTON_ANIMATION_DURATION_GAMEPAD)
            end
        end
    elseif buttonReleased then
        if self.isUpButtonAnimatedOut then
            self.buttonUpAnimation:PlayBackward()
            self.isUpButtonAnimatedOut = false
        elseif self.isDownButtonAnimatedOut then
            self.buttonDownAnimation:PlayBackward()
            self.isDownButtonAnimatedOut = false
        end
    end
end
function ZO_CurrencySelectorDigit_Gamepad:SetCustomNarrationFunction(narrationFunction)
end
function ZO_CurrencySelectorDigit_Gamepad:SetName(name)
    self.spinner:SetName(name)
end
-----------------------
-- Currency Selector
-----------------------
local DIGIT_NAMES =
{
    GetString(SI_GAMEPAD_CURRENCY_SELECTOR_ONES_NARRATION),
    GetString(SI_GAMEPAD_CURRENCY_SELECTOR_TENS_NARRATION),
    GetString(SI_GAMEPAD_CURRENCY_SELECTOR_HUNDREDS_NARRATION),
    GetString(SI_GAMEPAD_CURRENCY_SELECTOR_THOUSANDS_NARRATION),
    GetString(SI_GAMEPAD_CURRENCY_SELECTOR_TEN_THOUSANDS_NARRATION),
    GetString(SI_GAMEPAD_CURRENCY_SELECTOR_HUNDRED_THOUSANDS_NARRATION),
    GetString(SI_GAMEPAD_CURRENCY_SELECTOR_MILLIONS_NARRATION),
    GetString(SI_GAMEPAD_CURRENCY_SELECTOR_TEN_MILLIONS_NARRATION),
    GetString(SI_GAMEPAD_CURRENCY_SELECTOR_HUNDRED_MILLIONS_NARRATION),
    GetString(SI_GAMEPAD_CURRENCY_SELECTOR_BILLIONS_NARRATION),
}
ZO_CurrencySelector_Gamepad = ZO_InitializingCallbackObject:Subclass()
function ZO_CurrencySelector_Gamepad:Initialize(control)
    self.control = control
    self.valueIsDirty = true
    local function OnValueChangedCallback()
        local value = self:GetValue()
        local max = self:GetMaxValue()
        local hasEnough = value <= max
        
        if self.clampGreaterThanMax and (not hasEnough) then
            self:SetValue(max)
            hasEnough = true
        end
        
        self:UpdateDigits()
        if self.currentDigit then
            self.currentDigit:AnimateButtons(self.previousValue, self.value)
            self.previousValue = self.value
        end
        self.valueIsDirty = true
        self:SetTextColor(hasEnough and ZO_SELECTED_TEXT or ZO_ERROR_COLOR)
        self:FireCallbacks("OnValueChanged")
    end
    --When adding or removing values from this table, make sure the DIGIT_NAMES table is updated accordingly
    self.digits =
    {
        ZO_CurrencySelectorDigit_Gamepad:New(self.control:GetNamedChild("Ones"), OnValueChangedCallback),
        ZO_CurrencySelectorDigit_Gamepad:New(self.control:GetNamedChild("Tens"), OnValueChangedCallback),
        ZO_CurrencySelectorDigit_Gamepad:New(self.control:GetNamedChild("Hundreds"), OnValueChangedCallback),
        ZO_CurrencySelectorDigit_Gamepad:New(self.control:GetNamedChild("Thousands"), OnValueChangedCallback),
        ZO_CurrencySelectorDigit_Gamepad:New(self.control:GetNamedChild("TenThousands"), OnValueChangedCallback),
        ZO_CurrencySelectorDigit_Gamepad:New(self.control:GetNamedChild("HundredThousands"), OnValueChangedCallback),
        ZO_CurrencySelectorDigit_Gamepad:New(self.control:GetNamedChild("Millions"), OnValueChangedCallback),
        ZO_CurrencySelectorDigit_Gamepad:New(self.control:GetNamedChild("TenMillions"), OnValueChangedCallback),
        ZO_CurrencySelectorDigit_Gamepad:New(self.control:GetNamedChild("HundredMillions"), OnValueChangedCallback),
        ZO_CurrencySelectorDigit_Gamepad:New(self.control:GetNamedChild("Billions"), OnValueChangedCallback),
    }
    self.spacers =
    {
        self.control:GetNamedChild("Spacer1"),
        self.control:GetNamedChild("Spacer2"),
        self.control:GetNamedChild("Spacer3"),
    }
    self.movementController = ZO_MovementController:New(MOVEMENT_CONTROLLER_DIRECTION_HORIZONTAL, nil, MagnitudeQuery)
    local NUMBER_TICKS_TO_START_ACCELERATING = 2
    local ACCELERATION_MAGNITUDE_FACTOR = 5
    self.movementController:SetNumTicksToStartAccelerating(NUMBER_TICKS_TO_START_ACCELERATING)
    self.movementController:SetAccelerationMagnitudeFactor(ACCELERATION_MAGNITUDE_FACTOR)
    self.previousValue = 0
    local function GetNarrationText(spinner)
        if self.currencyType == nil then
            internalassert(false, "Attempting to narrate a currency selector with no currency type set")
        end
        local narrations = {}
        --Get the narration text for the spinner itself
        ZO_AppendNarration(narrations, ZO_FormatVerticalSpinnerNarrationText(spinner:GetName(), spinner:GetFormattedValueText()))
        --Get the narration text for the total set value of the currency selector
        local currencyString = ZO_Currency_FormatGamepad(self.currencyType, self:GetValue(), ZO_CURRENCY_FORMAT_AMOUNT_NAME)
        ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(GetString(SI_GAMEPAD_CURRENCY_SELECTOR_TOTAL_VALUE_NARRATION)))
        ZO_AppendNarration(narrations, SCREEN_NARRATION_MANAGER:CreateNarratableObject(currencyString))
        return narrations
    end
    --Set up the necessary information for narration
    for i, digit in ipairs(self.digits) do
        digit:SetName(DIGIT_NAMES[i])
    end
end
function ZO_CurrencySelector_Gamepad:SetTextColor(color)
    for _, digit in ipairs(self.digits) do
        digit:SetTextColor(color)
    end
end
function ZO_CurrencySelector_Gamepad:SetValue(value)
    if self.clampGreaterThanMax and value > self.maxValue then
        value = self.maxValue
    end
    self.value = value
    for _, digit in ipairs(self.digits) do
        local thisDigit = value % 10
        digit:SetValue(thisDigit)
        value = (value - thisDigit) / 10
    end
    self:UpdateDigits()
end
function ZO_CurrencySelector_Gamepad:GetValue()
    if self.valueIsDirty then
        local total = 0
        local digitValue = 1
        for _, digit in ipairs(self.digits) do
            if digit:GetValue() ~= 0 then
                total = total + digit:GetValue() * digitValue
            end
            digitValue = digitValue * 10
        end
        self.value = total
    end
    return self.value
end
local ENABLED_DIGIT_ALPHA = 1
local DISABLED_DIGIT_ALPHA = 0.2
function ZO_CurrencySelector_Gamepad:UpdateDigits()
    local firstEnabledDigit = 1
    for i = #self.digits, 2, -1 do
        if self.digits[i]:GetValue() ~= 0 then
            firstEnabledDigit = i
            break
        end
    end
    for i, digit in ipairs(self.digits) do
        digit:SetAlpha(firstEnabledDigit >= i and ENABLED_DIGIT_ALPHA or DISABLED_DIGIT_ALPHA)
    end
    for i, spacer in ipairs(self.spacers) do
        local nextDigit = i * 3 + 1
        spacer:SetColor(1, 1, 1, firstEnabledDigit >= nextDigit and ENABLED_DIGIT_ALPHA or DISABLED_DIGIT_ALPHA)
    end
end
function ZO_CurrencySelector_Gamepad:GetMaxValue()
    return self.maxValue
end
function ZO_CurrencySelector_Gamepad:SetMaxValue(maxValue)
    if self.maxValue == nil or self.maxValue ~= maxValue then
        self.maxValue = maxValue
        local numDigits = self:CalculateNumDigits()
        -- If we are showing then only update the digits if it is larger.
        -- This way we won't have to clamp which might confuse the user.
        if self.control:IsHidden() then
            self.maxDigits = numDigits
        else
            if numDigits > (self.maxDigits or 0) then
                self.maxDigits = numDigits
                self:UpdateDigitVisibility()
            end
        end
    end
end
function ZO_CurrencySelector_Gamepad:SetClampValues(clampGreaterThanMax)
    self.clampGreaterThanMax = clampGreaterThanMax
end
function ZO_CurrencySelector_Gamepad:CalculateNumDigits()
    local maxValue = self.maxValue or 0
    local numDigits = 0
    repeat
        numDigits = numDigits + 1
        maxValue = zo_floor(maxValue / 10)
    until maxValue <= 0
    return numDigits
end
function ZO_CurrencySelector_Gamepad:UpdateDigitVisibility()
    for i, digit in ipairs(self.digits) do
        digit:SetHidden(i > self.maxDigits)
    end
    for i, spacer in ipairs(self.spacers) do
        local nextDigit = i * 3 + 1
        spacer:SetHidden(nextDigit > self.maxDigits)
    end
end
function ZO_CurrencySelector_Gamepad:Clear()
    for _, digit in ipairs(self.digits) do
        digit:SetValue(0)
    end
end
function ZO_CurrencySelector_Gamepad:Activate()
    if not self.maxValue then
        self:SetMaxValue(0)
    end
    DIRECTIONAL_INPUT:Activate(self, self.control)
    self:SetActiveDigit(1)
    self:UpdateDigits()
end
function ZO_CurrencySelector_Gamepad:Deactivate()
    if self.currentDigit then
        self.currentDigit:Deactivate()
        self.currentDigit = nil
    end
    DIRECTIONAL_INPUT:Deactivate(self)
    self:FireCallbacks("OnDeactivated")
end
function ZO_CurrencySelector_Gamepad:SetActiveDigit(index)
    if index > #self.digits or index > self.maxDigits then
        if self.clampGreaterThanMax then
            self:SetValue(self.maxValue)
        end
        return
    elseif index < 1 then
        self:SetValue(0)
        return
    end
    self.currentDigitIndex = index
    if self.currentDigit then
        self.currentDigit:Deactivate()
    end
    self.currentDigit = self.digits[index]
    self.currentDigit:Activate()
end
function ZO_CurrencySelector_Gamepad:UpdateDirectionalInput()
    local result = self.movementController:CheckMovement()
    if result == MOVEMENT_CONTROLLER_MOVE_NEXT then
        self:SetActiveDigit(self.currentDigitIndex - 1)
    elseif result == MOVEMENT_CONTROLLER_MOVE_PREVIOUS then
        self:SetActiveDigit(self.currentDigitIndex + 1)
    end
end
function ZO_CurrencySelector_Gamepad:SetCurrencyType(currencyType)
    self.currencyType = currencyType
end