-
Notifications
You must be signed in to change notification settings - Fork 0
/
spider_mkii.py
281 lines (221 loc) · 10.8 KB
/
spider_mkii.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
import usb
import knobs.knobparser as knobparser
import knobs.knobbank as knobbank
import models.modelparser as modelparser
import models.modelbank as modelbank
'''
########################################################################################################################
# #
########################################################################################################################
'''
class SpiderMKii(object):
# TODO Put all this in a configuration file
# TODO Figure these out
get_selected_prepend = [0x04, 0xf0, 0x00, 0x01, 0x04, 0x0c, 0x12, 0x07, 0x04, 0x7c, 0x00, 0x00, 0x07, 0x00]
get_selected_append = [0xf7]
# TODO Figure these out
preset_prefix = 60#192
# For the three knobs that have three different modes each
effect_mode_prefix = 54
MODE_OFF = 0
MODE_GAIN = 1
MODE_AUTO = 3
MODE_PITCH = 5
MODE_CHORUS = 7
MODE_PHASER = 9
MODE_TREMOLO = 11
MODE_DELAY = 13
MODE_TAPE_ECHO = 15
MODE_SWEEP_ECHO = 17
effect_mode = {
MODE_OFF: 'OFF',
MODE_GAIN: 'GAIN',
MODE_AUTO: 'AUTO',
MODE_PITCH: 'PITCH',
MODE_CHORUS: 'CHORUS',
MODE_PHASER: 'PHASER',
MODE_TREMOLO: 'TREMOLO',
MODE_DELAY: 'DELAY',
MODE_TAPE_ECHO: 'TAPE_ECHO',
MODE_SWEEP_ECHO: 'SWEEP_ECHO',
}
modelBankIdMap = {
16: 16,
32: 16,
17: 17,
33: 17,
18: 18,
34: 18,
19: 19,
35: 19,
20: 20,
36: 20,
}
'''
####################################################################################################################
# #
####################################################################################################################
'''
def __init__(self, vendorId, productId):
self._isConnected = False
self._vendorId = vendorId
self._productId = productId
self._dev = None
self._cfg = None
self._intf = None
self._ep_in = None
self._ep_out = None
self._curr_gain_auto_pitch_mode = 0
self._curr_chorus_phaser_tremolo_mode = 0
self._curr_delay_tape_sweep_mode = 0
self._curr_preset_id = 0
# datastore
#self._knobBank = knobbank.KnobBank('spider_mkii_knobs.xml')
# create our knobs
#for id, name in SpiderMKii.knobs.items():
# self._knobs[id] = knob.Knob(id, name, 0)
self._modelBanks = {}
configData = modelparser.parseXml('models/spider_mkii_model.xml')
self._modelBanksPrefix = int(configData['id'])
for id, config in configData['modelBanks'].items():
self._modelBanks[int(id)] = modelbank.ModelBank(config)
configData = knobparser.parseXml('knobs/spider_mkii_knobs.xml')
self._knobBank = knobbank.KnobBank(configData)
self.connect()
'''
####################################################################################################################
# #
####################################################################################################################
'''
def getSelectionBuffer(self, choice):
return SpiderMKii.get_selected_prepend + [choice] + SpiderMKii.get_selected_append
'''
####################################################################################################################
# #
####################################################################################################################
'''
def connect(self):
# try to connect
self._dev = usb.core.find(idVendor=self._vendorId, idProduct=self._productId)
# say we connected or not
if not self._dev:
return False
self._dev.set_configuration()
# get an endpoint instance
self._cfg = self._dev.get_active_configuration()
self._intf = self._cfg[(1,0)]
self._ep_in = usb.util.find_descriptor(
self._intf,
custom_match = lambda e: usb.util.endpoint_direction(e.bEndpointAddress) == usb.util.ENDPOINT_IN
)
self._ep_out = usb.util.find_descriptor(
self._intf,
custom_match = lambda e: usb.util.endpoint_direction(e.bEndpointAddress) == usb.util.ENDPOINT_OUT
)
self._isConnected = True
return True
'''
####################################################################################################################
# #
####################################################################################################################
'''
def handleIncomingData(self, data):
if data == None or len(data) == 0:
return None
id = data[0]
handled = False
if id == self._knobBank.getId():
self._knobBank.handleData(data)
handled = True
elif id == self._modelBanksPrefix:
objectId = data[11]
if objectId in SpiderMKii.modelBankIdMap.keys():
objectId = SpiderMKii.modelBankIdMap[data[11]]
if objectId in self._modelBanks.keys():
self._modelBanks[objectId].handleData(data)
handled = True
if not handled:
print (data)
'''
####################################################################################################################
# #
####################################################################################################################
'''
def getSelection(self, choice):
if not self.isReadable() or not self.isWriteable():
return None
# get status of something
self.__write(self.getSelectionBuffer(choice))
shouldRead = True
toReturn = []
# read until we fail
while shouldRead:
# get read flag and data
shouldRead, data = self.__read()
# if we got data, append to our return list
if shouldRead:
toReturn.append(data)
# say whether or not we got data, and return none if we didn't
return toReturn
'''
####################################################################################################################
# #
####################################################################################################################
'''
def isReadable(self):
return self.__isValid(self._ep_in)
'''
####################################################################################################################
# #
####################################################################################################################
'''
def isWriteable(self):
return self.__isValid(self._ep_out)
'''
####################################################################################################################
# #
####################################################################################################################
'''
def __isValid(self, ep):
return (self._isConnected) and (self._dev != None) and (ep != None)
'''
####################################################################################################################
# #
####################################################################################################################
'''
def __read(self):
# helper return value
bad_read = (False, None)
try:
return (True, self._dev.read(self._ep_in.bEndpointAddress, self._ep_in.wMaxPacketSize))
except Exception:
return bad_read
'''
####################################################################################################################
# #
####################################################################################################################
'''
def read(self):
if not self.isReadable():
return False, None
return self.__read()
'''
####################################################################################################################
# #
####################################################################################################################
'''
def __write(self, data):
try:
self._dev.write(self._ep_out.bEndpointAddress, data)
return True
except Exception:
return False
'''
####################################################################################################################
# #
####################################################################################################################
'''
def write(self, data):
if not self.isWriteable():
return False
return self.__write(data)