index.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>Proof of concept - Objets tangibles</title>
  7. </head>
  8. <body>
  9. <script src="/jquery-1.7.2.js"></script>
  10. <script src="/lodash.js"></script>
  11. <script src="/socket.io/socket.io.js"></script>
  12. <script src="/tuio.js"></script>
  13. <style>
  14. body {
  15. background: #000;
  16. margin: 0;
  17. }
  18. .tuioCursor {
  19. background: #fff;
  20. height: 8px;
  21. left: 0;
  22. position: absolute;
  23. top: 0;
  24. width: 8px;
  25. }
  26. </style>
  27. <script>
  28. $(function() {
  29. const urlParams = new URLSearchParams(window.location.search);
  30. const debugParams = urlParams.get('debug');
  31. const debug = debugParams ? true : false;
  32. if (debug) {
  33. console.log('--- Debug activated ---');
  34. }
  35. var dotGroups = [];
  36. var client = new Tuio.Client({
  37. host: 'http://localhost:5000'
  38. }),
  39. screenW = $(document).width(),
  40. screenH = $(document).height()
  41. cursors = {},
  42. onConnect = function() {
  43. if (debug) {
  44. console.log('connected');
  45. }
  46. },
  47. onAddTuioCursor = function(addCursor) {
  48. var $addCursor = $('<div class="tuioCursor"></div>');
  49. $('body').append($addCursor);
  50. cursors[addCursor.getCursorId()] = $addCursor;
  51. onUpdateTuioCursor(addCursor);
  52. },
  53. onUpdateTuioCursor = function(updateCursor) {
  54. var $updateCursor = cursors[updateCursor.getCursorId()];
  55. $updateCursor.css({
  56. left: updateCursor.getScreenX(screenW),
  57. top: updateCursor.getScreenY(screenH)
  58. });
  59. },
  60. onRemoveTuioCursor = function(removeCursor) {
  61. var $removeCursor = cursors[removeCursor.getCursorId()];
  62. $removeCursor.remove();
  63. delete[removeCursor.getCursorId()];
  64. },
  65. onAddTuioObject = function(addObject) {
  66. if (debug) {
  67. console.log('addTuioObject', addObject);
  68. }
  69. },
  70. onUpdateTuioObject = function(updateObject) {
  71. if (debug) {
  72. console.log('updateTuioObject', updateObject);
  73. }
  74. },
  75. onRemoveTuioObject = function(removeObject) {
  76. if (debug) {
  77. console.log('removeTuioObject', removeObject);
  78. }
  79. },
  80. onRefresh = function(time) {
  81. };
  82. client.on("connect", onConnect);
  83. client.on("addTuioCursor", onAddTuioCursor);
  84. client.on("updateTuioCursor", onUpdateTuioCursor);
  85. client.on("removeTuioCursor", onRemoveTuioCursor);
  86. client.on("addTuioObject", onAddTuioObject);
  87. client.on("updateTuioObject", onUpdateTuioObject);
  88. client.on("removeTuioObject", onRemoveTuioObject);
  89. client.on("refresh", onRefresh);
  90. client.connect();
  91. });
  92. </script>
  93. </body>
  94. </html>