server.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. let 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. if (req.body.debug) {
  18. console.log(req.body);
  19. }
  20. let oscBundle;
  21. if (req.body.event === 'touchend') {
  22. fseq = fseq ? fseq + 1 : 1;
  23. const aliveMessage = [ '/tuio/2Dcur', 'alive' ].concat(alive);
  24. oscBundle = new Bundle(
  25. [ '/tuio/2Dcur', 'source', `tangibles${req.body.section.toString()}@127.0.0.1` ],
  26. aliveMessage,
  27. [ '/tuio/2Dcur', 'fseq', fseq ],
  28. [
  29. '/tuio/2Dcur',
  30. 'del',
  31. req.body.changedTouches[0].identifier
  32. ]
  33. );
  34. oscClient.send(oscBundle, () => {
  35. const index = alive.indexOf(req.body.changedTouches[0].identifier);
  36. alive.splice(index, 1);
  37. if (alive.length === 0) {
  38. oscBundle = new Bundle(
  39. [ '/tuio/2Dcur', 'source', `tangibles${req.body.section.toString()}@127.0.0.1` ],
  40. [ '/tuio/2Dcur', 'alive' ],
  41. [ '/tuio/2Dcur', 'fseq', fseq ]
  42. );
  43. oscClient.send(oscBundle, () => {
  44. res.status(200).json(JSON.stringify(req.body));
  45. fseq = 0;
  46. });
  47. } else {
  48. res.status(200).send();
  49. }
  50. });
  51. } else {
  52. if (req.body.changedTouches && req.body.changedTouches.length && req.body.changedTouches.length > 0) {
  53. fseq = fseq ? fseq + 1 : 1;
  54. const touches = Object.keys(req.body.changedTouches);
  55. const aliveMessage = [ '/tuio/2Dcur', 'alive' ].concat(alive);
  56. touches.forEach(touch => {
  57. const id = req.body.changedTouches[touch].identifier;
  58. if (!alive.includes(id)) {
  59. alive.push(id);
  60. aliveMessage.push(id);
  61. }
  62. });
  63. oscBundle = new Bundle(
  64. [ '/tuio/2Dcur', 'source', `tangibles${req.body.section.toString()}@127.0.0.1` ],
  65. aliveMessage,
  66. [ '/tuio/2Dcur', 'fseq', fseq ]
  67. );
  68. touches.forEach(touch => {
  69. oscBundle.append(
  70. [
  71. '/tuio/2Dcur',
  72. 'set',
  73. req.body.changedTouches[touch].identifier,
  74. req.body.changedTouches[touch].clientX / req.body.screenW,
  75. req.body.changedTouches[touch].clientY / req.body.screenH,
  76. 0.0,
  77. 0.0
  78. ]
  79. );
  80. });
  81. oscClient.send(oscBundle, () => {
  82. res.status(200).json(JSON.stringify(req.body));
  83. });
  84. } else {
  85. res.status(400).send();
  86. }
  87. }
  88. });
  89. server.listen(5001, function () {
  90. console.log('Votre app est disponible sur localhost:5001 !')
  91. });