forked from castles/OSCWebMixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
518 lines (453 loc) · 10.1 KB
/
index.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
512
513
514
515
516
517
518
"use strict";
const config = require('config'),
osc = require("osc"),
express = require("express"),
WebSocket = require("ws"),
http = require('http'),
cliProgress = require('cli-progress');
const SKIP = process.argv.indexOf("skip") !== -1;
const DEBUG = process.argv.indexOf("debug") !== -1;
//The AUX channels for the session file you will be connecting to
/**
* The AUX channels that will be available in the APP.
* Each AUX object should have the following values:
{
label: "AUX Label", // label isn't required as it will be captured from the desk
send: 1, // AUX number
stereo: true, // whether or not the AUX is a stereo output
colour: "6, 106, 166" //the colour tint in for format R, G, B
}
* @type Array[Object]
*/
let auxs = JSON.parse(JSON.stringify(config.get('aux')));
/**
* A list of channel numbers to ignore. When a channel number is listed here it will not be available in the app.
* @type Array[Int]
*/
const ignoreChannels = config.get('ignore_channels');
//the channels that are available to mix. By default this will be populated with channels 1-config.channel_count
let channels = [];
if(SKIP)
{
channels = [
{
label: "CLICK",
number: 21
},
{
label: "MD",
number: 22
},
{
label: "Kick",
number: 1
},
{
label: "Snare Top",
number: 3
},
{
label: "Snare Bottom",
number: 4
},
{
label: "Hats",
number: 5
},
{
label: "Tom 1",
number: 6
},
{
label: "Floor Tom",
number: 8
},
{
label: "OH L",
number: 9
},
{
label: "OH R",
number: 10
},
{
label: "SPDSX",
number: 11
},
{
label: "BASS",
number: 13
},
{
label: "GTR",
number: 15
},
{
label: "ACOUSTIC",
number: 17
},
{
label: "KEYS",
number: 47
},
{
label: "TRAX",
number: 20
},
{
label: "TRAX GTR",
number: 2
},
{
label: "LEAD 1",
number: 41
},
{
label: "LEAD 2",
number: 42
},
{
label: "BV1",
number: 43
},
{
label: "BV2",
number: 44
},
{
label: "BV3",
number: 45
},
{
label: "BV4",
number: 46
},
{
label: "MC1",
number: 29
},
{
label: "MC2",
number: 30
},
{
label: "Media",
number: 32
}
];
}
/**
* All the OSC address:values that have been saved since the server started
*/
let values = {};
/**
* Get the IP addresses for this device on the network.
*/
function getIPAddresses()
{
var os = require("os"),
interfaces = os.networkInterfaces(),
ipAddresses = [];
for (var deviceName in interfaces)
{
var addresses = interfaces[deviceName];
for (var i = 0; i < addresses.length; i++)
{
var addressInfo = addresses[i];
if(addressInfo.family === "IPv4" && !addressInfo.internal)
{
ipAddresses.push(addressInfo.address);
}
}
}
return ipAddresses;
};
let ipAddresses = getIPAddresses();
// Bind to a UDP socket to listen for incoming OSC events.
var udpPort = new osc.UDPPort({
localAddress: ipAddresses[0],
localPort: config.get('desk.receive_port'), //The port to listen on
remotePort: config.get('desk.send_port'), //The remote port to send messages to
remoteAddress: config.get('desk.ip') //The remote address to send messages to
});
udpPort.on("error", function (err)
{
console.log("UDP error", err);
});
/*udpPort.on("raw", function (data, info)
{
console.log("UDP raw", data, info);
});*/
/**
* Stores all of the addresses that the server needs to know about before it's ready to use.
* @type Array
*/
let addressesToRequest = [];
/**
* Store the total number of address to request from the desk
* @type Int
*/
let totalAddressesToRequest = 0;
/*
Progress bar to load desk values
*/
const loadingProgress = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);
udpPort.on("ready", function ()
{
console.log("Loading Desk Values...");
//request session filename
/* udpPort.send({
address: "/Console/Session/Filename/?",
args: []
});*/
//Build an array of all the addresses we need to know about.
auxs.forEach(function(aux)
{
//request aux send names from desk
addressesToRequest.push("/sd/Aux_Outputs/" + aux.send + "/Buss_Trim/name");
for(let i=1; i<=config.get('desk.channel_count'); i++)
{
//don't request addresses for channels that are being ignored
if(ignoreChannels.indexOf(i) !== -1)
{
continue;
}
//request aux pan level from desk
if(aux.stereo)
{
addressesToRequest.push("/sd/Input_Channels/" + i + "/Aux_Send/" + aux.send + "/send_pan");
}
//request aux send level from desk
addressesToRequest.push("/sd/Input_Channels/" + i + "/Aux_Send/" + aux.send + "/send_level");
}
});
//request channel names from desk
for(let i=1; i<=config.get('desk.channel_count'); i++)
{
//don't request names for channels that are being ignored
if(ignoreChannels.indexOf(i) !== -1)
{
continue;
}
addressesToRequest.push("/sd/Input_Channels/" + i + "/Channel_Input/name");
}
totalAddressesToRequest = addressesToRequest.length;
loadingProgress.start(totalAddressesToRequest, 0);
if(SKIP)
{
loadingProgress.update(addressesToRequest.length);
loadingProgress.stop();
startWebSocketServer();
return;
}
getNextAddress();
});
//Timeout to retry OSC message request
let requestTimeout = null;
//The current OSC address being requested from desk
let currentRequestAddress = null;
/**
* Ask the desk for the value of the next address
*/
function getNextAddress()
{
clearTimeout(requestTimeout);
loadingProgress.update(totalAddressesToRequest - addressesToRequest.length);
currentRequestAddress = addressesToRequest.pop();
if(currentRequestAddress)
{
udpPort.send({
address: currentRequestAddress + "/?",
args: []
});
requestTimeout = setTimeout(function(){
console.log("\n\nMessage Timeout.. trying again..." );
addressesToRequest.push(currentRequestAddress);
getNextAddress();
}, 10000);
}
else
{
loadingProgress.stop();
startWebSocketServer();
}
}
/**
* Callback for when something has changed at the mixing desk
*/
udpPort.on("message", function (oscMsg, timeTag, info)
{
if(DEBUG)
{
console.log("OSC message arrived: ", oscMsg);
}
//save the changes
saveConfig(oscMsg);
if(currentRequestAddress)
{
//ignore all messages that we haven't requested when first loading
if(oscMsg.address != currentRequestAddress)
{
return;
}
//get the next address
getNextAddress();
return;
}
//tell other connections to update
sendToConnections(oscMsg);
});
udpPort.open();
//an array of socket connections that have connected
let connections = [];
function startWebSocketServer()
{
// Create an Express-based Web Socket server that clients can connect to
var appResources = __dirname + "/web",
app = express();
var server = http.createServer(app).listen(config.get('server.port'));
app.use("/", express.static(appResources));
var wss = new WebSocket.Server({
server: server
});
wss.on("connection", function(socket)
{
connections.push(socket);
if(DEBUG)
{
console.log("New Connection");
}
//send new connection the current config
let info = JSON.stringify({
address: "config",
args: {
channels: channels,
aux: auxs
}
});
socket.send(info);
socket.on('message', function message(data)
{
let msg = JSON.parse(data);
if(DEBUG)
{
console.log("Message from client: ", msg);
}
/*
Respond to connection when a request was made for the current values or an AUX.
This is a custom OSC command and doesn't query the desk. It simply responds with the values it knows about.
*/
let match = /\/sd\/Aux_Outputs\/([0-9]+)\/?/.exec(msg.address);
if(match)
{
let channelValues = {};
for(let value in values)
{
//Look for volume or pan address
if(value.indexOf("Aux_Send/" + match[1]) != -1)
{
channelValues[value] = values[value];
}
}
this.send(JSON.stringify({
address: "/sd/Aux_Outputs/" + match[1],
args: channelValues
}));
return;
}
//save the update
saveConfig(msg);
//tell desk to update
udpPort.send(msg);
//tell other connections to update
sendToConnections(msg, this);
});
});
wss.on("error", function (err)
{
console.log("wss error", err);
});
console.log("\n\nServer Ready. Visit http://" + ipAddresses[0] + ":" + config.get('server.port') + " in your web browser to access OSC Web Mixer.");
}
/**
* 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 OSC message
* @param object update - the update to apply
*/
function saveConfig(update)
{
//update aux name
let match = /\/sd\/Aux_Outputs\/([0-9]+)\/Buss_Trim\/name/.exec(update.address);
if(match)
{
//console.log(match, update);
auxs.forEach(function(aux)
{
if(aux.send == parseInt(match[1]))
{
aux.label = update.args[0];
}
});
return;
}
//update channel name
match = /\/sd\/Input_Channels\/([0-9]+)\/Channel_Input\/name/.exec(update.address);
if(match)
{
let channelNumber = parseInt(match[1]);
//don't save channels we are ignoring
if(ignoreChannels.indexOf(channelNumber) !== -1)
{
return;
}
//look for a channel to update
for(let channel of channels)
{
if(channel.number == channelNumber)
{
channel.label = update.args[0];
return;
}
}
//no channel found so add one
channels.unshift({
label: update.args[0],
number: channelNumber
});
return;
}
//save volume and pan values
match = /\/sd\/Input_Channels\/[0-9]+\/Aux_Send\/[0-9]+\/send_(level|pan)/.exec(update.address);
if(match)
{
/**
* Save address and value for future use
*/
values[update.address] = update.args[0];
}
}