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
|
# coding: utf-8
# Copyright 2019 DragonRuby LLC
# MIT License
# controller/keys.rb has been released under MIT (*only this file*).
module GTK
class Controller
class Keys
include Serialize
LABELS = [
:up, :down, :left, :right,
:a, :b, :x, :y,
:l1, :r1,
:l2, :r2,
:l3, :r3,
:start, :select, :home,
:directional_up, :directional_down, :directional_left, :directional_right
].freeze
LABELS.each do |label|
attr label
end
def back
@select
end
def back= value
@select = value
end
def guide
@home
end
def guide= value
@home = value
end
# Activate a key.
#
# @return [void]
def activate key
instance_variable_set("@#{key}", Kernel.tick_count + 1)
end
# Deactivate a key.
#
# @return [void]
def deactivate key
instance_variable_set("@#{key}", nil)
end
# Clear all key inputs.
#
# @return [void]
def clear
LABELS.each { |label| deactivate(label) }
end
def truthy_keys
LABELS.select { |label| send(label) }
end
end
end
end
|