index.html 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <!DOCTYPE html>
  2. <html style="height: 100%;">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>ASR tangibles</title>
  7. <style>
  8. body {
  9. margin: 0;
  10. }
  11. .tuioCursor {
  12. background: #111;
  13. height: 8px;
  14. left: 0;
  15. position: absolute;
  16. top: 0;
  17. width: 8px;
  18. }
  19. .tuioObj {
  20. background: #111;
  21. height: 15px;
  22. left: 0;
  23. position: absolute;
  24. top: 0;
  25. width: 8px;
  26. rotate: 0deg;
  27. }
  28. </style>
  29. </head>
  30. <body style="height: 100%;">
  31. <div id="box" style="width: 100%; height: 100%; background-color: #EEEEEE;"></div>
  32. <script src="/jquery-1.7.2.js"></script>
  33. <script src="/lodash.js"></script>
  34. <script src="/socket.io/socket.io.js"></script>
  35. <script src="/tuio.js"></script>
  36. <script>
  37. /* -------
  38. * EMITTER
  39. * -------
  40. */
  41. const box = document.getElementById('box');
  42. const urlParams = new URLSearchParams(window.location.search);
  43. const sectionParam = urlParams.get('section');
  44. const section = sectionParam ? parseInt(sectionParam, 10) : 100;
  45. const debugParams = urlParams.get('debug');
  46. const debug = debugParams ? true : false;
  47. if (debug) {
  48. console.log('--- Debug activated ---');
  49. console.log(`Section: ${section.toString()}`);
  50. }
  51. const eventHandler = (evt, type) => {
  52. if (debug) {
  53. console.log(evt);
  54. }
  55. const touches = [];
  56. for (var i = 0; i < evt.changedTouches.length; i++) {
  57. touches[i] = {
  58. clientX: evt.changedTouches[i].clientX,
  59. clientY: evt.changedTouches[i].clientY,
  60. force: evt.changedTouches[i].force,
  61. identifier: ((evt.changedTouches[i].identifier + 1) % 100) + section,
  62. pageX: evt.changedTouches[i].pageX,
  63. pageY: evt.changedTouches[i].pageY,
  64. radiusX: evt.changedTouches[i].radiusX,
  65. radiusY: evt.changedTouches[i].radiusY,
  66. rotationAngle: evt.changedTouches[i].rotationAngle,
  67. screenX: evt.changedTouches[i].screenX,
  68. screenY: evt.changedTouches[i].screenY
  69. };
  70. };
  71. box.innerHTML = evt.touches.length;
  72. fetch('http://localhost:5000/emitter/json', {
  73. method: 'POST',
  74. mode: 'cors',
  75. cache: 'no-cache',
  76. credentials: 'same-origin',
  77. headers: {
  78. 'Content-Type': 'application/json'
  79. },
  80. redirect: 'follow',
  81. referrerPolicy: 'no-referrer',
  82. body: JSON.stringify({
  83. event: type,
  84. debug,
  85. section,
  86. screenW: $(document).width(),
  87. screenH: $(document).height(),
  88. changedTouches: touches
  89. })
  90. });
  91. evt.preventDefault();
  92. };
  93. box.addEventListener('touchstart', (evt) => {
  94. return eventHandler(evt, 'touchstart');
  95. });
  96. box.addEventListener('touchmove', (evt) => {
  97. return eventHandler(evt, 'touchmove');
  98. });
  99. box.addEventListener('touchend', (evt) => {
  100. return eventHandler(evt, 'touchend');
  101. });
  102. if (!(typeof box.ontouchstart != 'undefined')) {
  103. box.style.border = '1px solid red';
  104. }
  105. /* --------
  106. * RECEIVER
  107. * --------
  108. */
  109. $(function() {
  110. const urlParams = new URLSearchParams(window.location.search);
  111. const debugParams = urlParams.get('debug');
  112. const debug = debugParams ? true : false;
  113. if (debug) {
  114. console.log('--- Debug activated ---');
  115. }
  116. var dotGroups = [];
  117. var client = new Tuio.Client({
  118. host: 'http://localhost:5000'
  119. }),
  120. screenW = $(document).width(),
  121. screenH = $(document).height()
  122. cursors = {},
  123. objects = {},
  124. onConnect = function() {
  125. if (debug) {
  126. console.log('connected');
  127. }
  128. },
  129. onAddTuioCursor = function(addCursor) {
  130. var $addCursor = $('<div class="tuioCursor"></div>');
  131. $('body').append($addCursor);
  132. cursors[addCursor.getCursorId()] = $addCursor;
  133. onUpdateTuioCursor(addCursor);
  134. },
  135. onUpdateTuioCursor = function(updateCursor) {
  136. var $updateCursor = cursors[updateCursor.getCursorId()];
  137. $updateCursor.css({
  138. left: updateCursor.getScreenX(screenW),
  139. top: updateCursor.getScreenY(screenH)
  140. });
  141. },
  142. onRemoveTuioCursor = function(removeCursor) {
  143. var $removeCursor = cursors[removeCursor.getCursorId()];
  144. $removeCursor.remove();
  145. delete[removeCursor.getCursorId()];
  146. },
  147. onAddTuioObject = function(addObject) {
  148. var $addObject = $('<div class="tuioObj"></div>');
  149. $('body').append($addObject);
  150. objects[addObject.symbolID] = $addObject;
  151. onUpdateTuioObject(addObject);
  152. if (debug) {
  153. console.log('addTuioObject', addObject);
  154. }
  155. },
  156. onUpdateTuioObject = function(updateObject) {
  157. var $updateObject = objects[updateObject.symbolID];
  158. $updateObject.css({
  159. left: updateObject.getScreenX(screenW),
  160. top: updateObject.getScreenY(screenH),
  161. rotate : updateObject.getAngleDegrees()
  162. });
  163. if (debug) {
  164. console.log('updateTuioObject', updateObject);
  165. }
  166. },
  167. onRemoveTuioObject = function(removeObject) {
  168. var $removeObject = objects[removeObject.symbolID];
  169. $removeObject.remove();
  170. delete[removeObject.symbolID];
  171. if (debug) {
  172. console.log('removeTuioObject', removeObject);
  173. }
  174. },
  175. onRefresh = function(time) {
  176. if (debug) {
  177. console.log('refresh', time);
  178. }
  179. };
  180. client.on('connect', onConnect);
  181. client.on('addTuioCursor', onAddTuioCursor);
  182. client.on('updateTuioCursor', onUpdateTuioCursor);
  183. client.on('removeTuioCursor', onRemoveTuioCursor);
  184. client.on('addTuioObject', onAddTuioObject);
  185. client.on('updateTuioObject', onUpdateTuioObject);
  186. client.on('removeTuioObject', onRemoveTuioObject);
  187. client.on('refresh', onRefresh);
  188. client.connect();
  189. });
  190. </script>
  191. </body>
  192. </html>