index.html 6.3 KB

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