forked from Silhm/motu-mcu-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
341 lines (278 loc) · 10.6 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
"""
This program handle MIDI from an MCU midi controller and create event to send to the mixer
"""
import argparse
import math
import json
import requests
import mido
from modules.midiHelper import *
from modules.settings import Settings
from modules.mcu import MCU
from modules.motu import Motu
from setup import Setup
class MidiWait:
def __init__(self, ipAddr=None, port=80):
# Init Midi client and display available devices
midiINPort = mido.get_input_names()[0]
midiOUTPort = mido.get_output_names()[0]
self.midiIN = mido.open_input(midiINPort)
self.midiOUT = mido.open_output(midiOUTPort)
self.mcu = MCU()
self.motu = Motu(ipAddr, port)
self.settings = Settings()
self.hwSetup = Setup()
self.mixerUrl = "http://{}:{}".format(ipAddr, port)
print("Will send events to mixer at {}".format(self.mixerUrl))
self.recall()
def setup(self):
"""
Set up the bridge
"""
self.settings.restoreDefault()
# self.hwSetup.setupInterface()
def read(self):
"""
Read Midi message
"""
msg = self.midiIN.receive()
self.routeMessage(msg)
return msg
def sendQueryMessage(self, address, value):
"""
Send the corresponding message
- address is a string
- value is an array
"""
value = json.dumps(value)
url = "{}/datastore{}".format(self.mixerUrl, address)
r = requests.post(url, {"json": value})
print("[{}] {} {}".format(r.status_code, url, value))
# print(">Query [{}] {} {} with data {}".format(r.status_code,self.mixerUrl, address,value))
#print("{}".format(r))
def routeMessage(self, midiMessage):
"""
Route the message to corresponding function
:param midiMessage:
"""
# print("midiIN {}:".format(midiMessage))
# Faders
if midiMessage.type == "pitchwheel":
self._handlePitchWheel(midiMessage.channel, midiMessage.pitch)
# vPots
if midiMessage.type == "control_change":
self._handleVpotRot(midiMessage.control, midiMessage.value)
if midiMessage.type == "note_on" and midiMessage.velocity == 127:
soloMidiNotes = ["E0", "F0", "F#0", "G0", "G#0", "A0", "A#0", "B0"]
muteMidiNotes = ["C1", "C#1", "D1", "D#1", "E1", "F1", "F#1", "G1"]
vPotMidiNotes = ["G#1", "A1", "A#1", "B1", "C2", "C#2", "D2", "D#2"]
bankMidiNotes = ["A#2", "B2"]
functionMidiNotes = ["G#2", "G2", "F#2", "F2", "G6", "G#6", "A6", "A#6"]
midiFullNote = midiNumberToFullNote(midiMessage.note)
# Solo
if midiFullNote in soloMidiNotes:
ch = soloMidiNotes.index(midiFullNote)
self._handleSoloButton(ch)
# Mute
if midiFullNote in muteMidiNotes:
ch = muteMidiNotes.index(midiFullNote)
self._handleMuteButton(ch)
# vPots click
if midiFullNote in vPotMidiNotes:
ch = vPotMidiNotes.index(midiFullNote)
self._handleVpotClick(ch)
# Bank buttons
if midiFullNote in bankMidiNotes:
bankUp = bankMidiNotes.index(midiFullNote) == 0
self._handleBankButton(bankUp)
# Function buttons
if midiFullNote in functionMidiNotes:
f = functionMidiNotes.index(midiFullNote)
self._handleFunctionButton(f)
# Encoder groups : only 2 of 4 are working... need investigation
# Top right
if midiFullNote in ["A#4", "D#3"]:
self._handleEncoderGrpButtons(midiFullNote)
def _handleEncoderGrpButtons(self, note):
"""
Handle the Encoder groups button to change mode (only top and bottom right)
"""
print("encoder group note {}", note)
if note == "A#4":
self.mcu.setMode("main")
elif note == "D#3":
self.mcu.setMode("mixing")
self.recall()
def _handleFunctionButton(self, fNum):
"""
Handle the function Buttons F1 -> F8
"""
print("Button F{} clicked".format(fNum))
# get previous know state and toggle it
fState = self.settings.getFunction(fNum)
if fNum == 0:
# Mute/unMute All
self.motu.clearSolo()
self.recall()
if fNum == 1:
# Mute/unMute All
self.motu.muteAll(not fState)
fState = self.settings.setFunction(fNum, not fState)
self.mcu.fLed(1, fState)
self.recall()
if fNum == 7:
self.motu.dim(not fState)
fState = self.settings.setFunction(fNum, not fState)
# update led on button
self.mcu.fLed(7, fState)
mainFaderValue = self.motu.getMainFader("midi")
self.mcu.faderPos(7, mainFaderValue)
def _handleBankButton(self, up):
"""
Handle bank buttons
"""
bank = self.settings.getCurrentBank()
if up:
bank = bank + 1
else :
bank = bank - 1
if bank < 0:
bank = 0
print("BANK is {}".format(bank))
self.settings.setCurrentBank(bank)
def _handlePitchWheel(self, ch, value):
"""
Handle fader moves
"""
self.settings.setFaderPos(ch, value)
# TODO handle banking
apiRange = [0, 4]
midiRange = [-8192, 8192]
faderValue = convertValueToOSCRange(value, apiRange, midiRange, "log")
if self.mcu.getMode() is "main":
if ch is 7: # and mode is monito!
self.motu.setMainFader(faderValue)
elif ch is 6: # and mode is monito!
self.motu.setMonitorFader(faderValue)
else:
self.motu.setFader(ch, faderValue)
# use this to save fader pos on mcu
self.mcu.faderPos(ch, value)
def _handleVpotClick(self, ch):
"""
Handle vPot click: restore default pan or gain
"""
apiRange = [-1, 1]
midiRange = [0, 127]
newPos = 0
address = "/mix/chan/{}/matrix/pan".format(ch)
values = {"value": newPos}
self.sendQueryMessage(address, values)
self.settings.setVpotPos(ch, newPos)
# update led ring
midiVal = convertValueToMidiRange(newPos, apiRange, midiRange)
self.mcu.vPotRing(ch, midiVal, "boost-cut")
def _handleVpotRot(self, cc, value):
"""
Handle vPot rotation
TODO: speed
"""
vPotCC = [16, 17, 18, 19, 20, 21, 22, 23]
ch = 0
if cc in vPotCC:
ch = vPotCC.index(cc)
currentPos = self.motu.getPan(ch)
apiRange = [-1, 1]
midiRange = [0, 127]
address = "/mix/chan/{}/matrix/pan".format(ch)
direction = 1 if 1 <= value <= 15 else -1
speed = 15-value if direction == 1 else 79-value
_speeds = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 10]
speedPos = (direction * 5 * (pow(10, -1 * _speeds[speed])))
newPos = round(currentPos + speedPos, 3)
if newPos > apiRange[1]:
newPos = apiRange[1]
if newPos < apiRange[0]:
newPos = apiRange[0]
self.settings.setVpotPos(ch, newPos)
values = {"value": newPos}
self.sendQueryMessage(address, values)
# update led ring
midiVal = convertValueToMidiRange(newPos, apiRange, midiRange)
self.mcu.vPotRing(ch, midiVal, "boost-cut")
def _handleSoloButton(self, ch):
"""
Handle soloButton click
"""
# get motu state and toggle it
mcuMode = self.mcu.getMode()
if mcuMode is "main":
if ch == 6:
# monitoring toggle
mute = self.motu.getMonitorMute()
m = self.motu.muteMonitor(not mute)
self.mcu.l1Led(6, not m)
if ch == 7:
# main toggle
mute = self.motu.getMainMute()
m=self.motu.muteMain(not mute)
self.mcu.l1Led(7, not m)
else:
solo = self.settings.getSolo(ch)
address = "/mix/chan/{}/matrix/solo".format(ch)
newStatus = not solo
values = {"value": 1 if newStatus else 0}
self.sendQueryMessage(address, values)
self.mcu.l1Led(ch, newStatus)
self.settings.setSolo(ch, newStatus)
def _handleMuteButton(self, ch):
"""
Handle muteButton click
"""
# get previous know state and toggle it
mute = self.settings.getMute(ch)
address = "/mix/chan/{}/matrix/mute".format(ch)
newStatus = not mute
values = {"value": 1 if newStatus else 0}
self.sendQueryMessage(address, values)
self.mcu.l2Led(ch, newStatus)
self.settings.setMute(ch, newStatus)
def recall(self):
"""
Set back everything
"""
mainFaderValue = self.motu.getMainFader("midi")
monitorFaderValue = self.motu.getMonitorFader("midi")
# recall all in once
#self.motu.recallSettings()
self.mcu.resetController()
self.mcu.setMode(self.mcu.getMode())
if self.mcu.getMode() is "main":
self.mcu.resetController()
self.mcu.faderPos(6, monitorFaderValue)
self.mcu.faderPos(7, mainFaderValue)
self.mcu.l1Led(6, not self.motu.getMonitorMute())
self.mcu.l1Led(7, not self.motu.getMainMute())
elif self.mcu.getMode() is "mixing":
for ch in range(0, self.settings.getStripCount()):
solo = self.motu.getSolo(ch)
mute = self.motu.getMute(ch)
fader = self.motu.getFader(ch, "midi")
pan = self.motu.getPan(ch, "midi")
self.mcu.l1Led(ch, solo)
self.mcu.l2Led(ch, mute)
self.mcu.faderPos(ch, fader)
self.mcu.vPotRing(ch, pan, "boost-cut")
# print("[{}] Solo:{} Mute:{} fader:{}".format(ch, solo, mute, fader))
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--ip", default="127.0.0.1", help="The ip of the DAW OSC server")
parser.add_argument("--port", type=int, default="80", help="The port the DAW OSC is listening to")
parser.add_argument("--setup", action="store_true", help="Launch setup routine")
args = parser.parse_args()
midiWait = MidiWait(args.ip, args.port)
if args.setup:
midiWait.setup()
while midiWait.read():
pass
quit(0)