Skip to content
Snippets Groups Projects
Commit eec31bea authored by Dominick D'Aniello's avatar Dominick D'Aniello
Browse files

Fix ratchet turning to turn about the HMD rather than tracking space

parent d3e801ac
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
</script> </script>
</a-assets> </a-assets>
<a-entity id="player-rig" networked wasd-controls snap-rotation="leftEventSrc: #right-hand; rightEventSrc: #right-hand"> <a-entity id="player-rig" networked wasd-controls snap-rotation="leftEventSrc: #right-hand; rightEventSrc: #right-hand; pivotSrc: #head">
<a-entity <a-entity
id="head" id="head"
camera="userHeight: 1.6" camera="userHeight: 1.6"
...@@ -74,6 +74,7 @@ ...@@ -74,6 +74,7 @@
geometry="primitive: plane; width: 100; height: 100;" rotation="-90 0 0" geometry="primitive: plane; width: 100; height: 100;" rotation="-90 0 0"
material="shader: flat; src: #grid; repeat: 100 100;"></a-entity> material="shader: flat; src: #grid; repeat: 100 100;"></a-entity>
<a-sky src="#sky" rotation="0 -90 0"></a-sky> <a-sky src="#sky" rotation="0 -90 0"></a-sky>
<a-box></a-box>
</a-scene> </a-scene>
<script> <script>
document.querySelector('a-scene').addEventListener('loaded', onSceneLoad) document.querySelector('a-scene').addEventListener('loaded', onSceneLoad)
......
...@@ -17,13 +17,23 @@ AFRAME.registerComponent("snap-rotation", { ...@@ -17,13 +17,23 @@ AFRAME.registerComponent("snap-rotation", {
rightKey: { default: "e" }, rightKey: { default: "e" },
rightEvent: { default: "dpadrightdown" }, rightEvent: { default: "dpadrightdown" },
rightEventSrc: { type: "selector" } rightEventSrc: { type: "selector" },
pivotSrc: { type: "selector" }
}, },
init: function() { init: function() {
this.onButtonPressed = this.onButtonPressed.bind(this); this.onButtonPressed = this.onButtonPressed.bind(this);
}, },
update: function() {
const {rotationAxis, rotationDegres} = this.data;
const angle = rotationDegres * THREE.Math.DEG2RAD;
this.lRotMat = new THREE.Matrix4().makeRotationAxis(rotationAxis, angle);
this.rRotMat = new THREE.Matrix4().makeRotationAxis(rotationAxis, -angle);
},
play: function() { play: function() {
const { leftEventSrc, leftEvent, rightEventSrc, rightEvent } = this.data; const { leftEventSrc, leftEvent, rightEventSrc, rightEvent } = this.data;
window.addEventListener("keypress", this.onButtonPressed); window.addEventListener("keypress", this.onButtonPressed);
...@@ -42,28 +52,49 @@ AFRAME.registerComponent("snap-rotation", { ...@@ -42,28 +52,49 @@ AFRAME.registerComponent("snap-rotation", {
leftEventSrc.removeEventListener(leftEvent, this.onButtonPressed); leftEventSrc.removeEventListener(leftEvent, this.onButtonPressed);
}, },
onButtonPressed: function(e) { onButtonPressed: (function() {
const { const trans = new THREE.Matrix4();
rotationAxis, const transInv = new THREE.Matrix4();
rotationDegres, const pivotPos = new THREE.Vector3();
leftKey,
leftEvent, return function(e) {
rightKey, const {
rightEvent rotationAxis,
} = this.data; rotationDegres,
const obj = this.el.object3D; leftKey,
leftEvent,
rightKey,
rightEvent,
pivotSrc
} = this.data;
var rot;
if (e.type === leftEvent || (leftKey && e.key === leftKey)) {
rot = this.lRotMat;
} else if (e.type === rightEvent || (rightKey && e.key === rightKey)) {
rot = this.rRotMat;
} else {
return;
}
const obj = this.el.object3D;
const pivot = pivotSrc.object3D;
if (e.type === leftEvent || (leftKey && e.key === leftKey)) { pivotPos.copy(pivot.position);
obj.rotateOnAxis(rotationAxis, rotationDegres * THREE.Math.DEG2RAD); pivotPos.applyMatrix4(obj.matrix);
} else if (e.type === rightEvent || (rightKey && e.key === rightKey)) { trans.setPosition(pivotPos);
obj.rotateOnAxis(rotationAxis, -rotationDegres * THREE.Math.DEG2RAD); transInv.makeTranslation(-pivotPos.x, -pivotPos.y, -pivotPos.z);
} obj.applyMatrix(transInv);
obj.applyMatrix(rot);
obj.applyMatrix(trans);
// @TODO this is really ugly, can't just set the rotation directly or it wont network // @TODO this is really ugly, can't just set the position/rotation directly or they wont network
this.el.setAttribute("rotation", { this.el.setAttribute("rotation", {
x: obj.rotation.x * THREE.Math.RAD2DEG, x: obj.rotation.x * THREE.Math.RAD2DEG,
y: obj.rotation.y * THREE.Math.RAD2DEG, y: obj.rotation.y * THREE.Math.RAD2DEG,
z: obj.rotation.z * THREE.Math.RAD2DEG z: obj.rotation.z * THREE.Math.RAD2DEG
}); });
} this.el.setAttribute("position", obj.position);
};
})()
}); });
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment