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