]> git.immae.eu Git - perso/Immae/Projets/Python/MusicSampler.git/blame - helpers/key.py
Add cross when key is not usable
[perso/Immae/Projets/Python/MusicSampler.git] / helpers / key.py
CommitLineData
4b2d79ca 1from kivy.uix.widget import Widget
2e404903
IB
2from kivy.properties import AliasProperty, BooleanProperty, \
3 ListProperty, StringProperty
4b2d79ca
IB
4from kivy.uix.behaviors import ButtonBehavior
5
e55b29bb 6from .action import Action
a24c34bc 7from . import debug_print
be27763f 8import time
34382290 9import threading
e55b29bb 10from transitions.extensions import HierarchicalMachine as Machine
4b2d79ca
IB
11
12class Key(ButtonBehavior, Widget):
e55b29bb
IB
13 STATES = [
14 'initial',
15 'configuring',
16 'configured',
17 'loading',
18 'failed',
19 {
20 'name': 'loaded',
34382290
IB
21 'children': [
22 'no_config',
23 'no_actions',
24 'running',
25 'protecting_repeat'
26 ]
e55b29bb
IB
27 }
28 ]
29
30 TRANSITIONS = [
31 {
32 'trigger': 'configure',
33 'source': 'initial',
34 'dest': 'configuring'
35 },
36 {
37 'trigger': 'fail',
38 'source': 'configuring',
8ba7d831
IB
39 'dest': 'failed',
40 'after': 'key_loaded_callback'
e55b29bb
IB
41 },
42 {
43 'trigger': 'success',
44 'source': 'configuring',
45 'dest': 'configured',
46 'after': 'load'
47 },
48 {
49 'trigger': 'no_config',
50 'source': 'configuring',
51 'dest': 'loaded_no_config',
8ba7d831 52 'after': 'key_loaded_callback'
e55b29bb
IB
53 },
54 {
55 'trigger': 'load',
56 'source': 'configured',
57 'dest': 'loading'
58 },
59 {
60 'trigger': 'fail',
61 'source': 'loading',
8ba7d831
IB
62 'dest': 'failed',
63 'after': 'key_loaded_callback'
e55b29bb
IB
64 },
65 {
66 'trigger': 'success',
67 'source': 'loading',
8ba7d831
IB
68 'dest': 'loaded',
69 'after': 'key_loaded_callback'
e55b29bb
IB
70 },
71 {
72 'trigger': 'no_actions',
73 'source': 'loading',
74 'dest': 'loaded_no_actions',
8ba7d831 75 'after': 'key_loaded_callback'
e55b29bb
IB
76 },
77 {
78 'trigger': 'reload',
ab47d2a1 79 'source': ['loaded','failed'],
8ba7d831
IB
80 'dest': 'configuring',
81 'after': 'key_loaded_callback'
e55b29bb
IB
82 },
83 {
84 'trigger': 'run',
85 'source': 'loaded',
86 'dest': 'loaded_running',
b17aed6a 87 'after': ['run_actions', 'finish'],
6c42e32d
IB
88 # if a child, like loaded_no_actions, has no transitions, then it
89 # is bubbled to the parent, and we don't want that.
e55b29bb
IB
90 'conditions': ['is_loaded']
91 },
92 {
93 'trigger': 'finish',
94 'source': 'loaded_running',
34382290
IB
95 'dest': 'loaded_protecting_repeat'
96 },
97 {
98 'trigger': 'repeat_protection_finished',
99 'source': 'loaded_protecting_repeat',
e55b29bb 100 'dest': 'loaded'
34382290 101 },
e55b29bb
IB
102 ]
103
4b2d79ca 104 key_sym = StringProperty(None)
e55b29bb 105 custom_color = ListProperty([0, 1, 0])
4b2d79ca
IB
106 description_title = StringProperty("")
107 description = ListProperty([])
e55b29bb 108 state = StringProperty("")
4b2d79ca 109
635dea02
IB
110 def get_alias_line_cross_color(self):
111 if self.is_loaded_running() or self.is_loaded_protecting_repeat():
112 return [120/255, 120/255, 120/255, 1]
113 else:
114 return [0, 0, 0, 0]
115
116 def set_alias_line_cross_color(self):
117 pass
118
119 line_cross_color = AliasProperty(
120 get_alias_line_cross_color,
121 set_alias_line_cross_color,
122 bind=['state'])
123
1094ab1a
IB
124 def get_alias_line_color(self):
125 if self.is_loaded_running():
126 return [0, 0, 0, 1]
127 else:
128 return [120/255, 120/255, 120/255, 1]
129
130 def set_alias_line_color(self):
131 pass
132
133 line_color = AliasProperty(get_alias_line_color, set_alias_line_color,
134 bind=['state'])
135
e55b29bb
IB
136 def get_alias_color(self):
137 if self.is_loaded_inactive():
4b2d79ca 138 return [1, 1, 1, 1]
34382290
IB
139 elif self.is_loaded_protecting_repeat():
140 return [*self.custom_color, 100/255]
70cfb266
IB
141 elif self.is_loaded_running():
142 return [*self.custom_color, 100/255]
e55b29bb
IB
143 elif self.is_loaded(allow_substates=True):
144 return [*self.custom_color, 1]
145 elif self.is_failed():
146 return [0, 0, 0, 1]
be27763f 147 else:
e55b29bb
IB
148 return [*self.custom_color, 100/255]
149 def set_alias_color(self):
4b2d79ca
IB
150 pass
151
e55b29bb
IB
152 color = AliasProperty(get_alias_color, set_alias_color,
153 bind=['state', 'custom_color'])
be27763f 154
4b2d79ca 155 def __init__(self, **kwargs):
be27763f 156 self.actions = []
b17aed6a
IB
157 self.current_action = None
158
e55b29bb
IB
159 Machine(model=self, states=self.STATES,
160 transitions=self.TRANSITIONS, initial='initial',
161 ignore_invalid_triggers=True, queued=True)
162 super(Key, self).__init__(**kwargs)
be27763f 163
e55b29bb 164 # Kivy events
4b2d79ca 165 def on_key_sym(self, key, key_sym):
e55b29bb
IB
166 if key_sym != "":
167 self.configure()
168
169 def on_press(self):
170 self.list_actions()
4b2d79ca 171
e55b29bb
IB
172 # Machine states / events
173 def is_loaded_or_failed(self):
174 return self.is_loaded(allow_substates=True) or self.is_failed()
175
176 def is_loaded_inactive(self):
177 return self.is_loaded_no_config() or self.is_loaded_no_actions()
178
179 def on_enter_configuring(self):
180 if self.key_sym in self.parent.key_config:
181 self.config = self.parent.key_config[self.key_sym]
be27763f 182
4b2d79ca
IB
183 self.actions = []
184 for key_action in self.config['actions']:
185 self.add_action(key_action[0], **key_action[1])
186
187 if 'description' in self.config['properties']:
e55b29bb 188 self.set_description(self.config['properties']['description'])
4b2d79ca 189 if 'color' in self.config['properties']:
e55b29bb
IB
190 self.set_color(self.config['properties']['color'])
191 self.success()
192 else:
193 self.no_config()
4b2d79ca 194
e55b29bb
IB
195 def on_enter_loading(self):
196 if len(self.actions) > 0:
197 for action in self.actions:
198 action.load()
199 else:
200 self.no_actions()
201
b17aed6a 202 def run_actions(self, modifiers):
e55b29bb
IB
203 self.parent.parent.ids['KeyList'].append(self.key_sym)
204 debug_print("running actions for {}".format(self.key_sym))
205 start_time = time.time()
206 self.parent.start_running(self, start_time)
e55b29bb
IB
207 for self.current_action in self.actions:
208 if self.parent.keep_running(self, start_time):
b17aed6a 209 self.list_actions()
62a8b07a 210 self.current_action.run(start_time)
b17aed6a 211 self.list_actions(last_action_finished=True)
4b2d79ca 212
e55b29bb 213 self.parent.finished_running(self, start_time)
be27763f 214
34382290
IB
215 def on_enter_loaded_protecting_repeat(self, modifiers):
216 if 'repeat_delay' in self.config['properties']:
217 self.protecting_repeat_timer = threading.Timer(
218 self.config['properties']['repeat_delay'],
219 self.repeat_protection_finished)
220 self.protecting_repeat_timer.start()
221 else:
222 self.repeat_protection_finished()
223
e55b29bb
IB
224 # This one cannot be in the Machine state since it would be queued to run
225 # *after* the loop is ended...
226 def interrupt(self):
227 self.current_action.interrupt()
228
229 # Callbacks
8ba7d831
IB
230 def key_loaded_callback(self):
231 self.parent.key_loaded_callback()
232
e55b29bb
IB
233 def callback_action_ready(self, action, success):
234 if not success:
235 self.fail()
236 elif all(action.is_loaded_or_failed() for action in self.actions):
237 self.success()
238
239 # Setters
b86db9f1 240 def set_description(self, description):
4b2d79ca
IB
241 if description[0] is not None:
242 self.description_title = str(description[0])
ab47d2a1 243 self.description = []
2e404903 244 for desc in description[1 :]:
d479af33
IB
245 if desc is None:
246 self.description.append("")
247 else:
4b2d79ca 248 self.description.append(str(desc).replace(" ", " "))
b86db9f1
IB
249
250 def set_color(self, color):
4b2d79ca 251 color = [x / 255 for x in color]
4b2d79ca 252 self.custom_color = color
be27763f 253
e55b29bb 254 # Actions handling
be27763f
IB
255 def add_action(self, action_name, **arguments):
256 self.actions.append(Action(action_name, self, **arguments))
257
b17aed6a
IB
258 def list_actions(self, last_action_finished=False):
259 not_running = (not self.is_loaded_running())
260 current_action_seen = False
261 action_descriptions = []
262 for action in self.actions:
263 if not_running:
264 state = "inactive"
265 elif last_action_finished:
266 state = "done"
267 elif current_action_seen:
268 state = "pending"
269 elif action == self.current_action:
270 current_action_seen = True
271 state = "current"
272 else:
273 state = "done"
274 action_descriptions.append([action.description(), state])
275 self.parent.parent.ids['ActionList'].update_list(
276 self,
277 action_descriptions)