|
@@ -1,80 +1,81 @@
|
|
module BABYLON {
|
|
module BABYLON {
|
|
|
|
+ /**
|
|
|
|
+ * This is the base class of all the camera used in the application.
|
|
|
|
+ * @see http://doc.babylonjs.com/features/cameras
|
|
|
|
+ */
|
|
export class Camera extends Node {
|
|
export class Camera extends Node {
|
|
- public inputs: CameraInputsManager<Camera>;
|
|
|
|
-
|
|
|
|
- // Statics
|
|
|
|
- private static _PERSPECTIVE_CAMERA = 0;
|
|
|
|
- private static _ORTHOGRAPHIC_CAMERA = 1;
|
|
|
|
-
|
|
|
|
- private static _FOVMODE_VERTICAL_FIXED = 0;
|
|
|
|
- private static _FOVMODE_HORIZONTAL_FIXED = 1;
|
|
|
|
-
|
|
|
|
- private static _RIG_MODE_NONE = 0;
|
|
|
|
- private static _RIG_MODE_STEREOSCOPIC_ANAGLYPH = 10;
|
|
|
|
- private static _RIG_MODE_STEREOSCOPIC_SIDEBYSIDE_PARALLEL = 11;
|
|
|
|
- private static _RIG_MODE_STEREOSCOPIC_SIDEBYSIDE_CROSSEYED = 12;
|
|
|
|
- private static _RIG_MODE_STEREOSCOPIC_OVERUNDER = 13;
|
|
|
|
- private static _RIG_MODE_VR = 20;
|
|
|
|
- private static _RIG_MODE_WEBVR = 21;
|
|
|
|
-
|
|
|
|
- public static get PERSPECTIVE_CAMERA(): number {
|
|
|
|
- return Camera._PERSPECTIVE_CAMERA;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public static get ORTHOGRAPHIC_CAMERA(): number {
|
|
|
|
- return Camera._ORTHOGRAPHIC_CAMERA;
|
|
|
|
- }
|
|
|
|
|
|
+ /**
|
|
|
|
+ * This is the default projection mode used by the cameras.
|
|
|
|
+ * It helps recreating a feeling of perspective and better appreciate depth.
|
|
|
|
+ * This is the best way to simulate real life cameras.
|
|
|
|
+ */
|
|
|
|
+ public static readonly PERSPECTIVE_CAMERA = 0;
|
|
|
|
+ /**
|
|
|
|
+ * This helps creating camera with an orthographic mode.
|
|
|
|
+ * Orthographic is commonly used in engineering as a means to produce object specifications that communicate dimensions unambiguously, each line of 1 unit length (cm, meter..whatever) will appear to have the same length everywhere on the drawing. This allows the drafter to dimension only a subset of lines and let the reader know that other lines of that length on the drawing are also that length in reality. Every parallel line in the drawing is also parallel in the object.
|
|
|
|
+ */
|
|
|
|
+ public static readonly ORTHOGRAPHIC_CAMERA = 1;
|
|
|
|
|
|
/**
|
|
/**
|
|
* This is the default FOV mode for perspective cameras.
|
|
* This is the default FOV mode for perspective cameras.
|
|
* This setting aligns the upper and lower bounds of the viewport to the upper and lower bounds of the camera frustum.
|
|
* This setting aligns the upper and lower bounds of the viewport to the upper and lower bounds of the camera frustum.
|
|
- *
|
|
|
|
*/
|
|
*/
|
|
- public static get FOVMODE_VERTICAL_FIXED(): number {
|
|
|
|
- return Camera._FOVMODE_VERTICAL_FIXED;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ public static readonly FOVMODE_VERTICAL_FIXED = 0;
|
|
/**
|
|
/**
|
|
* This setting aligns the left and right bounds of the viewport to the left and right bounds of the camera frustum.
|
|
* This setting aligns the left and right bounds of the viewport to the left and right bounds of the camera frustum.
|
|
- *
|
|
|
|
*/
|
|
*/
|
|
- public static get FOVMODE_HORIZONTAL_FIXED(): number {
|
|
|
|
- return Camera._FOVMODE_HORIZONTAL_FIXED;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public static get RIG_MODE_NONE(): number {
|
|
|
|
- return Camera._RIG_MODE_NONE;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public static get RIG_MODE_STEREOSCOPIC_ANAGLYPH(): number {
|
|
|
|
- return Camera._RIG_MODE_STEREOSCOPIC_ANAGLYPH;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public static get RIG_MODE_STEREOSCOPIC_SIDEBYSIDE_PARALLEL(): number {
|
|
|
|
- return Camera._RIG_MODE_STEREOSCOPIC_SIDEBYSIDE_PARALLEL;
|
|
|
|
- }
|
|
|
|
|
|
+ public static readonly FOVMODE_HORIZONTAL_FIXED = 1;
|
|
|
|
|
|
- public static get RIG_MODE_STEREOSCOPIC_SIDEBYSIDE_CROSSEYED(): number {
|
|
|
|
- return Camera._RIG_MODE_STEREOSCOPIC_SIDEBYSIDE_CROSSEYED;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public static get RIG_MODE_STEREOSCOPIC_OVERUNDER(): number {
|
|
|
|
- return Camera._RIG_MODE_STEREOSCOPIC_OVERUNDER;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public static get RIG_MODE_VR(): number {
|
|
|
|
- return Camera._RIG_MODE_VR;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public static get RIG_MODE_WEBVR(): number {
|
|
|
|
- return Camera._RIG_MODE_WEBVR;
|
|
|
|
- }
|
|
|
|
|
|
+ /**
|
|
|
|
+ * This specifies ther is no need for a camera rig.
|
|
|
|
+ * Basically only one eye is rendered corresponding to the camera.
|
|
|
|
+ */
|
|
|
|
+ public static readonly RIG_MODE_NONE = 0;
|
|
|
|
+ /**
|
|
|
|
+ * Simulates a camera Rig with one blue eye and one red eye.
|
|
|
|
+ * This can be use with 3d blue and red glasses.
|
|
|
|
+ */
|
|
|
|
+ public static readonly RIG_MODE_STEREOSCOPIC_ANAGLYPH = 10;
|
|
|
|
+ /**
|
|
|
|
+ * Defines that both eyes of the camera will be rendered side by side with a parallel target.
|
|
|
|
+ */
|
|
|
|
+ public static readonly RIG_MODE_STEREOSCOPIC_SIDEBYSIDE_PARALLEL = 11;
|
|
|
|
+ /**
|
|
|
|
+ * Defines that both eyes of the camera will be rendered side by side with a none parallel target.
|
|
|
|
+ */
|
|
|
|
+ public static readonly RIG_MODE_STEREOSCOPIC_SIDEBYSIDE_CROSSEYED = 12;
|
|
|
|
+ /**
|
|
|
|
+ * Defines that both eyes of the camera will be rendered over under each other.
|
|
|
|
+ */
|
|
|
|
+ public static readonly RIG_MODE_STEREOSCOPIC_OVERUNDER = 13;
|
|
|
|
+ /**
|
|
|
|
+ * Defines that both eyes of the camera should be renderered in a VR mode (carbox).
|
|
|
|
+ */
|
|
|
|
+ public static readonly RIG_MODE_VR = 20;
|
|
|
|
+ /**
|
|
|
|
+ * Defines that both eyes of the camera should be renderered in a VR mode (webVR).
|
|
|
|
+ */
|
|
|
|
+ public static readonly RIG_MODE_WEBVR = 21;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Defines if by default attaching controls should prevent the default javascript event to continue.
|
|
|
|
+ */
|
|
public static ForceAttachControlToAlwaysPreventDefault = false;
|
|
public static ForceAttachControlToAlwaysPreventDefault = false;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @hidden
|
|
|
|
+ * Might be removed once multiview will be a thing
|
|
|
|
+ */
|
|
public static UseAlternateWebVRRendering = false;
|
|
public static UseAlternateWebVRRendering = false;
|
|
|
|
|
|
- // Members
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Define the input manager associated with the camera.
|
|
|
|
+ */
|
|
|
|
+ public inputs: CameraInputsManager<Camera>;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Define the current local position of the camera in the scene
|
|
|
|
+ */
|
|
@serializeAsVector3()
|
|
@serializeAsVector3()
|
|
public position: Vector3;
|
|
public position: Vector3;
|
|
|
|
|
|
@@ -85,37 +86,79 @@
|
|
@serializeAsVector3()
|
|
@serializeAsVector3()
|
|
public upVector = Vector3.Up();
|
|
public upVector = Vector3.Up();
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Define the current limit on the left side for an orthographic camera
|
|
|
|
+ * In scene unit
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public orthoLeft: Nullable<number> = null;
|
|
public orthoLeft: Nullable<number> = null;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Define the current limit on the right side for an orthographic camera
|
|
|
|
+ * In scene unit
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public orthoRight: Nullable<number> = null;
|
|
public orthoRight: Nullable<number> = null;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Define the current limit on the bottom side for an orthographic camera
|
|
|
|
+ * In scene unit
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public orthoBottom: Nullable<number> = null;
|
|
public orthoBottom: Nullable<number> = null;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Define the current limit on the top side for an orthographic camera
|
|
|
|
+ * In scene unit
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public orthoTop: Nullable<number> = null;
|
|
public orthoTop: Nullable<number> = null;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * FOV is set in Radians. (default is 0.8)
|
|
|
|
|
|
+ * Field Of View is set in Radians. (default is 0.8)
|
|
*/
|
|
*/
|
|
@serialize()
|
|
@serialize()
|
|
public fov = 0.8;
|
|
public fov = 0.8;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Define the minimum distance the camera can see from.
|
|
|
|
+ * This is important to note that the depth buffer are not infinite and the closer it starts
|
|
|
|
+ * the more your scene might encounter depth fighting issue.
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public minZ = 1;
|
|
public minZ = 1;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Define the maximum distance the camera can see to.
|
|
|
|
+ * This is important to note that the depth buffer are not infinite and the further it end
|
|
|
|
+ * the more your scene might encounter depth fighting issue.
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public maxZ = 10000.0;
|
|
public maxZ = 10000.0;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Define the default inertia of the camera.
|
|
|
|
+ * This helps giving a smooth feeling to the camera movment.
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public inertia = 0.9;
|
|
public inertia = 0.9;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Define the mode of the camera (Camera.PERSPECTIVE_CAMERA or Camera.PERSPECTIVE_ORTHOGRAPHIC)
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public mode = Camera.PERSPECTIVE_CAMERA;
|
|
public mode = Camera.PERSPECTIVE_CAMERA;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Define wether the camera is intermediate.
|
|
|
|
+ * This is usefull to not present the output directly to the screen in case of rig without post process for instance
|
|
|
|
+ */
|
|
public isIntermediate = false;
|
|
public isIntermediate = false;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Define the viewport of the camera.
|
|
|
|
+ * This correspond to the portion of the screen the camera will render to in normalized 0 to 1 unit.
|
|
|
|
+ */
|
|
public viewport = new Viewport(0, 0, 1.0, 1.0);
|
|
public viewport = new Viewport(0, 0, 1.0, 1.0);
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -131,16 +174,50 @@
|
|
@serialize()
|
|
@serialize()
|
|
public fovMode: number = Camera.FOVMODE_VERTICAL_FIXED;
|
|
public fovMode: number = Camera.FOVMODE_VERTICAL_FIXED;
|
|
|
|
|
|
- // Camera rig members
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Rig mode of the camera.
|
|
|
|
+ * This is usefull to create the camera with two "eyes" instead of one to create VR or stereoscopic scenes.
|
|
|
|
+ * This is normally controlled byt the camera themselves as internal use.
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public cameraRigMode = Camera.RIG_MODE_NONE;
|
|
public cameraRigMode = Camera.RIG_MODE_NONE;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Defines the distance between both "eyes" in case of a RIG
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public interaxialDistance: number
|
|
public interaxialDistance: number
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Defines if stereoscopic rendering is done side by side or over under.
|
|
|
|
+ */
|
|
@serialize()
|
|
@serialize()
|
|
public isStereoscopicSideBySide: boolean
|
|
public isStereoscopicSideBySide: boolean
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Defines the list of custom render target the camera should render to.
|
|
|
|
+ * This is pretty helpfull if you wish to make a camera render to a texture you could reuse somewhere
|
|
|
|
+ * else in the scene.
|
|
|
|
+ */
|
|
|
|
+ public customRenderTargets = new Array<RenderTargetTexture>();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Observable triggered when the camera view matrix has changed.
|
|
|
|
+ */
|
|
|
|
+ public onViewMatrixChangedObservable = new Observable<Camera>();
|
|
|
|
+ /**
|
|
|
|
+ * Observable triggered when the camera Projection matrix has changed.
|
|
|
|
+ */
|
|
|
|
+ public onProjectionMatrixChangedObservable = new Observable<Camera>();
|
|
|
|
+ /**
|
|
|
|
+ * Observable triggered when the inputs have been processed.
|
|
|
|
+ */
|
|
|
|
+ public onAfterCheckInputsObservable = new Observable<Camera>();
|
|
|
|
+ /**
|
|
|
|
+ * Observable triggered when reset has been called and applied to the camera.
|
|
|
|
+ */
|
|
|
|
+ public onRestoreStateObservable = new Observable<Camera>();
|
|
|
|
+
|
|
/** @hidden */
|
|
/** @hidden */
|
|
public _cameraRigParams: any;
|
|
public _cameraRigParams: any;
|
|
/** @hidden */
|
|
/** @hidden */
|
|
@@ -154,27 +231,34 @@
|
|
/** @hidden */
|
|
/** @hidden */
|
|
public _alternateCamera: Camera;
|
|
public _alternateCamera: Camera;
|
|
|
|
|
|
- public customRenderTargets = new Array<RenderTargetTexture>();
|
|
|
|
-
|
|
|
|
- // Observables
|
|
|
|
- public onViewMatrixChangedObservable = new Observable<Camera>();
|
|
|
|
- public onProjectionMatrixChangedObservable = new Observable<Camera>();
|
|
|
|
- public onAfterCheckInputsObservable = new Observable<Camera>();
|
|
|
|
- public onRestoreStateObservable = new Observable<Camera>();
|
|
|
|
-
|
|
|
|
- // Cache
|
|
|
|
- private _computedViewMatrix = Matrix.Identity();
|
|
|
|
|
|
+ /** @hidden */
|
|
public _projectionMatrix = new Matrix();
|
|
public _projectionMatrix = new Matrix();
|
|
- private _doNotComputeProjectionMatrix = false;
|
|
|
|
|
|
+
|
|
|
|
+ /** @hidden */
|
|
public _postProcesses = new Array<Nullable<PostProcess>>();
|
|
public _postProcesses = new Array<Nullable<PostProcess>>();
|
|
- private _transformMatrix = Matrix.Zero();
|
|
|
|
|
|
|
|
|
|
+ /** @hidden */
|
|
public _activeMeshes = new SmartArray<AbstractMesh>(256);
|
|
public _activeMeshes = new SmartArray<AbstractMesh>(256);
|
|
|
|
|
|
protected _globalPosition = Vector3.Zero();
|
|
protected _globalPosition = Vector3.Zero();
|
|
|
|
+
|
|
|
|
+ private _computedViewMatrix = Matrix.Identity();
|
|
|
|
+ private _doNotComputeProjectionMatrix = false;
|
|
|
|
+ private _transformMatrix = Matrix.Zero();
|
|
private _frustumPlanes: Plane[];
|
|
private _frustumPlanes: Plane[];
|
|
private _refreshFrustumPlanes = true;
|
|
private _refreshFrustumPlanes = true;
|
|
|
|
+ private _storedFov: number;
|
|
|
|
+ private _stateStored: boolean;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Instantiates a new camera object.
|
|
|
|
+ * This should not be used directly but through the inherited cameras: ArcRotate, Free...
|
|
|
|
+ * @see http://doc.babylonjs.com/features/cameras
|
|
|
|
+ * @param name Defines the name of the camera in the scene
|
|
|
|
+ * @param position Defines the position of the camera
|
|
|
|
+ * @param scene Defines the scene the camera belongs too
|
|
|
|
+ * @param setActiveOnSceneIfNoneActive Defines if the camera should be set as active after creation if no other camera have been defined in the scene
|
|
|
|
+ */
|
|
constructor(name: string, position: Vector3, scene: Scene, setActiveOnSceneIfNoneActive = true) {
|
|
constructor(name: string, position: Vector3, scene: Scene, setActiveOnSceneIfNoneActive = true) {
|
|
super(name, scene);
|
|
super(name, scene);
|
|
|
|
|
|
@@ -187,11 +271,9 @@
|
|
this.position = position;
|
|
this.position = position;
|
|
}
|
|
}
|
|
|
|
|
|
- private _storedFov: number;
|
|
|
|
- private _stateStored: boolean;
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* Store current camera state (fov, position, etc..)
|
|
* Store current camera state (fov, position, etc..)
|
|
|
|
+ * @returns the camera
|
|
*/
|
|
*/
|
|
public storeState(): Camera {
|
|
public storeState(): Camera {
|
|
this._stateStored = true;
|
|
this._stateStored = true;
|
|
@@ -214,7 +296,8 @@
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- * Restored camera state. You must call storeState() first
|
|
|
|
|
|
+ * Restored camera state. You must call storeState() first.
|
|
|
|
+ * @returns true if restored and false otherwise
|
|
*/
|
|
*/
|
|
public restoreState(): boolean {
|
|
public restoreState(): boolean {
|
|
if (this._restoreStateValues()) {
|
|
if (this._restoreStateValues()) {
|
|
@@ -225,12 +308,18 @@
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the class name of the camera.
|
|
|
|
+ * @returns the class name
|
|
|
|
+ */
|
|
public getClassName(): string {
|
|
public getClassName(): string {
|
|
return "Camera";
|
|
return "Camera";
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- * @param {boolean} fullDetails - support for multiple levels of logging within scene loading
|
|
|
|
|
|
+ * Gets a string representation of the camera usefull for debug purpose.
|
|
|
|
+ * @param fullDetails Defines that a more verboe level of logging is required
|
|
|
|
+ * @returns the string representation
|
|
*/
|
|
*/
|
|
public toString(fullDetails?: boolean): string {
|
|
public toString(fullDetails?: boolean): string {
|
|
var ret = "Name: " + this.name;
|
|
var ret = "Name: " + this.name;
|
|
@@ -245,14 +334,26 @@
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the current world space position of the camera.
|
|
|
|
+ */
|
|
public get globalPosition(): Vector3 {
|
|
public get globalPosition(): Vector3 {
|
|
return this._globalPosition;
|
|
return this._globalPosition;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the list of active meshes this frame (meshes no culled or excluded by lod s in the frame)
|
|
|
|
+ * @returns the active meshe list
|
|
|
|
+ */
|
|
public getActiveMeshes(): SmartArray<AbstractMesh> {
|
|
public getActiveMeshes(): SmartArray<AbstractMesh> {
|
|
return this._activeMeshes;
|
|
return this._activeMeshes;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Check wether a mesh is part of the current active mesh list of the camera
|
|
|
|
+ * @param mesh Defines the mesh to check
|
|
|
|
+ * @returns true if active, false otherwise
|
|
|
|
+ */
|
|
public isActiveMesh(mesh: Mesh): boolean {
|
|
public isActiveMesh(mesh: Mesh): boolean {
|
|
return (this._activeMeshes.indexOf(mesh) !== -1);
|
|
return (this._activeMeshes.indexOf(mesh) !== -1);
|
|
}
|
|
}
|
|
@@ -273,7 +374,6 @@
|
|
return super.isReady(completeCheck);
|
|
return super.isReady(completeCheck);
|
|
}
|
|
}
|
|
|
|
|
|
- //Cache
|
|
|
|
/** @hidden */
|
|
/** @hidden */
|
|
public _initCache() {
|
|
public _initCache() {
|
|
super._initCache();
|
|
super._initCache();
|
|
@@ -307,7 +407,6 @@
|
|
this._cache.upVector.copyFrom(this.upVector);
|
|
this._cache.upVector.copyFrom(this.upVector);
|
|
}
|
|
}
|
|
|
|
|
|
- // Synchronized
|
|
|
|
/** @hidden */
|
|
/** @hidden */
|
|
public _isSynchronized(): boolean {
|
|
public _isSynchronized(): boolean {
|
|
return this._isSynchronizedViewMatrix() && this._isSynchronizedProjectionMatrix();
|
|
return this._isSynchronizedViewMatrix() && this._isSynchronizedProjectionMatrix();
|
|
@@ -352,13 +451,24 @@
|
|
return check;
|
|
return check;
|
|
}
|
|
}
|
|
|
|
|
|
- // Controls
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Attach the input controls to a specific dom element to get the input from.
|
|
|
|
+ * @param element Defines the element the controls should be listened from
|
|
|
|
+ * @param noPreventDefault Defines whether event caught by the controls should call preventdefault() (https://developer.mozilla.org/en-US/docs/Web/API/Event/preventDefault)
|
|
|
|
+ */
|
|
public attachControl(element: HTMLElement, noPreventDefault?: boolean): void {
|
|
public attachControl(element: HTMLElement, noPreventDefault?: boolean): void {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Detach the current controls from the specified dom element.
|
|
|
|
+ * @param element Defines the element to stop listening the inputs from
|
|
|
|
+ */
|
|
public detachControl(element: HTMLElement): void {
|
|
public detachControl(element: HTMLElement): void {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Update the camera state according to the different inputs gathered during the frame.
|
|
|
|
+ */
|
|
public update(): void {
|
|
public update(): void {
|
|
this._checkInputs();
|
|
this._checkInputs();
|
|
if (this.cameraRigMode !== Camera.RIG_MODE_NONE) {
|
|
if (this.cameraRigMode !== Camera.RIG_MODE_NONE) {
|
|
@@ -371,6 +481,7 @@
|
|
this.onAfterCheckInputsObservable.notifyObservers(this);
|
|
this.onAfterCheckInputsObservable.notifyObservers(this);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /** @hidden */
|
|
public get rigCameras(): Camera[] {
|
|
public get rigCameras(): Camera[] {
|
|
return this._rigCameras;
|
|
return this._rigCameras;
|
|
}
|
|
}
|
|
@@ -420,6 +531,13 @@
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Attach a post process to the camera.
|
|
|
|
+ * @see http://doc.babylonjs.com/how_to/how_to_use_postprocesses#attach-postprocess
|
|
|
|
+ * @param postProcess The post process to attach to the camera
|
|
|
|
+ * @param insertAt The position of the post process in case several of them are in use in the scene
|
|
|
|
+ * @returns the position the post process has been inserted at
|
|
|
|
+ */
|
|
public attachPostProcess(postProcess: PostProcess, insertAt: Nullable<number> = null): number {
|
|
public attachPostProcess(postProcess: PostProcess, insertAt: Nullable<number> = null): number {
|
|
if (!postProcess.isReusable() && this._postProcesses.indexOf(postProcess) > -1) {
|
|
if (!postProcess.isReusable() && this._postProcesses.indexOf(postProcess) > -1) {
|
|
Tools.Error("You're trying to reuse a post process not defined as reusable.");
|
|
Tools.Error("You're trying to reuse a post process not defined as reusable.");
|
|
@@ -437,6 +555,11 @@
|
|
return this._postProcesses.indexOf(postProcess);
|
|
return this._postProcesses.indexOf(postProcess);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Detach a post process to the camera.
|
|
|
|
+ * @see http://doc.babylonjs.com/how_to/how_to_use_postprocesses#attach-postprocess
|
|
|
|
+ * @param postProcess The post process to detach from the camera
|
|
|
|
+ */
|
|
public detachPostProcess(postProcess: PostProcess): void {
|
|
public detachPostProcess(postProcess: PostProcess): void {
|
|
var idx = this._postProcesses.indexOf(postProcess);
|
|
var idx = this._postProcesses.indexOf(postProcess);
|
|
if (idx !== -1) {
|
|
if (idx !== -1) {
|
|
@@ -445,6 +568,9 @@
|
|
this._cascadePostProcessesToRigCams(); // also ensures framebuffer invalidated
|
|
this._cascadePostProcessesToRigCams(); // also ensures framebuffer invalidated
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the current world matrix of the camera
|
|
|
|
+ */
|
|
public getWorldMatrix(): Matrix {
|
|
public getWorldMatrix(): Matrix {
|
|
if (this._isSynchronizedViewMatrix()) {
|
|
if (this._isSynchronizedViewMatrix()) {
|
|
return this._worldMatrix;
|
|
return this._worldMatrix;
|
|
@@ -457,10 +583,15 @@
|
|
}
|
|
}
|
|
|
|
|
|
/** @hidden */
|
|
/** @hidden */
|
|
- public _getViewMatrix(): Matrix {
|
|
|
|
|
|
+ protected _getViewMatrix(): Matrix {
|
|
return Matrix.Identity();
|
|
return Matrix.Identity();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the current view matrix of the camera.
|
|
|
|
+ * @param force forces the camera to recompute the matrix without looking at the cached state
|
|
|
|
+ * @returns the view matrix
|
|
|
|
+ */
|
|
public getViewMatrix(force?: boolean): Matrix {
|
|
public getViewMatrix(force?: boolean): Matrix {
|
|
if (!force && this._isSynchronizedViewMatrix()) {
|
|
if (!force && this._isSynchronizedViewMatrix()) {
|
|
return this._computedViewMatrix;
|
|
return this._computedViewMatrix;
|
|
@@ -484,7 +615,12 @@
|
|
return this._computedViewMatrix;
|
|
return this._computedViewMatrix;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Freeze the projection matrix.
|
|
|
|
+ * It will prevent the cache check of the camera projection compute and can speed up perf
|
|
|
|
+ * if no parameter of the camera are meant to change
|
|
|
|
+ * @param projection Defines manually a projection if necessary
|
|
|
|
+ */
|
|
public freezeProjectionMatrix(projection?: Matrix): void {
|
|
public freezeProjectionMatrix(projection?: Matrix): void {
|
|
this._doNotComputeProjectionMatrix = true;
|
|
this._doNotComputeProjectionMatrix = true;
|
|
if (projection !== undefined) {
|
|
if (projection !== undefined) {
|
|
@@ -492,10 +628,18 @@
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Unfreeze the projection matrix if it has previously been freezed by freezeProjectionMatrix.
|
|
|
|
+ */
|
|
public unfreezeProjectionMatrix(): void {
|
|
public unfreezeProjectionMatrix(): void {
|
|
this._doNotComputeProjectionMatrix = false;
|
|
this._doNotComputeProjectionMatrix = false;
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the current projection matrix of the camera.
|
|
|
|
+ * @param force forces the camera to recompute the matrix without looking at the cached state
|
|
|
|
+ * @returns the projection matrix
|
|
|
|
+ */
|
|
public getProjectionMatrix(force?: boolean): Matrix {
|
|
public getProjectionMatrix(force?: boolean): Matrix {
|
|
if (this._doNotComputeProjectionMatrix || (!force && this._isSynchronizedProjectionMatrix())) {
|
|
if (this._doNotComputeProjectionMatrix || (!force && this._isSynchronizedProjectionMatrix())) {
|
|
return this._projectionMatrix;
|
|
return this._projectionMatrix;
|
|
@@ -578,7 +722,7 @@
|
|
return this._transformMatrix;
|
|
return this._transformMatrix;
|
|
}
|
|
}
|
|
|
|
|
|
- private updateFrustumPlanes(): void {
|
|
|
|
|
|
+ private _updateFrustumPlanes(): void {
|
|
if (!this._refreshFrustumPlanes) {
|
|
if (!this._refreshFrustumPlanes) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -594,18 +738,37 @@
|
|
this._refreshFrustumPlanes = false;
|
|
this._refreshFrustumPlanes = false;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Checks if a cullable object (mesh...) is in the camera frustum
|
|
|
|
+ * This checks the bounding box center. See isCompletelyInFrustum for a full bounding check
|
|
|
|
+ * @param target The object to check
|
|
|
|
+ * @returns true if the object is in frustum otherwise false
|
|
|
|
+ */
|
|
public isInFrustum(target: ICullable): boolean {
|
|
public isInFrustum(target: ICullable): boolean {
|
|
- this.updateFrustumPlanes();
|
|
|
|
|
|
+ this._updateFrustumPlanes();
|
|
|
|
|
|
return target.isInFrustum(this._frustumPlanes);
|
|
return target.isInFrustum(this._frustumPlanes);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Checks if a cullable object (mesh...) is in the camera frustum
|
|
|
|
+ * Unlike isInFrustum this cheks the full bounding box
|
|
|
|
+ * @param target The object to check
|
|
|
|
+ * @returns true if the object is in frustum otherwise false
|
|
|
|
+ */
|
|
public isCompletelyInFrustum(target: ICullable): boolean {
|
|
public isCompletelyInFrustum(target: ICullable): boolean {
|
|
- this.updateFrustumPlanes();
|
|
|
|
|
|
+ this._updateFrustumPlanes();
|
|
|
|
|
|
return target.isCompletelyInFrustum(this._frustumPlanes);
|
|
return target.isCompletelyInFrustum(this._frustumPlanes);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets a ray in the forward direction from the camera.
|
|
|
|
+ * @param length Defines the length of the ray to create
|
|
|
|
+ * @param transform Defines the transform to apply to the ray, by default the world matrx is used to create a workd space ray
|
|
|
|
+ * @param origin Defines the start point of the ray which defaults to the camera position
|
|
|
|
+ * @returns the forward ray
|
|
|
|
+ */
|
|
public getForwardRay(length = 100, transform?: Matrix, origin?: Vector3): Ray {
|
|
public getForwardRay(length = 100, transform?: Matrix, origin?: Vector3): Ray {
|
|
if (!transform) {
|
|
if (!transform) {
|
|
transform = this.getWorldMatrix();
|
|
transform = this.getWorldMatrix();
|
|
@@ -683,7 +846,9 @@
|
|
super.dispose(doNotRecurse, disposeMaterialAndTextures);
|
|
super.dispose(doNotRecurse, disposeMaterialAndTextures);
|
|
}
|
|
}
|
|
|
|
|
|
- // ---- Camera rigs section ----
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the left camera of a rig setup in case of Rigged Camera
|
|
|
|
+ */
|
|
public get leftCamera(): Nullable<FreeCamera> {
|
|
public get leftCamera(): Nullable<FreeCamera> {
|
|
if (this._rigCameras.length < 1) {
|
|
if (this._rigCameras.length < 1) {
|
|
return null;
|
|
return null;
|
|
@@ -691,6 +856,9 @@
|
|
return (<FreeCamera>this._rigCameras[0]);
|
|
return (<FreeCamera>this._rigCameras[0]);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the right camera of a rig setup in case of Rigged Camera
|
|
|
|
+ */
|
|
public get rightCamera(): Nullable<FreeCamera> {
|
|
public get rightCamera(): Nullable<FreeCamera> {
|
|
if (this._rigCameras.length < 2) {
|
|
if (this._rigCameras.length < 2) {
|
|
return null;
|
|
return null;
|
|
@@ -698,6 +866,10 @@
|
|
return (<FreeCamera>this._rigCameras[1]);
|
|
return (<FreeCamera>this._rigCameras[1]);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the left camera target of a rig setup in case of Rigged Camera
|
|
|
|
+ * @returns the target position
|
|
|
|
+ */
|
|
public getLeftTarget(): Nullable<Vector3> {
|
|
public getLeftTarget(): Nullable<Vector3> {
|
|
if (this._rigCameras.length < 1) {
|
|
if (this._rigCameras.length < 1) {
|
|
return null;
|
|
return null;
|
|
@@ -705,6 +877,10 @@
|
|
return (<TargetCamera>this._rigCameras[0]).getTarget();
|
|
return (<TargetCamera>this._rigCameras[0]).getTarget();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the right camera target of a rig setup in case of Rigged Camera
|
|
|
|
+ * @returns the target position
|
|
|
|
+ */
|
|
public getRightTarget(): Nullable<Vector3> {
|
|
public getRightTarget(): Nullable<Vector3> {
|
|
if (this._rigCameras.length < 2) {
|
|
if (this._rigCameras.length < 2) {
|
|
return null;
|
|
return null;
|
|
@@ -712,6 +888,9 @@
|
|
return (<TargetCamera>this._rigCameras[1]).getTarget();
|
|
return (<TargetCamera>this._rigCameras[1]).getTarget();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @hidden
|
|
|
|
+ */
|
|
public setCameraRigMode(mode: number, rigParams: any): void {
|
|
public setCameraRigMode(mode: number, rigParams: any): void {
|
|
if (this.cameraRigMode === mode) {
|
|
if (this.cameraRigMode === mode) {
|
|
return;
|
|
return;
|
|
@@ -850,6 +1029,7 @@
|
|
return Matrix.Identity();
|
|
return Matrix.Identity();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /** @hidden */
|
|
public setCameraRigParameter(name: string, value: any) {
|
|
public setCameraRigParameter(name: string, value: any) {
|
|
if (!this._cameraRigParams) {
|
|
if (!this._cameraRigParams) {
|
|
this._cameraRigParams = {};
|
|
this._cameraRigParams = {};
|
|
@@ -863,6 +1043,7 @@
|
|
|
|
|
|
/**
|
|
/**
|
|
* needs to be overridden by children so sub has required properties to be copied
|
|
* needs to be overridden by children so sub has required properties to be copied
|
|
|
|
+ * @hidden
|
|
*/
|
|
*/
|
|
public createRigCamera(name: string, cameraIndex: number): Nullable<Camera> {
|
|
public createRigCamera(name: string, cameraIndex: number): Nullable<Camera> {
|
|
return null;
|
|
return null;
|
|
@@ -889,6 +1070,10 @@
|
|
public _setupInputs() {
|
|
public _setupInputs() {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Serialiaze the camera setup to a json represention
|
|
|
|
+ * @returns the JSON representation
|
|
|
|
+ */
|
|
public serialize(): any {
|
|
public serialize(): any {
|
|
var serializationObject = SerializationHelper.Serialize(this);
|
|
var serializationObject = SerializationHelper.Serialize(this);
|
|
|
|
|
|
@@ -910,10 +1095,20 @@
|
|
return serializationObject;
|
|
return serializationObject;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Clones the current camera.
|
|
|
|
+ * @param name The cloned camera name
|
|
|
|
+ * @returns the cloned camera
|
|
|
|
+ */
|
|
public clone(name: string): Camera {
|
|
public clone(name: string): Camera {
|
|
return SerializationHelper.Clone(Camera.GetConstructorFromName(this.getClassName(), name, this.getScene(), this.interaxialDistance, this.isStereoscopicSideBySide), this);
|
|
return SerializationHelper.Clone(Camera.GetConstructorFromName(this.getClassName(), name, this.getScene(), this.interaxialDistance, this.isStereoscopicSideBySide), this);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the direction of the camera relative to a given local axis.
|
|
|
|
+ * @param localAxis Defines the reference axis to provide a relative direction.
|
|
|
|
+ * @return the direction
|
|
|
|
+ */
|
|
public getDirection(localAxis: Vector3): Vector3 {
|
|
public getDirection(localAxis: Vector3): Vector3 {
|
|
var result = Vector3.Zero();
|
|
var result = Vector3.Zero();
|
|
|
|
|
|
@@ -922,10 +1117,24 @@
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets the direction of the camera relative to a given local axis into a passed vector.
|
|
|
|
+ * @param localAxis Defines the reference axis to provide a relative direction.
|
|
|
|
+ * @param result Defines the vector to store the result in
|
|
|
|
+ */
|
|
public getDirectionToRef(localAxis: Vector3, result: Vector3): void {
|
|
public getDirectionToRef(localAxis: Vector3, result: Vector3): void {
|
|
Vector3.TransformNormalToRef(localAxis, this.getWorldMatrix(), result);
|
|
Vector3.TransformNormalToRef(localAxis, this.getWorldMatrix(), result);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Gets a camera constructor for a given camera type
|
|
|
|
+ * @param type The type of the camera to construct (should be equal to one of the camera class name)
|
|
|
|
+ * @param name The name of the camera the result will be able to instantiate
|
|
|
|
+ * @param scene The scene the result will construct the camera in
|
|
|
|
+ * @param interaxial_distance In case of stereoscopic setup, the distance between both eyes
|
|
|
|
+ * @param isStereoscopicSideBySide In case of stereoscopic setup, should the sereo be side b side
|
|
|
|
+ * @returns a factory method to construc the camera
|
|
|
|
+ */
|
|
static GetConstructorFromName(type: string, name: string, scene: Scene, interaxial_distance: number = 0, isStereoscopicSideBySide: boolean = true): () => Camera {
|
|
static GetConstructorFromName(type: string, name: string, scene: Scene, interaxial_distance: number = 0, isStereoscopicSideBySide: boolean = true): () => Camera {
|
|
let constructorFunc = Node.Construct(type, name, scene, {
|
|
let constructorFunc = Node.Construct(type, name, scene, {
|
|
interaxial_distance: interaxial_distance,
|
|
interaxial_distance: interaxial_distance,
|
|
@@ -940,10 +1149,20 @@
|
|
return () => new UniversalCamera(name, Vector3.Zero(), scene);
|
|
return () => new UniversalCamera(name, Vector3.Zero(), scene);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Compute the world matrix of the camera.
|
|
|
|
+ * @returns the camera workd matrix
|
|
|
|
+ */
|
|
public computeWorldMatrix(): Matrix {
|
|
public computeWorldMatrix(): Matrix {
|
|
return this.getWorldMatrix();
|
|
return this.getWorldMatrix();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Parse a JSON and creates the camera from the parsed information
|
|
|
|
+ * @param parsedCamera The JSON to parse
|
|
|
|
+ * @param scene The scene to instantiate the camera in
|
|
|
|
+ * @returns the newly constructed camera
|
|
|
|
+ */
|
|
public static Parse(parsedCamera: any, scene: Scene): Camera {
|
|
public static Parse(parsedCamera: any, scene: Scene): Camera {
|
|
var type = parsedCamera.type;
|
|
var type = parsedCamera.type;
|
|
var construct = Camera.GetConstructorFromName(type, parsedCamera.name, scene, parsedCamera.interaxial_distance, parsedCamera.isStereoscopicSideBySide);
|
|
var construct = Camera.GetConstructorFromName(type, parsedCamera.name, scene, parsedCamera.interaxial_distance, parsedCamera.isStereoscopicSideBySide);
|