1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000 |
- module BABYLON {
- export class TransformNode extends Node {
- // Statics
- public static BILLBOARDMODE_NONE = 0;
- public static BILLBOARDMODE_X = 1;
- public static BILLBOARDMODE_Y = 2;
- public static BILLBOARDMODE_Z = 4;
- public static BILLBOARDMODE_ALL = 7;
- // Properties
- @serializeAsVector3()
- private _rotation = Vector3.Zero();
- @serializeAsQuaternion()
- private _rotationQuaternion: Nullable<Quaternion>;
- @serializeAsVector3()
- protected _scaling = Vector3.One();
- protected _isDirty = false;
- private _transformToBoneReferal: Nullable<TransformNode>;
- @serialize()
- public billboardMode = AbstractMesh.BILLBOARDMODE_NONE;
- @serialize()
- public scalingDeterminant = 1;
- @serialize()
- public infiniteDistance = false;
- @serializeAsVector3()
- public position = Vector3.Zero();
- // Cache
- public _poseMatrix: Matrix;
- private _localWorld = Matrix.Zero();
- public _worldMatrix = Matrix.Zero();
- public _worldMatrixDeterminant = 0;
- private _absolutePosition = Vector3.Zero();
- private _pivotMatrix = Matrix.Identity();
- private _pivotMatrixInverse: Matrix;
- private _postMultiplyPivotMatrix = false;
- protected _isWorldMatrixFrozen = false;
- /**
- * An event triggered after the world matrix is updated
- * @type {BABYLON.Observable}
- */
- public onAfterWorldMatrixUpdateObservable = new Observable<TransformNode>();
- constructor(name: string, scene: Nullable<Scene> = null, isPure = true) {
- super(name, scene);
- if (isPure) {
- this.getScene().addTransformNode(this);
- }
- }
- /**
- * Rotation property : a Vector3 depicting the rotation value in radians around each local axis X, Y, Z.
- * If rotation quaternion is set, this Vector3 will (almost always) be the Zero vector!
- * Default : (0.0, 0.0, 0.0)
- */
- public get rotation(): Vector3 {
- return this._rotation;
- }
- public set rotation(newRotation: Vector3) {
- this._rotation = newRotation;
- }
- /**
- * Scaling property : a Vector3 depicting the mesh scaling along each local axis X, Y, Z.
- * Default : (1.0, 1.0, 1.0)
- */
- public get scaling(): Vector3 {
- return this._scaling;
- }
- /**
- * Scaling property : a Vector3 depicting the mesh scaling along each local axis X, Y, Z.
- * Default : (1.0, 1.0, 1.0)
- */
- public set scaling(newScaling: Vector3) {
- this._scaling = newScaling;
- }
- /**
- * Rotation Quaternion property : this a Quaternion object depicting the mesh rotation by using a unit quaternion.
- * It's null by default.
- * If set, only the rotationQuaternion is then used to compute the mesh rotation and its property `.rotation\ is then ignored and set to (0.0, 0.0, 0.0)
- */
- public get rotationQuaternion(): Nullable<Quaternion> {
- return this._rotationQuaternion;
- }
- public set rotationQuaternion(quaternion: Nullable<Quaternion>) {
- this._rotationQuaternion = quaternion;
- //reset the rotation vector.
- if (quaternion && this.rotation.length()) {
- this.rotation.copyFromFloats(0.0, 0.0, 0.0);
- }
- }
- /**
- * Returns the latest update of the World matrix
- * Returns a Matrix.
- */
- public getWorldMatrix(): Matrix {
- if (this._currentRenderId !== this.getScene().getRenderId()) {
- this.computeWorldMatrix();
- }
- return this._worldMatrix;
- }
- /**
- * Returns the latest update of the World matrix determinant.
- */
- protected _getWorldMatrixDeterminant(): number {
- return this._worldMatrixDeterminant;
- }
- /**
- * Returns directly the latest state of the mesh World matrix.
- * A Matrix is returned.
- */
- public get worldMatrixFromCache(): Matrix {
- return this._worldMatrix;
- }
- /**
- * Copies the paramater passed Matrix into the mesh Pose matrix.
- * Returns the AbstractMesh.
- */
- public updatePoseMatrix(matrix: Matrix): TransformNode {
- this._poseMatrix.copyFrom(matrix);
- return this;
- }
- /**
- * Returns the mesh Pose matrix.
- * Returned object : Matrix
- */
- public getPoseMatrix(): Matrix {
- return this._poseMatrix;
- }
- public _isSynchronized(): boolean {
- if (this._isDirty) {
- return false;
- }
- if (this.billboardMode !== this._cache.billboardMode || this.billboardMode !== AbstractMesh.BILLBOARDMODE_NONE)
- return false;
- if (this._cache.pivotMatrixUpdated) {
- return false;
- }
- if (this.infiniteDistance) {
- return false;
- }
- if (!this._cache.position.equals(this.position))
- return false;
- if (this.rotationQuaternion) {
- if (!this._cache.rotationQuaternion.equals(this.rotationQuaternion))
- return false;
- }
- if (!this._cache.rotation.equals(this.rotation))
- return false;
- if (!this._cache.scaling.equals(this.scaling))
- return false;
- return true;
- }
- public _initCache() {
- super._initCache();
- this._cache.localMatrixUpdated = false;
- this._cache.position = Vector3.Zero();
- this._cache.scaling = Vector3.Zero();
- this._cache.rotation = Vector3.Zero();
- this._cache.rotationQuaternion = new Quaternion(0, 0, 0, 0);
- this._cache.billboardMode = -1;
- }
- public markAsDirty(property: string): TransformNode {
- if (property === "rotation") {
- this.rotationQuaternion = null;
- }
- this._currentRenderId = Number.MAX_VALUE;
- this._isDirty = true;
- return this;
- }
- /**
- * Returns the current mesh absolute position.
- * Retuns a Vector3.
- */
- public get absolutePosition(): Vector3 {
- return this._absolutePosition;
- }
- /**
- * Sets a new matrix to apply before all other transformation
- * @param matrix defines the transform matrix
- * @returns the current TransformNode
- */
- public setPreTransformMatrix(matrix: Matrix): TransformNode {
- return this.setPivotMatrix(matrix, false);
- }
- /**
- * Sets a new pivot matrix to the current node
- * @param matrix defines the new pivot matrix to use
- * @param postMultiplyPivotMatrix defines if the pivot matrix must be cancelled in the world matrix. When this parameter is set to true (default), the inverse of the pivot matrix is also applied at the end to cancel the transformation effect
- * @returns the current TransformNode
- */
- public setPivotMatrix(matrix: Matrix, postMultiplyPivotMatrix = true): TransformNode {
- this._pivotMatrix = matrix.clone();
- this._cache.pivotMatrixUpdated = true;
- this._postMultiplyPivotMatrix = postMultiplyPivotMatrix;
- if (this._postMultiplyPivotMatrix) {
- if (!this._pivotMatrixInverse) {
- this._pivotMatrixInverse = Matrix.Invert(this._pivotMatrix);
- } else {
- this._pivotMatrix.invertToRef(this._pivotMatrixInverse);
- }
- }
- return this;
- }
- /**
- * Returns the mesh pivot matrix.
- * Default : Identity.
- * A Matrix is returned.
- */
- public getPivotMatrix(): Matrix {
- return this._pivotMatrix;
- }
- /**
- * Prevents the World matrix to be computed any longer.
- * Returns the AbstractMesh.
- */
- public freezeWorldMatrix(): TransformNode {
- this._isWorldMatrixFrozen = false; // no guarantee world is not already frozen, switch off temporarily
- this.computeWorldMatrix(true);
- this._isWorldMatrixFrozen = true;
- return this;
- }
- /**
- * Allows back the World matrix computation.
- * Returns the AbstractMesh.
- */
- public unfreezeWorldMatrix() {
- this._isWorldMatrixFrozen = false;
- this.computeWorldMatrix(true);
- return this;
- }
- /**
- * True if the World matrix has been frozen.
- * Returns a boolean.
- */
- public get isWorldMatrixFrozen(): boolean {
- return this._isWorldMatrixFrozen;
- }
- /**
- * Retuns the mesh absolute position in the World.
- * Returns a Vector3.
- */
- public getAbsolutePosition(): Vector3 {
- this.computeWorldMatrix();
- return this._absolutePosition;
- }
- /**
- * Sets the mesh absolute position in the World from a Vector3 or an Array(3).
- * Returns the AbstractMesh.
- */
- public setAbsolutePosition(absolutePosition: Vector3): TransformNode {
- if (!absolutePosition) {
- return this;
- }
- var absolutePositionX;
- var absolutePositionY;
- var absolutePositionZ;
- if (absolutePosition.x === undefined) {
- if (arguments.length < 3) {
- return this;
- }
- absolutePositionX = arguments[0];
- absolutePositionY = arguments[1];
- absolutePositionZ = arguments[2];
- }
- else {
- absolutePositionX = absolutePosition.x;
- absolutePositionY = absolutePosition.y;
- absolutePositionZ = absolutePosition.z;
- }
- if (this.parent) {
- var invertParentWorldMatrix = this.parent.getWorldMatrix().clone();
- invertParentWorldMatrix.invert();
- var worldPosition = new Vector3(absolutePositionX, absolutePositionY, absolutePositionZ);
- this.position = Vector3.TransformCoordinates(worldPosition, invertParentWorldMatrix);
- } else {
- this.position.x = absolutePositionX;
- this.position.y = absolutePositionY;
- this.position.z = absolutePositionZ;
- }
- return this;
- }
- /**
- * Sets the mesh position in its local space.
- * Returns the AbstractMesh.
- */
- public setPositionWithLocalVector(vector3: Vector3): TransformNode {
- this.computeWorldMatrix();
- this.position = Vector3.TransformNormal(vector3, this._localWorld);
- return this;
- }
- /**
- * Returns the mesh position in the local space from the current World matrix values.
- * Returns a new Vector3.
- */
- public getPositionExpressedInLocalSpace(): Vector3 {
- this.computeWorldMatrix();
- var invLocalWorldMatrix = this._localWorld.clone();
- invLocalWorldMatrix.invert();
- return Vector3.TransformNormal(this.position, invLocalWorldMatrix);
- }
- /**
- * Translates the mesh along the passed Vector3 in its local space.
- * Returns the AbstractMesh.
- */
- public locallyTranslate(vector3: Vector3): TransformNode {
- this.computeWorldMatrix(true);
- this.position = Vector3.TransformCoordinates(vector3, this._localWorld);
- return this;
- }
- private static _lookAtVectorCache = new Vector3(0, 0, 0);
- /**
- * Orients a mesh towards a target point. Mesh must be drawn facing user.
- * @param targetPoint the position (must be in same space as current mesh) to look at
- * @param yawCor optional yaw (y-axis) correction in radians
- * @param pitchCor optional pitch (x-axis) correction in radians
- * @param rollCor optional roll (z-axis) correction in radians
- * @param space the choosen space of the target
- * @returns the TransformNode.
- */
- public lookAt(targetPoint: Vector3, yawCor: number = 0, pitchCor: number = 0, rollCor: number = 0, space: Space = Space.LOCAL): TransformNode {
- var dv = AbstractMesh._lookAtVectorCache;
- var pos = space === Space.LOCAL ? this.position : this.getAbsolutePosition();
- targetPoint.subtractToRef(pos, dv);
- var yaw = -Math.atan2(dv.z, dv.x) - Math.PI / 2;
- var len = Math.sqrt(dv.x * dv.x + dv.z * dv.z);
- var pitch = Math.atan2(dv.y, len);
- if (this.rotationQuaternion) {
- Quaternion.RotationYawPitchRollToRef(yaw + yawCor, pitch + pitchCor, rollCor, this.rotationQuaternion);
- }
- else {
- this.rotation.x = pitch + pitchCor;
- this.rotation.y = yaw + yawCor;
- this.rotation.z = rollCor;
- }
- return this;
- }
- /**
- * Returns a new Vector3 what is the localAxis, expressed in the mesh local space, rotated like the mesh.
- * This Vector3 is expressed in the World space.
- */
- public getDirection(localAxis: Vector3): Vector3 {
- var result = Vector3.Zero();
- this.getDirectionToRef(localAxis, result);
- return result;
- }
- /**
- * Sets the Vector3 "result" as the rotated Vector3 "localAxis" in the same rotation than the mesh.
- * localAxis is expressed in the mesh local space.
- * result is computed in the Wordl space from the mesh World matrix.
- * Returns the AbstractMesh.
- */
- public getDirectionToRef(localAxis: Vector3, result: Vector3): TransformNode {
- Vector3.TransformNormalToRef(localAxis, this.getWorldMatrix(), result);
- return this;
- }
- /**
- * Sets a new pivot point to the current node
- * @param point defines the new pivot point to use
- * @param space defines if the point is in world or local space (local by default)
- * @returns the current TransformNode
- */
- public setPivotPoint(point: Vector3, space: Space = Space.LOCAL): TransformNode {
- if (this.getScene().getRenderId() == 0) {
- this.computeWorldMatrix(true);
- }
- var wm = this.getWorldMatrix();
- if (space == Space.WORLD) {
- var tmat = Tmp.Matrix[0];
- wm.invertToRef(tmat);
- point = Vector3.TransformCoordinates(point, tmat);
- }
- return this.setPivotMatrix(Matrix.Translation(-point.x, -point.y, -point.z), true);
- }
- /**
- * Returns a new Vector3 set with the mesh pivot point coordinates in the local space.
- */
- public getPivotPoint(): Vector3 {
- var point = Vector3.Zero();
- this.getPivotPointToRef(point);
- return point;
- }
- /**
- * Sets the passed Vector3 "result" with the coordinates of the mesh pivot point in the local space.
- * Returns the AbstractMesh.
- */
- public getPivotPointToRef(result: Vector3): TransformNode {
- result.x = -this._pivotMatrix.m[12];
- result.y = -this._pivotMatrix.m[13];
- result.z = -this._pivotMatrix.m[14];
- return this;
- }
- /**
- * Returns a new Vector3 set with the mesh pivot point World coordinates.
- */
- public getAbsolutePivotPoint(): Vector3 {
- var point = Vector3.Zero();
- this.getAbsolutePivotPointToRef(point);
- return point;
- }
- /**
- * Sets the Vector3 "result" coordinates with the mesh pivot point World coordinates.
- * Returns the AbstractMesh.
- */
- public getAbsolutePivotPointToRef(result: Vector3): TransformNode {
- result.x = this._pivotMatrix.m[12];
- result.y = this._pivotMatrix.m[13];
- result.z = this._pivotMatrix.m[14];
- this.getPivotPointToRef(result);
- Vector3.TransformCoordinatesToRef(result, this.getWorldMatrix(), result);
- return this;
- }
- /**
- * Defines the passed node as the parent of the current node.
- * The node will remain exactly where it is and its position / rotation will be updated accordingly
- * Returns the TransformNode.
- */
- public setParent(node: Nullable<Node>): TransformNode {
- if (node === null) {
- var rotation = Tmp.Quaternion[0];
- var position = Tmp.Vector3[0];
- var scale = Tmp.Vector3[1];
- if (this.parent && this.parent.computeWorldMatrix) {
- this.parent.computeWorldMatrix(true);
- }
- this.computeWorldMatrix(true);
- this.getWorldMatrix().decompose(scale, rotation, position);
- if (this.rotationQuaternion) {
- this.rotationQuaternion.copyFrom(rotation);
- } else {
- rotation.toEulerAnglesToRef(this.rotation);
- }
- this.scaling.x = scale.x;
- this.scaling.y = scale.y;
- this.scaling.z = scale.z;
- this.position.x = position.x;
- this.position.y = position.y;
- this.position.z = position.z;
- } else {
- var rotation = Tmp.Quaternion[0];
- var position = Tmp.Vector3[0];
- var scale = Tmp.Vector3[1];
- var diffMatrix = Tmp.Matrix[0];
- var invParentMatrix = Tmp.Matrix[1];
- this.computeWorldMatrix(true);
- node.computeWorldMatrix(true);
- node.getWorldMatrix().invertToRef(invParentMatrix);
- this.getWorldMatrix().multiplyToRef(invParentMatrix, diffMatrix);
- diffMatrix.decompose(scale, rotation, position);
- if (this.rotationQuaternion) {
- this.rotationQuaternion.copyFrom(rotation);
- } else {
- rotation.toEulerAnglesToRef(this.rotation);
- }
- this.position.x = position.x;
- this.position.y = position.y;
- this.position.z = position.z;
- this.scaling.x = scale.x;
- this.scaling.y = scale.y;
- this.scaling.z = scale.z;
- }
- this.parent = node;
- return this;
- }
- private _nonUniformScaling = false;
- public get nonUniformScaling(): boolean {
- return this._nonUniformScaling;
- }
- public _updateNonUniformScalingState(value: boolean): boolean {
- if (this._nonUniformScaling === value) {
- return false;
- }
- this._nonUniformScaling = true;
- return true;
- }
- /**
- * Attach the current TransformNode to another TransformNode associated with a bone
- * @param bone Bone affecting the TransformNode
- * @param affectedTransformNode TransformNode associated with the bone
- */
- public attachToBone(bone: Bone, affectedTransformNode: TransformNode): TransformNode {
- this._transformToBoneReferal = affectedTransformNode;
- this.parent = bone;
- if (bone.getWorldMatrix().determinant() < 0) {
- this.scalingDeterminant *= -1;
- }
- return this;
- }
- public detachFromBone(): TransformNode {
- if (!this.parent) {
- return this;
- }
- if (this.parent.getWorldMatrix().determinant() < 0) {
- this.scalingDeterminant *= -1;
- }
- this._transformToBoneReferal = null;
- this.parent = null;
- return this;
- }
- private static _rotationAxisCache = new Quaternion();
- /**
- * Rotates the mesh around the axis vector for the passed angle (amount) expressed in radians, in the given space.
- * space (default LOCAL) can be either BABYLON.Space.LOCAL, either BABYLON.Space.WORLD.
- * Note that the property `rotationQuaternion` is then automatically updated and the property `rotation` is set to (0,0,0) and no longer used.
- * The passed axis is also normalized.
- * Returns the AbstractMesh.
- */
- public rotate(axis: Vector3, amount: number, space?: Space): TransformNode {
- axis.normalize();
- if (!this.rotationQuaternion) {
- this.rotationQuaternion = Quaternion.RotationYawPitchRoll(this.rotation.y, this.rotation.x, this.rotation.z);
- this.rotation = Vector3.Zero();
- }
- var rotationQuaternion: Quaternion;
- if (!space || (space as any) === Space.LOCAL) {
- rotationQuaternion = Quaternion.RotationAxisToRef(axis, amount, AbstractMesh._rotationAxisCache);
- this.rotationQuaternion.multiplyToRef(rotationQuaternion, this.rotationQuaternion);
- }
- else {
- if (this.parent) {
- var invertParentWorldMatrix = this.parent.getWorldMatrix().clone();
- invertParentWorldMatrix.invert();
- axis = Vector3.TransformNormal(axis, invertParentWorldMatrix);
- }
- rotationQuaternion = Quaternion.RotationAxisToRef(axis, amount, AbstractMesh._rotationAxisCache);
- rotationQuaternion.multiplyToRef(this.rotationQuaternion, this.rotationQuaternion);
- }
- return this;
- }
- /**
- * Rotates the mesh around the axis vector for the passed angle (amount) expressed in radians, in world space.
- * Note that the property `rotationQuaternion` is then automatically updated and the property `rotation` is set to (0,0,0) and no longer used.
- * The passed axis is also normalized.
- * Returns the AbstractMesh.
- * Method is based on http://www.euclideanspace.com/maths/geometry/affine/aroundPoint/index.htm
- */
- public rotateAround(point: Vector3, axis: Vector3, amount: number): TransformNode {
- axis.normalize();
- if (!this.rotationQuaternion) {
- this.rotationQuaternion = Quaternion.RotationYawPitchRoll(this.rotation.y, this.rotation.x, this.rotation.z);
- this.rotation.copyFromFloats(0, 0, 0);
- }
- point.subtractToRef(this.position, Tmp.Vector3[0]);
- Matrix.TranslationToRef(Tmp.Vector3[0].x, Tmp.Vector3[0].y, Tmp.Vector3[0].z, Tmp.Matrix[0]);
- Tmp.Matrix[0].invertToRef(Tmp.Matrix[2]);
- Matrix.RotationAxisToRef(axis, amount, Tmp.Matrix[1]);
- Tmp.Matrix[2].multiplyToRef(Tmp.Matrix[1], Tmp.Matrix[2]);
- Tmp.Matrix[2].multiplyToRef(Tmp.Matrix[0], Tmp.Matrix[2]);
- Tmp.Matrix[2].decompose(Tmp.Vector3[0], Tmp.Quaternion[0], Tmp.Vector3[1]);
- this.position.addInPlace(Tmp.Vector3[1]);
- Tmp.Quaternion[0].multiplyToRef(this.rotationQuaternion, this.rotationQuaternion);
- return this;
- }
- /**
- * Translates the mesh along the axis vector for the passed distance in the given space.
- * space (default LOCAL) can be either BABYLON.Space.LOCAL, either BABYLON.Space.WORLD.
- * Returns the AbstractMesh.
- */
- public translate(axis: Vector3, distance: number, space?: Space): TransformNode {
- var displacementVector = axis.scale(distance);
- if (!space || (space as any) === Space.LOCAL) {
- var tempV3 = this.getPositionExpressedInLocalSpace().add(displacementVector);
- this.setPositionWithLocalVector(tempV3);
- }
- else {
- this.setAbsolutePosition(this.getAbsolutePosition().add(displacementVector));
- }
- return this;
- }
- /**
- * Adds a rotation step to the mesh current rotation.
- * x, y, z are Euler angles expressed in radians.
- * This methods updates the current mesh rotation, either mesh.rotation, either mesh.rotationQuaternion if it's set.
- * This means this rotation is made in the mesh local space only.
- * It's useful to set a custom rotation order different from the BJS standard one YXZ.
- * Example : this rotates the mesh first around its local X axis, then around its local Z axis, finally around its local Y axis.
- * ```javascript
- * mesh.addRotation(x1, 0, 0).addRotation(0, 0, z2).addRotation(0, 0, y3);
- * ```
- * Note that `addRotation()` accumulates the passed rotation values to the current ones and computes the .rotation or .rotationQuaternion updated values.
- * Under the hood, only quaternions are used. So it's a little faster is you use .rotationQuaternion because it doesn't need to translate them back to Euler angles.
- * Returns the AbstractMesh.
- */
- public addRotation(x: number, y: number, z: number): TransformNode {
- var rotationQuaternion;
- if (this.rotationQuaternion) {
- rotationQuaternion = this.rotationQuaternion;
- }
- else {
- rotationQuaternion = Tmp.Quaternion[1];
- Quaternion.RotationYawPitchRollToRef(this.rotation.y, this.rotation.x, this.rotation.z, rotationQuaternion);
- }
- var accumulation = Tmp.Quaternion[0];
- Quaternion.RotationYawPitchRollToRef(y, x, z, accumulation);
- rotationQuaternion.multiplyInPlace(accumulation);
- if (!this.rotationQuaternion) {
- rotationQuaternion.toEulerAnglesToRef(this.rotation);
- }
- return this;
- }
- /**
- * Computes the mesh World matrix and returns it.
- * If the mesh world matrix is frozen, this computation does nothing more than returning the last frozen values.
- * If the parameter `force` is let to `false` (default), the current cached World matrix is returned.
- * If the parameter `force`is set to `true`, the actual computation is done.
- * Returns the mesh World Matrix.
- */
- public computeWorldMatrix(force?: boolean): Matrix {
- if (this._isWorldMatrixFrozen) {
- return this._worldMatrix;
- }
- if (!force && this.isSynchronized(true)) {
- return this._worldMatrix;
- }
- this._cache.position.copyFrom(this.position);
- this._cache.scaling.copyFrom(this.scaling);
- this._cache.pivotMatrixUpdated = false;
- this._cache.billboardMode = this.billboardMode;
- this._currentRenderId = this.getScene().getRenderId();
- this._isDirty = false;
- // Scaling
- Matrix.ScalingToRef(this.scaling.x * this.scalingDeterminant, this.scaling.y * this.scalingDeterminant, this.scaling.z * this.scalingDeterminant, Tmp.Matrix[1]);
- // Rotation
- //rotate, if quaternion is set and rotation was used
- if (this.rotationQuaternion) {
- var len = this.rotation.length();
- if (len) {
- this.rotationQuaternion.multiplyInPlace(Quaternion.RotationYawPitchRoll(this.rotation.y, this.rotation.x, this.rotation.z))
- this.rotation.copyFromFloats(0, 0, 0);
- }
- }
- if (this.rotationQuaternion) {
- this.rotationQuaternion.toRotationMatrix(Tmp.Matrix[0]);
- this._cache.rotationQuaternion.copyFrom(this.rotationQuaternion);
- } else {
- Matrix.RotationYawPitchRollToRef(this.rotation.y, this.rotation.x, this.rotation.z, Tmp.Matrix[0]);
- this._cache.rotation.copyFrom(this.rotation);
- }
- // Translation
- let camera = (<Camera>this.getScene().activeCamera);
- if (this.infiniteDistance && !this.parent && camera) {
- var cameraWorldMatrix = camera.getWorldMatrix();
- var cameraGlobalPosition = new Vector3(cameraWorldMatrix.m[12], cameraWorldMatrix.m[13], cameraWorldMatrix.m[14]);
- Matrix.TranslationToRef(this.position.x + cameraGlobalPosition.x, this.position.y + cameraGlobalPosition.y,
- this.position.z + cameraGlobalPosition.z, Tmp.Matrix[2]);
- } else {
- Matrix.TranslationToRef(this.position.x, this.position.y, this.position.z, Tmp.Matrix[2]);
- }
- // Composing transformations
- this._pivotMatrix.multiplyToRef(Tmp.Matrix[1], Tmp.Matrix[4]);
- Tmp.Matrix[4].multiplyToRef(Tmp.Matrix[0], Tmp.Matrix[5]);
- // Billboarding (testing PG:http://www.babylonjs-playground.com/#UJEIL#13)
- if (this.billboardMode !== AbstractMesh.BILLBOARDMODE_NONE && camera) {
- if ((this.billboardMode & AbstractMesh.BILLBOARDMODE_ALL) !== AbstractMesh.BILLBOARDMODE_ALL) {
- // Need to decompose each rotation here
- var currentPosition = Tmp.Vector3[3];
- if (this.parent && this.parent.getWorldMatrix) {
- if (this._transformToBoneReferal) {
- this.parent.getWorldMatrix().multiplyToRef(this._transformToBoneReferal.getWorldMatrix(), Tmp.Matrix[6]);
- Vector3.TransformCoordinatesToRef(this.position, Tmp.Matrix[6], currentPosition);
- } else {
- Vector3.TransformCoordinatesToRef(this.position, this.parent.getWorldMatrix(), currentPosition);
- }
- } else {
- currentPosition.copyFrom(this.position);
- }
- currentPosition.subtractInPlace(camera.globalPosition);
- var finalEuler = Tmp.Vector3[4].copyFromFloats(0, 0, 0);
- if ((this.billboardMode & AbstractMesh.BILLBOARDMODE_X) === AbstractMesh.BILLBOARDMODE_X) {
- finalEuler.x = Math.atan2(-currentPosition.y, currentPosition.z);
- }
- if ((this.billboardMode & AbstractMesh.BILLBOARDMODE_Y) === AbstractMesh.BILLBOARDMODE_Y) {
- finalEuler.y = Math.atan2(currentPosition.x, currentPosition.z);
- }
- if ((this.billboardMode & AbstractMesh.BILLBOARDMODE_Z) === AbstractMesh.BILLBOARDMODE_Z) {
- finalEuler.z = Math.atan2(currentPosition.y, currentPosition.x);
- }
- Matrix.RotationYawPitchRollToRef(finalEuler.y, finalEuler.x, finalEuler.z, Tmp.Matrix[0]);
- } else {
- Tmp.Matrix[1].copyFrom(camera.getViewMatrix());
- Tmp.Matrix[1].setTranslationFromFloats(0, 0, 0);
- Tmp.Matrix[1].invertToRef(Tmp.Matrix[0]);
- }
- Tmp.Matrix[1].copyFrom(Tmp.Matrix[5]);
- Tmp.Matrix[1].multiplyToRef(Tmp.Matrix[0], Tmp.Matrix[5]);
- }
- // Local world
- Tmp.Matrix[5].multiplyToRef(Tmp.Matrix[2], this._localWorld);
- // Parent
- if (this.parent && this.parent.getWorldMatrix) {
- if (this.billboardMode !== AbstractMesh.BILLBOARDMODE_NONE) {
- if (this._transformToBoneReferal) {
- this.parent.getWorldMatrix().multiplyToRef(this._transformToBoneReferal.getWorldMatrix(), Tmp.Matrix[6]);
- Tmp.Matrix[5].copyFrom(Tmp.Matrix[6]);
- } else {
- Tmp.Matrix[5].copyFrom(this.parent.getWorldMatrix());
- }
- this._localWorld.getTranslationToRef(Tmp.Vector3[5]);
- Vector3.TransformCoordinatesToRef(Tmp.Vector3[5], Tmp.Matrix[5], Tmp.Vector3[5]);
- this._worldMatrix.copyFrom(this._localWorld);
- this._worldMatrix.setTranslation(Tmp.Vector3[5]);
- } else {
- if (this._transformToBoneReferal) {
- this._localWorld.multiplyToRef(this.parent.getWorldMatrix(), Tmp.Matrix[6]);
- Tmp.Matrix[6].multiplyToRef(this._transformToBoneReferal.getWorldMatrix(), this._worldMatrix);
- } else {
- this._localWorld.multiplyToRef(this.parent.getWorldMatrix(), this._worldMatrix);
- }
- }
- this._markSyncedWithParent();
- } else {
- this._worldMatrix.copyFrom(this._localWorld);
- }
- // Post multiply inverse of pivotMatrix
- if (this._postMultiplyPivotMatrix) {
- this._worldMatrix.multiplyToRef(this._pivotMatrixInverse, this._worldMatrix);
- }
- // Normal matrix
- if (this.scaling.isNonUniform) {
- this._updateNonUniformScalingState(true);
- } else if (this.parent && (<TransformNode>this.parent)._nonUniformScaling) {
- this._updateNonUniformScalingState((<TransformNode>this.parent)._nonUniformScaling);
- } else {
- this._updateNonUniformScalingState(false);
- }
- this._afterComputeWorldMatrix();
- // Absolute position
- this._absolutePosition.copyFromFloats(this._worldMatrix.m[12], this._worldMatrix.m[13], this._worldMatrix.m[14]);
- // Callbacks
- this.onAfterWorldMatrixUpdateObservable.notifyObservers(this);
- if (!this._poseMatrix) {
- this._poseMatrix = Matrix.Invert(this._worldMatrix);
- }
- // Cache the determinant
- this._worldMatrixDeterminant = this._worldMatrix.determinant();
- return this._worldMatrix;
- }
- protected _afterComputeWorldMatrix(): void {
- }
- /**
- * If you'd like to be called back after the mesh position, rotation or scaling has been updated.
- * @param func: callback function to add
- *
- * Returns the TransformNode.
- */
- public registerAfterWorldMatrixUpdate(func: (mesh: TransformNode) => void): TransformNode {
- this.onAfterWorldMatrixUpdateObservable.add(func);
- return this;
- }
- /**
- * Removes a registered callback function.
- * Returns the TransformNode.
- */
- public unregisterAfterWorldMatrixUpdate(func: (mesh: TransformNode) => void): TransformNode {
- this.onAfterWorldMatrixUpdateObservable.removeCallback(func);
- return this;
- }
- /**
- * Clone the current transform node
- * Returns the new transform node
- * @param name Name of the new clone
- * @param newParent New parent for the clone
- * @param doNotCloneChildren Do not clone children hierarchy
- */
- public clone(name: string, newParent: Node, doNotCloneChildren?: boolean): Nullable<TransformNode> {
- var result = SerializationHelper.Clone(() => new TransformNode(name, this.getScene()), this);
- result.name = name;
- result.id = name;
- if (newParent) {
- result.parent = newParent;
- }
- if (!doNotCloneChildren) {
- // Children
- let directDescendants = this.getDescendants(true);
- for (let index = 0; index < directDescendants.length; index++) {
- var child = directDescendants[index];
- if ((<any>child).clone) {
- (<any>child).clone(name + "." + child.name, result);
- }
- }
- }
- return result;
- }
- public serialize(currentSerializationObject?: any): any {
- let serializationObject = SerializationHelper.Serialize(this, currentSerializationObject);
- serializationObject.type = this.getClassName();
- // Parent
- if (this.parent) {
- serializationObject.parentId = this.parent.id;
- }
- if (Tags && Tags.HasTags(this)) {
- serializationObject.tags = Tags.GetTags(this);
- }
- serializationObject.localMatrix = this.getPivotMatrix().asArray();
- serializationObject.isEnabled = this.isEnabled();
- // Parent
- if (this.parent) {
- serializationObject.parentId = this.parent.id;
- }
- return serializationObject;
- }
- // Statics
- /**
- * Returns a new TransformNode object parsed from the source provided.
- * The parameter `parsedMesh` is the source.
- * The parameter `rootUrl` is a string, it's the root URL to prefix the `delayLoadingFile` property with
- */
- public static Parse(parsedTransformNode: any, scene: Scene, rootUrl: string): TransformNode {
- var transformNode = SerializationHelper.Parse(() => new TransformNode(parsedTransformNode.name, scene), parsedTransformNode, scene, rootUrl);
- if (Tags) {
- Tags.AddTagsTo(transformNode, parsedTransformNode.tags);
- }
- if (parsedTransformNode.localMatrix) {
- transformNode.setPreTransformMatrix(Matrix.FromArray(parsedTransformNode.localMatrix));
- } else if (parsedTransformNode.pivotMatrix) {
- transformNode.setPivotMatrix(Matrix.FromArray(parsedTransformNode.pivotMatrix));
- }
- transformNode.setEnabled(parsedTransformNode.isEnabled);
- // Parent
- if (parsedTransformNode.parentId) {
- transformNode._waitingParentId = parsedTransformNode.parentId;
- }
- return transformNode;
- }
- /**
- * Disposes the TransformNode.
- * By default, all the children are also disposed unless the parameter `doNotRecurse` is set to `true`.
- * Returns nothing.
- */
- public dispose(doNotRecurse?: boolean): void {
- // Animations
- this.getScene().stopAnimation(this);
- // Remove from scene
- this.getScene().removeTransformNode(this);
- if (!doNotRecurse) {
- // Children
- var objects = this.getDescendants(true);
- for (var index = 0; index < objects.length; index++) {
- objects[index].dispose();
- }
- } else {
- var childMeshes = this.getChildMeshes(true);
- for (index = 0; index < childMeshes.length; index++) {
- var child = childMeshes[index];
- child.parent = null;
- child.computeWorldMatrix(true);
- }
- }
- this.onAfterWorldMatrixUpdateObservable.clear();
- super.dispose();
- }
- }
- }
|