index.html 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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.changedTouches.length; i++) {
  73. touches[i] = {
  74. clientX: evt.changedTouches[i].clientX,
  75. clientY: evt.changedTouches[i].clientY,
  76. force: evt.changedTouches[i].force,
  77. identifier: ((evt.changedTouches[i].identifier + 1) % 100) + section,
  78. pageX: evt.changedTouches[i].pageX,
  79. pageY: evt.changedTouches[i].pageY,
  80. radiusX: evt.changedTouches[i].radiusX,
  81. radiusY: evt.changedTouches[i].radiusY,
  82. rotationAngle: evt.changedTouches[i].rotationAngle,
  83. screenX: evt.changedTouches[i].screenX,
  84. screenY: evt.changedTouches[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. const drawTriangle = (a, b, c, center) => {
  131. context.clearRect(0, 0, canvas.width, canvas.height);
  132. const path = new Path2D();
  133. /*
  134. path.moveTo(Math.round(a.x), Math.round(a.y));
  135. path.lineTo(Math.round(b.x), Math.round(b.y));
  136. path.lineTo(Math.round(c.x), Math.round(c.y));
  137. */
  138. path.moveTo(Math.round(center.x), Math.round(center.y));
  139. path.lineTo(Math.round(a.x), Math.round(a.y));
  140. context.stroke(path);
  141. };
  142. const client = new Tuio.Client({
  143. host: `http://localhost:${config.app.httpPort}`
  144. });
  145. const cursors = {};
  146. const objects = {};
  147. onConnect = function() {
  148. if (config.app.debug) {
  149. console.log('connected to web-socket');
  150. }
  151. },
  152. onAddTuioCursor = function(addCursor) {
  153. /*
  154. var $addCursor = $('<div class="tuioCursor"></div>');
  155. $('body').append($addCursor);
  156. cursors[addCursor.getCursorId()] = $addCursor;
  157. */
  158. onUpdateTuioCursor(addCursor);
  159. if (config.app.debug && config.app.debugLog.frontend.receiver.onAddTuioCursor) {
  160. console.log('addTuioCursor', addCursor);
  161. }
  162. },
  163. onUpdateTuioCursor = function(updateCursor) {
  164. /*
  165. var $updateCursor = cursors[updateCursor.getCursorId()];
  166. $updateCursor.css({
  167. left: updateCursor.getScreenX(screenW),
  168. top: updateCursor.getScreenY(screenH)
  169. });
  170. */
  171. if (config.app.debug && config.app.debugLog.frontend.receiver.onUpdateTuioCursor) {
  172. console.log('updateTuioCursor', updateCursor);
  173. }
  174. },
  175. onRemoveTuioCursor = function(removeCursor) {
  176. /*
  177. var $removeCursor = cursors[removeCursor.getCursorId()];
  178. $removeCursor.remove();
  179. delete[removeCursor.getCursorId()];
  180. */
  181. if (config.app.debug && config.app.debugLog.frontend.receiver.onRemoveTuioCursor) {
  182. console.log('removeTuioCursor', removeCursor);
  183. }
  184. },
  185. onAddTuioObject = function(addObject) {
  186. /*
  187. var $addObject = $('<div class="tuioObj"></div>');
  188. $('body').append($addObject);
  189. objects[addObject.symbolID] = $addObject;
  190. */
  191. onUpdateTuioObject(addObject);
  192. if (config.app.debug && config.app.debugLog.frontend.receiver.onAddTuioObject) {
  193. console.log('addTuioObject', addObject);
  194. }
  195. },
  196. onUpdateTuioObject = function(updateObject) {
  197. /*
  198. var $updateObject = objects[updateObject.symbolID];
  199. $updateObject.css({
  200. left: updateObject.getScreenX(screenW),
  201. top: updateObject.getScreenY(screenH),
  202. rotate : updateObject.getAngleDegrees()
  203. });
  204. */
  205. const apexAngle = 35;
  206. const mediatrice = 300;
  207. const convertedAngle = updateObject.angle < 0 ? 180 + updateObject.angle : updateObject.angle + 180;
  208. console.log(updateObject.angle, convertedAngle);
  209. if (config.app.debugDisplay) {
  210. const apex = {
  211. x: Math.cos(updateObject.angle * Math.PI / 180) * (mediatrice / 2) + updateObject.xPos,
  212. y: Math.sin(updateObject.angle * Math.PI / 180) * (mediatrice / 2) + updateObject.yPos
  213. };
  214. const b = {
  215. x: Math.cos((apexAngle / 2) * Math.PI / 180) * (mediatrice / 2) + apex.x,
  216. y: Math.sin((apexAngle / 2) * Math.PI / 180) * (mediatrice / 2) + apex.y
  217. };
  218. const c = {
  219. x: Math.cos((-1 * apexAngle / 2) * Math.PI / 180) * (mediatrice / 2) + apex.x,
  220. y: Math.sin((-1 * apexAngle / 2) * Math.PI / 180) * (mediatrice / 2) + apex.y
  221. };
  222. drawTriangle(apex, b, c, {
  223. x: updateObject.xPos,
  224. y: updateObject.yPos
  225. });
  226. }
  227. if (config.app.debug && config.app.debugLog.frontend.receiver.onUpdateTuioObject) {
  228. console.log('updateTuioObject', updateObject);
  229. }
  230. },
  231. onRemoveTuioObject = function(removeObject) {
  232. /*
  233. var $removeObject = objects[removeObject.symbolID];
  234. $removeObject.remove();
  235. delete[removeObject.symbolID];
  236. */
  237. if (config.app.debug && config.app.debugLog.frontend.receiver.onRemoveTuioObject) {
  238. console.log('removeTuioObject', removeObject);
  239. }
  240. },
  241. onRefresh = function(time) {
  242. if (config.app.debug && config.app.debugLog.frontend.receiver.onRefresh) {
  243. console.log('refresh', time);
  244. }
  245. };
  246. client.on('connect', onConnect);
  247. client.on('addTuioCursor', onAddTuioCursor);
  248. client.on('updateTuioCursor', onUpdateTuioCursor);
  249. client.on('removeTuioCursor', onRemoveTuioCursor);
  250. client.on('addTuioObject', onAddTuioObject);
  251. client.on('updateTuioObject', onUpdateTuioObject);
  252. client.on('removeTuioObject', onRemoveTuioObject);
  253. client.on('refresh', onRefresh);
  254. client.connect();
  255. });
  256. </script>
  257. </body>
  258. </html>