-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
164 lines (115 loc) · 4.45 KB
/
server.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
// Daniel Shiffman on express and node.js
// https://www.youtube.com/watch?v=2hhEOGXcCvg
// https://www.youtube.com/watch?v=HZWmrt3Jy10
var express = require('express'); // import express
var app = express(); // express is a function call which create an
var http = require('http').Server(app);
var io = require('socket.io')(http);
io.on('connection', function(client){
clientConnect(client); // call function when client is connecting
client.on('event', function(data){
// add event logic
});
client.on('disconnect', function(){
clientDisconnect(client); // call function when client is disconnecting
});
});
http.listen(3000, function(){ // begins a server which listens on port 3000
console.log('listening on *:3000');
});
// use node.js to run the server, in terminal: cd ..\to-directory node server.js
// http://localhost:3000
// or specify the ip-adress of the host computer
app.use(express.static('public')); // serve the static files found in the 'public' folder
// javascript is eventbased. Examples of events of the io socket is
// when a connection is established to a client, a message is received / sent, disconnection.
var clientIds = []; // array which takes care of connected IDs
/* ---------------------------------------------
generate client side files from src folder
-------------------------------------------- */
function clientConnect(socket) {
// there exist a socket, when a new connection is made. Therefore the argument
// is the socket.
// There has to be code in the client which tells the client to connect
// to the server (and triggers the new connection event).
// Add a reference to the socket.io library in the index.html
// Write the socket.io code in the UI (or what-ever js).
// console.log(socket); // if you .log the variable socket, you get a lot of metadata.
//console.log("newConnection: " + socket.id); // show the new user id
clientIds.push(socket.id);
console.log ("connected, clients array: " + clientIds);
sendClientLength(clientIds.length); // send the length of the new array to MAX
}
function clientDisconnect (socket) {
var i = clientIds.indexOf(socket);
clientIds.splice(i, 1); // delete socket.id from clientIds array
console.log ("disconnected, clients array: " + clientIds);
sendClientLength(clientIds.length); // send the length of the new array to MAX
}
/****************
* OSC Over UDP *
****************/
// When sending OSC from Max --> server, use /your-osc-message to avoid errors
var osc = require("osc");
var getIPAddresses = function () {
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;
};
var udpPort = new osc.UDPPort({
// socket server ip
localAddress: "127.0.0.1",
localPort: 57121,
// MAX ip and port
remoteAddress: "127.0.0.1",
remotePort: 57120
});
udpPort.on("ready", function () {
var ipAddresses = getIPAddresses();
console.log("Listening for OSC over UDP.");
ipAddresses.forEach(function (address) {
console.log(" Host:", address + ", Port:", udpPort.options.localPort);
});
});
udpPort.on("message", function (oscMessage) {
/*
args[0]:
0: send to all
1 -> : send to specific index
args[1]:
function:
- play
- synthParams
*/
if (oscMessage.args[0] == 0) {
io.sockets.emit("message", oscMessage); // send to all
};
if (oscMessage.args[0] > 0) { // send to specific client
var clientIndex = oscMessage.args[0] - 1; // since array index begins from 0
io.sockets.connected[clientIds[clientIndex]].emit('message', oscMessage);
};
});
udpPort.on("error", function (err) {
console.log(err);
});
udpPort.open();
function sendClientLength(length) { // send to MAX
var msg = {
address: "/clientArrayLength", // OSC namespace
args: [length] // OSC argument
};
udpPort.send(msg); // send OSC mesasge
};
/****************
* OSC THE END *
****************/