index.html 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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. width: 100%;
  10. height: 100%;
  11. margin: 0;
  12. background-color: #EEEEEE;
  13. }
  14. #box {
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .tuioCursor {
  19. background: #111;
  20. height: 8px;
  21. left: 0;
  22. position: absolute;
  23. top: 0;
  24. width: 8px;
  25. }
  26. .tuioObj {
  27. background: #111;
  28. height: 15px;
  29. left: 0;
  30. position: absolute;
  31. top: 0;
  32. width: 8px;
  33. rotate: 0deg;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <!--<div id="box"></div>-->
  39. <canvas id="box"></canvas>
  40. <!--<script src="/jquery-1.7.2.js"></script>-->
  41. <script src="/lodash.js"></script>
  42. <script src="/socket.io/socket.io.js"></script>
  43. <script src="/tuio.js"></script>
  44. <script>
  45. let config = {};
  46. const getConfig = () => {
  47. return fetch('/config.json');
  48. };
  49. getConfig().then(response => {
  50. return response.json();
  51. }).then(data => {
  52. config = data;
  53. const urlParams = new URLSearchParams(window.location.search);
  54. const sectionParam = urlParams.get('section');
  55. const section = sectionParam ? parseInt(sectionParam, 10) : 100;
  56. if (config.app.debug) {
  57. console.log('### Frontend debug activated ###');
  58. }
  59. const screenW = window.innerWidth;
  60. const screenH = window.innerHeight;
  61. if (config.app.debug && config.app.debugLog.frontend.emitter.screen) {
  62. console.log(`-- Screen width: ${screenW} --`);
  63. console.log(`-- Screen height: ${screenH} --`);
  64. }
  65. /* -------
  66. * EMITTER
  67. * -------
  68. */
  69. const box = document.getElementById('box');
  70. const eventHandler = (evt, type) => {
  71. const touches = [];
  72. for (var i = 0; i < evt.touches.length; i++) {
  73. touches[i] = {
  74. clientX: evt.touches[i].clientX,
  75. clientY: evt.touches[i].clientY,
  76. force: evt.touches[i].force,
  77. identifier: ((evt.touches[i].identifier + 1) % 100) + section,
  78. pageX: evt.touches[i].pageX,
  79. pageY: evt.touches[i].pageY,
  80. radiusX: evt.touches[i].radiusX,
  81. radiusY: evt.touches[i].radiusY,
  82. rotationAngle: evt.touches[i].rotationAngle,
  83. screenX: evt.touches[i].screenX,
  84. screenY: evt.touches[i].screenY
  85. };
  86. };
  87. if (config.app.debug && config.app.debugLog.frontend.emitter.events) {
  88. console.log(`-- Event: ${type} --`, touches);
  89. }
  90. if (config.app.debug && config.app.debugDisplay) {
  91. box.innerHTML = evt.touches.length;
  92. }
  93. fetch(`http://localhost:${config.app.httpPort}/emitter/json`, {
  94. method: 'POST',
  95. mode: 'cors',
  96. cache: 'no-cache',
  97. credentials: 'same-origin',
  98. headers: {
  99. 'Content-Type': 'application/json'
  100. },
  101. redirect: 'follow',
  102. referrerPolicy: 'no-referrer',
  103. body: JSON.stringify({
  104. type,
  105. section,
  106. screenW,
  107. screenH,
  108. touches
  109. })
  110. });
  111. evt.preventDefault();
  112. };
  113. box.addEventListener('touchstart', (evt) => {
  114. return eventHandler(evt, 'touchstart');
  115. });
  116. box.addEventListener('touchmove', (evt) => {
  117. return eventHandler(evt, 'touchmove');
  118. });
  119. box.addEventListener('touchend', (evt) => {
  120. return eventHandler(evt, 'touchend');
  121. });
  122. /* --------
  123. * RECEIVER
  124. * --------
  125. */
  126. const canvas = document.getElementById('box');
  127. canvas.width = screenW;
  128. canvas.height = screenH;
  129. context = canvas.getContext('2d');
  130. context.font = '10px serif';
  131. setInterval(draw, 10);
  132. const cursors = {};
  133. const objects = {};
  134. function draw(){
  135. context.clearRect(0, 0, canvas.width, canvas.height);
  136. for(obj of Object.values(objects)){
  137. if (config.app.debugDisplay) {
  138. const apex = {
  139. x: Math.cos(obj.angle * Math.PI /180) * 150 + obj.xPos,
  140. y: Math.sin(obj.angle * Math.PI /180) * 150 + obj.yPos
  141. };
  142. drawIndicationLine(apex, {
  143. x: obj.xPos,
  144. y: obj.yPos
  145. }, obj.symbolId);
  146. }
  147. }
  148. }
  149. const drawIndicationLine = (apex, center, id) => {
  150. const path = new Path2D();
  151. path.moveTo(Math.round(center.x), Math.round(center.y));
  152. path.lineTo(Math.round(apex.x), Math.round(apex.y));
  153. context.stroke(path);
  154. context.fillText(id, Math.round(apex.x), Math.round(apex.y));
  155. };
  156. const client = new Tuio.Client({
  157. host: `http://localhost:${config.app.httpPort}`
  158. });
  159. onConnect = function() {
  160. if (config.app.debug) {
  161. console.log('connected to web-socket');
  162. }
  163. },
  164. onAddTuioCursor = function(addCursor) {
  165. onUpdateTuioCursor(addCursor);
  166. if (config.app.debug && config.app.debugLog.frontend.receiver.onAddTuioCursor) {
  167. console.log('addTuioCursor', addCursor);
  168. }
  169. },
  170. onUpdateTuioCursor = function(updateCursor) {
  171. if (config.app.debug && config.app.debugLog.frontend.receiver.onUpdateTuioCursor) {
  172. console.log('updateTuioCursor', updateCursor);
  173. }
  174. },
  175. onRemoveTuioCursor = function(removeCursor) {
  176. if (config.app.debug && config.app.debugLog.frontend.receiver.onRemoveTuioCursor) {
  177. console.log('removeTuioCursor', removeCursor);
  178. }
  179. },
  180. onAddTuioObject = function(addObject) {
  181. objects[addObject.symbolId] = addObject;
  182. if (config.app.debug && config.app.debugLog.frontend.receiver.onAddTuioObject) {
  183. console.log('addTuioObject', addObject);
  184. }
  185. },
  186. onUpdateTuioObject = function(updateObject) {
  187. objects[updateObject.symbolId] = updateObject;
  188. if (config.app.debug && config.app.debugLog.frontend.receiver.onUpdateTuioObject) {
  189. console.log('updateTuioObject', updateObject);
  190. }
  191. },
  192. onRemoveTuioObject = function(removeObject) {
  193. delete objects[removeObject.symbolId];
  194. if (config.app.debug && config.app.debugLog.frontend.receiver.onRemoveTuioObject) {
  195. console.log('removeTuioObject', removeObject);
  196. }
  197. },
  198. onRefresh = function(time) {
  199. if (config.app.debug && config.app.debugLog.frontend.receiver.onRefresh) {
  200. console.log('refresh', this.objectList);
  201. }
  202. };
  203. client.on('connect', onConnect);
  204. client.on('addTuioCursor', onAddTuioCursor);
  205. client.on('updateTuioCursor', onUpdateTuioCursor);
  206. client.on('removeTuioCursor', onRemoveTuioCursor);
  207. client.on('addTuioObject', onAddTuioObject);
  208. client.on('updateTuioObject', onUpdateTuioObject);
  209. client.on('removeTuioObject', onRemoveTuioObject);
  210. client.on('refresh', onRefresh);
  211. client.connect();
  212. });
  213. </script>
  214. </body>
  215. </html>