-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwebmixer.js
511 lines (424 loc) · 10.1 KB
/
webmixer.js
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
"use strict";
const init = (localPort, remotePort, remoteAddress, auxs, supportedChannels, serverPort, mapping) =>
{
/**
* The list of aux channels
* Uses JSON.stringify and JSON.parse to clone auxs
* @type {Object}
*/
let auxList = JSON.parse(JSON.stringify(auxs));
const osc = require("osc"),
cliProgress = require('cli-progress'),
express = require("express"),
http = require('http'),
WebSocket = require("ws");
const SKIP = process.argv.indexOf("skip") !== -1;
const DEBUG = process.argv.indexOf("debug") !== -1;
/**
* The total number of parameters that need to load.
* @type {Int}
*/
let totalParamsToLoad = 0;
/**
* All of the channels for the AUXs
* @type [Int]
*/
let auxChannels = [];
//add all aux channels to the channel numbers
for(let aux of auxList)
{
auxChannels.push(aux.channel);
aux.label = null; //reset all labels
totalParamsToLoad++; //need to fetch the aux labels
}
/**
* All the OSC address:values that have been saved since the server started
*/
let values = {};
// pre-populate values with default data
for(let channelIndex=0; channelIndex < supportedChannels.length; channelIndex++)
{
for(let auxIndex=0; auxIndex < auxList.length; auxIndex++)
{
let data = {
"level": null
};
totalParamsToLoad++;
if(auxList[auxIndex].stereo != undefined && auxList[auxIndex].stereo)
{
data.pan = null;
totalParamsToLoad++;
}
values["a" + auxList[auxIndex].channel + "|c" + supportedChannels[channelIndex]] = data;
}
}
/**
* Socket connections that have connected
* @type {Array}
*/
let connections = [];
/**
* The channels that are available to mix.
* @type {Array}
*/
let channels = [];
//populate channels with blank values
for(let chan of supportedChannels)
{
channels.push({
label: null,
channel: chan
});
totalParamsToLoad++;
}
/**
* Get the IP addresses for this device on the network.
*/
const getIPAddresses = () =>
{
let os = require("os"),
interfaces = os.networkInterfaces(),
ipAddresses = [];
for (let deviceName in interfaces)
{
let addresses = interfaces[deviceName];
for (let i = 0; i < addresses.length; i++)
{
let addressInfo = addresses[i];
if(addressInfo.family === "IPv4" && !addressInfo.internal)
{
ipAddresses.push(addressInfo.address);
}
}
}
return ipAddresses;
};
let ipAddresses = getIPAddresses();
/*
Progress bar to load desk values
*/
const loadingProgress = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);
// Bind to a UDP socket to listen for incoming OSC events.
let udpPort = new osc.UDPPort({
localAddress: ipAddresses[0],
localPort: localPort,
remotePort: remotePort,
remoteAddress: remoteAddress
});
udpPort.on("error", function (err)
{
console.error("UDP error", err);
});
let loadingAddresses = mapping.getLoadingAddresses(auxList, supportedChannels);
udpPort.on("ready", function ()
{
console.log("Loading Desk Values...");
loadingProgress.start(totalParamsToLoad, 0);
if(SKIP)
{
loadingProgress.update(totalParamsToLoad);
loadingProgress.stop();
udpPort.off("message", loadingMessages);
udpPort.on("message", loadedMessages);
startWebSocketServer();
return;
}
/*
Start loading values from the desk
It seems that you can't ask for all of these addresses at once on an SD9 console.
If you do this the desk can ignore some requests and then we will never load correctly.
*/
if(loadingAddresses.length > 0)
{
udpPort.send({
address: loadingAddresses.shift()
});
}
});
/**
* Handle OSC messages while loading
* @param {Object} oscMsg - the OSC message received
* @param {??} timeTag - the time tag specified by the sender (may be undefined for non-bundle messages)
* @param {??} info - an implementation-specific remote information object
*/
function loadingMessages(oscMsg, timeTag, info)
{
if(DEBUG)
{
console.debug("Loading OSC message arrived: ", oscMsg);
}
const msg = mapping.getMsg(oscMsg, auxChannels);
if(!msg)
{
return;
}
//save the changes
saveConfig(msg);
const totalLoadedParams = getTotalLoadedParams();
loadingProgress.update(totalLoadedParams);
if(totalLoadedParams == totalParamsToLoad)
{
loadingProgress.stop();
udpPort.off("message", loadingMessages);
udpPort.on("message", loadedMessages);
startWebSocketServer();
return;
}
//request the next value from the desk
if(loadingAddresses.length > 0)
{
udpPort.send({
address: loadingAddresses.shift()
});
}
}
udpPort.on("message", loadingMessages);
udpPort.open();
/**
* Handle OSC messages after everything has been loaded
* @param {Object} oscMsg - the OSC message received
* @param {??} timeTag - the time tag specified by the sender (may be undefined for non-bundle messages)
* @param {??} info - an implementation-specific remote information object
*/
function loadedMessages(oscMsg, timeTag, info)
{
if(DEBUG)
{
console.debug("OSC message arrived: ", oscMsg);
}
const msg = mapping.getMsg(oscMsg, auxChannels);
if(!msg)
{
return;
}
saveConfig(msg);
sendToConnections(msg);
}
/**
* Get the total Loaded parameters
*/
function getTotalLoadedParams()
{
let totalLoadedParams = 0;
//check if values have loaded
for(let value in values)
{
if(values[value].level != null)
{
totalLoadedParams++;
}
if(values[value].pan !== undefined && values[value].pan != null)
{
totalLoadedParams++;
}
}
//check if channels have loaded
for(let chan of channels)
{
if(chan.label != null)
{
totalLoadedParams++;
}
}
//check if aux labels have loaded
for(let aux of auxList)
{
if(aux.label != null)
{
totalLoadedParams++;
}
}
return totalLoadedParams;
}
function startWebSocketServer()
{
// Create an Express-based Web Socket server that clients can connect to
let appResources = __dirname + "/web",
app = express();
let server = http.createServer(app).listen(serverPort);
app.use("/", express.static(appResources));
let wss = new WebSocket.Server({
server: server
});
wss.on("connection", function(socket)
{
connections.push(socket);
if(DEBUG)
{
console.debug("New Connection");
}
//send new connection the current config
let info = JSON.stringify({
"config": {
channels: channels,
aux: auxList
}
});
socket.send(info);
socket.on('message', function message(data)
{
let msg = JSON.parse(data);
if(DEBUG)
{
console.debug("Message from client: ", msg);
}
/*
Respond to connection when a request was made for the current values for a AUX.
*/
if(msg["aux?"])
{
let channelValues = {};
for(let value in values)
{
for(let channel of channels)
{
if(value == "a" + msg["aux?"] + "|c" + channel.channel)
{
channelValues[channel.channel] = values[value];
}
}
}
this.send(JSON.stringify({
"aux?": msg["aux?"],
channels: channelValues
}));
return;
}
//save the update
saveConfig(msg);
//tell desk to update
udpPort.send(mapping.getOSC(msg));
//tell other connections to update
sendToConnections(msg, this);
});
});
wss.on("error", function (err)
{
console.debug("wss error", err);
});
console.log("\n\nServer Ready.\nVisit http://" + ipAddresses[0] + ":" + serverPort + " in a web browser to access OSC Web Mixer.\nPlease make sure the device you want to use is on the same network.");
}
/**
* Send a message to current connections.
* This will remove any connections from the connections array if that have become invalid.
* @param object msg - The OSC message to send
* @param socket ignore - A socket connection to not send the message to.
*/
function sendToConnections(msg, ignore = null)
{
let validConnections = [];
connections.forEach(function(connection)
{
/**
* CONNECTING = 0
* OPEN = 1
*/
if(connection.readyState <= 1)
{
validConnections.push(connection);
if(connection != ignore)
{
connection.send(JSON.stringify(msg));
}
}
});
connections = validConnections;
}
/**
* Update current config with supplied message
* @param object update - the update to apply
*/
function saveConfig(update)
{
//update aux channel name
if(update.auxname != undefined)
{
//only save aux info we care about
if(auxChannels.indexOf(update.channel) == -1)
{
return;
}
for(let aux of auxList)
{
if(aux.channel == update.channel)
{
aux.label = update.auxname;
return;
}
}
}
//only save channel info we care about
if(supportedChannels.indexOf(update.channel) == -1)
{
return;
}
//update channel name
if(update.name != undefined)
{
for(let channel of channels)
{
if(channel.channel == update.channel)
{
channel.label = update.name;
return;
}
}
}
const valueKey = "a" + update.aux + "|c" + update.channel;
//save the level for a channel
if(update.level != undefined)
{
if(!values[valueKey])
{
return;
values[valueKey] = {};
}
values[valueKey].level = update.level;
}
//save the pan for a channel
if(update.pan != undefined)
{
if(!values[valueKey] || values[valueKey].pan === undefined)
{
return;
values[valueKey] = {};
}
values[valueKey].pan = update.pan;
}
}
/*setTimeout(function(){
loadingMessages({
address: "/sd/Input_Channels/1/Aux_Send/1/send_level",
args: [.5]
});
loadingMessages({
address: "/sd/Input_Channels/1/Aux_Send/1/send_pan",
args: [.5]
});
loadingMessages({
address: "/sd/Input_Channels/1/Channel_Input/name",
args: ["test"]
});
loadingMessages({
address: "/sd/Aux_Outputs/1/Buss_Trim/name",
args: ["test"]
});
loadedMessages({
address: "/channel/1/send/70/level",
args: [.15]
});
loadedMessages({
address: "/channel/1/send/70/pan",
args: [1]
});
loadedMessages({
address: "/channel/1/name",
args: ["test1"]
});
loadedMessages({
address: "/channel/70/name",
args: ["test2"]
});
}, 5000);*/
}
module.exports = { init }