/** * @author mrdoob / http://mrdoob.com/ */ function WebVRManager( renderer ) { var scope = this; var device = null; var frameData = null; if ( 'VRFrameData' in window ) { frameData = new window.VRFrameData(); } var matrixWorldInverse = new Matrix4(); var standingMatrix = new Matrix4(); var standingMatrixInverse = new Matrix4(); var cameraL = new PerspectiveCamera(); cameraL.bounds = new Vector4( 0.0, 0.0, 0.5, 1.0 ); cameraL.layers.enable( 1 ); var cameraR = new PerspectiveCamera(); cameraR.bounds = new Vector4( 0.5, 0.0, 0.5, 1.0 ); cameraR.layers.enable( 2 ); var cameraVR = new ArrayCamera( [ cameraL, cameraR ] ); // var currentSize, currentPixelRatio; function onVRDisplayPresentChange() { if ( device.isPresenting ) { var eyeParameters = device.getEyeParameters( 'left' ); var renderWidth = eyeParameters.renderWidth; var renderHeight = eyeParameters.renderHeight; currentPixelRatio = renderer.getPixelRatio(); currentSize = renderer.getSize(); renderer.setPixelRatio( 1 ); renderer.setSize( renderWidth * 2, renderHeight, false ); } else if ( scope.enabled ) { renderer.setPixelRatio( currentPixelRatio ); renderer.setSize( currentSize.width, currentSize.height, true ); } } window.addEventListener( 'vrdisplaypresentchange', onVRDisplayPresentChange, false ); // this.enabled = false; this.standing = false; this.getDevice = function () { return device; }; this.setDevice = function ( value ) { if ( value !== undefined ) device = value; }; this.getCamera = function ( camera ) { if ( device === null ) return camera; device.depthNear = camera.near; device.depthFar = camera.far; device.getFrameData( frameData ); // var pose = frameData.pose; if ( pose.position !== null ) { camera.position.fromArray( pose.position ); } else { camera.position.set( 0, 0, 0 ); } if ( pose.orientation !== null ) { camera.quaternion.fromArray( pose.orientation ); } camera.updateMatrixWorld(); var stageParameters = device.stageParameters; if ( this.standing && stageParameters ) { standingMatrix.fromArray( stageParameters.sittingToStandingTransform ); standingMatrixInverse.getInverse( standingMatrix ); camera.matrixWorld.multiply( standingMatrix ); camera.matrixWorldInverse.multiply( standingMatrixInverse ); } if ( device.isPresenting === false ) return camera; // cameraVR.matrixWorld.copy( camera.matrixWorld ); cameraVR.matrixWorldInverse.copy( camera.matrixWorldInverse ); cameraL.matrixWorldInverse.fromArray( frameData.leftViewMatrix ); cameraR.matrixWorldInverse.fromArray( frameData.rightViewMatrix ); if ( this.standing && stageParameters ) { cameraL.matrixWorldInverse.multiply( standingMatrixInverse ); cameraR.matrixWorldInverse.multiply( standingMatrixInverse ); } var parent = camera.parent; if ( parent !== null ) { matrixWorldInverse.getInverse( parent.matrixWorld ); cameraL.matrixWorldInverse.multiply( matrixWorldInverse ); cameraR.matrixWorldInverse.multiply( matrixWorldInverse ); } cameraL.projectionMatrix.fromArray( frameData.leftProjectionMatrix ); cameraR.projectionMatrix.fromArray( frameData.rightProjectionMatrix ); // HACK @mrdoob // https://github.com/w3c/webvr/issues/203 cameraVR.projectionMatrix.copy( cameraL.projectionMatrix ); // var layers = device.getLayers(); if ( layers.length ) { var layer = layers[ 0 ]; if ( layer.leftBounds !== null && layer.leftBounds.length === 4 ) { cameraL.bounds.fromArray( layer.leftBounds ); } if ( layer.rightBounds !== null && layer.rightBounds.length === 4 ) { cameraR.bounds.fromArray( layer.rightBounds ); } } return cameraVR; }; this.getStandingMatrix = function () { return standingMatrix; }; this.submitFrame = function () { if ( device && device.isPresenting ) device.submitFrame(); }; } export { WebVRManager };