index.html 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  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. const apexAngle = 35;
  138. const mediatrice = 300;
  139. if (config.app.debugDisplay) {
  140. const apex = {
  141. x: Math.cos(obj.angle * Math.PI / 180) * (mediatrice / 2) + obj.xPos,
  142. y: Math.sin(obj.angle * Math.PI / 180) * (mediatrice / 2) + obj.yPos
  143. };
  144. const b = {
  145. x: Math.cos((apexAngle / 2) * Math.PI / 180) * (mediatrice / 2) + apex.x,
  146. y: Math.sin((apexAngle / 2) * Math.PI / 180) * (mediatrice / 2) + apex.y
  147. };
  148. const c = {
  149. x: Math.cos((-1 * apexAngle / 2) * Math.PI / 180) * (mediatrice / 2) + apex.x,
  150. y: Math.sin((-1 * apexAngle / 2) * Math.PI / 180) * (mediatrice / 2) + apex.y
  151. };
  152. drawTriangle(apex, b, c, {
  153. x: obj.xPos,
  154. y: obj.yPos
  155. }, obj.symbolId);
  156. }
  157. }
  158. }
  159. const drawTriangle = (a, b, c, center, id) => {
  160. //
  161. const path = new Path2D();
  162. /*
  163. path.moveTo(Math.round(a.x), Math.round(a.y));
  164. path.lineTo(Math.round(b.x), Math.round(b.y));
  165. path.lineTo(Math.round(c.x), Math.round(c.y));
  166. */
  167. path.moveTo(Math.round(center.x), Math.round(center.y));
  168. path.lineTo(Math.round(a.x), Math.round(a.y));
  169. context.stroke(path);
  170. context.fillText(id, Math.round(a.x), Math.round(a.y));
  171. };
  172. const client = new Tuio.Client({
  173. host: `http://localhost:${config.app.httpPort}`
  174. });
  175. onConnect = function() {
  176. if (config.app.debug) {
  177. console.log('connected to web-socket');
  178. }
  179. },
  180. onAddTuioCursor = function(addCursor) {
  181. /*
  182. var $addCursor = $('<div class="tuioCursor"></div>');
  183. $('body').append($addCursor);
  184. cursors[addCursor.getCursorId()] = $addCursor;
  185. */
  186. onUpdateTuioCursor(addCursor);
  187. if (config.app.debug && config.app.debugLog.frontend.receiver.onAddTuioCursor) {
  188. console.log('addTuioCursor', addCursor);
  189. }
  190. },
  191. onUpdateTuioCursor = function(updateCursor) {
  192. /*
  193. var $updateCursor = cursors[updateCursor.getCursorId()];
  194. $updateCursor.css({
  195. left: updateCursor.getScreenX(screenW),
  196. top: updateCursor.getScreenY(screenH)
  197. });
  198. */
  199. if (config.app.debug && config.app.debugLog.frontend.receiver.onUpdateTuioCursor) {
  200. console.log('updateTuioCursor', updateCursor);
  201. }
  202. },
  203. onRemoveTuioCursor = function(removeCursor) {
  204. /*
  205. var $removeCursor = cursors[removeCursor.getCursorId()];
  206. $removeCursor.remove();
  207. delete[removeCursor.getCursorId()];
  208. */
  209. if (config.app.debug && config.app.debugLog.frontend.receiver.onRemoveTuioCursor) {
  210. console.log('removeTuioCursor', removeCursor);
  211. }
  212. },
  213. onAddTuioObject = function(addObject) {
  214. objects[addObject.symbolId] = addObject;
  215. if (config.app.debug && config.app.debugLog.frontend.receiver.onAddTuioObject) {
  216. console.log('addTuioObject', addObject);
  217. }
  218. },
  219. onUpdateTuioObject = function(updateObject) {
  220. objects[updateObject.symbolId] = updateObject;
  221. if (config.app.debug && config.app.debugLog.frontend.receiver.onUpdateTuioObject) {
  222. console.log('updateTuioObject', updateObject);
  223. }
  224. },
  225. onRemoveTuioObject = function(removeObject) {
  226. delete objects[removeObject.symbolId];
  227. if (config.app.debug && config.app.debugLog.frontend.receiver.onRemoveTuioObject) {
  228. console.log('removeTuioObject', removeObject);
  229. }
  230. },
  231. onRefresh = function(time) {
  232. if (config.app.debug && config.app.debugLog.frontend.receiver.onRefresh) {
  233. console.log('refresh', this.objectList);
  234. }
  235. };
  236. client.on('connect', onConnect);
  237. client.on('addTuioCursor', onAddTuioCursor);
  238. client.on('updateTuioCursor', onUpdateTuioCursor);
  239. client.on('removeTuioCursor', onRemoveTuioCursor);
  240. client.on('addTuioObject', onAddTuioObject);
  241. client.on('updateTuioObject', onUpdateTuioObject);
  242. client.on('removeTuioObject', onRemoveTuioObject);
  243. client.on('refresh', onRefresh);
  244. client.connect();
  245. });
  246. </script>
  247. </body>
  248. </html>