167 lines
5.5 KiB
JavaScript
167 lines
5.5 KiB
JavaScript
/**
|
|
* Controller, cursor, raycaster.
|
|
*/
|
|
AFRAME.registerComponent('saber-controls', {
|
|
schema: {
|
|
bladeEnabled: {default: false},
|
|
hand: {default: 'right', oneOf: ['left', 'right']},
|
|
isPaused: {default: false},
|
|
strokeMinSpeed: {default: 10000},
|
|
strokeMinAngle: {default: 5}
|
|
},
|
|
|
|
init: function () {
|
|
var el = this.el;
|
|
var data = this.data;
|
|
|
|
this.boundingBox = new THREE.Box3();
|
|
this.controllerType = '';
|
|
this.xPlaneNormal = new THREE.Vector3(0, 1, 0);
|
|
this.yPlaneNormal = new THREE.Vector3(1, 0, 0);
|
|
this.xyPlaneNormal = new THREE.Vector3(1, 1, 0);
|
|
this.bladeTipPosition = new THREE.Vector3();
|
|
this.bladePosition = new THREE.Vector3();
|
|
this.bladeVector = new THREE.Vector3();
|
|
this.bladeTipPreviousPosition = new THREE.Vector3();
|
|
this.projectedBladeVector = new THREE.Vector3();
|
|
this.saberPosition = new THREE.Vector3();
|
|
this.swinging = false;
|
|
this.strokeCount = 0;
|
|
this.distanceSamples = [];
|
|
this.accumulatedDistance = 0;
|
|
|
|
el.addEventListener('controllerconnected', this.initSaber.bind(this));
|
|
|
|
const hand = {hand: data.hand, model: false};
|
|
el.setAttribute('oculus-touch-controls', hand);
|
|
el.setAttribute('vive-controls', hand);
|
|
el.setAttribute('windows-motion-controls', hand);
|
|
|
|
this.bladeEl = this.el.querySelector('.blade');
|
|
},
|
|
|
|
update: function (oldData) {
|
|
if (!oldData.bladeEnabled && this.data.bladeEnabled) {
|
|
this.bladeEl.emit('drawblade');
|
|
}
|
|
},
|
|
|
|
tick: function (time, delta) {
|
|
if (!this.data.bladeEnabled) { return; }
|
|
this.boundingBox.setFromObject(this.bladeEl.getObject3D('mesh'));
|
|
this.detectStroke(delta);
|
|
},
|
|
|
|
detectStroke: function (delta) {
|
|
var distance;
|
|
var distanceSamples = this.distanceSamples;
|
|
var data = this.data;
|
|
var directionChange;
|
|
var startSpeed;
|
|
var strokeMinSpeed = this.swinging ? startSpeed : this.data.strokeMinSpeed;
|
|
|
|
// Tip of the blade position in world coordinates.
|
|
this.bladeTipPosition.set(0, 0, -0.8);
|
|
this.bladePosition.set(0, 0, 0);
|
|
|
|
const saberObj = this.el.object3D;
|
|
saberObj.parent.updateMatrixWorld();
|
|
saberObj.localToWorld(this.bladeTipPosition);
|
|
saberObj.localToWorld(this.bladePosition);
|
|
|
|
// Angles between saber and major planes.
|
|
this.bladeVector.copy(this.bladeTipPosition).sub(this.bladePosition).normalize();
|
|
var anglePlaneX = this.projectedBladeVector.copy(this.bladeTipPosition).projectOnPlane(this.xPlaneNormal).angleTo(this.bladeVector);
|
|
var anglePlaneY = this.projectedBladeVector.copy(this.bladeTipPosition).projectOnPlane(this.yPlaneNormal).angleTo(this.bladeVector);
|
|
var anglePlaneXY = this.projectedBladeVector.copy(this.bladeTipPosition).projectOnPlane(this.xyPlaneNormal).angleTo(this.bladeVector);
|
|
|
|
// Distance covered but the saber tip in one frame.
|
|
distance = this.bladeTipPreviousPosition.sub(this.bladeTipPosition).length() * 1000000;
|
|
|
|
// Sample distance of the last 5 frames.
|
|
if (this.distanceSamples.length === 5) {
|
|
this.accumulatedDistance -= this.distanceSamples.shift();
|
|
}
|
|
this.distanceSamples.push(distance);
|
|
this.accumulatedDistance += distance;
|
|
|
|
// Filter out saber movements that are too slow. Too slow is considered wrong hit.
|
|
if (this.accumulatedDistance > this.data.strokeMinSpeed) {
|
|
// Saber has to move more than strokeMinAngle to consider a swing.
|
|
// This filters out unintentional swings.
|
|
if (!this.swinging) {
|
|
startSpeed = this.accumulatedDistance;
|
|
this.swinging = true;
|
|
this.maxAnglePlaneX = 0;
|
|
this.maxAnglePlaneY = 0;
|
|
this.maxAnglePlaneXY = 0;
|
|
}
|
|
const anglePlaneXIncreased = anglePlaneX > this.maxAnglePlaneX;
|
|
const anglePlaneYIncreased = anglePlaneY > this.maxAnglePlaneY;
|
|
const anglePlaneXYIncreased = anglePlaneXY > this.maxAnglePlaneXY;
|
|
this.maxAnglePlaneX = anglePlaneXIncreased ? anglePlaneX : this.maxAnglePlaneX;
|
|
this.maxAnglePlaneY = anglePlaneYIncreased ? anglePlaneY : this.maxAnglePlaneY;
|
|
this.maxAnglePlaneXY = anglePlaneXYIncreased ? anglePlaneXY : this.maxAnglePlaneXY;
|
|
if (!anglePlaneXIncreased && !anglePlaneYIncreased) { this.endStroke(); }
|
|
} else {
|
|
// Stroke finishes. Reset swinging state.
|
|
this.swinging = false;
|
|
this.endStroke();
|
|
}
|
|
|
|
this.bladeTipPreviousPosition.copy(this.bladeTipPosition);
|
|
},
|
|
|
|
endStroke: function () {
|
|
this.el.emit('strokeend');
|
|
if (this.swinging) { return; }
|
|
this.accumulatedDistance = 0;
|
|
this.maxAnglePlaneX = 0;
|
|
this.maxAnglePlaneY = 0;
|
|
this.maxAnglePlaneXY = 0;
|
|
for (let i = 0; i < this.distanceSamples.length; i++) { this.distanceSamples[i] = 0; }
|
|
},
|
|
|
|
initSaber: function (evt) {
|
|
this.controllerType = evt.detail.name;
|
|
this.el.setAttribute('cursor', this.config[this.controllerType].cursor || {});
|
|
},
|
|
|
|
config: {
|
|
'oculus-touch-controls': {
|
|
cursor: {
|
|
downEvents: [
|
|
'triggerdown',
|
|
'gripdown',
|
|
'abuttondown',
|
|
'bbuttondown',
|
|
'xbuttondown',
|
|
'ybuttondown'
|
|
],
|
|
upEvents: [
|
|
'triggerup',
|
|
'gripup',
|
|
'abuttonup',
|
|
'bbuttonup',
|
|
'xbuttonup',
|
|
'ybuttonup'
|
|
]
|
|
}
|
|
},
|
|
|
|
'vive-controls': {
|
|
cursor: {
|
|
downEvents: ['trackpaddown', 'triggerdown', 'gripdown'],
|
|
upEvents: ['trackpadup', 'triggerup', 'gripup']
|
|
}
|
|
},
|
|
|
|
'windows-motion-controls': {
|
|
cursor: {
|
|
downEvents: ['trackpaddown', 'triggerdown', 'gripdown'],
|
|
upEvents: ['trackpadup', 'triggerup', 'gripup']
|
|
}
|
|
}
|
|
}
|
|
});
|