123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789 |
- module BABYLON {
- export interface VRTeleportationOptions {
- floorMeshName?: string; // If you'd like to provide a mesh acting as the floor
- }
- export class VRExperienceHelper {
- private _scene: BABYLON.Scene;
- private _position: Vector3;
- private _btnVR: HTMLButtonElement;
- // Can the system support WebVR, even if a headset isn't plugged in?
- private _webVRsupported = false;
- // If WebVR is supported, is a headset plugged in and are we ready to present?
- private _webVRready = false;
- // Are we waiting for the requestPresent callback to complete?
- private _webVRrequesting = false;
- // Are we presenting to the headset right now?
- private _webVRpresenting = false;
- // Are we presenting in the fullscreen fallback?
- private _fullscreenVRpresenting = false;
- private _canvas: Nullable<HTMLCanvasElement>;
- private _webVRCamera: WebVRFreeCamera;
- private _vrDeviceOrientationCamera: VRDeviceOrientationFreeCamera;
- private _deviceOrientationCamera: DeviceOrientationCamera;
-
- private _onKeyDown: (event: KeyboardEvent) => void;
- private _onVrDisplayPresentChange: any;
- private _onVRDisplayChanged: (eventArgs:IDisplayChangedEventArgs) => void;
- private _onVRRequestPresentStart: () => void;
- private _onVRRequestPresentComplete: (success: boolean) => void;
-
- public onEnteringVR: () => void;
- public onExitingVR: () => void;
- public onControllerMeshLoaded: (controller: WebVRController) => void;
- private _useCustomVRButton: boolean = false;
- private _teleportationRequested: boolean = false;
- private _teleportationEnabledOnLeftController: boolean = false;
- private _teleportationEnabledOnRightController: boolean = false;
- private _leftControllerReady: boolean = false;
- private _rightControllerReady: boolean = false;
- private _floorMeshName: string;
- private _teleportationAllowed: boolean = false;
- private _rotationAllowed: boolean = true;
- private _teleportationRequestInitiated = false;
- private _xboxGamepadTeleportationRequestInitiated = false;
- private _rotationRightAsked = false;
- private _rotationLeftAsked = false;
- private _teleportationCircle: BABYLON.Mesh;
- private _postProcessMove: ImageProcessingPostProcess;
- private _teleportationFillColor: string = "#444444";
- private _teleportationBorderColor: string = "#FFFFFF";
- private _rotationAngle: number = 0;
- private _haloCenter = new BABYLON.Vector3(0, 0, 0);
- private _rayHelper: RayHelper;
- public meshSelectionPredicate: (mesh: BABYLON.Mesh) => boolean;
- public get deviceOrientationCamera(): DeviceOrientationCamera {
- return this._deviceOrientationCamera;
- }
- // Based on the current WebVR support, returns the current VR camera used
- public get currentVRCamera(): FreeCamera {
- if (this._webVRready) {
- return this._webVRCamera;
- }
- else {
- return this._vrDeviceOrientationCamera;
- }
- }
- public get webVRCamera(): WebVRFreeCamera {
- return this._webVRCamera;
- }
- public get vrDeviceOrientationCamera(): VRDeviceOrientationFreeCamera {
- return this._vrDeviceOrientationCamera;
- }
-
- constructor(scene: Scene, public webVROptions: WebVROptions = {}) {
- this._scene = scene;
- if (!this._scene.activeCamera || isNaN(this._scene.activeCamera.position.x)) {
- this._position = new BABYLON.Vector3(0, 2, 0);
- this._deviceOrientationCamera = new BABYLON.DeviceOrientationCamera("deviceOrientationVRHelper", new BABYLON.Vector3(0, 2, 0), scene);
- }
- else {
- this._position = this._scene.activeCamera.position.clone();
- this._deviceOrientationCamera = new BABYLON.DeviceOrientationCamera("deviceOrientationVRHelper", this._position, scene);
- this._deviceOrientationCamera.minZ = this._scene.activeCamera.minZ;
- this._deviceOrientationCamera.maxZ = this._scene.activeCamera.maxZ;
- }
- this._scene.activeCamera = this._deviceOrientationCamera;
- this._canvas = scene.getEngine().getRenderingCanvas();
- if (this._canvas) {
- this._scene.activeCamera.attachControl(this._canvas);
- }
- if (webVROptions) {
- if (webVROptions.useCustomVRButton) {
- this._useCustomVRButton = true;
- if (webVROptions.customVRButton) {
- this._btnVR = webVROptions.customVRButton;
- }
- }
- }
- if (!this._useCustomVRButton) {
- this._btnVR = <HTMLButtonElement>document.createElement("BUTTON");
- this._btnVR.className = "babylonVRicon";
- this._btnVR.id = "babylonVRiconbtn";
- this._btnVR.title = "Click to switch to VR";
- var css = ".babylonVRicon { position: absolute; right: 20px; height: 50px; width: 80px; background-color: rgba(51,51,51,0.7); background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%222048%22%20height%3D%221152%22%20viewBox%3D%220%200%202048%201152%22%20version%3D%221.1%22%3E%3Cpath%20transform%3D%22rotate%28180%201024%2C576.0000000000001%29%22%20d%3D%22m1109%2C896q17%2C0%2030%2C-12t13%2C-30t-12.5%2C-30.5t-30.5%2C-12.5l-170%2C0q-18%2C0%20-30.5%2C12.5t-12.5%2C30.5t13%2C30t30%2C12l170%2C0zm-85%2C256q59%2C0%20132.5%2C-1.5t154.5%2C-5.5t164.5%2C-11.5t163%2C-20t150%2C-30t124.5%2C-41.5q23%2C-11%2042%2C-24t38%2C-30q27%2C-25%2041%2C-61.5t14%2C-72.5l0%2C-257q0%2C-123%20-47%2C-232t-128%2C-190t-190%2C-128t-232%2C-47l-81%2C0q-37%2C0%20-68.5%2C14t-60.5%2C34.5t-55.5%2C45t-53%2C45t-53%2C34.5t-55.5%2C14t-55.5%2C-14t-53%2C-34.5t-53%2C-45t-55.5%2C-45t-60.5%2C-34.5t-68.5%2C-14l-81%2C0q-123%2C0%20-232%2C47t-190%2C128t-128%2C190t-47%2C232l0%2C257q0%2C68%2038%2C115t97%2C73q54%2C24%20124.5%2C41.5t150%2C30t163%2C20t164.5%2C11.5t154.5%2C5.5t132.5%2C1.5zm939%2C-298q0%2C39%20-24.5%2C67t-58.5%2C42q-54%2C23%20-122%2C39.5t-143.5%2C28t-155.5%2C19t-157%2C11t-148.5%2C5t-129.5%2C1.5q-59%2C0%20-130%2C-1.5t-148%2C-5t-157%2C-11t-155.5%2C-19t-143.5%2C-28t-122%2C-39.5q-34%2C-14%20-58.5%2C-42t-24.5%2C-67l0%2C-257q0%2C-106%2040.5%2C-199t110%2C-162.5t162.5%2C-109.5t199%2C-40l81%2C0q27%2C0%2052%2C14t50%2C34.5t51%2C44.5t55.5%2C44.5t63.5%2C34.5t74%2C14t74%2C-14t63.5%2C-34.5t55.5%2C-44.5t51%2C-44.5t50%2C-34.5t52%2C-14l14%2C0q37%2C0%2070%2C0.5t64.5%2C4.5t63.5%2C12t68%2C23q71%2C30%20128.5%2C78.5t98.5%2C110t63.5%2C133.5t22.5%2C149l0%2C257z%22%20fill%3D%22white%22%20/%3E%3C/svg%3E%0A); background-size: 80%; background-repeat:no-repeat; background-position: center; border: none; outline: none; transition: transform 0.125s ease-out } .babylonVRicon:hover { transform: scale(1.05) } .babylonVRicon:active {background-color: rgba(51,51,51,1) } .babylonVRicon:focus {background-color: rgba(51,51,51,1) }";
- css += ".babylonVRicon.vrdisplaypresenting { display: none; }";
- // TODO: Add user feedback so that they know what state the VRDisplay is in (disconnected, connected, entering-VR)
- // css += ".babylonVRicon.vrdisplaysupported { }";
- // css += ".babylonVRicon.vrdisplayready { }";
- // css += ".babylonVRicon.vrdisplayrequesting { }";
- var style = document.createElement('style');
- style.appendChild(document.createTextNode(css));
- document.getElementsByTagName('head')[0].appendChild(style);
- }
- if (this._canvas) {
- if (!this._useCustomVRButton) {
- this._btnVR.style.top = this._canvas.offsetTop + this._canvas.offsetHeight - 70 + "px";
- this._btnVR.style.left = this._canvas.offsetLeft + this._canvas.offsetWidth - 100 + "px";
- }
- if (this._btnVR) {
- this._btnVR.addEventListener("click", () => {
- this.enterVR();
- });
- }
- window.addEventListener("resize", () => {
- if (this._canvas && !this._useCustomVRButton) {
- this._btnVR.style.top = this._canvas.offsetTop + this._canvas.offsetHeight - 70 + "px";
- this._btnVR.style.left = this._canvas.offsetLeft + this._canvas.offsetWidth - 100 + "px";
- }
- if (this._fullscreenVRpresenting && this._webVRready) {
- this.exitVR();
- }
- });
- }
- document.addEventListener("fullscreenchange", () => { this._onFullscreenChange() }, false);
- document.addEventListener("mozfullscreenchange", () => { this._onFullscreenChange() }, false);
- document.addEventListener("webkitfullscreenchange", () => { this._onFullscreenChange() }, false);
- document.addEventListener("msfullscreenchange", () => { this._onFullscreenChange() }, false);
- if (!this._useCustomVRButton) {
- document.body.appendChild(this._btnVR);
- }
- // Exiting VR mode using 'ESC' key on desktop
- this._onKeyDown = (event: KeyboardEvent) => {
- if (event.keyCode === 27 && this.isInVRMode()) {
- this.exitVR();
- }
- };
- document.addEventListener("keydown", this._onKeyDown);
- // Exiting VR mode double tapping the touch screen
- this._scene.onPrePointerObservable.add( (pointerInfo, eventState) => {
- if (this.isInVRMode()) {
- this.exitVR();
- if (this._fullscreenVRpresenting) {
- this._scene.getEngine().switchFullscreen(true);
- }
- }
- }, BABYLON.PointerEventTypes.POINTERDOUBLETAP, false);
-
- // Listen for WebVR display changes
- this._onVRDisplayChanged = (eventArgs:IDisplayChangedEventArgs) => this.onVRDisplayChanged(eventArgs);
- this._onVrDisplayPresentChange = () => this.onVrDisplayPresentChange();
- this._onVRRequestPresentStart = () => {
- this._webVRrequesting = true;
- this.updateButtonVisibility();
- }
- this._onVRRequestPresentComplete = (success: boolean) => {
- this._webVRrequesting = false;
- this.updateButtonVisibility();
- };
- scene.getEngine().onVRDisplayChangedObservable.add(this._onVRDisplayChanged);
- scene.getEngine().onVRRequestPresentStart.add(this._onVRRequestPresentStart);
- scene.getEngine().onVRRequestPresentComplete.add(this._onVRRequestPresentComplete);
- window.addEventListener('vrdisplaypresentchange', this._onVrDisplayPresentChange);
- // Create the cameras
- this._vrDeviceOrientationCamera = new BABYLON.VRDeviceOrientationFreeCamera("VRDeviceOrientationVRHelper", this._position, this._scene);
- this._webVRCamera = new BABYLON.WebVRFreeCamera("WebVRHelper", this._position, this._scene, webVROptions);
- this._webVRCamera.onControllerMeshLoadedObservable.add((webVRController) => this._onDefaultMeshLoaded(webVRController));
-
- this.updateButtonVisibility();
- }
- // Raised when one of the controller has loaded successfully its associated default mesh
- private _onDefaultMeshLoaded(webVRController: WebVRController) {
- if (webVRController.hand === "left") {
- this._leftControllerReady = true;
- if (this._teleportationRequested && !this._teleportationEnabledOnLeftController) {
- this._enableTeleportationOnController(webVRController);
- }
- }
- if (webVRController.hand === "right") {
- this._rightControllerReady = true;
- if (this._teleportationRequested && !this._teleportationEnabledOnRightController) {
- this._enableTeleportationOnController(webVRController);
- }
- }
- if (this.onControllerMeshLoaded) {
- this.onControllerMeshLoaded(webVRController);
- }
- }
- private _onFullscreenChange() {
- if (document.fullscreen !== undefined) {
- this._fullscreenVRpresenting = document.fullscreen;
- } else if (document.mozFullScreen !== undefined) {
- this._fullscreenVRpresenting = document.mozFullScreen;
- } else if (document.webkitIsFullScreen !== undefined) {
- this._fullscreenVRpresenting = document.webkitIsFullScreen;
- } else if (document.msIsFullScreen !== undefined) {
- this._fullscreenVRpresenting = document.msIsFullScreen;
- }
- if (!this._fullscreenVRpresenting && this._canvas) {
- this.exitVR();
- if (!this._useCustomVRButton) {
- this._btnVR.style.top = this._canvas.offsetTop + this._canvas.offsetHeight - 70 + "px";
- this._btnVR.style.left = this._canvas.offsetLeft + this._canvas.offsetWidth - 100 + "px";
- }
- }
- }
- private isInVRMode() {
- return this._webVRpresenting || this._fullscreenVRpresenting;
- }
- private onVrDisplayPresentChange() {
- var vrDisplay = this._scene.getEngine().getVRDevice();
- if (vrDisplay) {
- var wasPresenting = this._webVRpresenting;
-
- // A VR display is connected
- this._webVRpresenting = vrDisplay.isPresenting;
-
- if (wasPresenting && !this._webVRpresenting)
- this.exitVR();
- } else {
- Tools.Warn('Detected VRDisplayPresentChange on an unknown VRDisplay. Did you can enterVR on the vrExperienceHelper?');
- }
- this.updateButtonVisibility();
- }
- private onVRDisplayChanged(eventArgs:IDisplayChangedEventArgs) {
- this._webVRsupported = eventArgs.vrSupported;
- this._webVRready = !!eventArgs.vrDisplay;
- this._webVRpresenting = eventArgs.vrDisplay && eventArgs.vrDisplay.isPresenting;
- this.updateButtonVisibility();
- }
- private updateButtonVisibility() {
- if (!this._btnVR) {
- return;
- }
- this._btnVR.className = "babylonVRicon";
- if (this.isInVRMode()) {
- this._btnVR.className += " vrdisplaypresenting";
- } else {
- if (this._webVRready) this._btnVR.className += " vrdisplayready";
- if (this._webVRsupported) this._btnVR.className += " vrdisplaysupported";
- if (this._webVRrequesting) this._btnVR.className += " vrdisplayrequesting";
- }
- }
- /**
- * Attempt to enter VR. If a headset is connected and ready, will request present on that.
- * Otherwise, will use the fullscreen API.
- */
- public enterVR() {
- if (this._scene.activeCamera) {
- this._position = this._scene.activeCamera.position.clone();
- }
- if (this.onEnteringVR) {
- this.onEnteringVR();
- }
- if (this._webVRrequesting)
- return;
- // If WebVR is supported and a headset is connected
- if (this._webVRready) {
- if (!this._webVRpresenting) {
- this._webVRCamera.position = this._position;
- this._scene.activeCamera = this._webVRCamera;
- }
- }
- else {
- this._vrDeviceOrientationCamera.position = this._position;
- this._scene.activeCamera = this._vrDeviceOrientationCamera;
- this._scene.getEngine().switchFullscreen(true);
- this.updateButtonVisibility();
- }
-
- if (this._scene.activeCamera && this._canvas) {
- this._scene.activeCamera.attachControl(this._canvas);
- }
- }
- /**
- * Attempt to exit VR, or fullscreen.
- */
- public exitVR() {
- if (this.onExitingVR) {
- this.onExitingVR();
- }
- if (this._webVRpresenting) {
- this._scene.getEngine().disableVR();
- }
- if (this._scene.activeCamera) {
- this._position = this._scene.activeCamera.position.clone();
-
- }
- this._deviceOrientationCamera.position = this._position;
- this._scene.activeCamera = this._deviceOrientationCamera;
- if (this._canvas) {
- this._scene.activeCamera.attachControl(this._canvas);
- }
- this.updateButtonVisibility();
- }
- public get position(): Vector3 {
- return this._position;
- }
- public set position(value: Vector3) {
- this._position = value;
- if (this._scene.activeCamera) {
- this._scene.activeCamera.position = value;
- }
- }
- public enableTeleportation(vrTeleportationOptions: VRTeleportationOptions = {}) {
- this._teleportationRequested = true;
- if (vrTeleportationOptions) {
- if (vrTeleportationOptions.floorMeshName) {
- this._floorMeshName = vrTeleportationOptions.floorMeshName;
- }
- }
- if (this._leftControllerReady && this._webVRCamera.leftController) {
- this._enableTeleportationOnController(this._webVRCamera.leftController)
- }
- if (this._rightControllerReady && this._webVRCamera.rightController) {
- this._enableTeleportationOnController(this._webVRCamera.rightController)
- }
- this._postProcessMove = new BABYLON.ImageProcessingPostProcess("postProcessMove", 1.0, this._webVRCamera);
- this._postProcessMove.vignetteWeight = 0;
- this._postProcessMove.vignetteStretch = 0;
- this._postProcessMove.vignetteColor = new BABYLON.Color4(0, 0, 0, 0);
- this._postProcessMove.vignetteEnabled = false;
- new BABYLON.PassPostProcess("pass", 1.0, this._webVRCamera);
- this._createTeleportationCircles();
- this.meshSelectionPredicate = (mesh) => {
- if (mesh.name.indexOf(this._floorMeshName) !== -1) {
- return true;
- }
- return false;
- }
- this._scene.registerBeforeRender(() => {
- this._castRayAndSelectObject();
- });
- }
- private _enableTeleportationOnController(webVRController: WebVRController) {
- var controllerMesh = webVRController.mesh;
- if (controllerMesh) {
- var childMeshes = controllerMesh.getChildMeshes();
- for (var i = 0; i < childMeshes.length; i++) {
- if (childMeshes[i].name === "POINTING_POSE") {
- controllerMesh = childMeshes[i];
- break;
- }
- }
- var laserPointer = BABYLON.Mesh.CreateCylinder("laserPointer", 3, 0.004, 0.0001, 20, 1, this._scene, false);
- var laserPointerMaterial = new BABYLON.StandardMaterial("laserPointerMat", this._scene);
- laserPointerMaterial.emissiveColor = new BABYLON.Color3(0.7, 0.7, 0.7);
- laserPointerMaterial.alpha = 0.6;
- laserPointer.material = laserPointerMaterial;
- laserPointer.rotation.x = Math.PI / 2;
- laserPointer.parent = controllerMesh;
- laserPointer.position.z = -1.5;
- laserPointer.position.y = 0;
- laserPointer.isVisible = false;
- webVRController.onMainButtonStateChangedObservable.add((stateObject) => {
- // Enabling / disabling laserPointer
- if (stateObject.value === 1) {
- laserPointer.isVisible = !laserPointer.isVisible;
- }
- });
- webVRController.onPadValuesChangedObservable.add((stateObject) => {
- // on pressed
- if (!this._teleportationRequestInitiated) {
- if (stateObject.y < -0.6) {
- laserPointer.isVisible = true;
- this._teleportationRequestInitiated = true;
- }
- }
- else {
- if (stateObject.y > -0.4) {
- if (this._teleportationAllowed) {
- this._teleportCamera();
- }
- this._teleportationRequestInitiated = false;
- laserPointer.isVisible = false;
- }
- }
- if (!this._rotationLeftAsked) {
- if (stateObject.x < -0.6) {
- this._rotationLeftAsked = true;
- if (this._rotationAllowed) {
- this._rotateCamera(false);
- }
- }
- }
- else {
- if (stateObject.x > -0.4) {
- this._rotationLeftAsked = false;
- }
- }
-
- if (!this._rotationRightAsked) {
- if (stateObject.x > 0.6) {
- this._rotationRightAsked = true;
- if (this._rotationAllowed) {
- this._rotateCamera(true);
- }
- }
- }
- else {
- if (stateObject.x < 0.4) {
- this._rotationRightAsked = false;
- }
- }
- });
- }
- }
- private _createTeleportationCircles() {
- this._teleportationCircle = BABYLON.Mesh.CreateGround("teleportationCircle", 2, 2, 2, this._scene);
-
- var length = 512;
- var dynamicTexture = new BABYLON.DynamicTexture("DynamicTexture", length, this._scene, true);
- dynamicTexture.hasAlpha = true;
- var context = dynamicTexture.getContext();
-
- var centerX = length / 2;
- var centerY = length / 2;
- var radius = 200;
-
- context.beginPath();
- context.arc(centerX, centerY, radius, 0, 2 * Math.PI, false);
- context.fillStyle = this._teleportationFillColor;
- context.fill();
- context.lineWidth = 10;
- context.strokeStyle = this._teleportationBorderColor;
- context.stroke();
- context.closePath();
- dynamicTexture.update();
-
- var teleportationCircleMaterial = new BABYLON.StandardMaterial("TextPlaneMaterial", this._scene);
- teleportationCircleMaterial.diffuseTexture = dynamicTexture;
- this._teleportationCircle.material = teleportationCircleMaterial;
-
- var torus = BABYLON.Mesh.CreateTorus("torus", 0.75, 0.1, 25, this._scene, false);
- torus.parent = this._teleportationCircle;
-
- var animationInnerCircle = new BABYLON.Animation("animationInnerCircle", "position.y", 30, BABYLON.Animation.ANIMATIONTYPE_FLOAT, BABYLON.Animation.ANIMATIONLOOPMODE_CYCLE);
-
- var keys = [];
- keys.push({
- frame: 0,
- value: 0
- });
- keys.push({
- frame: 30,
- value: 0.4
- });
- keys.push({
- frame: 60,
- value: 0
- });
-
- animationInnerCircle.setKeys(keys);
-
- var easingFunction = new BABYLON.SineEase();
- easingFunction.setEasingMode(BABYLON.EasingFunction.EASINGMODE_EASEINOUT);
- animationInnerCircle.setEasingFunction(easingFunction);
-
- torus.animations = [];
- torus.animations.push(animationInnerCircle);
-
- this._scene.beginAnimation(torus, 0, 60, true);
-
- this._hideTeleportationCircle();
- }
- private _displayTeleportationCircle() {
- this._teleportationCircle.isVisible = true;
- (<Mesh>this._teleportationCircle.getChildren()[0]).isVisible = true;
- }
-
- private _hideTeleportationCircle() {
- this._teleportationCircle.isVisible = false;
- (<Mesh>this._teleportationCircle.getChildren()[0]).isVisible = false;
- }
- private _rotateCamera(right: boolean) {
- if (right) {
- this._rotationAngle++;
- }
- else {
- this._rotationAngle--;
- }
-
- this.currentVRCamera.animations = [];
-
- var target = BABYLON.Quaternion.FromRotationMatrix(BABYLON.Matrix.RotationY(Math.PI / 4 * this._rotationAngle));
-
- var animationRotation = new BABYLON.Animation("animationRotation", "rotationQuaternion", 90, BABYLON.Animation.ANIMATIONTYPE_QUATERNION,
- BABYLON.Animation.ANIMATIONLOOPMODE_CONSTANT);
-
- var animationRotationKeys = [];
- animationRotationKeys.push({
- frame: 0,
- value: this.currentVRCamera.rotationQuaternion
- });
- animationRotationKeys.push({
- frame: 6,
- value: target
- });
-
- animationRotation.setKeys(animationRotationKeys);
-
- var easingFunction = new BABYLON.CircleEase();
- easingFunction.setEasingMode(BABYLON.EasingFunction.EASINGMODE_EASEINOUT);
- animationRotation.setEasingFunction(easingFunction);
-
- this.currentVRCamera.animations.push(animationRotation);
-
- (<any>this._postProcessMove).animations = [];
-
- var animationPP = new BABYLON.Animation("animationPP", "vignetteWeight", 90, BABYLON.Animation.ANIMATIONTYPE_FLOAT,
- BABYLON.Animation.ANIMATIONLOOPMODE_CONSTANT);
-
- var vignetteWeightKeys = [];
- vignetteWeightKeys.push({
- frame: 0,
- value: 0
- });
- vignetteWeightKeys.push({
- frame: 3,
- value: 4
- });
- vignetteWeightKeys.push({
- frame: 6,
- value: 0
- });
-
- animationPP.setKeys(vignetteWeightKeys);
- animationPP.setEasingFunction(easingFunction);
- (<any>this._postProcessMove).animations.push(animationPP);
-
- var animationPP2 = new BABYLON.Animation("animationPP2", "vignetteStretch", 90, BABYLON.Animation.ANIMATIONTYPE_FLOAT,
- BABYLON.Animation.ANIMATIONLOOPMODE_CONSTANT);
-
- var vignetteStretchKeys = [];
- vignetteStretchKeys.push({
- frame: 0,
- value: 0
- });
- vignetteStretchKeys.push({
- frame: 3,
- value: 10
- });
- vignetteStretchKeys.push({
- frame: 6,
- value: 0
- });
-
- animationPP2.setKeys(vignetteStretchKeys);
- animationPP2.setEasingFunction(easingFunction);
- (<any>this._postProcessMove).animations.push(animationPP2);
-
- this._postProcessMove.vignetteWeight = 0;
- this._postProcessMove.vignetteStretch = 0;
- this._postProcessMove.vignetteEnabled = true;
-
- this._scene.beginAnimation(this._postProcessMove, 0, 6, false, 1, () => {
- this._postProcessMove.vignetteEnabled = false;
- });
- this._scene.beginAnimation(this.currentVRCamera, 0, 6, false, 1);
- }
- private _moveTeleportationSelectorTo(coordinates: Vector3) {
- this._teleportationAllowed = true;
- if (this._teleportationRequestInitiated || this._xboxGamepadTeleportationRequestInitiated) {
- this._displayTeleportationCircle();
- }
- else {
- this._hideTeleportationCircle();
- }
- this._haloCenter.copyFrom(coordinates);
- this._teleportationCircle.position = coordinates;
- this._teleportationCircle.position.y += 0.001;
- }
- private _teleportCamera() {
- this.currentVRCamera.animations = [];
-
- var animationCameraTeleportation = new BABYLON.Animation("animationCameraTeleportation", "position.x", 90, BABYLON.Animation.ANIMATIONTYPE_FLOAT,
- BABYLON.Animation.ANIMATIONLOOPMODE_CONSTANT);
-
- var animationCameraTeleportationKeys = [];
- animationCameraTeleportationKeys.push({
- frame: 0,
- value: this.currentVRCamera.position.x
- });
- animationCameraTeleportationKeys.push({
- frame: 11,
- value: this._haloCenter.x
- });
-
- animationCameraTeleportation.setKeys(animationCameraTeleportationKeys);
-
- var easingFunction = new BABYLON.CircleEase();
- easingFunction.setEasingMode(BABYLON.EasingFunction.EASINGMODE_EASEINOUT);
- animationCameraTeleportation.setEasingFunction(easingFunction);
-
- this.currentVRCamera.animations.push(animationCameraTeleportation);
-
- var animationZoomIn2 = new BABYLON.Animation("animationZoomIn", "position.z", 90, BABYLON.Animation.ANIMATIONTYPE_FLOAT,
- BABYLON.Animation.ANIMATIONLOOPMODE_CONSTANT);
-
- var keys2 = [];
- keys2.push({
- frame: 0,
- value: this.currentVRCamera.position.z
- });
- keys2.push({
- frame: 11,
- value: this._haloCenter.z
- });
-
- animationZoomIn2.setKeys(keys2);
-
- animationZoomIn2.setEasingFunction(easingFunction);
-
- this.currentVRCamera.animations.push(animationZoomIn2);
-
- (<any>this._postProcessMove).animations = [];
-
- var animationPP = new BABYLON.Animation("animationPP", "vignetteWeight", 90, BABYLON.Animation.ANIMATIONTYPE_FLOAT,
- BABYLON.Animation.ANIMATIONLOOPMODE_CONSTANT);
-
- var vignetteWeightKeys = [];
- vignetteWeightKeys.push({
- frame: 0,
- value: 0
- });
- vignetteWeightKeys.push({
- frame: 5,
- value: 8
- });
- vignetteWeightKeys.push({
- frame: 11,
- value: 0
- });
-
- animationPP.setKeys(vignetteWeightKeys);
- (<any>this._postProcessMove).animations.push(animationPP);
-
- var animationPP2 = new BABYLON.Animation("animationPP2", "vignetteStretch", 90, BABYLON.Animation.ANIMATIONTYPE_FLOAT,
- BABYLON.Animation.ANIMATIONLOOPMODE_CONSTANT);
-
- var vignetteStretchKeys = [];
- vignetteStretchKeys.push({
- frame: 0,
- value: 0
- });
- vignetteStretchKeys.push({
- frame: 5,
- value: 10
- });
- vignetteStretchKeys.push({
- frame: 11,
- value: 0
- });
-
- animationPP2.setKeys(vignetteStretchKeys);
- (<any>this._postProcessMove).animations.push(animationPP2);
-
- this._postProcessMove.vignetteWeight = 8;
- this._postProcessMove.vignetteStretch = 10;
- this._postProcessMove.vignetteEnabled = true;
-
- this._scene.beginAnimation(this._postProcessMove, 0, 11, false, 1, () => {
- this._postProcessMove.vignetteEnabled = false;
- });
- this._scene.beginAnimation(this.currentVRCamera, 0, 11, false, 1);
- }
- private _castRayAndSelectObject () {
- var ray;
- if (!(<WebVRFreeCamera>this.currentVRCamera).rightController) {
- ray = this.currentVRCamera.getForwardRay();
- } else {
- ray = (<any>this.currentVRCamera).rightController.getForwardRay();
- }
-
- var hit = this._scene.pickWithRay(ray, this.meshSelectionPredicate);
-
- if (this._rayHelper) {
- this._rayHelper.dispose();
- }
-
- if ((<WebVRFreeCamera>this.currentVRCamera).rightController) {
- //if (target) target.isVisible = false;
- this._rayHelper = BABYLON.RayHelper.CreateAndShow(ray, this._scene, new BABYLON.Color3(0.7, 0.7, 0.7));
- }
-
- if (hit && hit.pickedMesh) {
- // The object selected is the floor, we're in a teleportation scenario
- if (hit.pickedMesh.name.indexOf(this._floorMeshName) !== -1 && hit.pickedPoint) {
- this._moveTeleportationSelectorTo(hit.pickedPoint)
- return;
- }
- // If not, we're in a selection scenario
- this._hideTeleportationCircle();
- this._teleportationAllowed = false;
- //currentMeshSelected = hit.pickedMesh;
- }
- else {
- this._teleportationAllowed = false;
- this._hideTeleportationCircle();
- }
- }
- public dispose() {
- if (this.isInVRMode()) {
- this.exitVR();
- }
- this._deviceOrientationCamera.dispose();
- if (this._webVRCamera) {
- this._webVRCamera.dispose();
- }
- if (this._vrDeviceOrientationCamera) {
- this._vrDeviceOrientationCamera.dispose();
- }
- if (!this._useCustomVRButton) {
- document.body.removeChild(this._btnVR);
- }
- document.removeEventListener("keydown", this._onKeyDown);
- window.removeEventListener('vrdisplaypresentchange', this._onVrDisplayPresentChange);
- }
- public getClassName(): string {
- return "VRExperienceHelper";
- }
- }
- }
|