index.html 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  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. box.addEventListener('touchstart', function(evt) {
  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: 'touchstart',
  84. debug,
  85. section,
  86. screenW: $(document).width(),
  87. screenH: $(document).height(),
  88. changedTouches: touches
  89. })
  90. });
  91. evt.preventDefault();
  92. });
  93. box.addEventListener('touchmove', function(evt) {
  94. if (debug) {
  95. console.log(evt);
  96. }
  97. const touches = [];
  98. for (var i = 0; i < evt.changedTouches.length; i++) {
  99. touches[i] = {
  100. clientX: evt.changedTouches[i].clientX,
  101. clientY: evt.changedTouches[i].clientY,
  102. force: evt.changedTouches[i].force,
  103. identifier: ((evt.changedTouches[i].identifier + 1) % 100) + section,
  104. pageX: evt.changedTouches[i].pageX,
  105. pageY: evt.changedTouches[i].pageY,
  106. radiusX: evt.changedTouches[i].radiusX,
  107. radiusY: evt.changedTouches[i].radiusY,
  108. rotationAngle: evt.changedTouches[i].rotationAngle,
  109. screenX: evt.changedTouches[i].screenX,
  110. screenY: evt.changedTouches[i].screenY
  111. };
  112. };
  113. box.innerHTML = evt.touches.length;
  114. fetch('http://localhost:5000/emitter/json', {
  115. method: 'POST',
  116. mode: 'cors',
  117. cache: 'no-cache',
  118. credentials: 'same-origin',
  119. headers: {
  120. 'Content-Type': 'application/json'
  121. },
  122. redirect: 'follow',
  123. referrerPolicy: 'no-referrer',
  124. body: JSON.stringify({
  125. event: 'touchmove',
  126. debug,
  127. section,
  128. screenW: $(document).width(),
  129. screenH: $(document).height(),
  130. changedTouches: touches
  131. })
  132. });
  133. evt.preventDefault();
  134. });
  135. box.addEventListener('touchend', function(evt) {
  136. if (debug) {
  137. console.log(evt);
  138. }
  139. const touches = [];
  140. for (var i = 0; i < evt.changedTouches.length; i++) {
  141. touches[i] = {
  142. clientX: evt.changedTouches[i].clientX,
  143. clientY: evt.changedTouches[i].clientY,
  144. force: evt.changedTouches[i].force,
  145. identifier: ((evt.changedTouches[i].identifier + 1) % 100) + section,
  146. pageX: evt.changedTouches[i].pageX,
  147. pageY: evt.changedTouches[i].pageY,
  148. radiusX: evt.changedTouches[i].radiusX,
  149. radiusY: evt.changedTouches[i].radiusY,
  150. rotationAngle: evt.changedTouches[i].rotationAngle,
  151. screenX: evt.changedTouches[i].screenX,
  152. screenY: evt.changedTouches[i].screenY
  153. };
  154. };
  155. box.innerHTML = evt.touches.length;
  156. fetch('http://localhost:5000/emitter/json', {
  157. method: 'POST',
  158. mode: 'cors',
  159. cache: 'no-cache',
  160. credentials: 'same-origin',
  161. headers: {
  162. 'Content-Type': 'application/json'
  163. },
  164. redirect: 'follow',
  165. referrerPolicy: 'no-referrer',
  166. body: JSON.stringify({
  167. event: 'touchend',
  168. debug,
  169. section,
  170. screenW: $(document).width(),
  171. screenH: $(document).height(),
  172. changedTouches: touches
  173. })
  174. });
  175. evt.preventDefault();
  176. });
  177. if (!(typeof box.ontouchstart != 'undefined')) {
  178. box.style.border = '1px solid red';
  179. }
  180. /* --------
  181. * RECEIVER
  182. * --------
  183. */
  184. $(function() {
  185. const urlParams = new URLSearchParams(window.location.search);
  186. const debugParams = urlParams.get('debug');
  187. const debug = debugParams ? true : false;
  188. if (debug) {
  189. console.log('--- Debug activated ---');
  190. }
  191. var dotGroups = [];
  192. var client = new Tuio.Client({
  193. host: 'http://localhost:5000'
  194. }),
  195. screenW = $(document).width(),
  196. screenH = $(document).height()
  197. cursors = {},
  198. objects = {},
  199. onConnect = function() {
  200. if (debug) {
  201. console.log('connected');
  202. }
  203. },
  204. onAddTuioCursor = function(addCursor) {
  205. var $addCursor = $('<div class="tuioCursor"></div>');
  206. $('body').append($addCursor);
  207. cursors[addCursor.getCursorId()] = $addCursor;
  208. onUpdateTuioCursor(addCursor);
  209. },
  210. onUpdateTuioCursor = function(updateCursor) {
  211. var $updateCursor = cursors[updateCursor.getCursorId()];
  212. $updateCursor.css({
  213. left: updateCursor.getScreenX(screenW),
  214. top: updateCursor.getScreenY(screenH)
  215. });
  216. },
  217. onRemoveTuioCursor = function(removeCursor) {
  218. var $removeCursor = cursors[removeCursor.getCursorId()];
  219. $removeCursor.remove();
  220. delete[removeCursor.getCursorId()];
  221. },
  222. onAddTuioObject = function(addObject) {
  223. var $addObject = $('<div class="tuioObj"></div>');
  224. $('body').append($addObject);
  225. objects[addObject.symbolID] = $addObject;
  226. onUpdateTuioObject(addObject);
  227. if (debug) {
  228. console.log('addTuioObject', addObject);
  229. }
  230. },
  231. onUpdateTuioObject = function(updateObject) {
  232. var $updateObject = objects[updateObject.symbolID];
  233. $updateObject.css({
  234. left: updateObject.getScreenX(screenW),
  235. top: updateObject.getScreenY(screenH),
  236. rotate : updateObject.getAngleDegrees()
  237. });
  238. if (debug) {
  239. console.log('updateTuioObject', updateObject);
  240. }
  241. },
  242. onRemoveTuioObject = function(removeObject) {
  243. var $removeObject = objects[removeObject.symbolID];
  244. $removeObject.remove();
  245. delete[removeObject.symbolID];
  246. if (debug) {
  247. console.log('removeTuioObject', removeObject);
  248. }
  249. },
  250. onRefresh = function(time) {
  251. if (debug) {
  252. console.log('refresh', time);
  253. }
  254. };
  255. client.on('connect', onConnect);
  256. client.on('addTuioCursor', onAddTuioCursor);
  257. client.on('updateTuioCursor', onUpdateTuioCursor);
  258. client.on('removeTuioCursor', onRemoveTuioCursor);
  259. client.on('addTuioObject', onAddTuioObject);
  260. client.on('updateTuioObject', onUpdateTuioObject);
  261. client.on('removeTuioObject', onRemoveTuioObject);
  262. client.on('refresh', onRefresh);
  263. client.connect();
  264. });
  265. </script>
  266. </body>
  267. </html>