forked from hdavid/Launchpad95
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NoteEditorComponent.py
executable file
·476 lines (395 loc) · 18.3 KB
/
NoteEditorComponent.py
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
from _Framework.ControlSurfaceComponent import ControlSurfaceComponent
from _Framework.ButtonElement import ButtonElement
import time
class NoteEditorComponent(ControlSurfaceComponent):
def __init__(self, stepsequencer = None, matrix = None, control_surface = None):
ControlSurfaceComponent.__init__(self)
self.set_enabled(False)
self._stepsequencer = stepsequencer
self._control_surface = control_surface
self._clip = None
self._note_cache = None
self._playhead = None
# playback step indicator
self.display_metronome = True
self.metronome_color = "StepSequencer.NoteEditor.Metronome"
# playback page indicator
self._current_page = -1
# Velocity color map. this must remain of length 3. WHY???
self.velocity_map = [20, 50, 80, 105, 127]
self.velocity_color_map = [ "StepSequencer.NoteEditor.Velocity0", "StepSequencer.NoteEditor.Velocity1", "StepSequencer.NoteEditor.Velocity2", "StepSequencer.NoteEditor.Velocity3", "StepSequencer.NoteEditor.Velocity4"]
# other colors
self.muted_note_color = "StepSequencer.NoteEditor.Muted"
self.playing_note_color = "StepSequencer.NoteEditor.Playing"
#hold button for 500 ms
self.long_button_press = 0.500
# buttons
self._matrix = None
self._mute_shift_button = None
self._velocity_button = None
self._velocity_shift_button = None
# displayed page
self._page = 0
self._display_page = False
self._display_page_time = time.time()
# notes
self._key_indexes = [36, 37, 38, 39, 40, 41, 42, 43]
self._key_index_is_in_scale = [True, False, True, True, False, True, False, True]
self._key_index_is_root_note = [True, False, False, False, False, False, False, False]
self._number_of_lines_per_note = 1
# clip
self._force_update = True
# quantization
self._quantization = 16
# velocity
self._velocity_index = 2
self._velocity = self.velocity_map[self._velocity_index]
self._is_velocity_shifted = False
self._velocity_notes_pressed = 0
self._velocity_last_press = time.time()
# modes
self._is_mute_shifted = False
self._is_mutlinote = False
# matrix
if matrix != None:
self.set_matrix(matrix)
def disconnect(self):
self._matrix = None
self._velocity_button = None
self._clip = None
@property
def is_multinote(self):
return self._is_mutlinote
def set_multinote(self, is_mutlinote, number_of_lines_per_note):
self._is_mutlinote = is_mutlinote
self._number_of_lines_per_note = number_of_lines_per_note
@property
def quantization(self):
return self._quantization
def set_quantization(self, quantization):
self._quantization = quantization
def set_scale(self, scale):
self._scale = scale
def set_diatonic(self, diatonic):
self._diatonic = diatonic
@property
def key_indexes(self):
return self._key_indexes
def set_key_indexes(self, key_indexes):
self._key_indexes = key_indexes
def set_key_index_is_in_scale(self, key_index_is_in_scale):
self._key_index_is_in_scale = key_index_is_in_scale
def set_key_index_is_root_note(self, key_index_is_root_note):
self._key_index_is_root_note = key_index_is_root_note
@property
def height(self):
return self._height
def set_height(self, height):
self._height = height
@property
def width(self):
return self._width
@property
def number_of_lines_per_note(self):
if self.is_multinote:
return self._number_of_lines_per_note
else:
return self.height
def set_page(self, page):
if self.is_multinote:
self._page = page
else:
self._page = page / 4 # 4 lines per note (32 steps seq)
def set_clip(self, clip):
self._clip = clip
def set_note_cache(self, note_cache):
self._note_cache = note_cache
def set_playhead(self, playhead): # Playing cursor
self._playhead = playhead
self._update_matrix()
def update_notes(self): # Deprecated ???
if self._clip != None:
self._clip.select_all_notes()
note_cache = self._clip.get_selected_notes()
self._clip.deselect_all_notes()
if self._clip_notes != note_cache:
self._clip_notes = note_cache
self._update_matrix()
def update(self, force=False):
if self.is_enabled():
if force:
self._force_update = True
self._update_velocity_button()
self._update_matrix()
# Display the third amber column to show the current page in multinote mode OK
def _display_selected_page(self): # OK
for i in range(0, self._height):
self._grid_back_buffer[self._page % self.width][i] = "StepSequencer.NoteEditor.PageMarker"
# Displays 3 buttons for the root of the scale and 1 for the in scale notes
def _display_note_markers(self):# (out of scale notes buttons are dark) OK
for i in range(0, self.height / self.number_of_lines_per_note):
if self._key_index_is_root_note[i]:
for j in range(0, self.number_of_lines_per_note):
self._grid_back_buffer[0][self.height - i * self.number_of_lines_per_note - j - 1] = "StepSequencer.NoteEditor.NoteMarker"
self._grid_back_buffer[1][self.height - i * self.number_of_lines_per_note - j - 1] = "StepSequencer.NoteEditor.NoteMarker"
self._grid_back_buffer[2][self.height - i * self.number_of_lines_per_note - j - 1] = "StepSequencer.NoteEditor.NoteMarker"
elif self._key_index_is_in_scale[i]:
for j in range(0, self.number_of_lines_per_note):
self._grid_back_buffer[0][self.height - i * self.number_of_lines_per_note - j - 1] = "StepSequencer.NoteEditor.NoteMarker"
#*********************MATRIX*********************
#Add listener and initialize note buffers OK
def set_matrix(self, matrix):
if (matrix != self._matrix):
if (self._matrix != None):
self._matrix.remove_value_listener(self._matrix_value)
self._matrix = matrix
if (self._matrix != None):
self._matrix.add_value_listener(self._matrix_value)
self._width = self._matrix.width()
#self._height = self._matrix.height()
self._grid_buffer = [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]
self._grid_back_buffer = [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]
# Updates the LP LEDs OK
def _update_matrix(self):
if self.is_enabled() and self._matrix!=None:
# clear back buffer
for x in range(self.width):
for y in range(self.height):
self._grid_back_buffer[x][y] = "DefaultButton.Disabled"
# update back buffer
if self._clip != None and self._note_cache != None:
# play back position
if self._playhead != None:
play_position = self._playhead # position in beats (integer = number of beats, decimal subdivisions)
play_page = int(play_position / self.quantization / self.width / self.number_of_lines_per_note)
play_row = int(play_position / self.quantization / self.width) % self.number_of_lines_per_note
play_x_position = int(play_position / self.quantization) % self.width
play_y_position = int(play_position / self.quantization / self.width) % self.height
else:
play_position = -1
play_page = -1
play_row = -1
play_x_position = -1
play_y_position = -1
# add play positition in amber
if(self.display_metronome):
if self._clip.is_playing and self.song().is_playing:
self._grid_back_buffer[play_x_position][play_y_position] = "StepSequencer.NoteEditor.Metronome"
# Display the selected page
if(self._display_page):
self._display_selected_page()
if self._display_page_time + 0.25 < time.time():
self._display_page = False
# Display the notes in the 1st left column
if self.is_multinote:
self._display_note_markers()
# Display the current played page
if(self._current_page !=play_page):
self._current_page=play_page
self._display_current_page()
# display clip notes
for note in self._note_cache:
note_position = note[1] # decimal value of a beat (1=beat, same as playhead)
note_key = note[0] # key: 0-127 MIDI note #
note_velocity = note[3] # velocity: 0-127 value #
note_muted = note[4]#Boolean
note_page = int(note_position / self.quantization / self.width / self.number_of_lines_per_note)
note_grid_x_position = int(note_position / self.quantization) % self.width
note_grid_y_position = int(note_position / self.quantization / self.width) % self.height
#Calculate note position in the grid (note position to matrix button logic)
if self.is_multinote:
# compute base note, taking into account number_of_lines_per_note
try:
note_idx = self.key_indexes.index(note_key)
except ValueError:
note_idx = -1
note_grid_y_base = note_idx * self.number_of_lines_per_note
if(note_grid_y_base >= 0):
note_grid_y_base = (7 - note_grid_y_base) - (self.number_of_lines_per_note - 1)
if(note_grid_y_base < 0):
note_grid_y_base = -1
note_grid_y_offset = int(note_position / self.quantization / self.width) % self.number_of_lines_per_note
else:
idx = 1
try:
idx = self.key_indexes.index(note_key)
except ValueError:
idx = -1
if idx == 0:
note_grid_y_base = 0
else:
note_grid_y_base = -1
note_grid_y_offset = int(note_position / self.quantization / self.width) % self.number_of_lines_per_note
if note_grid_y_base != -1 and note_grid_y_base < self.height:
note_grid_y_position = note_grid_y_base + note_grid_y_offset
else:
note_grid_x_position = -1
note_grid_y_position = -1
#Set note color
if (note_grid_x_position >= 0):
# compute colors
velocity_color = self.velocity_color_map[0]
for index in range(len(self.velocity_map)):
if note_velocity >= self.velocity_map[index]:
velocity_color = self.velocity_color_map[index]
# highligh playing notes in red. even if they are from other pages.
if not note_muted and note_page == play_page and play_x_position == note_grid_x_position and (play_y_position == note_grid_y_position and not self.is_multinote or self.is_multinote and note_grid_y_offset == play_row) and self.song().is_playing and self._clip.is_playing:
self._grid_back_buffer[note_grid_x_position][note_grid_y_position] = self.playing_note_color
elif note_page == self._page: # if note is in current page, then update grid
# do not erase current note highlight
if self._grid_back_buffer[note_grid_x_position][note_grid_y_position] != self.playing_note_color:
if note_muted:
self._grid_back_buffer[note_grid_x_position][note_grid_y_position] = self.muted_note_color
else:
self._grid_back_buffer[note_grid_x_position][note_grid_y_position] = velocity_color
#Display the column to show the page for half a second
if self._display_page:
if time.time() - self._display_page_time > 0.5:
self._display_page = False
self._display_selected_page()
# caching : compare back buffer to buffer and update grid. this should minimize midi traffic quite a bit.
for x in range(self.width):
for y in range(self.height):
if self._grid_back_buffer[x][y] != self._grid_buffer[x][y] or self._force_update:
self._grid_buffer[x][y] = self._grid_back_buffer[x][y]
self._matrix.get_button(x, y).set_light(self._grid_buffer[x][y])
self._force_update = False
def request_display_page(self): # Reset page column display timer
self._display_page = True
self._display_page_time = time.time()
# matrix buttons listener OK
def _matrix_value(self, value, x, y, is_momentary):
if self.is_enabled() and y < self.height: #Height value can be 8 (MULTINOTE/SCALE_EDIT) or 4 (STEPSEQ_MODE_NORMAL)
if ((value != 0) or (not is_momentary)): #if NOTE_ON or button is toggle
self._stepsequencer._was_velocity_shifted = False # Some previous state logic INVESTIGATE
self._matrix_value_message([value, x, y, is_momentary])
#Add/Delete/Mute notes in the cache for PL light management and in the Live's Clip OK
def _matrix_value_message(self, values): # (value=127/0, x=idx, y=idx, is_momentary=True)
value = values[0]
x = values[1]
y = values[2]
is_momentary = values[3]
"""(pitch, time, duration, velocity, mute state)"""
assert (self._matrix != None)
assert (value in range(128))
assert (x in range(self._matrix.width()))
assert (y in range(self._matrix.height()))
assert isinstance(is_momentary, type(False))
if self.is_enabled() and self._clip == None:
self._stepsequencer.create_clip()
elif self.is_enabled() and self._clip != None:
if value != 0 or not is_momentary: #if NOTE_ON or button is toggle
if(self._is_velocity_shifted):
self._velocity_notes_pressed = self._velocity_notes_pressed + 1 #Just changing some note velocity
# note data
if self.is_multinote: # Calculate note pitch and time for notes
time = self.quantization * (self._page * self.width * self.number_of_lines_per_note + x + (y % self.number_of_lines_per_note * self.width))
pitch = self._key_indexes[8 / self.number_of_lines_per_note - 1 - y / self.number_of_lines_per_note]
else:
time = self.quantization * (self._page * self.width * self.number_of_lines_per_note + y * self.width + x)
pitch = self._key_indexes[0]
velocity = self._velocity #setted by velocity button
duration = self.quantization #setted by quantization button in StepSequencerComponent
# TODO: use new better way for editing clip
self._clip.select_all_notes()
note_cache = self._clip.get_selected_notes()
if self._note_cache != note_cache:
self._note_cache = note_cache
note_cache = list(self._note_cache)
for note in note_cache:
if pitch == note[0] and time == note[1]:
if self._is_velocity_shifted:
# update velocity of the note
new_velocity_index = 0
for index in range(len(self.velocity_map)):
if note[3] >= self.velocity_map[index]:
new_velocity_index = (index + 1) % len(self.velocity_map)
note_cache.append([note[0], note[1], note[2], self.velocity_map[new_velocity_index], note[4]]) # (pitch, time, duration, velocity, mute state)
elif not self._is_mute_shifted:
note_cache.remove(note)
else:
# mute / un mute note.
note_cache.append([note[0], note[1], note[2], note[3], not note[4]]) # (pitch, time, duration, velocity, mute state)
break
else:
note_cache.append([pitch, time, duration, velocity, self._is_mute_shifted]) # (pitch, time, duration, velocity, mute state)
self._clip.select_all_notes()
self._clip.replace_selected_notes(tuple(note_cache))
note_cache = self._clip.get_selected_notes()
if self._note_cache != note_cache:
self._note_cache = note_cache
#*********************VELOCITY/BTN_SHIFT*********************
# Updates the velocity button light OK
def _update_velocity_button(self):
if self.is_enabled() and self._velocity_button != None:
if self._clip != None:
if self._is_velocity_shifted:
self._velocity_button.set_on_off_values("StepSequencer.NoteEditor.VelocityShifted")
self._velocity_button.turn_on()
else:
self._velocity_button.set_light("StepSequencer.NoteEditor.Velocity"+str(self._velocity_index))
else:
self._velocity_button.set_light("DefaultButton.Disabled")
# Refresh button and its listener OK
def set_velocity_button(self, button):
assert (isinstance(button, (ButtonElement, type(None))))
if (button != self._velocity_button):
if (self._velocity_button != None):
self._velocity_button.remove_value_listener(self._velocity_value)
self._velocity_button = button
if (self._velocity_button != None):
self._velocity_button.add_value_listener(self._velocity_value, identify_sender=True)
# Handle button shifted and velocity selection OK
def _velocity_value(self, value, sender):
assert (self._velocity_button != None)
assert (value in range(128))
if self.is_enabled():
if ((value is 0) or (not sender.is_momentary())):
# button released, check if was used to modify notes or just to cycle thru velocity values
if self._velocity_notes_pressed == 0 and time.time() - self._velocity_last_press < self.long_button_press:
# cycle thru velocities
self._velocity_index = (len(self.velocity_map) + self._velocity_index + 1) % len(self.velocity_map)
self._velocity = self.velocity_map[self._velocity_index]
self._stepsequencer._track_controller._implicit_arm = False
if self._is_velocity_shifted:
self._stepsequencer._track_controller._do_implicit_arm(False)
self._is_velocity_shifted = False
self._update_velocity_button()
if ((value is not 0) or (not sender.is_momentary())):
# button pressed
self._velocity_notes_pressed = 0
self._is_velocity_shifted = True
#While velocity is pressed, can play sounds using notes region
self._stepsequencer._track_controller._implicit_arm = True #Arm the track to force play MIDI notes
self._stepsequencer._track_controller._do_implicit_arm(True)
self._velocity_last_press = time.time()
self._update_velocity_button()
self._stepsequencer._note_selector.update()
#*********************MUTE/BTN_SHIFT*********************
# Mute all entries for a given MIDI note OK
def mute_lane(self, pitch_to_mute):
if self.is_enabled() and self._clip != None:
self._clip.select_all_notes()
note_cache = self._clip.get_selected_notes()
if self._note_cache != note_cache:
self._note_cache = note_cache
note_cache = list(self._note_cache)
notes_changed = 0
for note in self._note_cache:
if note[0] == pitch_to_mute:
notes_changed = notes_changed + 1
note_to_mute = note
note_cache.remove(note)
note_cache.append([note_to_mute[0], note_to_mute[1], note_to_mute[2], note_to_mute[3], not note_to_mute[4]])
if notes_changed > 0:
self._clip.select_all_notes()
self._clip.replace_selected_notes(tuple(note_cache))
note_cache = self._clip.get_selected_notes()
self.update()
# Display the third red column to show the current page in multinote mode each time that the metronome goes to new pageOK
def _display_current_page(self): # OK
for i in range(0, self._height):
if(self._page==self._current_page):
self._grid_back_buffer[self._current_page % self.width][i] = "StepSequencer.NoteEditor.CurrentPageMarkerPlay"
else:
self._grid_back_buffer[self._current_page % self.width][i] = "StepSequencer.NoteEditor.CurrentPageMarker"