]> git.immae.eu Git - perso/Immae/Projets/Python/MusicSampler.git/blame - helpers/mapping.py
Add dir in music_sampler.spec
[perso/Immae/Projets/Python/MusicSampler.git] / helpers / mapping.py
CommitLineData
4b2d79ca 1from kivy.uix.relativelayout import RelativeLayout
30d8796f 2from kivy.properties import NumericProperty, ListProperty
4b2d79ca 3from kivy.core.window import Window
30d8796f 4from kivy.clock import Clock
4b2d79ca 5
be27763f 6import threading
4b2d79ca 7import yaml
b68b4e8f 8import sys
4b2d79ca 9
4b2d79ca 10from .music_file import *
1b4b78f5 11from . import yml_file,gain
4b2d79ca
IB
12
13class Mapping(RelativeLayout):
14 expected_keys = NumericProperty(0)
1b4b78f5 15 master_volume = NumericProperty(100)
30d8796f 16 ready_color = ListProperty([1, 165/255, 0, 1])
4b2d79ca
IB
17
18 def __init__(self, **kwargs):
29597680 19 self.key_config, self.open_files = self.parse_config()
4b2d79ca
IB
20 super(Mapping, self).__init__(**kwargs)
21 self._keyboard = Window.request_keyboard(self._keyboard_closed, self)
22 self._keyboard.bind(on_key_down=self._on_keyboard_down)
be27763f 23 self.running = []
30d8796f 24 Clock.schedule_interval(self.not_all_keys_ready, 1)
be27763f 25
4b2d79ca 26
1b4b78f5
IB
27 @property
28 def master_gain(self):
29 return gain(self.master_volume)
30
8e50011c
IB
31 def set_master_volume(self, value, delta = False):
32 [db_gain, self.master_volume] = gain(value + int(delta) * self.master_volume, self.master_volume)
1b4b78f5
IB
33 for music in self.open_files.values():
34 music.set_gain(db_gain)
35
4b2d79ca
IB
36 def _keyboard_closed(self):
37 self._keyboard.unbind(on_key_down=self._on_keyboard_down)
38 self._keyboard = None
39
40 def _on_keyboard_down(self, keyboard, keycode, text, modifiers):
41 key = self.find_by_key_code(keycode)
b68b4e8f 42 if len(modifiers) == 0 and key is not None:
4b2d79ca 43 threading.Thread(name = "MSKeyAction", target=key.do_actions).start()
b68b4e8f
IB
44 elif 'ctrl' in modifiers and (keycode[0] == 113 or keycode[0] == '99'):
45 for thread in threading.enumerate():
46 if thread.getName()[0:2] != "MS":
47 continue
48 thread.join()
49
b68b4e8f 50 sys.exit()
4b2d79ca
IB
51 return True
52
53 def find_by_key_code(self, key_code):
54 if "Key_" + str(key_code[0]) in self.ids:
55 return self.ids["Key_" + str(key_code[0])]
be27763f
IB
56 return None
57
30d8796f
IB
58 def not_all_keys_ready(self, dt):
59 for key in self.children:
60 if not type(key).__name__ == "Key":
61 continue
62 if not key.is_key_ready:
63 return True
64 self.ready_color = [0, 1, 0, 1]
65 return False
66
be27763f 67 def stop_all_running(self):
0deb82a5 68 running = self.running
be27763f 69 self.running = []
0deb82a5
IB
70 for (key, start_time) in running:
71 key.interrupt_action()
be27763f
IB
72
73 def start_running(self, key, start_time):
74 self.running.append((key, start_time))
75
76 def keep_running(self, key, start_time):
77 return (key, start_time) in self.running
78
79 def finished_running(self, key, start_time):
80 if (key, start_time) in self.running:
81 self.running.remove((key, start_time))
82
4b2d79ca 83 def parse_config(self):
9b9dd12a 84 stream = open(yml_file(), "r")
4b2d79ca
IB
85 config = yaml.load(stream)
86 stream.close()
87
88 aliases = config['aliases']
89 seen_files = {}
90
4b2d79ca
IB
91 key_properties = {}
92
93 for key in config['key_properties']:
94 if key not in key_properties:
e5edd8b9
IB
95 key_prop = config['key_properties'][key]
96 if 'include' in key_prop:
97 included = key_prop['include']
98 del(key_prop['include'])
99
100 if isinstance(included, str):
101 key_prop.update(aliases[included], **key_prop)
102 else:
103 for included_ in included:
104 key_prop.update(aliases[included_], **key_prop)
105
4b2d79ca
IB
106 key_properties[key] = {
107 "actions": [],
e5edd8b9 108 "properties": key_prop,
4b2d79ca
IB
109 "files": []
110 }
111
112 for mapped_key in config['keys']:
113 if mapped_key not in key_properties:
114 key_properties[mapped_key] = {
115 "actions": [],
116 "properties": {},
117 "files": []
118 }
119 for action in config['keys'][mapped_key]:
120 action_name = list(action)[0]
121 action_args = {}
122 if action[action_name] is None:
123 action[action_name] = []
124
125 if 'include' in action[action_name]:
126 included = action[action_name]['include']
127 del(action[action_name]['include'])
128
129 if isinstance(included, str):
130 action[action_name].update(aliases[included], **action[action_name])
131 else:
132 for included_ in included:
133 action[action_name].update(aliases[included_], **action[action_name])
134
135 for argument in action[action_name]:
136 if argument == 'file':
137 filename = action[action_name]['file']
138 if filename not in seen_files:
139 if filename in config['music_properties']:
140 seen_files[filename] = MusicFile(
141 filename,
1b4b78f5 142 self,
4b2d79ca
IB
143 **config['music_properties'][filename])
144 else:
145 seen_files[filename] = MusicFile(
1b4b78f5 146 self,
29597680 147 filename)
4b2d79ca
IB
148
149 if filename not in key_properties[mapped_key]['files']:
150 key_properties[mapped_key]['files'].append(seen_files[filename])
151
152 action_args['music'] = seen_files[filename]
153
154 else:
155 action_args[argument] = action[action_name][argument]
156
157 key_properties[mapped_key]['actions'].append([action_name, action_args])
158
29597680 159 return (key_properties, seen_files)
4b2d79ca
IB
160
161