aframe-components.js 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219
  1. /*
  2. The MIT License (MIT)
  3. Copyright (c) 2014-2018 Nikolai Suslov and the Krestianstvo.org project contributors. (https://github.com/NikolaySuslov/livecodingspace/blob/master/LICENSE.md)
  4. */
  5. if (typeof AFRAME === 'undefined') {
  6. throw new Error('Component attempted to register before AFRAME was available.');
  7. }
  8. AFRAME.registerComponent('scene-utils', {
  9. init: function () {
  10. this.mirrors = {};
  11. const sceneEnterVR = (e) => {
  12. //vwf_view.kernel.callMethod(vwf.application(), "enterVR");
  13. let avatarEl = document.querySelector('#avatarControlParent');
  14. if (AFRAME.utils.device.isMobileVR()) {
  15. } else if (AFRAME.utils.device.isMobile()) {
  16. avatarEl.setAttribute('position', '0 0 0')
  17. } else {
  18. avatarEl.setAttribute('position', '0 0 0'); //'0 1.6 0'
  19. }
  20. // if (!AFRAME.utils.device.isGearVR() && !AFRAME.utils.device.isMobile()) {
  21. // avatarEl.setAttribute('position', '0 1.6 0');
  22. // }
  23. }
  24. const sceneExitVR = (e) => {
  25. //vwf_view.kernel.callMethod(vwf.application(), "exitVR");
  26. let avatarEl = document.querySelector('#avatarControlParent');
  27. if (AFRAME.utils.device.isMobileVR()) {
  28. //avatarEl.setAttribute('position', '0 0 0');
  29. } else if (AFRAME.utils.device.isMobile()) {
  30. avatarEl.setAttribute('position', '0 1.6 0');
  31. } else {
  32. avatarEl.setAttribute('position', '0 0 0');
  33. }
  34. }
  35. this.el.sceneEl.addEventListener('enter-vr', sceneEnterVR);
  36. this.el.sceneEl.addEventListener('exit-vr', sceneExitVR);
  37. },
  38. update: function () {
  39. },
  40. tick: function (t) {
  41. Object.values(this.mirrors).forEach(el => {
  42. el.mirrorTick.call(el)
  43. })
  44. }
  45. })
  46. AFRAME.registerComponent('linepath', {
  47. schema: {
  48. color: { default: '#000' },
  49. width: { default: 0.01 },
  50. path: {
  51. default: [
  52. { x: -0.5, y: 0, z: 0 },
  53. { x: 0.5, y: 0, z: 0 }
  54. ]
  55. // Deserialize path in the form of comma-separated vec3s: `0 0 0, 1 1 1, 2 0 3`.
  56. // parse: function (value) {
  57. // return value.split(',').map(coordinates.parse);
  58. // },
  59. // Serialize array of vec3s in case someone does setAttribute('line', 'path', [...]).
  60. // stringify: function (data) {
  61. // return data.map(coordinates.stringify).join(',');
  62. // }
  63. }
  64. },
  65. update: function () {
  66. var material = new MeshLineMaterial({
  67. color: new THREE.Color(this.data.color), //this.data.color
  68. lineWidth: this.data.width
  69. });
  70. var geometry = new THREE.Geometry();
  71. this.data.path.forEach(function (vec3) {
  72. geometry.vertices.push(
  73. new THREE.Vector3(vec3.x, vec3.y, vec3.z)
  74. );
  75. });
  76. let line = new MeshLine();
  77. line.setGeometry(geometry);
  78. //new THREE.Line(geometry, material)
  79. this.el.setObject3D('mesh', new THREE.Mesh(line.geometry, material));
  80. },
  81. remove: function () {
  82. this.el.removeObject3D('mesh');
  83. }
  84. });
  85. AFRAME.registerComponent('gizmo', {
  86. schema: {
  87. mode: { default: 'translate' }
  88. },
  89. update: function (old) {
  90. let modes = ['translate', 'rotate', 'scale'];
  91. if (!this.gizmo) {
  92. let newMode = modes.filter(el => {
  93. return el == this.data.mode
  94. })
  95. if (newMode.length !== 0) {
  96. this.mode = this.data.mode
  97. this.transformControls.setMode(this.mode)
  98. }
  99. }
  100. },
  101. init: function () {
  102. let self = this
  103. this.mode = this.data.mode
  104. let activeCamera = document.querySelector('#avatarControl').getObject3D('camera');
  105. let renderer = this.el.sceneEl.renderer;
  106. this.transformControls = new THREE.TransformControls(activeCamera, renderer.domElement);
  107. this.transformControls.attach(this.el.object3D);
  108. this.el.sceneEl.setObject3D('control-' + this.el.id, this.transformControls);
  109. this.transformControls.addEventListener('change', function (evt) {
  110. // console.log('changed');
  111. var object = self.transformControls.object;
  112. if (object === undefined) {
  113. return;
  114. }
  115. var transformMode = self.transformControls.getMode();
  116. switch (transformMode) {
  117. case 'translate':
  118. vwf_view.kernel.setProperty(object.el.id, 'position',
  119. [object.position.x, object.position.y, object.position.z])
  120. break;
  121. case 'rotate':
  122. // let q = (new THREE.Quaternion()).setFromEuler(new THREE.Euler(
  123. // (object.rotation.x),
  124. // (object.rotation.y),
  125. // (object.rotation.z), 'XYZ'
  126. // ));
  127. // let angle = (new THREE.Euler()).setFromQuaternion(q, 'YXZ');
  128. // vwf_view.kernel.setProperty(object.el.id, 'rotation', [THREE.Math.radToDeg(angle.x), THREE.Math.radToDeg(angle.y), THREE.Math.radToDeg(angle.z)])
  129. vwf_view.kernel.setProperty(object.el.id, 'rotation',
  130. [THREE.Math.radToDeg(object.rotation.x), THREE.Math.radToDeg(object.rotation.y), THREE.Math.radToDeg(object.rotation.z)])
  131. break;
  132. case 'scale':
  133. vwf_view.kernel.setProperty(object.el.id, 'scale',
  134. [object.scale.x, object.scale.y, object.scale.z])
  135. break;
  136. }
  137. //vwf_view.kernel.fireEvent(evt.detail.target.id, "clickEvent")
  138. });
  139. },
  140. remove: function () {
  141. this.transformControls.detach();
  142. this.el.sceneEl.removeObject3D('control-' + this.el.id);
  143. },
  144. // tick: function (t) {
  145. // // this.transformControls.update();
  146. // }
  147. });
  148. AFRAME.registerComponent('cursor-listener', {
  149. init: function () {
  150. this.el.addEventListener('click', function (evt) {
  151. console.log('I was clicked at: ', evt.detail.intersection.point);
  152. let cursorID = 'cursor-avatar-' + vwf_view.kernel.moniker();
  153. if (evt.detail.cursorEl.id.includes(vwf_view.kernel.moniker())) {
  154. vwf_view.kernel.fireEvent(evt.detail.intersection.object.el.id, "clickEvent", [vwf_view.kernel.moniker()])
  155. }
  156. //vwf_view.kernel.fireEvent(evt.detail.target.id, "clickEvent")
  157. });
  158. }
  159. });
  160. AFRAME.registerComponent('aabb-collider-listener', {
  161. // If the target collidable object is moving, set <a-entity data-aabb-collider-dynamic> on the target. By default, collidable objects are presumed to be static for performance purposes.
  162. init: function () {
  163. // let self = this;
  164. // this.me = vwf_view.kernel.moniker();
  165. this.el.addEventListener('hitstart', function (evt) {
  166. vwf_view.kernel.fireEvent(evt.target.id, "hitstartEvent");
  167. })
  168. this.el.addEventListener('hitend', function (evt) {
  169. vwf_view.kernel.fireEvent(evt.target.id, "hitendEvent");
  170. })
  171. }
  172. });
  173. AFRAME.registerComponent('raycaster-listener', {
  174. init: function () {
  175. let self = this;
  176. this.intersected = false;
  177. this.casters = {}
  178. this.me = vwf_view.kernel.moniker();
  179. this.driver = vwf.views["vwf/view/aframe"];
  180. this.el.addEventListener('raycaster-intersected', function (evt) {
  181. if (evt.detail.el.nodeName == 'A-CURSOR') {
  182. //console.log('CURSOR was intersected at: ', evt.detail.intersection.point);
  183. } else {
  184. if (self.intersected) {
  185. } else {
  186. console.log('I was intersected at: ', evt.target);//evt.detail.getIntersection().point);
  187. vwf_view.kernel.fireEvent(evt.target.id, "intersectEvent");
  188. }
  189. self.casters[evt.target.id] = evt.target;
  190. self.intersected = true;
  191. }
  192. });
  193. this.el.addEventListener('raycaster-intersected-cleared', function (evt) {
  194. if (evt.detail.el.nodeName == 'A-CURSOR') {
  195. //console.log('CURSOR was intersected at: ', evt.detail.intersection.point);
  196. } else {
  197. if (self.intersected) {
  198. console.log('Clear intersection');
  199. if (Object.entries(self.casters).length == 1 && (self.casters[evt.target.id] !== undefined)) {
  200. vwf_view.kernel.fireEvent(evt.target.id, "clearIntersectEvent")
  201. }
  202. delete self.casters[evt.target.id]
  203. } else { }
  204. self.intersected = false;
  205. }
  206. });
  207. }
  208. });
  209. AFRAME.registerComponent('envmap', {
  210. /**
  211. * Creates a new THREE.ShaderMaterial using the two shaders defined
  212. * in vertex.glsl and fragment.glsl.
  213. */
  214. init: function () {
  215. const data = this.data;
  216. //this.applyToMesh();
  217. this.el.addEventListener('model-loaded', () => this.applyToMesh());
  218. },
  219. /**
  220. * Update the ShaderMaterial when component data changes.
  221. */
  222. update: function () {
  223. },
  224. getEnvMap: function () {
  225. var path = './assets/textures/skybox2/';
  226. var format = '.jpg';
  227. var urls = [
  228. path + 'px' + format, path + 'nx' + format,
  229. path + 'py' + format, path + 'ny' + format,
  230. path + 'pz' + format, path + 'nz' + format
  231. ];
  232. envMap = new THREE.CubeTextureLoader().load(urls);
  233. envMap.format = THREE.RGBFormat;
  234. return envMap;
  235. },
  236. /**
  237. * Apply the material to the current entity.
  238. */
  239. applyToMesh: function () {
  240. const mesh = this.el.getObject3D('mesh');
  241. //var scene = mesh;
  242. var envMap = this.getEnvMap();
  243. mesh.traverse(function (node) {
  244. if (node.material) {
  245. node.material.side = THREE.BackSide;
  246. node.material.needsUpdate = true;
  247. //side = THREE.DoubleSide; break;
  248. }
  249. });
  250. mesh.traverse(function (node) {
  251. if (node.material && (node.material.isMeshStandardMaterial ||
  252. (node.material.isShaderMaterial && node.material.envMap !== undefined))) {
  253. node.material.envMap = envMap;
  254. node.material.needsUpdate = true;
  255. }
  256. });
  257. // const mesh = this.el.getObject3D('mesh');
  258. // if (mesh) {
  259. // mesh.material = this.material;
  260. // }
  261. },
  262. /**
  263. * On each frame, update the 'time' uniform in the shaders.
  264. */
  265. // tick: function (t) {
  266. // }
  267. })
  268. //https://threejs.org/examples/webgl_shaders_sky.html
  269. AFRAME.registerComponent('skyshader', {
  270. makeSun: function () {
  271. let sunSphere = new THREE.Mesh(
  272. new THREE.SphereBufferGeometry(20000, 16, 8),
  273. new THREE.MeshBasicMaterial({ color: 0xffffff })
  274. );
  275. sunSphere.position.y = - 700000;
  276. sunSphere.visible = true;
  277. let scene = this.el.sceneEl;
  278. this.el.sceneEl.setObject3D('sun', sunSphere);
  279. },
  280. init: function () {
  281. //let sunSphereEl = document.querySelector('a-scene').querySelector('#sun');
  282. //this.sunSphere = sunSphereEl.object3D;
  283. this.makeSun();
  284. this.sunSphere = this.el.sceneEl.getObject3D('sun');
  285. this.sky = new THREE.Sky();
  286. let scene = this.el.sceneEl;
  287. let effectController = {
  288. turbidity: 5,
  289. rayleigh: 2,
  290. mieCoefficient: 0.005,
  291. mieDirectionalG: 0.8,
  292. luminance: 1,
  293. inclination: 0, // elevation / inclination
  294. azimuth: 0.25, // Facing front,
  295. sun: ! true
  296. };
  297. let uniforms = this.sky.uniforms;
  298. uniforms.turbidity.value = effectController.turbidity;
  299. uniforms.rayleigh.value = effectController.rayleigh;
  300. uniforms.luminance.value = effectController.luminance;
  301. uniforms.mieCoefficient.value = effectController.mieCoefficient;
  302. uniforms.mieDirectionalG.value = effectController.mieDirectionalG;
  303. this.el.setObject3D('mesh', this.sky.mesh);
  304. let distance = 400000;
  305. var theta = Math.PI * (effectController.inclination - 0.5);
  306. var phi = 2 * Math.PI * (effectController.azimuth - 0.5);
  307. this.sunSphere.position.x = distance * Math.cos(phi);
  308. this.sunSphere.position.y = distance * Math.sin(phi) * Math.sin(theta);
  309. this.sunSphere.position.z = distance * Math.sin(phi) * Math.cos(theta);
  310. this.sunSphere.visible = effectController.sun;
  311. this.sky.uniforms.sunPosition.value.copy(this.sunSphere.position);
  312. },
  313. update: function () {
  314. },
  315. // tick: function (t) {
  316. // }
  317. })
  318. AFRAME.registerComponent('sun', {
  319. init: function () {
  320. this.sunSphere = new THREE.Mesh(
  321. new THREE.SphereBufferGeometry(20000, 16, 8),
  322. new THREE.MeshBasicMaterial({ color: 0xffffff })
  323. );
  324. this.sunSphere.position.y = - 700000;
  325. this.sunSphere.visible = true;
  326. this.el.setObject3D('mesh', this.sunSphere);
  327. },
  328. update: function () {
  329. },
  330. // tick: function (t) {
  331. // }
  332. })
  333. AFRAME.registerComponent('gearvrcontrol', {
  334. init: function () {
  335. var self = this;
  336. var controllerID = 'gearvr-' + vwf_view.kernel.moniker();
  337. this.el.addEventListener('triggerdown', function (event) {
  338. vwf_view.kernel.callMethod(controllerID, "triggerdown", []);
  339. });
  340. this.el.addEventListener('triggerup', function (event) {
  341. vwf_view.kernel.callMethod(controllerID, "triggerup", []);
  342. });
  343. },
  344. update: function () {
  345. },
  346. // tick: function (t) {
  347. // }
  348. })
  349. AFRAME.registerComponent('wmrvrcontrol', {
  350. schema: {
  351. hand: { default: 'right' }
  352. },
  353. update: function (old) {
  354. this.hand = this.data.hand;
  355. },
  356. init: function () {
  357. var self = this;
  358. this.hand = this.data.hand;
  359. var controllerID = 'wrmr-' + this.hand + '-' + vwf_view.kernel.moniker();
  360. //this.gearel = document.querySelector('#gearvrcontrol');
  361. this.el.addEventListener('triggerdown', function (event) {
  362. vwf_view.kernel.callMethod(controllerID, "triggerdown", []);
  363. });
  364. this.el.addEventListener('triggerup', function (event) {
  365. vwf_view.kernel.callMethod(controllerID, "triggerup", []);
  366. });
  367. },
  368. // tick: function (t) {
  369. // }
  370. })
  371. AFRAME.registerComponent('streamsound', {
  372. schema: {
  373. positional: { default: true }
  374. },
  375. init: function () {
  376. var self = this;
  377. let driver = vwf.views["vwf/view/webrtc"];
  378. this.listener = null;
  379. this.stream = null;
  380. if (!this.sound) {
  381. this.setupSound();
  382. }
  383. if (driver) {
  384. //let avatarID = 'avatar-' + vwf.moniker();
  385. let avatarID = this.el.id.slice(0, 27); //avatar-0RtnYBBTBU84OCNcAAFY
  386. let client = driver.state.clients[avatarID];
  387. if (client) {
  388. if (client.connection) {
  389. this.stream = client.connection.stream;
  390. if (this.stream) {
  391. this.audioEl = new Audio();
  392. this.audioEl.srcObject = this.stream;
  393. this.sound.setNodeSource(this.sound.context.createMediaStreamSource(this.stream));
  394. }
  395. }
  396. }
  397. }
  398. },
  399. setupSound: function () {
  400. var el = this.el;
  401. var sceneEl = el.sceneEl;
  402. if (this.sound) {
  403. el.removeObject3D(this.attrName);
  404. }
  405. if (!sceneEl.audioListener) {
  406. sceneEl.audioListener = new THREE.AudioListener();
  407. sceneEl.camera && sceneEl.camera.add(sceneEl.audioListener);
  408. sceneEl.addEventListener('camera-set-active', function (evt) {
  409. evt.detail.cameraEl.getObject3D('camera').add(sceneEl.audioListener);
  410. });
  411. }
  412. this.listener = sceneEl.audioListener;
  413. this.sound = this.data.positional
  414. ? new THREE.PositionalAudio(this.listener)
  415. : new THREE.Audio(this.listener);
  416. el.setObject3D(this.attrName, this.sound);
  417. },
  418. remove: function () {
  419. if (!this.sound) return;
  420. this.el.removeObject3D(this.attrName);
  421. if (this.stream) {
  422. this.sound.disconnect();
  423. }
  424. },
  425. update: function (old) {
  426. },
  427. // tick: function (t) {
  428. // }
  429. })
  430. AFRAME.registerComponent('viewoffset', {
  431. // fullWidth:
  432. // fullHeight:
  433. // xoffset:
  434. // yoffset:
  435. // width:
  436. // height:
  437. schema: {
  438. fullWidth: { default: window.innerWidth },
  439. fullHeight: { default: window.innerHeight },
  440. xoffset: { default: window.innerWidth / 2 },
  441. yoffset: { default: window.innerHeight / 2 },
  442. width: { default: window.innerWidth },
  443. height: { default: window.innerHeight }
  444. },
  445. init: function () {
  446. var self = this;
  447. this.el.sceneEl.addEventListener('loaded', setOffset);
  448. function setOffset() {
  449. this.setNewOffset();
  450. }
  451. },
  452. update: function (old) {
  453. this.fullWidth = this.data.fullWidth;
  454. this.fullHeight = this.data.fullHeight;
  455. this.xoffset = this.data.xoffset;
  456. this.yoffset = this.data.yoffset;
  457. this.width = this.data.width;
  458. this.height = this.data.height;
  459. //console.log(this.data);
  460. this.setNewOffset();
  461. },
  462. setNewOffset: function () {
  463. this.el.object3DMap.camera.setViewOffset(
  464. this.data.fullWidth,
  465. this.data.fullHeight,
  466. this.data.xoffset,
  467. this.data.yoffset,
  468. this.data.width,
  469. this.data.height)
  470. },
  471. // tick: function (t) {
  472. // }
  473. })
  474. AFRAME.registerComponent("virtual-gamepad-controls", {
  475. schema: {},
  476. init() {
  477. this.onEnterVr = this.onEnterVr.bind(this);
  478. this.onExitVr = this.onExitVr.bind(this);
  479. this.onFirstInteraction = this.onFirstInteraction.bind(this);
  480. this.onMoveJoystickChanged = this.onMoveJoystickChanged.bind(this);
  481. this.onMoveJoystickEnd = this.onMoveJoystickEnd.bind(this);
  482. // this.onLookJoystickChanged = this.onLookJoystickChanged.bind(this);
  483. // this.onLookJoystickEnd = this.onLookJoystickEnd.bind(this);
  484. this.mockJoystickContainer = document.createElement("div");
  485. this.mockJoystickContainer.classList.add('mockJoystickContainer');
  486. const leftMock = document.createElement("div");
  487. leftMock.classList.add('mockJoystick');
  488. const leftMockSmall = document.createElement("div");
  489. leftMockSmall.classList.add('mockJoystick', 'inner');
  490. leftMock.appendChild(leftMockSmall);
  491. this.mockJoystickContainer.appendChild(leftMock);
  492. // const rightMock = document.createElement("div");
  493. // rightMock.classList.add('mockJoystick');
  494. // const rightMockSmall = document.createElement("div");
  495. // rightMockSmall.classList.add('mockJoystick', 'inner');
  496. // rightMock.appendChild(rightMockSmall);
  497. // this.mockJoystickContainer.appendChild(rightMock);
  498. document.body.appendChild(this.mockJoystickContainer);
  499. // Setup gamepad elements
  500. const leftTouchZone = document.createElement("div");
  501. leftTouchZone.classList.add('touchZone', 'left');
  502. document.body.appendChild(leftTouchZone);
  503. this.leftTouchZone = leftTouchZone;
  504. this.leftStick = nipplejs.create({
  505. zone: this.leftTouchZone,
  506. color: "white",
  507. fadeTime: 0
  508. });
  509. this.leftStick.on("start", this.onFirstInteraction);
  510. this.leftStick.on("move", this.onMoveJoystickChanged);
  511. this.leftStick.on("end", this.onMoveJoystickEnd);
  512. // const rightTouchZone = document.createElement("div");
  513. // rightTouchZone.classList.add('touchZone', 'right');
  514. // document.body.appendChild(rightTouchZone);
  515. // this.rightTouchZone = rightTouchZone;
  516. // this.rightStick = nipplejs.create({
  517. // zone: this.rightTouchZone,
  518. // color: "white",
  519. // fadeTime: 0
  520. // });
  521. // this.rightStick.on("start", this.onFirstInteraction);
  522. // this.rightStick.on("move", this.onLookJoystickChanged);
  523. // this.rightStick.on("end", this.onLookJoystickEnd);
  524. this.inVr = false;
  525. this.moving = false;
  526. this.rotating = false;
  527. this.moveEvent = {
  528. axis: [0, 0]
  529. };
  530. // this.rotateYEvent = {
  531. // value: 0
  532. // };
  533. // this.rotateXEvent = {
  534. // value: 0
  535. // };
  536. this.el.sceneEl.addEventListener("enter-vr", this.onEnterVr);
  537. this.el.sceneEl.addEventListener("exit-vr", this.onExitVr);
  538. },
  539. onFirstInteraction() {
  540. this.leftStick.off("start", this.onFirstInteraction);
  541. //this.rightStick.off("start", this.onFirstInteraction);
  542. document.body.removeChild(this.mockJoystickContainer);
  543. },
  544. onMoveJoystickChanged(event, joystick) {
  545. const angle = joystick.angle.radian;
  546. const force = joystick.force < 1 ? joystick.force : 1;
  547. const moveStrength = 1.85;
  548. const x = Math.cos(angle) * force * moveStrength;
  549. const z = Math.sin(angle) * force * moveStrength;
  550. this.moving = true;
  551. this.moveEvent.axis[0] = x;
  552. this.moveEvent.axis[1] = z;
  553. },
  554. onMoveJoystickEnd() {
  555. this.moving = false;
  556. this.moveEvent.axis[0] = 0;
  557. this.moveEvent.axis[1] = 0;
  558. this.el.emit("move", this.moveEvent);
  559. },
  560. onLookJoystickChanged(event, joystick) {
  561. // Set pitch and yaw angles on right stick move
  562. const angle = joystick.angle.radian;
  563. const force = joystick.force < 1 ? joystick.force : 1;
  564. const turnStrength = 0.5;
  565. this.rotating = true;
  566. this.rotateYEvent.value = Math.cos(angle) * force * turnStrength;
  567. this.rotateXEvent.value = Math.sin(angle) * force * turnStrength;
  568. },
  569. onLookJoystickEnd() {
  570. this.rotating = false;
  571. this.rotateYEvent.value = 0;
  572. this.rotateXEvent.value = 0;
  573. this.el.emit("rotateY", this.rotateYEvent);
  574. this.el.emit("rotateX", this.rotateXEvent);
  575. },
  576. tick() {
  577. if (!this.inVr) {
  578. if (this.moving) {
  579. this.el.emit("move", this.moveEvent);
  580. }
  581. // if (this.rotating) {
  582. // this.el.emit("rotateY", this.rotateYEvent);
  583. // this.el.emit("rotateX", this.rotateXEvent);
  584. // }
  585. }
  586. },
  587. onEnterVr() {
  588. // Hide the joystick controls
  589. this.inVr = true;
  590. this.leftTouchZone.style.display = "none";
  591. // this.rightTouchZone.style.display = "none";
  592. },
  593. onExitVr() {
  594. // Show the joystick controls
  595. this.inVr = false;
  596. this.leftTouchZone.style.display = "block";
  597. // this.rightTouchZone.style.display = "block";
  598. },
  599. remove() {
  600. this.el.sceneEl.removeEventListener("entervr", this.onEnterVr);
  601. this.el.sceneEl.removeEventListener("exitvr", this.onExitVr);
  602. if (document.getElementsByClassName('mockJoystickContainer').length > 0){
  603. document.body.removeChild(this.mockJoystickContainer);
  604. }
  605. document.body.removeChild(this.leftTouchZone);
  606. // document.body.removeChild(this.rightTouchZone);
  607. }
  608. });
  609. ///MIRROR//
  610. THREE.ShaderLib[ 'mirror' ] = {
  611. uniforms: {
  612. "mirrorColor": { value: new THREE.Color( 0x7F7F7F ) },
  613. "mirrorSampler": { value: null },
  614. "textureMatrix" : { value: new THREE.Matrix4() }
  615. },
  616. vertexShader: [
  617. "uniform mat4 textureMatrix;",
  618. "varying vec4 mirrorCoord;",
  619. "void main() {",
  620. "vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",
  621. "vec4 worldPosition = modelMatrix * vec4( position, 1.0 );",
  622. "mirrorCoord = textureMatrix * worldPosition;",
  623. "gl_Position = projectionMatrix * mvPosition;",
  624. "}"
  625. ].join( "\n" ),
  626. fragmentShader: [
  627. "uniform vec3 mirrorColor;",
  628. "uniform sampler2D mirrorSampler;",
  629. "varying vec4 mirrorCoord;",
  630. "float blendOverlay(float base, float blend) {",
  631. "return( base < 0.5 ? ( 2.0 * base * blend ) : (1.0 - 2.0 * ( 1.0 - base ) * ( 1.0 - blend ) ) );",
  632. "}",
  633. "void main() {",
  634. "vec4 color = texture2DProj(mirrorSampler, mirrorCoord);",
  635. "color = vec4(blendOverlay(mirrorColor.r, color.r), blendOverlay(mirrorColor.g, color.g), blendOverlay(mirrorColor.b, color.b), 1.0);",
  636. "gl_FragColor = color;",
  637. "}"
  638. ].join( "\n" )
  639. };
  640. THREE.Mirror = function ( renderer, camera, options ) {
  641. THREE.Object3D.call( this );
  642. this.name = 'mirror_' + this.id;
  643. options = options || {};
  644. this.matrixNeedsUpdate = true;
  645. var width = options.textureWidth !== undefined ? options.textureWidth : 512;
  646. var height = options.textureHeight !== undefined ? options.textureHeight : 512;
  647. this.clipBias = options.clipBias !== undefined ? options.clipBias : 0.0;
  648. var mirrorColor = options.color !== undefined ? new THREE.Color( options.color ) : new THREE.Color( 0x7F7F7F );
  649. this.renderer = renderer;
  650. this.mirrorPlane = new THREE.Plane();
  651. this.normal = new THREE.Vector3( 0, 0, 1 );
  652. this.mirrorWorldPosition = new THREE.Vector3();
  653. this.cameraWorldPosition = new THREE.Vector3();
  654. this.rotationMatrix = new THREE.Matrix4();
  655. this.lookAtPosition = new THREE.Vector3( 0, 0, - 1 );
  656. this.clipPlane = new THREE.Vector4();
  657. // For debug only, show the normal and plane of the mirror
  658. var debugMode = options.debugMode !== undefined ? options.debugMode : false;
  659. if ( debugMode ) {
  660. var arrow = new THREE.ArrowHelper( new THREE.Vector3( 0, 0, 1 ), new THREE.Vector3( 0, 0, 0 ), 10, 0xffff80 );
  661. var planeGeometry = new THREE.Geometry();
  662. planeGeometry.vertices.push( new THREE.Vector3( - 10, - 10, 0 ) );
  663. planeGeometry.vertices.push( new THREE.Vector3( 10, - 10, 0 ) );
  664. planeGeometry.vertices.push( new THREE.Vector3( 10, 10, 0 ) );
  665. planeGeometry.vertices.push( new THREE.Vector3( - 10, 10, 0 ) );
  666. planeGeometry.vertices.push( planeGeometry.vertices[ 0 ] );
  667. var plane = new THREE.Line( planeGeometry, new THREE.LineBasicMaterial( { color: 0xffff80 } ) );
  668. this.add( arrow );
  669. this.add( plane );
  670. }
  671. if ( camera instanceof THREE.PerspectiveCamera ) {
  672. this.camera = camera;
  673. } else {
  674. this.camera = new THREE.PerspectiveCamera();
  675. console.log( this.name + ': camera is not a Perspective Camera!' );
  676. }
  677. this.textureMatrix = new THREE.Matrix4();
  678. this.mirrorCamera = this.camera.clone();
  679. this.mirrorCamera.matrixAutoUpdate = true;
  680. var parameters = { minFilter: THREE.LinearFilter, magFilter: THREE.LinearFilter, format: THREE.RGBFormat, stencilBuffer: false };
  681. //this.currentRenderTarget = this.renderer.getRenderTarget();
  682. this.renderTarget = new THREE.WebGLRenderTarget( width, height, parameters );
  683. this.renderTarget2 = new THREE.WebGLRenderTarget( width, height, parameters );
  684. var mirrorShader = THREE.ShaderLib[ "mirror" ];
  685. var mirrorUniforms = THREE.UniformsUtils.clone( mirrorShader.uniforms );
  686. this.material = new THREE.ShaderMaterial( {
  687. fragmentShader: mirrorShader.fragmentShader,
  688. vertexShader: mirrorShader.vertexShader,
  689. uniforms: mirrorUniforms
  690. } );
  691. this.material.uniforms.mirrorSampler.value = this.renderTarget.texture;
  692. this.material.uniforms.mirrorColor.value = mirrorColor;
  693. this.material.uniforms.textureMatrix.value = this.textureMatrix;
  694. if ( ! THREE.Math.isPowerOfTwo( width ) || ! THREE.Math.isPowerOfTwo( height ) ) {
  695. this.renderTarget.texture.generateMipmaps = false;
  696. this.renderTarget2.texture.generateMipmaps = false;
  697. }
  698. this.updateTextureMatrix();
  699. this.render();
  700. };
  701. THREE.Mirror.prototype = Object.create( THREE.Object3D.prototype );
  702. THREE.Mirror.prototype.constructor = THREE.Mirror;
  703. THREE.Mirror.prototype.renderWithMirror = function ( otherMirror, aScene ) {
  704. // update the mirror matrix to mirror the current view
  705. this.updateTextureMatrix();
  706. this.matrixNeedsUpdate = false;
  707. // set the camera of the other mirror so the mirrored view is the reference view
  708. var tempCamera = otherMirror.camera;
  709. otherMirror.camera = this.mirrorCamera;
  710. // render the other mirror in temp texture
  711. otherMirror.renderTemp(aScene);
  712. otherMirror.material.uniforms.mirrorSampler.value = otherMirror.renderTarget2.texture;
  713. // render the current mirror
  714. this.render(aScene);
  715. this.matrixNeedsUpdate = true;
  716. // restore material and camera of other mirror
  717. otherMirror.material.uniforms.mirrorSampler.value = otherMirror.renderTarget.texture;
  718. otherMirror.camera = tempCamera;
  719. // restore texture matrix of other mirror
  720. otherMirror.updateTextureMatrix();
  721. };
  722. THREE.Mirror.prototype.updateTextureMatrix = function () {
  723. this.updateMatrixWorld();
  724. this.camera.updateMatrixWorld();
  725. this.mirrorWorldPosition.setFromMatrixPosition( this.matrixWorld );
  726. this.cameraWorldPosition.setFromMatrixPosition( this.camera.matrixWorld );
  727. this.rotationMatrix.extractRotation( this.matrixWorld );
  728. this.normal.set( 0, 0, 1 );
  729. this.normal.applyMatrix4( this.rotationMatrix );
  730. var view = this.mirrorWorldPosition.clone().sub( this.cameraWorldPosition );
  731. view.reflect( this.normal ).negate();
  732. view.add( this.mirrorWorldPosition );
  733. this.rotationMatrix.extractRotation( this.camera.matrixWorld );
  734. this.lookAtPosition.set( 0, 0, - 1 );
  735. this.lookAtPosition.applyMatrix4( this.rotationMatrix );
  736. this.lookAtPosition.add( this.cameraWorldPosition );
  737. var target = this.mirrorWorldPosition.clone().sub( this.lookAtPosition );
  738. target.reflect( this.normal ).negate();
  739. target.add( this.mirrorWorldPosition );
  740. this.up.set( 0, - 1, 0 );
  741. this.up.applyMatrix4( this.rotationMatrix );
  742. this.up.reflect( this.normal ).negate();
  743. this.mirrorCamera.position.copy( view );
  744. this.mirrorCamera.up = this.up;
  745. this.mirrorCamera.lookAt( target );
  746. this.mirrorCamera.updateProjectionMatrix();
  747. this.mirrorCamera.updateMatrixWorld();
  748. this.mirrorCamera.matrixWorldInverse.getInverse( this.mirrorCamera.matrixWorld );
  749. // Update the texture matrix
  750. this.textureMatrix.set( 0.5, 0.0, 0.0, 0.5,
  751. 0.0, 0.5, 0.0, 0.5,
  752. 0.0, 0.0, 0.5, 0.5,
  753. 0.0, 0.0, 0.0, 1.0 );
  754. this.textureMatrix.multiply( this.mirrorCamera.projectionMatrix );
  755. this.textureMatrix.multiply( this.mirrorCamera.matrixWorldInverse );
  756. // Now update projection matrix with new clip plane, implementing code from: http://www.terathon.com/code/oblique.html
  757. // Paper explaining this technique: http://www.terathon.com/lengyel/Lengyel-Oblique.pdf
  758. this.mirrorPlane.setFromNormalAndCoplanarPoint( this.normal, this.mirrorWorldPosition );
  759. this.mirrorPlane.applyMatrix4( this.mirrorCamera.matrixWorldInverse );
  760. this.clipPlane.set( this.mirrorPlane.normal.x, this.mirrorPlane.normal.y, this.mirrorPlane.normal.z, this.mirrorPlane.constant );
  761. var q = new THREE.Vector4();
  762. var projectionMatrix = this.mirrorCamera.projectionMatrix;
  763. q.x = ( Math.sign( this.clipPlane.x ) + projectionMatrix.elements[ 8 ] ) / projectionMatrix.elements[ 0 ];
  764. q.y = ( Math.sign( this.clipPlane.y ) + projectionMatrix.elements[ 9 ] ) / projectionMatrix.elements[ 5 ];
  765. q.z = - 1.0;
  766. q.w = ( 1.0 + projectionMatrix.elements[ 10 ] ) / projectionMatrix.elements[ 14 ];
  767. // Calculate the scaled plane vector
  768. var c = new THREE.Vector4();
  769. c = this.clipPlane.multiplyScalar( 2.0 / this.clipPlane.dot( q ) );
  770. // Replacing the third row of the projection matrix
  771. projectionMatrix.elements[ 2 ] = c.x;
  772. projectionMatrix.elements[ 6 ] = c.y;
  773. projectionMatrix.elements[ 10 ] = c.z + 1.0 - this.clipBias;
  774. projectionMatrix.elements[ 14 ] = c.w;
  775. };
  776. THREE.Mirror.prototype.render = function (aScene) {
  777. if ( this.matrixNeedsUpdate ) this.updateTextureMatrix();
  778. this.matrixNeedsUpdate = true;
  779. // Render the mirrored view of the current scene into the target texture
  780. //var scene = aScene //this;
  781. // while ( scene.parent !== null ) {
  782. // scene = scene.parent;
  783. // }
  784. //this.renderer.setRenderTarget( null );
  785. if ( aScene !== undefined) //&& scene instanceof THREE.Scene )
  786. {
  787. // We can't render ourself to ourself
  788. var visible = this.material.visible;
  789. this.material.visible = false;
  790. this.renderer.clear();
  791. this.renderer.setRenderTarget( this.renderTarget);
  792. this.renderer.render( aScene.object3D, this.mirrorCamera);
  793. this.renderer.setRenderTarget(null);
  794. //this.renderer.render( scene, this.mirrorCamera, this.renderTarget, true );
  795. this.material.visible = visible;
  796. }
  797. };
  798. THREE.Mirror.prototype.renderTemp = function (aScene) {
  799. if ( this.matrixNeedsUpdate ) this.updateTextureMatrix();
  800. this.matrixNeedsUpdate = true;
  801. // Render the mirrored view of the current scene into the target texture
  802. // var scene = this;
  803. // while ( scene.parent !== null ) {
  804. // scene = scene.parent;
  805. // }
  806. if ( aScene !== undefined) //&& scene instanceof THREE.Scene ) {
  807. {
  808. this.renderer.clear();
  809. this.renderer.setRenderTarget( this.renderTarget2);
  810. this.renderer.render( aScene.object3D, this.mirrorCamera );
  811. this.renderer.setRenderTarget( null );
  812. //this.renderer.render( scene, this.mirrorCamera, this.renderTarget2, true );
  813. }
  814. };
  815. AFRAME.registerComponent('mirror', {
  816. schema:{
  817. renderothermirror:{default:true},
  818. camera:{default: 'avatarControl'}
  819. },
  820. init: function () {
  821. var scene = this.el.sceneEl;
  822. this.cameraID = this.data.camera;
  823. scene.addEventListener('render-target-loaded',this.OnRenderLoaded()); //this.OnRenderLoaded.bind(this)
  824. },
  825. // update: function (old) {
  826. // this.cameraID = this.data.camera;
  827. // this.OnRenderLoaded();
  828. // },
  829. OnRenderLoaded: function()
  830. {
  831. var mirrorObj = this.el.getOrCreateObject3D('mesh',THREE.Mesh);
  832. // var cameraEl = document.querySelector('a-entity[camera]')
  833. // if(!cameraEl)
  834. // {
  835. // cameraEl = document.querySelector('a-camera');
  836. // }
  837. // var camera = cameraEl.components.camera.camera;
  838. let cameraEl = document.querySelector("[id='" + this.cameraID + "']")
  839. if (cameraEl){
  840. let camera = cameraEl.getObject3D('camera'); //document.querySelector('#avatarControl').getObject3D('camera');
  841. var scene = this.el.sceneEl;
  842. // this.renderer = new THREE.WebGLRenderer({
  843. // antialias: true,
  844. // });
  845. this.renderer = scene.renderer;
  846. this.mirror = new THREE.Mirror( this.renderer, camera, { clipBias: 0.003, textureWidth: window.innerWidth, textureHeight: window.innerHeight, color: 0x777777, debugMode: false} );
  847. mirrorObj.material = this.mirror.material;
  848. //mirrorObj.children = [];
  849. mirrorObj.add(this.mirror);
  850. }
  851. //As of A-Frame tick (behaviours) priority issue need to place mirror tick onto upper tick()
  852. this.el.sceneEl.components['scene-utils'].mirrors[this.el.id] = this;
  853. },
  854. remove: function () {
  855. delete this.el.sceneEl.components['scene-utils'].mirrors[this.el.id]
  856. },
  857. mirrorTick: function () {
  858. // //this.mirror.render();
  859. if(!this.data.renderothermirror)
  860. {
  861. this.mirror.render(this.el.sceneEl);
  862. }
  863. else
  864. {
  865. var mirrors = [];
  866. var mirrorEls = document.querySelectorAll("[mirror]");
  867. for(var i=0;i<mirrorEls.length;i++)
  868. {
  869. if(mirrorEls[i]!=this.el)
  870. {
  871. mirrors.push(mirrorEls[i].components.mirror.mirror);
  872. }
  873. }
  874. if(mirrors.length === 0)
  875. {
  876. this.mirror.render(this.el.sceneEl);
  877. }
  878. for(var i = 0; i<mirrors.length;i++)
  879. {
  880. this.mirror.renderWithMirror(mirrors[i], this.el.sceneEl);
  881. }
  882. }
  883. },
  884. // tick: function () {
  885. // }
  886. });