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