server.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 fseq;
  8. const alive = [];
  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', 'touch@127.0.0.1:5001' ],
  23. [ '/tuio/2Dcur', 'alive' ],
  24. [ '/tuio/2Dcur', 'fseq', fseq ]
  25. );
  26. } else {
  27. //if (req.body.changedTouches && req.body.changedTouches.length && req.body.changedTouches.length > 0) {
  28. const touches = Object.keys(req.body.changedTouches);
  29. touches.forEach(touch => {
  30. if (!alive.includes(req.body.changedTouches[touch].identifier)) {
  31. alive.push(req.body.changedTouches[touch].identifier);
  32. }
  33. });
  34. oscBundle = new Bundle(
  35. //[ '/tuio/2Dcur', 'source', 'touch@127.0.0.1:5001' ],
  36. [ '/tuio/2Dcur', 'alive', alive.join(' ') ],
  37. [ '/tuio/2Dcur', 'fseq', fseq ]
  38. );
  39. touches.forEach(touch => {
  40. console.log(req.body.changedTouches[touch]);
  41. oscBundle.append(
  42. [
  43. '/tuio/2Dcur',
  44. 'set',
  45. req.body.changedTouches[touch].identifier,
  46. req.body.changedTouches[touch].clientX / req.body.screenW,
  47. req.body.changedTouches[touch].clientY / req.body.screenH,
  48. 0.0,
  49. 0.0
  50. ]
  51. );
  52. });
  53. oscClient.send(oscBundle, () => {
  54. res.status(200).json(JSON.stringify(req.body));
  55. });
  56. //}
  57. }
  58. });
  59. server.listen(5001, function () {
  60. console.log('Votre app est disponible sur localhost:5001 !')
  61. });