server.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. const express = require('express');
  2. const dgram = require('dgram');
  3. const oscParser = require('./osc-parser');
  4. const bodyParser = require('body-parser');
  5. const { Bundle, Client } = require('node-osc');
  6. const path = require('path');
  7. const config = require('../frontend/assets/config.json');
  8. const app = express();
  9. app.use(bodyParser.json());
  10. app.use(bodyParser.urlencoded({extended:true}));
  11. app.use(express.static('./frontend/assets'));
  12. app.get('/', function (req, res) {
  13. res.sendFile('./frontend/index.html', {
  14. root: path.resolve(__dirname + '/..')
  15. });
  16. });
  17. const httpServer = require('http').Server(app);
  18. /* --------
  19. * RECEIVER
  20. * --------
  21. */
  22. const receiverIo = require('socket.io')(httpServer, {
  23. transports: ['websocket']
  24. });
  25. const onSocketListening = function() {
  26. const address = receiverUdpSocket.address();
  27. console.log('Serveur TUIO en écoute sur : ' + address.address + ':' + address.port);
  28. };
  29. const onSocketConnection = function(socket) {
  30. receiverUdpSocket.on('message', function(msg) {
  31. socket.emit('osc', oscParser.decode(msg));
  32. });
  33. };
  34. const receiverUdpSocket = dgram.createSocket('udp4');
  35. receiverUdpSocket.on('listening', onSocketListening);
  36. receiverUdpSocket.bind(config.app.oscUdpPort, '127.0.0.1');
  37. app.get('/receiver/json', function (req, res) {
  38. res.status(200).send();
  39. });
  40. receiverIo.sockets.on('connection', (socket) =>{
  41. console.log(`Connecté au client ${socket.id}`);
  42. const dgramCallback = function (buf) {
  43. if (config.app.debugLog.backend.receiver.oscDatagram) {
  44. console.log(oscParser.decode(buf));
  45. }
  46. socket.emit('osc', oscParser.decode(buf));
  47. };
  48. // forward UDP packets via socket.io
  49. receiverUdpSocket.on('message', dgramCallback);
  50. // prevent memory leak on disconnect
  51. socket.on('disconnect', function (socket) {
  52. receiverUdpSocket.removeListener('message', dgramCallback);
  53. });
  54. });
  55. /* -------
  56. * EMITTER
  57. * -------
  58. */
  59. const emitterOscClient = new Client('127.0.0.1', config.app.oscUdpPort);
  60. let alive = [];
  61. let fseq;
  62. let objTriangle = [] ;
  63. function getHypotenuse(touch1, touch2) {
  64. const x = Math.abs(touch1.x - touch2.x);
  65. const y = Math.abs(touch1.y - touch2.y);
  66. return Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2));
  67. }
  68. function getTop(dotTrio) {
  69. const dist01 = getHypotenuse(dotTrio[0], dotTrio[1]);
  70. const dist02 = getHypotenuse(dotTrio[0], dotTrio[2]);
  71. const dist12 = getHypotenuse(dotTrio[1], dotTrio[2]);
  72. const diff01m02 = Math.abs(dist01 - dist02);
  73. const diff01m12 = Math.abs(dist01 - dist12);
  74. const diff02m12 = Math.abs(dist02 - dist12);
  75. if (diff01m02 < diff02m12 && diff01m02 < diff01m12) {
  76. return 0;
  77. }
  78. else if (diff01m12 < diff01m02 && diff01m12 < diff02m12) {
  79. return 1;
  80. }
  81. else if (diff02m12 < diff01m02 && diff02m12 < diff01m12) {
  82. return 2;
  83. }
  84. }
  85. function getAngleApex(dotTrio, topIndex) {
  86. let dotA;
  87. let dotB;
  88. let dotC;
  89. dotB = dotTrio[topIndex];
  90. if (topIndex == 0) {
  91. dotA = dotTrio[1];
  92. dotC = dotTrio[2];
  93. }
  94. else if (topIndex == 1) {
  95. dotA = dotTrio[0];
  96. dotC = dotTrio[2];
  97. }
  98. else if (topIndex == 2) {
  99. dotA = dotTrio[0];
  100. dotC = dotTrio[1];
  101. }
  102. const AB = [dotB.x - dotA.x, dotB.y - dotA.y];
  103. const CB = [dotB.x - dotC.x, dotB.y - dotC.y];
  104. const dotProd = (AB[0] * CB[0] + AB[1] * CB[1]);
  105. const crossProd = (AB[0] * CB[1] - AB[1] * CB[0]);
  106. const alpha = Math.atan2(crossProd, dotProd);
  107. //return alpha ;
  108. return Math.floor(alpha * 180. / Math.PI + 0.5) ;
  109. }
  110. function getOrientation(dotTrio, topIndex) {
  111. let dotA;
  112. let dotB;
  113. let dotC;
  114. dotB = dotTrio[topIndex];
  115. if (topIndex == 0) {
  116. dotA = dotTrio[1];
  117. dotC = dotTrio[2];
  118. }
  119. else if (topIndex == 1) {
  120. dotA = dotTrio[0];
  121. dotC = dotTrio[2];
  122. }
  123. else if (topIndex == 2) {
  124. dotA = dotTrio[0];
  125. dotC = dotTrio[1];
  126. }
  127. const middlePt = [(dotA.x + dotC.x) / 2, (dotA.y + dotC.y) / 2 ] ;
  128. let diff = [dotB.x - middlePt[0], dotB.y - middlePt[1]] ;
  129. const length = Math.sqrt(Math.pow(diff[0], 2) + Math.pow(diff[1], 2) ) ;
  130. //normalize diff
  131. diff = [diff[0] / length, diff[1] / length];
  132. const rad = Math.atan2(diff[0], diff[1]) ;
  133. return Math.floor(-1 * rad * 180 / Math.PI) ;
  134. //return length ;
  135. }
  136. let currentOscBundle = null;
  137. let hasPending = false;
  138. let waiting = false;
  139. const sendBundle = () => {
  140. if (hasPending) {
  141. emitterOscClient.send(currentOscBundle, () => {
  142. hasPending = false;
  143. });
  144. }
  145. setTimeout(() => {
  146. sendBundle();
  147. }, config.app.timerRefresh);
  148. };
  149. sendBundle();
  150. app.post('/emitter/json', function (req, res) {
  151. if (config.app.debug && config.app.debugLog.backend.emitter.httpRequest) {
  152. console.log('## Emitter POST request ##');
  153. }
  154. let oscBundle;
  155. if (req.body.event === 'touchend') {
  156. fseq = fseq ? fseq + 1 : 1;
  157. const aliveMessage = [ '/tuio/2Dcur', 'alive' ].concat(alive);
  158. currentOscBundle = new Bundle(
  159. [ '/tuio/2Dcur', 'source', `tangibles${req.body.section.toString()}@127.0.0.1` ],
  160. aliveMessage,
  161. [ '/tuio/2Dcur', 'fseq', fseq ],
  162. [
  163. '/tuio/2Dcur',
  164. 'del',
  165. req.body.changedTouches[0].identifier
  166. ]
  167. );
  168. emitterOscClient.send(currentOscBundle, () => {
  169. const index = alive.indexOf(req.body.changedTouches[0].identifier);
  170. alive.splice(index, 1);
  171. if (alive.length === 0) {
  172. currentOscBundle = new Bundle(
  173. [ '/tuio/2Dcur', 'source', `tangibles${req.body.section.toString()}@127.0.0.1` ],
  174. [ '/tuio/2Dcur', 'alive' ],
  175. [ '/tuio/2Dcur', 'fseq', fseq ]
  176. );
  177. emitterOscClient.send(currentOscBundle, () => {
  178. res.status(200).send();
  179. fseq = 0;
  180. hasPending = false;
  181. });
  182. } else {
  183. res.status(200).send();
  184. }
  185. });
  186. } else {
  187. if (req.body.changedTouches && req.body.changedTouches.length && req.body.changedTouches.length > 0) {
  188. fseq = fseq ? fseq + 1 : 1;
  189. const touches = Object.keys(req.body.changedTouches);
  190. const aliveMessage = [ '/tuio/2Dcur', 'alive' ].concat(alive);
  191. touches.forEach(touch => {
  192. const id = req.body.changedTouches[touch].identifier;
  193. if (!alive.includes(id)) {
  194. alive.push(id);
  195. aliveMessage.push(id);
  196. }
  197. });
  198. /* Listage de tous les points */
  199. const dots = [];
  200. touches.forEach(function(touch) {
  201. dots.push({
  202. id: req.body.changedTouches[touch].identifier,
  203. x: req.body.changedTouches[touch].clientX,
  204. y: req.body.changedTouches[touch].clientY
  205. });
  206. });
  207. if (config.app.debug && config.app.debugLog.backend.emitter.dots) {
  208. console.log('-- dots --', dots);
  209. }
  210. /* Listage des segments */
  211. const segments = [];
  212. if (dots.length > 2) {
  213. for (var i = 0; i < dots.length; i++) {
  214. for (var j = 0; j < dots.length; j++) {
  215. if (j !== i) {
  216. /* on vérifie que le segment n'est pas déjà listé */
  217. const alreadyExists = segments.find(segment => {
  218. return segment.identifiers.includes(i) && segment.identifiers.includes(j);
  219. });
  220. /* on calcule la taille du segment (l'hypoténuse) */
  221. var hyp = getHypotenuse(dots[i], dots[j]);
  222. /* on garde uniquement les segments inférieurs à 750px (valeur par défaut)
  223. * cette valeur est la variable de configuration "maxDistanceBetweenPoints" */
  224. if (!alreadyExists && hyp <= config.app.maxDistanceBetweenPoints) {
  225. segments.push({
  226. identifiers: [i, j],
  227. x1: dots[i].x,
  228. x2: dots[j].x,
  229. y1: dots[i].y,
  230. y2: dots[j].y,
  231. hyp
  232. });
  233. }
  234. }
  235. }
  236. }
  237. }
  238. if (config.app.debug && config.app.debugLog.backend.emitter.segments) {
  239. console.log('-- segments --', segments);
  240. }
  241. /* Listage des triangles */
  242. const triangles = [];
  243. /* on boucle sur les segments */
  244. segments.forEach((segment) => {
  245. const dot1 = segment.identifiers[0];
  246. const dot2 = segment.identifiers[1];
  247. /* on vérifie que le triangle n'est pas déjà listé */
  248. const alreadyExists = triangles.find(triangle => {
  249. return triangle.includes(dot1) && triangle.includes(dot2);
  250. });
  251. if (!alreadyExists) {
  252. /* on cherche les segments qui contiennent un des 2 points du segment actuel
  253. * ex: si le segment actuel est AB, on cherche un segment contenant A (pour AC) et un autre contenant B (pour BC) */
  254. const found1 = segments.findIndex(seg => {
  255. return (seg.identifiers.includes(dot1) && !seg.identifiers.includes(dot2));
  256. });
  257. const found2 = segments.findIndex(seg => {
  258. return (seg.identifiers.includes(dot2) && !seg.identifiers.includes(dot1));
  259. });
  260. /* si on trouve bien les 2 segments (AC et BC), on peut créer un triangle */
  261. if (found1 !== -1 && found2 !== -1) {
  262. /* on devine quel est le 3ème point du triangle par rapport au segment actuel (le point C par rapport au segment AB) */
  263. const dot3 = segments[found1].identifiers.find(identifier => {
  264. return identifier !== dot1 && identifier !== dot2;
  265. });
  266. triangles.push([dot1, dot2, dot3]);
  267. }
  268. }
  269. });
  270. if (config.app.debug && config.app.debugLog.backend.emitter.triangles) {
  271. console.log('-- triangles --', triangles);
  272. }
  273. /* objet pour stocker les informations des triangles identifiés (points, centre, apexAngle, orientation, indice apex, width, height) */
  274. objTriangle = {} ;
  275. /* Définition de l'apex, de la position du centre et de l'orientation */
  276. triangles.forEach(triangle => {
  277. objTriangle.dots = [];
  278. objTriangle.dots[0] = dots[triangle[0]];
  279. objTriangle.dots[1] = dots[triangle[1]];
  280. objTriangle.dots[2] = dots[triangle[2]];
  281. objTriangle.apex = getTop(objTriangle.dots);
  282. objTriangle.center = [
  283. (objTriangle.dots[0].x+objTriangle.dots[1].x+objTriangle.dots[2].x)/3 ,
  284. (objTriangle.dots[0].y+objTriangle.dots[1].y+objTriangle.dots[2].y)/3
  285. ];
  286. objTriangle.angleApex = getAngleApex(objTriangle.dots, objTriangle.apex) ;
  287. objTriangle.orientation = getOrientation(objTriangle.dots, objTriangle.apex) ;
  288. if (req.body.debug) {
  289. console.log('-- apex --', objTriangle.apex);
  290. console.log('centerPos : ' + objTriangle.center + ' orientation : ' + objTriangle.orientation);
  291. }
  292. });
  293. //plante vite
  294. // if (objTriangle.dots != undefined){
  295. // let oscBundleObj ;
  296. // oscBundleObj = new Bundle(
  297. // [ '/tuio/2Dobj', 'source', `tangibles${req.body.section.toString()}@127.0.0.1` ],
  298. // [ '/tuio/2Dobj', 'alive', 1 ],
  299. // [
  300. // '/tuio/2Dobj',
  301. // 'set',
  302. // 1,
  303. // 1,
  304. // objTriangle.center[0],
  305. // objTriangle.center[1],
  306. // objTriangle.orientation,
  307. // 0.0,
  308. // 0.0,
  309. // 0.0,
  310. // 0.0,
  311. // 0.0
  312. // ],
  313. // [ '/tuio/2Dobj', 'fseq', fseq ]
  314. // );
  315. // // // objTriangle.forEach(triangleIndex => {
  316. // // // oscBundle.append(
  317. // // // [
  318. // // // '/tuio/2Dobj',
  319. // // // 'set',
  320. // // // triangleIndex,
  321. // // // triangleIndex,
  322. // // // objTriangle[triangleIndex].center[0],
  323. // // // objTriangle[triangleIndex].center[1],
  324. // // // objTriangle[triangleIndex].orientation,
  325. // // // 0.0,
  326. // // // 0.0,
  327. // // // 0.0,
  328. // // // 0.0,
  329. // // // 0.0
  330. // // // ]
  331. // // // );
  332. // // // });
  333. // console.log(oscBundleObj);
  334. // emitterOscClient.send(oscBundleObj, () => {
  335. // res.status(200).send();
  336. // });
  337. // }
  338. // oscBundle = new Bundle(
  339. // [ '/tuio/2Dcur', 'source', `tangibles${req.body.section.toString()}@127.0.0.1` ],
  340. // aliveMessage,
  341. // [ '/tuio/2Dcur', 'fseq', fseq ]
  342. // );
  343. // touches.forEach(touch => {
  344. // oscBundle.append(
  345. // [
  346. // '/tuio/2Dcur',
  347. // 'set',
  348. // req.body.changedTouches[touch].identifier,
  349. // req.body.changedTouches[touch].clientX / req.body.screenW,
  350. // req.body.changedTouches[touch].clientY / req.body.screenH,
  351. // 0.0,
  352. // 0.0
  353. // ]
  354. // );
  355. // });
  356. currentOscBundle = new Bundle ;
  357. currentOscBundle.append([ '/tuio/2Dobj', 'alive', 1 ]);
  358. if (objTriangle.dots != undefined) {
  359. currentOscBundle.append([
  360. '/tuio/2Dobj',
  361. 'set',
  362. 1,
  363. 1,
  364. //objTriangle.center[0],
  365. //objTriangle.center[1],
  366. objTriangle.center[0] / req.body.screenW,
  367. objTriangle.center[1] / req.body.screenH,
  368. objTriangle.orientation,
  369. 0.0,
  370. 0.0,
  371. 0.0,
  372. 0.0,
  373. 0.0
  374. ]);
  375. }
  376. currentOscBundle.append(['/tuio/2Dobj', 'fseq', fseq]);
  377. hasPending = true;
  378. res.status(200).send();
  379. } else {
  380. res.status(400).send();
  381. }
  382. }
  383. });
  384. httpServer.listen(config.app.httpPort, function () {
  385. console.log(`Votre app est disponible sur http://localhost:${config.app.httpPort} !`)
  386. });