-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
557 lines (476 loc) · 19.7 KB
/
main.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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
import threading as threading
import time
import tkinter as tk
from tkinter import messagebox
import mido
from pythonosc.udp_client import SimpleUDPClient
ip = "127.0.0.1"
port = 1337
client = SimpleUDPClient(ip, port)
from rich.live import Live as richlive
from rich.table import Table as richtable
from rich.text import Text as richtext
hexoffset = 112
# arturia minilab mkii pad addresses
# begin at 0x70, or 112 in dec, so we need to add that
# amount to any address we produce in script
noteoffset = 36
# bespoke reads the lowest pad on the mkii as note 36 by default
# if you have changed your settings for your minilab mkii, this
# may not be the case, and if you are having problems getting the
# sequencer to run as intended, this is the most likely problem.
# this number, c_length (cycle length), is how many pads
# you would like the sequencer to use, between 2 and 16
c_length = 8
# any pads not used will automatically
# become membank switchers
membanks = 16 - c_length
# this variable will be used by the script to figure out
# how many pads are not being used, and turn them into
# bank switchers
padmem = [[int(0)] * c_length for _ in range(membanks)]
# this is our 2D "memory" array which keeps track of the status of each pad.
# the list will auto populate with zeroes equal to the number of pads
# we entered into c_length. the numbers will be initiallized as 0, signifying "off",
# but become 1 when an "off" pad is on the current subdivision, and 2 when a pad
# is toggled as an active sequencer.
active_mem = 0
# active_mem is the 1D memory line you are currently looking at
# this is switched with the bank switchers, if c_length is less than 15.
# these values designate the colors for
# when the pad is "on", "off", "seqon",
# "seqoff", and the bank switches.
colorNone = 0x00
colorRed = 0x01
colorGreen = 0x04
colorYellow = 0x05
colorBlue = 0x10
colorCyan = 0x14
colorPurple = 0x11
colorWhite = 0x7F
offcolor = colorCyan
oncolor = colorPurple
seqon = colorWhite
seqoff = colorGreen
bankcolor = colorBlue
# for best results : in the Arturia MIDI Control Center:
# 1. set all your pads to TOGGLE, not GATE
# 2. set PAD OFF BACKLIGHT to OFF, and
# 3. set each pad color to be the same as the "seqoff" color.
sysmsg = [0x00, 0x20, 0x6B, 0x7F, 0x42, 0x02, 0x00, 0x10, 0x70, 0x14]
# this list is the system exclusive message which will
# be sent to the keyboard. the first 8 instructions are more or
# less generic and not important for what we will be doing. the
# last two are pad address and color respectively.
#########################################################################################################
# ________ _______ ________ ___ ___ _______ ________ ________ _______ ________ #
#|\ ____\ |\ ___ \ |\ __ \ |\ \|\ \ |\ ___ \ |\ ___ \ |\ ____\ |\ ___ \ |\ __ \ #
#\ \ \___|_\ \ __/| \ \ \|\ \\ \ \\\ \\ \ __/| \ \ \\ \ \\ \ \___| \ \ __/| \ \ \|\ \ #
# \ \_____ \\ \ \_|/__\ \ \\\ \\ \ \\\ \\ \ \_|/__\ \ \\ \ \\ \ \ \ \ \_|/__\ \ _ _\ #
# \|____|\ \\ \ \_|\ \\ \ \\\ \\ \ \\\ \\ \ \_|\ \\ \ \\ \ \\ \ \____ \ \ \_|\ \\ \ \\ \| #
# ____\_\ \\ \_______\\ \_____ \\ \_______\\ \_______\\ \__\\ \__\\ \_______\\ \_______\\ \__\\ _\ #
# |\_________\\|_______| \|___| \__\\|_______| \|_______| \|__| \|__| \|_______| \|_______| \|__|\|__|#
# \|_________| \|__| #
#########################################################################################################
def on_note(incoming_midi):
global active_mem
if incoming_midi.type == "sysex":
refresh()
# first check to see if the incoming message is one of the pads.
# it might be a good idea to allow the user to change some of these,
# but unless they've tampered heavily with the mkii default settings
# it shouldn't really present much of a problem.
elif ((incoming_midi.channel == 9 and incoming_midi.note >= 36 and
incoming_midi.type != "polytouch") and
(incoming_midi.type == "note_on" or "note_off") and
(incoming_midi.note >= c_length + noteoffset)):
for x in range(membanks):
if x <= membanks:
sysmsg[-2] = 16 - membanks + hexoffset + x
sysmsg[-1] = colorNone
outgoing_sysex = mido.Message('sysex', data=sysmsg)
outport.send(outgoing_sysex)
active_mem = incoming_midi.note - noteoffset - c_length
sysmsg[-2] = hexoffset + incoming_midi.note - noteoffset
sysmsg[-1] = bankcolor
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
refresh()
return padmem, active_mem
# note is within the c-length range
elif noteoffset <= incoming_midi.note < c_length + noteoffset:
#it was already on, so turn it off
if padmem[active_mem][incoming_midi.note - noteoffset] == 2:
padmem[active_mem][incoming_midi.note - noteoffset] = 0
sysmsg[-2] = 0x70 + incoming_midi.note - noteoffset
sysmsg[-1] = offcolor
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
return padmem
# it was not already on, so turn it on
else:
sysmsg[-2] = 0x70 + incoming_midi.note - noteoffset
sysmsg[-1] = seqoff
padmem[active_mem][incoming_midi.note - noteoffset] = 2
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
return padmem
def refresh():
for x in range(16 - c_length):
if x <= membanks:
sysmsg[-2] = 16 - membanks + hexoffset + x
sysmsg[-1] = 0x00
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
for i in range(membanks):
for j in range(c_length):
if padmem[i][j] == 1:
padmem[i][j] = 0
sysmsg[-2] = active_mem + c_length + hexoffset
sysmsg[-1] = bankcolor
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
tick(beat)
# this initializes the lights for the bank switches
# so they actually reflect the correct initial bank
############################################
beat = 0
KILLSWITCH = True
def generate_sequencer(i: int, r: int, color: str, color2: str, color3: str, color4: str) -> richtable:
table = richtable(highlight=True)
table.add_column(f"beat {beat}", justify='center')
padvisual = "●" * c_length
#this normalizes the "beat" location
i = i + 1
j = i - 1
for row in range(r):
text = richtext(padvisual)
if row == active_mem:
text.stylize("bold " + color, 0, 16)
text.stylize("bold " + color2, j, i)
for col in range(len(padmem[row])):
if padmem[row][col] == 2:
if col == beat:
text.stylize("bold " + color4, col, col + 1)
else:
text.stylize("bold " + color3, col, col + 1)
table.add_row(text)
else:
text.stylize(color, 0, 16)
text.stylize(color2, j, i)
for col in range(len(padmem[row])):
if padmem[row][col] == 2:
if col == beat:
text.stylize(color4, col, col + 1)
else:
text.stylize(color3, col, col + 1)
table.add_row(text)
return table
# main loop. called onButtonPress
def loop():
global beat
with richlive(generate_sequencer(beat, membanks, "cyan", "magenta", "green", "white"), refresh_per_second=8) as l:
while KILLSWITCH == True:
tick(beat)
if beat < c_length - 1:
beat += 1
else:
beat = 0
time.sleep(0.5)
l.update(generate_sequencer(beat, membanks, "cyan", "magenta", "green", "white"))
def build_message():
message = []
totalindex = 0
for i in range(len(padmem)):
for j in range(c_length):
totalindex += 1
if padmem[i][j] == 2:
message.append(totalindex)
return message
# tick keeps track of what all the lights are doing
def tick(beat):
global active_mem
msg = build_message()
client.send_message(f"/mkii_seq/{active_mem}", msg)
hit = beat
lastpos = hit - 1
if lastpos < 0:
lastpos = c_length - 1
seqpos = hexoffset + hit
hexseqpos = int(hex(seqpos), 16)
oldhexpos = hexseqpos - 1
if oldhexpos == 111: #when it reaches the last pad...
oldhexpos = hexoffset + c_length - 1 #clear it and restart at pad0
for pad in range(c_length):
if padmem[active_mem][pad] == 0:
paddec = pad + hexoffset
padhex = int(hex(paddec), 16)
sysmsg[-2] = padhex
sysmsg[-1] = offcolor
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
if padmem[active_mem][pad] == 1 & padmem[active_mem][hit] != 1:
paddec = pad + hexoffset
padhex = int(hex(paddec), 16)
padmem[active_mem][pad] = 0
sysmsg[-2] = padhex
sysmsg[-1] = offcolor
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
if padmem[active_mem][pad] == 2:
paddec = pad + hexoffset
padhex = int(hex(paddec), 16)
sysmsg[-2] = padhex
sysmsg[-1] = seqoff
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
# reads the status of the pads and
# sends the color to the controller
if padmem[active_mem][hit] == 2:
sysmsg[-2] = hexseqpos
sysmsg[-1] = seqon
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
else:
padmem[active_mem][hit] = 1
sysmsg[-2] = hexseqpos
sysmsg[-1] = oncolor
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
if padmem[active_mem][lastpos] == 2:
sysmsg[-2] = hexseqpos # genuinely no idea why this works
sysmsg[-1] = oncolor # i mean, shouldn't these first two
sysmsg[-2] = oldhexpos # sysmsg things do nothing ? but the
sysmsg[-1] = seqoff # script doesn't work w/o them....
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
else:
padmem[active_mem][lastpos] = 0
sysmsg[-2] = oldhexpos
sysmsg[-1] = offcolor
outgoing_sysex = mido.Message('sysex', data= sysmsg)
outport.send(outgoing_sysex)
###########################################
# ________ ___ ___ ___ #
# |\ ____\ |\ \|\ \ |\ \ #
# \ \ \___| \ \ \\\ \ \ \ \ #
# \ \ \ ___ \ \ \\\ \ \ \ \ #
# \ \ \|\ \ \ \ \\\ \ \ \ \ #
# \ \_______\ \ \_______\ \ \__\ #
# \|_______| \|_______| \|__| #
# #
###########################################
ws = tk.Tk()
ws.title("MKII SEQUENCER")
ws.geometry('470x470')
frame1 = tk.LabelFrame(ws, text='Default')
frame1.grid(row=1, column=1, padx=5)
frame2 = tk.LabelFrame(ws, text='Beat')
frame2.grid(row=1, column=2, padx=5)
frame3 = tk.LabelFrame(ws, text='Sequencing')
frame3.grid(row=1, column=3, padx=5)
frame4 = tk.LabelFrame(ws, text='Active')
frame4.grid(row=1, column=4, padx=5)
frame5 = tk.LabelFrame(ws, text='Bank')
frame5.grid(row=1, column=5, padx=5)
frame6 = tk.LabelFrame(ws, text='Pads Used')
frame6.grid(row=1, column=6, padx=5)
looping = 0
def onButtonPress():
global offcolor
global oncolor
global seqon
global seqoff
global bankcolor
radio_1 = group_1.get()
if radio_1 == 0:
return messagebox.showinfo("error",'please select an option for each selection')
if radio_1 == 1:
offcolor = colorNone
if radio_1 == 2:
offcolor = colorRed
if radio_1 == 3:
offcolor = colorGreen
if radio_1 == 4:
offcolor = colorYellow
if radio_1 == 5:
offcolor = colorBlue
if radio_1 == 6:
offcolor = colorCyan
if radio_1 == 7:
offcolor = colorPurple
if radio_1 == 8:
offcolor = colorWhite
radio_2 = group_2.get()
if radio_2 == 0:
return messagebox.showinfo("error",'please select an option for each selection')
if radio_2 == 1:
oncolor = colorNone
if radio_2 == 2:
oncolor = colorRed
if radio_2 == 3:
oncolor = colorGreen
if radio_2 == 4:
oncolor = colorYellow
if radio_2 == 5:
oncolor = colorBlue
if radio_2 == 6:
oncolor = colorCyan
if radio_2 == 7:
oncolor = colorPurple
if radio_2 == 8:
oncolor = colorWhite
radio_3 = group_3.get()
if radio_3 == 0:
return messagebox.showinfo("error",'please select an option for each selection')
if radio_3 == 1:
seqon = colorNone
if radio_3 == 2:
seqon = colorRed
if radio_3 == 3:
seqon = colorGreen
if radio_3 == 4:
seqon = colorYellow
if radio_3 == 5:
seqon = colorBlue
if radio_3 == 6:
seqon = colorCyan
if radio_3 == 7:
seqon = colorPurple
if radio_3 == 8:
seqon = colorWhite
radio_4 = group_4.get()
if radio_4 == 0:
return messagebox.showinfo("error",'please select an option for each selection')
if radio_4 == 1:
seqoff = colorNone
if radio_4 == 2:
seqoff = colorRed
if radio_4 == 3:
seqoff = colorGreen
if radio_4 == 4:
seqoff = colorYellow
if radio_4 == 5:
seqoff = colorBlue
if radio_4 == 6:
seqoff = colorCyan
if radio_4 == 7:
seqoff = colorPurple
if radio_4 == 8:
seqoff = colorWhite
radio_5 = group_5.get()
if radio_5 == 0:
return messagebox.showinfo("error",'please select an option for each selection')
if radio_5 == 1:
bankcolor = colorNone
if radio_5 == 2:
bankcolor = colorRed
if radio_5 == 3:
bankcolor = colorGreen
if radio_5 == 4:
bankcolor = colorYellow
if radio_5 == 5:
bankcolor = colorBlue
if radio_5 == 6:
bankcolor = colorCyan
if radio_5 == 7:
bankcolor = colorPurple
if radio_5 == 8:
bankcolor = colorWhite
radio_6 = group_6.get() + 3
if radio_6 == 3:
return messagebox.showinfo("error",'please select an option for each selection')
global active_mem
global c_length
global membanks
global padmem
global beat
active_mem = 0
c_length = radio_6
membanks = 16 - c_length
padmem = [[int(0)] * c_length for _ in range(membanks)]
beat = 0
refresh()
global looping
global KILLSWITCH
if looping == 0:
looping = 1
KILLSWITCH = True
threading.Thread(target=loop).start()
def onSilence():
global KILLSWITCH
global looping
KILLSWITCH = False
looping = 0
refresh()
return
group_1 = tk.IntVar(value=6)
group_2 = tk.IntVar(value=7)
group_3 = tk.IntVar(value=8)
group_4 = tk.IntVar(value=3)
group_5 = tk.IntVar(value=5)
group_6 = tk.IntVar(value=5)
# offcolor
tk.Radiobutton(frame1, text='None', variable=group_1, value=1).pack()
tk.Radiobutton(frame1, text='Red', variable=group_1, value=2).pack()
tk.Radiobutton(frame1, text='Green', variable=group_1, value=3).pack()
tk.Radiobutton(frame1, text='Yellow', variable=group_1, value=4).pack()
tk.Radiobutton(frame1, text='Blue', variable=group_1, value=5).pack()
tk.Radiobutton(frame1, text='Cyan', variable=group_1, value=6).pack()
tk.Radiobutton(frame1, text='Purple', variable=group_1, value=7).pack()
tk.Radiobutton(frame1, text='White', variable=group_1, value=8).pack()
# oncolor
tk.Radiobutton(frame2, text='None', variable=group_2, value=1).pack()
tk.Radiobutton(frame2, text='Red', variable=group_2, value=2).pack()
tk.Radiobutton(frame2, text='Green', variable=group_2, value=3).pack()
tk.Radiobutton(frame2, text='Yellow', variable=group_2, value=4).pack()
tk.Radiobutton(frame2, text='Blue', variable=group_2, value=5).pack()
tk.Radiobutton(frame2, text='Cyan', variable=group_2, value=6).pack()
tk.Radiobutton(frame2, text='Purple', variable=group_2, value=7).pack()
tk.Radiobutton(frame2, text='White', variable=group_2, value=8).pack()
# seqon
tk.Radiobutton(frame3, text='None', variable=group_3, value=1).pack()
tk.Radiobutton(frame3, text='Red', variable=group_3, value=2).pack()
tk.Radiobutton(frame3, text='Green', variable=group_3, value=3).pack()
tk.Radiobutton(frame3, text='Yellow', variable=group_3, value=4).pack()
tk.Radiobutton(frame3, text='Blue', variable=group_3, value=5).pack()
tk.Radiobutton(frame3, text='Cyan', variable=group_3, value=6).pack()
tk.Radiobutton(frame3, text='Purple', variable=group_3, value=7).pack()
tk.Radiobutton(frame3, text='White', variable=group_3, value=8).pack()
# seqoff
tk.Radiobutton(frame4, text='None', variable=group_4, value=1).pack()
tk.Radiobutton(frame4, text='Red', variable=group_4, value=2).pack()
tk.Radiobutton(frame4, text='Green', variable=group_4, value=3).pack()
tk.Radiobutton(frame4, text='Yellow', variable=group_4, value=4).pack()
tk.Radiobutton(frame4, text='Blue', variable=group_4, value=5).pack()
tk.Radiobutton(frame4, text='Cyan', variable=group_4, value=6).pack()
tk.Radiobutton(frame4, text='Purple', variable=group_4, value=7).pack()
tk.Radiobutton(frame4, text='White', variable=group_4, value=8).pack()
# bank
tk.Radiobutton(frame5, text='None', variable=group_5, value=1).pack()
tk.Radiobutton(frame5, text='Red', variable=group_5, value=2).pack()
tk.Radiobutton(frame5, text='Green', variable=group_5, value=3).pack()
tk.Radiobutton(frame5, text='Yellow', variable=group_5, value=4).pack()
tk.Radiobutton(frame5, text='Blue', variable=group_5, value=5).pack()
tk.Radiobutton(frame5, text='Cyan', variable=group_5, value=6).pack()
tk.Radiobutton(frame5, text='Purple', variable=group_5, value=7).pack()
tk.Radiobutton(frame5, text='White', variable=group_5, value=8).pack()
for x in range (1,14):
tk.Radiobutton(frame6, text=x+3, variable=group_6, value=x).pack()
selected_midi_input = tk.StringVar(value = mido.get_input_names()[0] ) # type: ignore
selected_midi_output = tk.StringVar(value = mido.get_output_names()[1] ) # type: ignore
miditarget = tk.StringVar(value = mido.get_output_names()[0] ) # type: ignore
ddin = tk.OptionMenu(ws, selected_midi_input, *mido.get_input_names()) # type: ignore
ddin.grid(row=2, column=1, columnspan=3)
ddout = tk.OptionMenu(ws, selected_midi_output, *mido.get_output_names()) # type: ignore
ddout.grid(row=3, column=1, columnspan=3)
miditarget = tk.OptionMenu(ws, miditarget, *mido.get_output_names()) # type: ignore
miditarget.grid(row=4, column=1, columnspan=3)
btn = tk.Button(ws, text = 'Start', bd = '10', command = onButtonPress)
btn.grid(row=3, column=4)
btn = tk.Button(ws, text = 'Silence', bd = '10', command = onSilence)
btn.grid(row=3, column=5)
outport = mido.open_output(selected_midi_output.get()) # type: ignore
inport = mido.open_input(selected_midi_input.get(), callback=on_note) # type: ignore
if __name__ == '__main__':
ws.mainloop()