index.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>Proof of concept - Objets tangibles</title>
  7. </head>
  8. <body>
  9. <script src="/jquery-1.7.2.js"></script>
  10. <script src="/lodash.js"></script>
  11. <script src="/socket.io/socket.io.js"></script>
  12. <script src="/tuio.js"></script>
  13. <style>
  14. body {
  15. background: #000;
  16. margin: 0;
  17. }
  18. .tuioCursor {
  19. background: #fff;
  20. height: 8px;
  21. left: 0;
  22. position: absolute;
  23. top: 0;
  24. width: 8px;
  25. }
  26. </style>
  27. <script>
  28. function getHypotenuse(touch1, touch2) {
  29. var w = Math.abs(touch1.w - touch2.w);
  30. var h = Math.abs(touch1.h - touch2.h);
  31. return Math.sqrt(Math.pow(w, 2) + Math.pow(h, 2));
  32. }
  33. $(function() {
  34. const urlParams = new URLSearchParams(window.location.search);
  35. const debugParams = urlParams.get('debug');
  36. const debug = debugParams ? true : false;
  37. if (debug) {
  38. console.log('--- Debug activated ---');
  39. }
  40. var dotGroups = [];
  41. var client = new Tuio.Client({
  42. host: 'http://localhost:5000'
  43. }),
  44. screenW = $(document).width(),
  45. screenH = $(document).height()
  46. cursors = {},
  47. onConnect = function() {
  48. if (debug) {
  49. console.log('connected');
  50. }
  51. },
  52. onAddTuioCursor = function(addCursor) {
  53. var $addCursor = $('<div class="tuioCursor"></div>');
  54. $('body').append($addCursor);
  55. cursors[addCursor.getCursorId()] = $addCursor;
  56. onUpdateTuioCursor(addCursor);
  57. },
  58. onUpdateTuioCursor = function(updateCursor) {
  59. var $updateCursor = cursors[updateCursor.getCursorId()];
  60. $updateCursor.css({
  61. left: updateCursor.getScreenX(screenW),
  62. top: updateCursor.getScreenY(screenH)
  63. });
  64. var cursorIds = Object.keys(cursors);
  65. var dots = [];
  66. cursorIds.forEach(function(cursor) {
  67. dots.push({
  68. id: cursor,
  69. w: cursors[cursor][0].offsetLeft,
  70. h: cursors[cursor][0].offsetTop
  71. });
  72. });
  73. var groups = [];
  74. if (dots.length > 2) {
  75. for (var i = 0; i < dots.length; i++) {
  76. for (var j = 0; j < dots.length; j++) {
  77. if (j !== i) {
  78. var hyp = getHypotenuse(dots[i], dots[j]);
  79. if (hyp <= 260) {
  80. if (groups.length === 0) {
  81. groups.push([i, j]);
  82. } else {
  83. const groupContainingBoth = groups.findIndex(group => {
  84. return (group.includes(i) && group.includes(j));
  85. });
  86. if (groupContainingBoth === -1) {
  87. const groupContainingI = groups.findIndex(group => {
  88. return (group.includes(i) && !group.includes(j));
  89. });
  90. if (groupContainingI !== -1) {
  91. groups[groupContainingI].push(j);
  92. }
  93. const groupContainingJ = groups.findIndex(group => {
  94. return (!group.includes(i) && group.includes(j));
  95. });
  96. if (groupContainingJ !== -1) {
  97. groups[groupContainingJ].push(i);
  98. }
  99. }
  100. }
  101. }
  102. const groupContainingI = groups.findIndex(group => {
  103. return (group.includes(i));
  104. });
  105. if (groupContainingI === -1) {
  106. groups.push([i]);
  107. }
  108. }
  109. }
  110. }
  111. }
  112. dotGroups = groups;
  113. console.log(dotGroups);
  114. },
  115. onRemoveTuioCursor = function(removeCursor) {
  116. var $removeCursor = cursors[removeCursor.getCursorId()];
  117. $removeCursor.remove();
  118. delete[removeCursor.getCursorId()];
  119. },
  120. onAddTuioObject = function(addObject) {
  121. if (debug) {
  122. console.log('addTuioObject', addObject);
  123. }
  124. },
  125. onUpdateTuioObject = function(updateObject) {
  126. if (debug) {
  127. console.log('updateTuioObject', updateObject);
  128. }
  129. },
  130. onRemoveTuioObject = function(removeObject) {
  131. if (debug) {
  132. console.log('removeTuioObject', removeObject);
  133. }
  134. },
  135. onRefresh = function(time) {
  136. };
  137. client.on("connect", onConnect);
  138. client.on("addTuioCursor", onAddTuioCursor);
  139. client.on("updateTuioCursor", onUpdateTuioCursor);
  140. client.on("removeTuioCursor", onRemoveTuioCursor);
  141. client.on("addTuioObject", onAddTuioObject);
  142. client.on("updateTuioObject", onUpdateTuioObject);
  143. client.on("removeTuioObject", onRemoveTuioObject);
  144. client.on("refresh", onRefresh);
  145. client.connect();
  146. });
  147. </script>
  148. </body>
  149. </html>