index.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. <style>
  8. body {
  9. background: #000;
  10. margin: 0;
  11. }
  12. .tuioCursor {
  13. background: #fff;
  14. height: 8px;
  15. left: 0;
  16. position: absolute;
  17. top: 0;
  18. width: 8px;
  19. }
  20. .tuioObj {
  21. background: #f00;
  22. height: 15px;
  23. left: 0;
  24. position: absolute;
  25. top: 0;
  26. width: 8px;
  27. rotate: 0deg;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <script src="/jquery-1.7.2.js"></script>
  33. <script src="/lodash.js"></script>
  34. <script src="/socket.io/socket.io.js"></script>
  35. <script src="/tuio.js"></script>
  36. <script>
  37. $(function() {
  38. const urlParams = new URLSearchParams(window.location.search);
  39. const debugParams = urlParams.get('debug');
  40. const debug = debugParams ? true : false;
  41. if (debug) {
  42. console.log('--- Debug activated ---');
  43. }
  44. var dotGroups = [];
  45. var client = new Tuio.Client({
  46. host: 'http://localhost:5000'
  47. }),
  48. screenW = $(document).width(),
  49. screenH = $(document).height()
  50. cursors = {},
  51. objects = {},
  52. onConnect = function() {
  53. if (debug) {
  54. console.log('connected');
  55. }
  56. },
  57. onAddTuioCursor = function(addCursor) {
  58. var $addCursor = $('<div class="tuioCursor"></div>');
  59. $('body').append($addCursor);
  60. cursors[addCursor.getCursorId()] = $addCursor;
  61. onUpdateTuioCursor(addCursor);
  62. },
  63. onUpdateTuioCursor = function(updateCursor) {
  64. var $updateCursor = cursors[updateCursor.getCursorId()];
  65. $updateCursor.css({
  66. left: updateCursor.getScreenX(screenW),
  67. top: updateCursor.getScreenY(screenH)
  68. });
  69. },
  70. onRemoveTuioCursor = function(removeCursor) {
  71. var $removeCursor = cursors[removeCursor.getCursorId()];
  72. $removeCursor.remove();
  73. delete[removeCursor.getCursorId()];
  74. },
  75. onAddTuioObject = function(addObject) {
  76. var $addObject = $('<div class="tuioObj"></div>');
  77. $('body').append($addObject);
  78. objects[addObject.symbolID] = $addObject;
  79. onUpdateTuioObject(addObject);
  80. if (debug) {
  81. console.log('addTuioObject', addObject);
  82. }
  83. },
  84. onUpdateTuioObject = function(updateObject) {
  85. var $updateObject = objects[updateObject.symbolID];
  86. $updateObject.css({
  87. left: updateObject.getScreenX(screenW),
  88. top: updateObject.getScreenY(screenH),
  89. rotate : updateObject.getAngleDegrees()
  90. });
  91. if (debug) {
  92. console.log('updateTuioObject', updateObject);
  93. }
  94. },
  95. onRemoveTuioObject = function(removeObject) {
  96. var $removeObject = objects[removeObject.symbolID];
  97. $removeObject.remove();
  98. delete[removeObject.symbolID];
  99. if (debug) {
  100. console.log('removeTuioObject', removeObject);
  101. }
  102. },
  103. onRefresh = function(time) {
  104. if (debug) {
  105. console.log('refresh', time);
  106. }
  107. };
  108. client.on('connect', onConnect);
  109. client.on('addTuioCursor', onAddTuioCursor);
  110. client.on('updateTuioCursor', onUpdateTuioCursor);
  111. client.on('removeTuioCursor', onRemoveTuioCursor);
  112. client.on('addTuioObject', onAddTuioObject);
  113. client.on('updateTuioObject', onUpdateTuioObject);
  114. client.on('removeTuioObject', onRemoveTuioObject);
  115. client.on('refresh', onRefresh);
  116. client.connect();
  117. });
  118. </script>
  119. </body>
  120. </html>