index.html 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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. let config = {};
  38. const getConfig = () => {
  39. return fetch('/config.json');
  40. };
  41. getConfig().then(response => {
  42. return response.json();
  43. }).then(data => {
  44. config = data;
  45. const urlParams = new URLSearchParams(window.location.search);
  46. const sectionParam = urlParams.get('section');
  47. const section = sectionParam ? parseInt(sectionParam, 10) : 100;
  48. if (config.app.debug) {
  49. console.log('--- Frontend debug activated ---');
  50. }
  51. /* -------
  52. * EMITTER
  53. * -------
  54. */
  55. const box = document.getElementById('box');
  56. const eventHandler = (evt, type) => {
  57. if (config.app.debug) {
  58. console.log(evt);
  59. }
  60. const touches = [];
  61. for (var i = 0; i < evt.changedTouches.length; i++) {
  62. touches[i] = {
  63. clientX: evt.changedTouches[i].clientX,
  64. clientY: evt.changedTouches[i].clientY,
  65. force: evt.changedTouches[i].force,
  66. identifier: ((evt.changedTouches[i].identifier + 1) % 100) + section,
  67. pageX: evt.changedTouches[i].pageX,
  68. pageY: evt.changedTouches[i].pageY,
  69. radiusX: evt.changedTouches[i].radiusX,
  70. radiusY: evt.changedTouches[i].radiusY,
  71. rotationAngle: evt.changedTouches[i].rotationAngle,
  72. screenX: evt.changedTouches[i].screenX,
  73. screenY: evt.changedTouches[i].screenY
  74. };
  75. };
  76. if (config.app.debug) {
  77. box.innerHTML = evt.touches.length;
  78. }
  79. fetch(`http://localhost:${config.app.httpPort}/emitter/json`, {
  80. method: 'POST',
  81. mode: 'cors',
  82. cache: 'no-cache',
  83. credentials: 'same-origin',
  84. headers: {
  85. 'Content-Type': 'application/json'
  86. },
  87. redirect: 'follow',
  88. referrerPolicy: 'no-referrer',
  89. body: JSON.stringify({
  90. event: type,
  91. section,
  92. screenW: $(document).width(),
  93. screenH: $(document).height(),
  94. changedTouches: touches
  95. })
  96. });
  97. evt.preventDefault();
  98. };
  99. box.addEventListener('touchstart', (evt) => {
  100. return eventHandler(evt, 'touchstart');
  101. });
  102. box.addEventListener('touchmove', (evt) => {
  103. return eventHandler(evt, 'touchmove');
  104. });
  105. box.addEventListener('touchend', (evt) => {
  106. return eventHandler(evt, 'touchend');
  107. });
  108. /* --------
  109. * RECEIVER
  110. * --------
  111. */
  112. var dotGroups = [];
  113. var client = new Tuio.Client({
  114. host: `http://localhost:${config.app.httpPort}`
  115. }),
  116. screenW = $(document).width(),
  117. screenH = $(document).height()
  118. cursors = {},
  119. objects = {},
  120. onConnect = function() {
  121. if (config.app.debug) {
  122. console.log('connected to web-socket');
  123. }
  124. },
  125. onAddTuioCursor = function(addCursor) {
  126. var $addCursor = $('<div class="tuioCursor"></div>');
  127. $('body').append($addCursor);
  128. cursors[addCursor.getCursorId()] = $addCursor;
  129. onUpdateTuioCursor(addCursor);
  130. if (config.app.debug && config.app.debugLog.frontend.receiver.onAddTuioCursor) {
  131. console.log('addTuioCursor', addCursor);
  132. }
  133. },
  134. onUpdateTuioCursor = function(updateCursor) {
  135. var $updateCursor = cursors[updateCursor.getCursorId()];
  136. $updateCursor.css({
  137. left: updateCursor.getScreenX(screenW),
  138. top: updateCursor.getScreenY(screenH)
  139. });
  140. if (config.app.debug && config.app.debugLog.frontend.receiver.onUpdateTuioCursor) {
  141. console.log('updateTuioCursor', updateCursor);
  142. }
  143. },
  144. onRemoveTuioCursor = function(removeCursor) {
  145. var $removeCursor = cursors[removeCursor.getCursorId()];
  146. $removeCursor.remove();
  147. delete[removeCursor.getCursorId()];
  148. if (config.app.debug && config.app.debugLog.frontend.receiver.onRemoveTuioCursor) {
  149. console.log('removeTuioCursor', removeCursor);
  150. }
  151. },
  152. onAddTuioObject = function(addObject) {
  153. var $addObject = $('<div class="tuioObj"></div>');
  154. $('body').append($addObject);
  155. objects[addObject.symbolID] = $addObject;
  156. onUpdateTuioObject(addObject);
  157. if (config.app.debug && config.app.debugLog.frontend.receiver.onAddTuioObject) {
  158. console.log('addTuioObject', addObject);
  159. }
  160. },
  161. onUpdateTuioObject = function(updateObject) {
  162. var $updateObject = objects[updateObject.symbolID];
  163. $updateObject.css({
  164. left: updateObject.getScreenX(screenW),
  165. top: updateObject.getScreenY(screenH),
  166. rotate : updateObject.getAngleDegrees()
  167. });
  168. if (config.app.debug && config.app.debugLog.frontend.receiver.onUpdateTuioObject) {
  169. console.log('updateTuioObject', updateObject);
  170. }
  171. },
  172. onRemoveTuioObject = function(removeObject) {
  173. var $removeObject = objects[removeObject.symbolID];
  174. $removeObject.remove();
  175. delete[removeObject.symbolID];
  176. if (config.app.debug && config.app.debugLog.frontend.receiver.onRemoveTuioObject) {
  177. console.log('removeTuioObject', removeObject);
  178. }
  179. },
  180. onRefresh = function(time) {
  181. if (config.app.debug && config.app.debugLog.frontend.receiver.onRefresh) {
  182. console.log('refresh', time);
  183. }
  184. };
  185. client.on('connect', onConnect);
  186. client.on('addTuioCursor', onAddTuioCursor);
  187. client.on('updateTuioCursor', onUpdateTuioCursor);
  188. client.on('removeTuioCursor', onRemoveTuioCursor);
  189. client.on('addTuioObject', onAddTuioObject);
  190. client.on('updateTuioObject', onUpdateTuioObject);
  191. client.on('removeTuioObject', onRemoveTuioObject);
  192. client.on('refresh', onRefresh);
  193. client.connect();
  194. });
  195. </script>
  196. </body>
  197. </html>