server.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. const express = require('express');
  2. const { Bundle, Client } = require('node-osc');
  3. const path = require('path');
  4. const bodyParser = require('body-parser');
  5. const app = express();
  6. const oscClient = new Client('127.0.0.1', 3333);
  7. const alive = [];
  8. let fseq;
  9. const server = require('http').Server(app);
  10. app.use(bodyParser.json());
  11. app.use(bodyParser.urlencoded({extended:true}));
  12. app.use(express.static('./frontend/assets'));
  13. app.get('/', function (req, res) {
  14. res.sendFile('./frontend/index.html', { root: path.resolve(__dirname + '/..') })
  15. });
  16. app.post('/json', function (req, res) {
  17. console.log(req.body);
  18. fseq = fseq ? fseq + 1 : 1;
  19. let oscBundle;
  20. if (req.body.event === 'touchend') {
  21. oscBundle = new Bundle(
  22. [ '/tuio/2Dcur', 'source', 'tangibles@127.0.0.1' ],
  23. [ '/tuio/2Dcur', 'alive' ],
  24. [ '/tuio/2Dcur', 'fseq', fseq ]
  25. );
  26. delete alive[req.body.changedTouches[0].identifier];
  27. if (alive.length === 0) {
  28. fseq = 0;
  29. }
  30. oscClient.send(oscBundle, () => {
  31. res.status(200).json(JSON.stringify(req.body));
  32. });
  33. } else {
  34. if (req.body.changedTouches && req.body.changedTouches.length && req.body.changedTouches.length > 0) {
  35. const touches = Object.keys(req.body.changedTouches);
  36. touchList = [];
  37. touches.forEach(touch => {
  38. const id = req.body.changedTouches[touch].identifier;
  39. touchList.push(id);
  40. });
  41. alive.filter(aliveElement => {
  42. return touchList.includes(aliveElement);
  43. });
  44. const aliveMessage = [ '/tuio/2Dcur', 'alive' ].concat(alive);
  45. touches.forEach(touch => {
  46. const id = req.body.changedTouches[touch].identifier;
  47. if (!alive.includes(id)) {
  48. alive.push(id);
  49. aliveMessage.push(id);
  50. }
  51. });
  52. oscBundle = new Bundle(
  53. [ '/tuio/2Dcur', 'source', 'tangibles@127.0.0.1' ],
  54. aliveMessage,
  55. [ '/tuio/2Dcur', 'fseq', fseq ]
  56. );
  57. touches.forEach(touch => {
  58. oscBundle.append(
  59. [
  60. '/tuio/2Dcur',
  61. 'set',
  62. req.body.changedTouches[touch].identifier,
  63. req.body.changedTouches[touch].clientX / req.body.screenW,
  64. req.body.changedTouches[touch].clientY / req.body.screenH,
  65. 0.0,
  66. 0.0
  67. ]
  68. );
  69. });
  70. oscClient.send(oscBundle, () => {
  71. res.status(200).json(JSON.stringify(req.body));
  72. });
  73. } else {
  74. res.status(400).send();
  75. }
  76. }
  77. });
  78. server.listen(5001, function () {
  79. console.log('Votre app est disponible sur localhost:5001 !')
  80. });