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
|
#!/usr/bin/env python3
"""
Open Sound Control send/recieve daemon for Tascam Firewire control surface
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: Copyright (c) 2012-2014 Scott Bahling
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program (see the file COPYING); if not, write to the
Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
:license: GPL-2.0, see COPYING for details
"""
import argparse
import string
import re
import pyautogui
from pathlib import Path
from pythonosc import dispatcher
from pythonosc import osc_server
from pythonosc import udp_client
import gi
gi.require_version('Hinawa', '2.0')
from gi.repository import Hinawa # noqa: E402
from hinawa_utils.tscm.tscm_console_unit import TscmConsoleUnit # noqa: E402
keymap = {'CTRL': 'ctrl',
'ALT': 'alt',
'SHIFT': 'shift',
}
osc = None
osc_addrs = {'STOP': '/transport_stop',
'PLAY': '/transport_play',
'F.FWD': '/ffwd',
'REW': '/rewind',
'REC': '/rec_enable_toggle',
}
control_state = {}
button_state = {}
re_strip_num = re.compile('.*([1-9])')
current_bank = 1
more_banks_up = False
more_banks_down = False
def check_bitR2L(data, bit):
return bool(data & (0b1 << bit))
def handle_master_fader(unit, flags):
addr = '/master/fader'
pos = (flags & 0xffff) / 1023
if pos != control_state.get('Master Fader', 0):
print('{}: {}'.format('Master', pos))
if strip_states[0].fader_touch:
osc.send_message(addr, pos)
def handle_strip_fader(unit, index, flags):
addr = '/strip/fader'
strip1 = (index * 2 + 1)
strip2 = (index * 2 + 2)
fader1 = 'Strip %s Fader' % strip1
fader2 = 'Strip %s Fader' % strip2
pos1 = (flags & 0xffff) / 1023
pos2 = (flags >> 0x10) / 1023
if pos1 != strip_states[strip1].fader:
print('{}: {}'.format(fader1, pos1))
if strip_states[strip1].fader_touch:
osc.send_message(addr, (strip1, pos1))
if pos2 != strip_states[strip2].fader:
print('{}: {}'.format(fader2, pos2))
if strip_states[strip2].fader_touch:
osc.send_message(addr, (strip2, pos2))
def roll_over_delta(delta, ceiling=0xffff):
print(delta)
if delta > ceiling - 10:
return delta - (ceiling + 1)
if delta < -ceiling + 10:
return delta + (ceiling + 1)
return delta
def handle_encoder(unit, index, flags):
strip1 = (index * 2 - 19)
strip2 = (index * 2 - 18)
enc1 = 'Strip %s Encoder' % strip1
enc2 = 'Strip %s Encoder' % strip2
val1 = flags & 0xffff
val2 = flags >> 0x10
delta1 = roll_over_delta(val1 - control_state.get(enc1, val1))
delta2 = roll_over_delta(val2 - control_state.get(enc2, val2))
if delta1:
if control_state.get('PAN', 0):
send_pan(strip1, delta1)
if delta2:
if control_state.get('PAN', 0):
send_pan(strip2, delta2)
control_state[enc1] = val1
control_state[enc2] = val2
def handle_eq_encoder(unit, index, flags):
val1 = flags & 0xffff
val2 = flags >> 0x10
if index == 14:
enc1 = 'Gain Encoder'
enc2 = 'Freq Encoder'
if index == 15:
enc1 = 'Q Encoder'
enc2 = 'Data Wheel'
# delta1 = roll_over_delta(val1 - control_state.get(enc1, val1))
delta2 = roll_over_delta(val2 - control_state.get(enc2, val2))
if val1 != control_state.get(enc1, 0):
strip_states[strip].mute = 0
print('{}: {}'.format(enc1, val1))
control_state[enc1] = val1
if val2 != control_state.get(enc2, 0):
print('{}: {}'.format(enc2, val2))
control_state[enc2] = val2
if enc2 == 'Data Wheel':
if button_state.get('SHIFT', 0):
amount = 0.01
elif button_state.get('CTRL', 0):
amount = 0.001
else:
amount = 0.1
osc.send_message('/jog', delta2 * amount)
def handle_bit_flags(unit, index, flags):
for bit in range(32):
high = check_bitR2L(flags, bit)
low = not high
command_map = control_flags[index][bit]
if command_map is None or command_map[1] is None:
continue
control = command_map[0]
on = control_state.get(control, 0) or button_state.get(control, 0)
button_state[control] = int(low)
if (low and on) or (high and not on):
continue
bitstate = int(high)
print(command_map)
handler = command_map[1]
args = (None,)
if len(command_map) > 2:
args = command_map[2:]
try:
handler(index, flags, bit, bitstate, control, *args)
except Exception as e:
print(e)
def handle_control(unit, index, flags):
print('{0:02d}: {1:08x}'.format(index, flags))
if index in [0, 1, 2, 3]:
handle_strip_fader(unit, index, flags)
return
if index == 4:
handle_master_fader(unit, flags)
return
if index in [5, 6, 7, 8, 9]:
handle_bit_flags(unit, index, flags)
return
if index in [10, 11, 12, 13]:
handle_encoder(unit, index, flags)
return
if index in [14, 15]:
handle_eq_encoder(unit, index, flags)
def _check_hexadecimal(literal):
if literal.find('0x') == 0:
literal = literal[2:]
if len(literal) != 16:
return False
for character in literal:
if character not in string.hexdigits:
return False
else:
return True
def _seek_snd_unit_from_guid(guid):
for fullpath in Path('/dev/snd').glob('hw*'):
fullpath = str(fullpath)
try:
unit = Hinawa.SndUnit()
unit.open(fullpath)
if unit.get_property('guid') == guid:
return fullpath
except Exception as e:
pass
finally:
del unit
return None
def seek_snd_unit_path(card_id):
# Assume as sound card number if it's digit literal.
if card_id.isdigit():
return '/dev/snd/hwC{0}D0'.format(card_id)
# Assume as GUID on IEEE 1394 bus if it's hexadecimal literal.
elif _check_hexadecimal(card_id):
return _seek_snd_unit_from_guid(int(card_id, base=16))
return None
def print_default_handler(addr, *args):
print(addr, args)
def strip_fader_handler(addr, args, ssid, pos):
unit = args[0]
strip = int(ssid)
print('fader_handler', addr, ssid, pos)
pos = pos * 1023
if strip_states[strip].name != ' ':
unit.strips[strip].fader.set_position(pos)
strip_states[strip].fader = pos
def strip_mute_handler(addr, args, ssid, state):
unit = args[0]
strip = int(ssid)
print('mute_handler', strip, state)
if strip_states[strip].name == ' ':
return
if state:
unit.strips[int(ssid)].mute_led.turn_on()
strip_states[int(ssid)].mute = True
else:
unit.strips[int(ssid)].mute_led.turn_off()
strip_states[int(ssid)].mute = False
def strip_solo_handler(addr, args, ssid, state):
unit = args[0]
strip = int(ssid)
print('solo_handler', strip, state)
if strip_states[strip].name == ' ':
return
if state:
unit.strips[strip].solo_led.turn_on()
strip_states[strip].solo = True
else:
unit.strips[strip].solo_led.turn_off()
strip_states[strip].solo = False
def strip_recenable_handler(addr, args, ssid, state):
unit = args[0]
strip = int(ssid)
print('recenable_handler', strip, state)
if strip_states[strip].name == ' ':
return
if state:
unit.strips[strip].rec_led.turn_on()
strip_states[strip].recenable = True
else:
unit.strips[strip].rec_led.turn_off()
strip_states[strip].recenable = False
def loop_toggle_handler(addr, state):
print(addr, state)
if state:
control_state['LOOP'] = 1
unit.leds.loop.turn_on()
else:
control_state['LOOP'] = 0
unit.leds.loop.turn_off()
def transport_stop_handler(addr, args, state):
print(addr, args, state)
unit = args[0]
if state:
unit.leds.stop.turn_on()
else:
unit.leds.stop.turn_off()
def transport_play_handler(addr, args, state):
print(addr, args, state)
unit = args[0]
if state:
unit.leds.play.turn_on()
else:
unit.leds.play.turn_off()
def ffwd_handler(addr, args, state):
unit = args[0]
if state:
unit.leds.f_fwd.turn_on()
else:
unit.leds.f_fwd.turn_off()
def rewind_handler(addr, args, state):
unit = args[0]
if state:
unit.leds.rew.turn_on()
else:
unit.leds.rew.turn_off()
def rec_enable_toggle_handler(addr, args, state):
unit = args[0]
if state:
unit.leds.rec.turn_on()
else:
unit.leds.rec.turn_off()
def master_fader_handler(addr, args, pos):
unit = args[0]
print('master_fader_handler', pos)
unit.master_fader.set_position(1023 * pos)
def pan_stereo_position_handler(addr, pos, pan):
recv_pan(pos, pan)
def strip_name_handler(addr, ssid, name):
strip_states[int(ssid)].name = name
def bank_up_handler(addr, more_up):
print(addr, more_up)
global more_banks_up
more_banks_up = bool(more_up)
def bank_down_handler(addr, more_down):
print(addr, more_down)
global more_banks_down
more_banks_down = bool(more_down)
def init_console():
handle_encoder_button(1, 1, 1, 1, 'PAN', 1)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--card", default="1",
help="number of the ALSA sound card")
parser.add_argument("--listen-ip", default="127.0.0.1",
help="The ip to listen on")
parser.add_argument("--listen-port", type=int, default=5005,
help="The port to listen on")
parser.add_argument("--ip", default="127.0.0.1",
help="The ip of the OSC server")
parser.add_argument("--port", type=int, default=3819,
help="The port the OSC server is listening on")
args = parser.parse_args()
fullpath = seek_snd_unit_path(args.card)
if fullpath:
unit = TscmConsoleUnit(fullpath)
else:
exit()
unit.connect('control', handle_control)
osc = udp_client.SimpleUDPClient(args.ip, args.port)
init_console()
dispatcher = dispatcher.Dispatcher()
dispatcher.map("/loop_toggle", loop_toggle_handler)
dispatcher.map("/transport_stop", transport_stop_handler, unit)
dispatcher.map("/transport_play", transport_play_handler, unit)
dispatcher.map("/ffwd", ffwd_handler, unit)
dispatcher.map("/rewind", rewind_handler, unit)
dispatcher.map("/rec_enable_toggle", rec_enable_toggle_handler, unit)
dispatcher.map('/strip/fader', strip_fader_handler, unit)
dispatcher.map('/strip/mute', strip_mute_handler, unit)
dispatcher.map('/strip/solo', strip_solo_handler, unit)
dispatcher.map('/strip/recenable', strip_recenable_handler, unit)
dispatcher.map('/master/fader', master_fader_handler, unit)
dispatcher.map('/strip/pan_stereo_position', pan_stereo_position_handler)
dispatcher.map('/strip/name', strip_name_handler)
dispatcher.map('/bank_up', bank_up_handler)
dispatcher.map('/bank_down', bank_down_handler)
dispatcher.set_default_handler(print_default_handler)
server = osc_server.ThreadingOSCUDPServer((args.listen_ip,
args.listen_port),
dispatcher
)
print("Serving on {}".format(server.server_address))
server.serve_forever()
|