2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2013 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Physics Body is linked to a single Sprite. All physics operations should be performed against the body rather than
|
|
|
|
* the Sprite itself. For example you can set the velocity, acceleration, bounce values etc all on the Body.
|
|
|
|
*
|
|
|
|
* @class Phaser.Physics.Arcade.Body
|
|
|
|
* @classdesc Arcade Physics Body Constructor
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Sprite} sprite - The Sprite object this physics body belongs to.
|
|
|
|
*/
|
2013-09-03 14:35:40 +00:00
|
|
|
Phaser.Physics.Arcade.Body = function (sprite) {
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Sprite} sprite - Reference to the parent Sprite.
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.sprite = sprite;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} game - Local reference to game.
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.game = sprite.game;
|
2013-09-03 14:35:40 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} offset - The offset of the Physics Body from the Sprite x/y position.
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.offset = new Phaser.Point();
|
2013-09-03 14:35:40 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @property {number} x - The x position of the physics body.
|
|
|
|
* @readonly
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.x = sprite.x;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} y - The y position of the physics body.
|
|
|
|
* @readonly
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.y = sprite.y;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} preX - The previous x position of the physics body.
|
|
|
|
* @readonly
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.preX = sprite.x;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} preY - The previous y position of the physics body.
|
|
|
|
* @readonly
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.preY = sprite.y;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} preRotation - The previous rotation of the physics body.
|
|
|
|
* @readonly
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.preRotation = sprite.angle;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} screenX - The x position of the physics body translated to screen space.
|
|
|
|
* @readonly
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.screenX = sprite.x;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} screenY - The y position of the physics body translated to screen space.
|
|
|
|
* @readonly
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.screenY = sprite.y;
|
2013-09-04 00:10:01 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @property {number} sourceWidth - The un-scaled original size.
|
|
|
|
* @readonly
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.sourceWidth = sprite.currentFrame.sourceSizeW;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} sourceHeight - The un-scaled original size.
|
|
|
|
* @readonly
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.sourceHeight = sprite.currentFrame.sourceSizeH;
|
2013-09-04 00:10:01 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @property {number} width - The calculated width of the physics body.
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.width = sprite.currentFrame.sourceSizeW;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property .numInternal ID cache
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.height = sprite.currentFrame.sourceSizeH;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} halfWidth - The calculated width / 2 of the physics body.
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.halfWidth = Math.floor(sprite.currentFrame.sourceSizeW / 2);
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} halfHeight - The calculated height / 2 of the physics body.
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.halfHeight = Math.floor(sprite.currentFrame.sourceSizeH / 2);
|
2013-09-04 00:10:01 +00:00
|
|
|
|
2013-10-30 03:46:52 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} center - The center coordinate of the Physics Body.
|
|
|
|
*/
|
|
|
|
this.center = new Phaser.Point(this.x + this.halfWidth, this.y + this.halfHeight);
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @property {number} _sx - Internal cache var.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this._sx = sprite.scale.x;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _sy - Internal cache var.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this._sy = sprite.scale.y;
|
2013-09-03 16:07:05 +00:00
|
|
|
|
2014-01-02 23:28:22 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} motionVelocity - The data from the updateMotion function.
|
|
|
|
*/
|
|
|
|
this.motionVelocity = new Phaser.Point();
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} velocity - The velocity in pixels per second sq. of the Body.
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.velocity = new Phaser.Point();
|
2013-10-25 15:54:40 +00:00
|
|
|
|
2014-01-02 23:28:22 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} prevVelocity - The velocity in pixels per second sq. of the Body.
|
|
|
|
*/
|
|
|
|
this.prevVelocity = new Phaser.Point();
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} acceleration - The velocity in pixels per second sq. of the Body.
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.acceleration = new Phaser.Point();
|
2013-10-25 15:54:40 +00:00
|
|
|
|
2014-01-14 02:43:09 +00:00
|
|
|
/**
|
|
|
|
* @property {number} speed - The speed in pixels per second sq. of the Body.
|
|
|
|
*/
|
2014-01-03 02:24:06 +00:00
|
|
|
this.speed = 0;
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
2014-01-14 02:43:09 +00:00
|
|
|
* @property {number} angle - The angle of the Body in radians.
|
2013-10-25 15:54:40 +00:00
|
|
|
*/
|
2014-01-14 02:43:09 +00:00
|
|
|
this.angle = 0;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
2014-01-02 23:28:22 +00:00
|
|
|
* @property {Phaser.Point} gravity - The gravity applied to the motion of the Body.
|
2013-10-25 15:54:40 +00:00
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.gravity = new Phaser.Point();
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} bounce - The elasticitiy of the Body when colliding. bounce.x/y = 1 means full rebound, bounce.x/y = 0.5 means 50% rebound velocity.
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this.bounce = new Phaser.Point();
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} maxVelocity - The maximum velocity in pixels per second sq. that the Body can reach.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-03 16:07:05 +00:00
|
|
|
this.maxVelocity = new Phaser.Point(10000, 10000);
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @property {number} angularVelocity - The angular velocity in pixels per second sq. of the Body.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-03 16:07:05 +00:00
|
|
|
this.angularVelocity = 0;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} angularAcceleration - The angular acceleration in pixels per second sq. of the Body.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-03 16:07:05 +00:00
|
|
|
this.angularAcceleration = 0;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} angularDrag - The angular drag applied to the rotation of the Body.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-03 16:07:05 +00:00
|
|
|
this.angularDrag = 0;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} maxAngular - The maximum angular velocity in pixels per second sq. that the Body can reach.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-03 16:07:05 +00:00
|
|
|
this.maxAngular = 1000;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} mass - The mass of the Body.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-03 16:07:05 +00:00
|
|
|
this.mass = 1;
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* Set the allowCollision properties to control which directions collision is processed for this Body.
|
|
|
|
* For example allowCollision.up = false means it won't collide when the collision happened while moving up.
|
|
|
|
* @property {object} allowCollision - An object containing allowed collision.
|
|
|
|
*/
|
2013-12-06 01:07:25 +00:00
|
|
|
// This would be faster as an array
|
2013-09-04 15:12:58 +00:00
|
|
|
this.allowCollision = { none: false, any: true, up: true, down: true, left: true, right: true };
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This object is populated with boolean values when the Body collides with another.
|
|
|
|
* touching.up = true means the collision happened to the top of this Body for example.
|
|
|
|
* @property {object} touching - An object containing touching results.
|
|
|
|
*/
|
2013-12-06 01:07:25 +00:00
|
|
|
// This would be faster as an array
|
2013-09-04 12:54:55 +00:00
|
|
|
this.touching = { none: true, up: false, down: false, left: false, right: false };
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This object is populated with previous touching values from the bodies previous collision.
|
|
|
|
* @property {object} wasTouching - An object containing previous touching results.
|
|
|
|
*/
|
2013-12-06 01:07:25 +00:00
|
|
|
// This would be faster as an array
|
2013-09-04 12:54:55 +00:00
|
|
|
this.wasTouching = { none: true, up: false, down: false, left: false, right: false };
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} facing - A const reference to the direction the Body is traveling or facing.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-23 21:23:17 +00:00
|
|
|
this.facing = Phaser.NONE;
|
2013-09-04 00:10:01 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
2014-01-02 23:28:22 +00:00
|
|
|
* @property {boolean} immovable - An immovable Body will not receive any impacts or exchanges of velocity from other bodies.
|
2013-10-25 15:54:40 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2013-09-03 16:28:12 +00:00
|
|
|
this.immovable = false;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} moves - Set to true to allow the Physics system to move this Body, other false to move it manually.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-04 00:10:01 +00:00
|
|
|
this.moves = true;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
2014-01-14 02:43:09 +00:00
|
|
|
* @property {number} rotation - The amount the parent Sprite is rotated. Note: You cannot rotate an AABB.
|
2013-10-25 15:54:40 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2013-09-04 00:10:01 +00:00
|
|
|
this.rotation = 0;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
2014-01-14 02:43:09 +00:00
|
|
|
* @property {boolean} allowRotation - Allow angular rotation? This will cause the Sprite to be rotated via angularVelocity, etc. Note that the AABB remains un-rotated.
|
2013-10-25 15:54:40 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2013-09-06 14:00:05 +00:00
|
|
|
this.allowRotation = true;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
2014-01-14 02:43:09 +00:00
|
|
|
* @property {boolean} allowGravity - Allow this Body to be influenced by the global Gravity value? Note: It will always be influenced by the local gravity value.
|
2013-10-25 15:54:40 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2013-09-04 00:10:01 +00:00
|
|
|
this.allowGravity = true;
|
2013-09-03 16:07:05 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* This flag allows you to disable the custom x separation that takes place by Physics.Arcade.separate.
|
|
|
|
* Used in combination with your own collision processHandler you can create whatever type of collision response you need.
|
|
|
|
* @property {boolean} customSeparateX - Use a custom separation system or the built-in one?
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-13 02:07:39 +00:00
|
|
|
this.customSeparateX = false;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This flag allows you to disable the custom y separation that takes place by Physics.Arcade.separate.
|
|
|
|
* Used in combination with your own collision processHandler you can create whatever type of collision response you need.
|
|
|
|
* @property {boolean} customSeparateY - Use a custom separation system or the built-in one?
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-13 02:07:39 +00:00
|
|
|
this.customSeparateY = false;
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* When this body collides with another, the amount of overlap is stored here.
|
|
|
|
* @property {number} overlapX - The amount of horizontal overlap during the collision.
|
|
|
|
*/
|
2013-09-13 02:07:39 +00:00
|
|
|
this.overlapX = 0;
|
2013-10-25 15:54:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* When this body collides with another, the amount of overlap is stored here.
|
|
|
|
* @property {number} overlapY - The amount of vertical overlap during the collision.
|
|
|
|
*/
|
2013-09-13 02:07:39 +00:00
|
|
|
this.overlapY = 0;
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
2014-01-02 23:28:22 +00:00
|
|
|
* @property {boolean} canSleep - A Body that canSleep will have its velocity set to zero if it falls below sleepThreshold for longer than sleepDuration.
|
|
|
|
* @default
|
2013-10-25 15:54:40 +00:00
|
|
|
*/
|
2014-01-03 02:24:06 +00:00
|
|
|
this.sleeping = false;
|
2014-01-14 02:43:09 +00:00
|
|
|
this.canSleep = false;
|
2014-01-02 23:28:22 +00:00
|
|
|
this.sleepMin = new Phaser.Point(-20, -20);
|
|
|
|
this.sleepMax = new Phaser.Point(20, 20);
|
|
|
|
this.sleepDuration = 2000; // ms
|
|
|
|
this._sleepTimer = 0; // ms
|
2014-01-03 02:24:06 +00:00
|
|
|
this._drag = 0;
|
|
|
|
this._debug = 0;
|
2014-01-09 17:12:24 +00:00
|
|
|
this.friction = 0;
|
2013-10-14 18:37:44 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* If a body is overlapping with another body, but neither of them are moving (maybe they spawned on-top of each other?) this is set to true.
|
|
|
|
* @property {boolean} embedded - Body embed value.
|
|
|
|
*/
|
2013-09-23 02:26:08 +00:00
|
|
|
this.embedded = false;
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* A Body can be set to collide against the World bounds automatically and rebound back into the World if this is set to true. Otherwise it will leave the World.
|
|
|
|
* @property {boolean} collideWorldBounds - Should the Body collide with the World bounds?
|
|
|
|
*/
|
2013-09-04 02:48:15 +00:00
|
|
|
this.collideWorldBounds = false;
|
|
|
|
|
2013-12-06 01:07:25 +00:00
|
|
|
this.blocked = { up: false, down: false, left: false, right: false };
|
|
|
|
|
2013-09-03 14:35:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Physics.Arcade.Body.prototype = {
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* Internal method.
|
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade#updateBounds
|
|
|
|
* @protected
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
updateBounds: function (centerX, centerY, scaleX, scaleY) {
|
2013-09-03 16:07:05 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if (scaleX != this._sx || scaleY != this._sy)
|
|
|
|
{
|
|
|
|
this.width = this.sourceWidth * scaleX;
|
|
|
|
this.height = this.sourceHeight * scaleY;
|
|
|
|
this.halfWidth = Math.floor(this.width / 2);
|
|
|
|
this.halfHeight = Math.floor(this.height / 2);
|
|
|
|
this._sx = scaleX;
|
|
|
|
this._sy = scaleY;
|
2013-10-30 03:46:52 +00:00
|
|
|
this.center.setTo(this.x + this.halfWidth, this.y + this.halfHeight);
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-09-03 16:07:05 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
},
|
2013-09-03 16:07:05 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* Internal method.
|
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade#preUpdate
|
|
|
|
* @protected
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
preUpdate: function () {
|
2013-09-03 16:07:05 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
// Store and reset collision flags
|
|
|
|
this.wasTouching.none = this.touching.none;
|
|
|
|
this.wasTouching.up = this.touching.up;
|
|
|
|
this.wasTouching.down = this.touching.down;
|
|
|
|
this.wasTouching.left = this.touching.left;
|
|
|
|
this.wasTouching.right = this.touching.right;
|
2013-09-04 12:54:55 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.touching.none = true;
|
|
|
|
this.touching.up = false;
|
|
|
|
this.touching.down = false;
|
|
|
|
this.touching.left = false;
|
|
|
|
this.touching.right = false;
|
2013-09-04 12:54:55 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.embedded = false;
|
2013-09-23 02:26:08 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.screenX = (this.sprite.worldTransform[2] - (this.sprite.anchor.x * this.width)) + this.offset.x;
|
|
|
|
this.screenY = (this.sprite.worldTransform[5] - (this.sprite.anchor.y * this.height)) + this.offset.y;
|
2013-10-18 14:12:32 +00:00
|
|
|
|
2013-10-29 04:07:26 +00:00
|
|
|
this.preX = (this.sprite.world.x - (this.sprite.anchor.x * this.width)) + this.offset.x;
|
|
|
|
this.preY = (this.sprite.world.y - (this.sprite.anchor.y * this.height)) + this.offset.y;
|
2013-11-25 04:40:04 +00:00
|
|
|
this.preRotation = this.sprite.angle;
|
2013-09-06 14:00:05 +00:00
|
|
|
|
2014-01-09 03:42:58 +00:00
|
|
|
if (this.canSleep && this.sleeping && (this.velocity.equals(this.prevVelocity) === false || this.acceleration.isZero() === false))
|
2014-01-02 23:28:22 +00:00
|
|
|
{
|
|
|
|
this.sleeping = false;
|
|
|
|
this._sleepTimer = 0;
|
|
|
|
}
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.x = this.preX;
|
|
|
|
this.y = this.preY;
|
|
|
|
this.rotation = this.preRotation;
|
2013-09-23 00:06:09 +00:00
|
|
|
|
2014-01-03 02:24:06 +00:00
|
|
|
this.speed = Math.sqrt(this.velocity.x * this.velocity.x + this.velocity.y * this.velocity.y);
|
|
|
|
this.angle = Math.atan2(this.velocity.y, this.velocity.x);
|
|
|
|
|
2013-12-06 01:07:25 +00:00
|
|
|
this.blocked.up = false;
|
|
|
|
this.blocked.down = false;
|
|
|
|
this.blocked.left = false;
|
|
|
|
this.blocked.right = false;
|
2013-12-05 18:12:16 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if (this.moves)
|
|
|
|
{
|
2014-01-15 03:17:26 +00:00
|
|
|
if (this.collideWorldBounds)
|
2014-01-02 23:28:22 +00:00
|
|
|
{
|
2014-01-15 03:17:26 +00:00
|
|
|
this.checkWorldBounds();
|
2014-01-02 23:28:22 +00:00
|
|
|
}
|
2014-01-15 03:17:26 +00:00
|
|
|
|
|
|
|
// Apply world gravity, acceleration + rotation
|
|
|
|
this.game.physics.updateMotion(this);
|
|
|
|
|
|
|
|
this.applyMotion();
|
|
|
|
|
|
|
|
// if (this.canSleep)
|
|
|
|
// {
|
|
|
|
// if (!this.sleeping)
|
|
|
|
// {
|
|
|
|
// if (this.velocity.x >= this.sleepMin.x && this.velocity.x <= this.sleepMax.x && this.velocity.y >= this.sleepMin.y && this.velocity.y <= this.sleepMax.y)
|
|
|
|
// {
|
|
|
|
// if (this._sleepTimer >= this.sleepDuration)
|
|
|
|
// {
|
|
|
|
// this.sleeping = true;
|
|
|
|
// }
|
|
|
|
// else
|
|
|
|
// {
|
|
|
|
// this._sleepTimer += this.game.time.elapsed;
|
|
|
|
// this.applyMotion();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// else
|
|
|
|
// {
|
|
|
|
// this.applyMotion();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// else
|
|
|
|
// {
|
|
|
|
// this.applyMotion();
|
|
|
|
// }
|
2013-10-30 03:46:52 +00:00
|
|
|
}
|
2013-09-06 14:00:05 +00:00
|
|
|
|
2014-01-02 23:28:22 +00:00
|
|
|
this.prevVelocity.copyFrom(this.velocity);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-01-14 02:43:09 +00:00
|
|
|
/**
|
|
|
|
* Internal method.
|
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade#applyMotion
|
|
|
|
* @protected
|
|
|
|
*/
|
2014-01-02 23:28:22 +00:00
|
|
|
applyMotion: function () {
|
|
|
|
|
2014-01-09 03:42:58 +00:00
|
|
|
if (this.friction > 0 && this.acceleration.isZero())
|
2014-01-03 04:50:31 +00:00
|
|
|
{
|
2014-01-09 03:42:58 +00:00
|
|
|
if (this.speed > this.friction)
|
2014-01-03 04:50:31 +00:00
|
|
|
{
|
2014-01-09 03:42:58 +00:00
|
|
|
this.speed -= this.friction;
|
2014-01-03 04:50:31 +00:00
|
|
|
}
|
2014-01-09 03:42:58 +00:00
|
|
|
else
|
2014-01-03 04:50:31 +00:00
|
|
|
{
|
2014-01-09 03:42:58 +00:00
|
|
|
this.speed = 0;
|
2014-01-03 04:50:31 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 03:42:58 +00:00
|
|
|
this.velocity.x = Math.cos(this.angle) * this.speed;
|
|
|
|
this.velocity.y = Math.sin(this.angle) * this.speed;
|
2014-01-03 04:50:31 +00:00
|
|
|
}
|
|
|
|
|
2014-01-15 03:17:26 +00:00
|
|
|
// overlapX/Y values at this point will be penetration into the bounds
|
|
|
|
if (this.blocked.down)
|
|
|
|
{
|
|
|
|
this.y -= this.overlapY;
|
|
|
|
}
|
|
|
|
else if (this.blocked.up)
|
|
|
|
{
|
|
|
|
this.y += this.overlapY;
|
|
|
|
}
|
2014-01-03 04:50:31 +00:00
|
|
|
|
2014-01-15 03:17:26 +00:00
|
|
|
this.x += this.game.time.physicsElapsed * (this.velocity.x + this.motionVelocity.x / 2);
|
2014-01-03 04:50:31 +00:00
|
|
|
this.y += this.game.time.physicsElapsed * (this.velocity.y + this.motionVelocity.y / 2);
|
2014-01-15 03:17:26 +00:00
|
|
|
|
|
|
|
this.velocity.x += this.motionVelocity.x;
|
2014-01-03 04:50:31 +00:00
|
|
|
this.velocity.y += this.motionVelocity.y;
|
|
|
|
|
2014-01-15 03:17:26 +00:00
|
|
|
if (this.blocked.down && this.deltaY() > 0)
|
|
|
|
{
|
|
|
|
this.velocity.y *= -this.bounce.y;
|
|
|
|
}
|
|
|
|
else if (this.blocked.up && this.deltaY() < 0)
|
|
|
|
{
|
|
|
|
this.velocity.y *= -this.bounce.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.collideWorldBounds)
|
|
|
|
{
|
|
|
|
// this.checkWorldBounds();
|
|
|
|
}
|
|
|
|
|
2014-01-09 03:42:58 +00:00
|
|
|
if (this.velocity.x > this.maxVelocity.x)
|
2014-01-03 02:24:06 +00:00
|
|
|
{
|
2014-01-09 03:42:58 +00:00
|
|
|
this.velocity.x = this.maxVelocity.x;
|
2014-01-03 02:24:06 +00:00
|
|
|
}
|
2014-01-09 03:42:58 +00:00
|
|
|
else if (this.velocity.x < -this.maxVelocity.x)
|
2014-01-03 02:24:06 +00:00
|
|
|
{
|
2014-01-09 03:42:58 +00:00
|
|
|
this.velocity.x = -this.maxVelocity.x;
|
2014-01-03 02:24:06 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 03:42:58 +00:00
|
|
|
if (this.velocity.y > this.maxVelocity.y)
|
2014-01-03 02:24:06 +00:00
|
|
|
{
|
2014-01-09 03:42:58 +00:00
|
|
|
this.velocity.y = this.maxVelocity.y;
|
2014-01-03 02:24:06 +00:00
|
|
|
}
|
2014-01-09 03:42:58 +00:00
|
|
|
else if (this.velocity.y < -this.maxVelocity.y)
|
2014-01-03 02:24:06 +00:00
|
|
|
{
|
2014-01-09 03:42:58 +00:00
|
|
|
this.velocity.y = -this.maxVelocity.y;
|
2014-01-03 02:24:06 +00:00
|
|
|
}
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
},
|
2013-09-23 00:06:09 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
2014-01-02 23:28:22 +00:00
|
|
|
* Internal method. This is called directly before the sprites are sent to the renderer.
|
2013-10-25 15:54:40 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade#postUpdate
|
|
|
|
* @protected
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
postUpdate: function () {
|
|
|
|
|
2014-01-02 23:28:22 +00:00
|
|
|
if (this.moves)
|
2013-11-25 04:40:04 +00:00
|
|
|
{
|
2014-01-15 03:17:26 +00:00
|
|
|
if (this.deltaX() < 0)
|
2014-01-02 23:28:22 +00:00
|
|
|
{
|
|
|
|
this.facing = Phaser.LEFT;
|
2014-01-15 03:17:26 +00:00
|
|
|
|
|
|
|
if (this.blocked.left === false)
|
|
|
|
{
|
|
|
|
this.sprite.x += this.deltaX();
|
|
|
|
}
|
2014-01-02 23:28:22 +00:00
|
|
|
}
|
2014-01-15 03:17:26 +00:00
|
|
|
else if (this.deltaX() > 0)
|
2014-01-02 23:28:22 +00:00
|
|
|
{
|
|
|
|
this.facing = Phaser.RIGHT;
|
2014-01-15 03:17:26 +00:00
|
|
|
|
|
|
|
if (this.blocked.right === false)
|
|
|
|
{
|
|
|
|
this.sprite.x += this.deltaX();
|
|
|
|
}
|
2014-01-02 23:28:22 +00:00
|
|
|
}
|
2013-12-05 18:12:16 +00:00
|
|
|
|
2014-01-15 03:17:26 +00:00
|
|
|
if (this.deltaY() < 0)
|
2014-01-02 23:28:22 +00:00
|
|
|
{
|
|
|
|
this.facing = Phaser.UP;
|
2014-01-15 03:17:26 +00:00
|
|
|
|
|
|
|
if (this.blocked.up === false)
|
|
|
|
{
|
|
|
|
this.sprite.y += this.deltaY();
|
|
|
|
}
|
2014-01-02 23:28:22 +00:00
|
|
|
}
|
2014-01-15 03:17:26 +00:00
|
|
|
else if (this.deltaY() > 0)
|
2014-01-02 23:28:22 +00:00
|
|
|
{
|
|
|
|
this.facing = Phaser.DOWN;
|
2013-12-05 18:12:16 +00:00
|
|
|
|
2014-01-15 03:17:26 +00:00
|
|
|
if (this.blocked.down === false)
|
|
|
|
{
|
|
|
|
this.sprite.y += this.deltaY();
|
|
|
|
}
|
2014-01-03 02:24:06 +00:00
|
|
|
}
|
|
|
|
|
2013-10-30 03:46:52 +00:00
|
|
|
this.center.setTo(this.x + this.halfWidth, this.y + this.halfHeight);
|
2013-09-20 12:55:33 +00:00
|
|
|
|
2014-01-02 23:28:22 +00:00
|
|
|
if (this.allowRotation)
|
|
|
|
{
|
|
|
|
this.sprite.angle += this.deltaZ();
|
|
|
|
}
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-09-12 14:39:52 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
},
|
2013-09-12 14:39:52 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
2014-01-02 23:28:22 +00:00
|
|
|
* Internal method used to check the Body against the World Bounds.
|
2013-10-25 15:54:40 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade#checkWorldBounds
|
|
|
|
* @protected
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
checkWorldBounds: function () {
|
|
|
|
|
2014-01-15 03:17:26 +00:00
|
|
|
if (this.x <= this.game.world.bounds.x)
|
2013-11-25 04:40:04 +00:00
|
|
|
{
|
2014-01-15 03:17:26 +00:00
|
|
|
this.overlapX = this.game.world.bounds.x - this.x;
|
2014-01-02 23:28:22 +00:00
|
|
|
this.blocked.left = true;
|
2014-01-15 03:17:26 +00:00
|
|
|
// this.x = this.game.world.bounds.x;
|
|
|
|
// this.preX = this.x;
|
|
|
|
// this.velocity.x *= -this.bounce.x;
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2014-01-15 03:17:26 +00:00
|
|
|
else if (this.right >= this.game.world.bounds.right)
|
2013-11-25 04:40:04 +00:00
|
|
|
{
|
2014-01-15 03:17:26 +00:00
|
|
|
this.overlapX = this.right - this.game.world.bounds.right;
|
2014-01-02 23:28:22 +00:00
|
|
|
this.blocked.right = true;
|
2014-01-15 03:17:26 +00:00
|
|
|
// this.x = this.game.world.bounds.right - this.width;
|
|
|
|
// this.preX = this.x;
|
|
|
|
// this.velocity.x *= -this.bounce.x;
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.y < this.game.world.bounds.y)
|
|
|
|
{
|
2014-01-15 03:17:26 +00:00
|
|
|
this.overlapY = this.game.world.bounds.y - this.y;
|
2014-01-02 23:28:22 +00:00
|
|
|
this.blocked.up = true;
|
2014-01-15 03:17:26 +00:00
|
|
|
// this.y = this.game.world.bounds.y;
|
|
|
|
// this.preY = this.y;
|
|
|
|
// this.velocity.y *= -this.bounce.y;
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
|
|
|
else if (this.bottom > this.game.world.bounds.bottom)
|
|
|
|
{
|
2014-01-15 03:17:26 +00:00
|
|
|
this.overlapY = this.bottom - this.game.world.bounds.bottom;
|
2014-01-02 23:28:22 +00:00
|
|
|
this.blocked.down = true;
|
2014-01-15 03:17:26 +00:00
|
|
|
// this.y = this.game.world.bounds.bottom - this.height;
|
|
|
|
// this.preY = this.y;
|
|
|
|
// this.velocity.y *= -this.bounce.y;
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
|
|
|
|
2014-01-15 03:17:26 +00:00
|
|
|
console.log('checkWorldBounds', this.overlapX, this.overlapY);
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
},
|
2013-09-03 16:07:05 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* You can modify the size of the physics Body to be any dimension you need.
|
|
|
|
* So it could be smaller or larger than the parent Sprite. You can also control the x and y offset, which
|
|
|
|
* is the position of the Body relative to the top-left of the Sprite.
|
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade#setSize
|
|
|
|
* @param {number} width - The width of the Body.
|
|
|
|
* @param {number} height - The height of the Body.
|
|
|
|
* @param {number} offsetX - The X offset of the Body from the Sprite position.
|
|
|
|
* @param {number} offsetY - The Y offset of the Body from the Sprite position.
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
setSize: function (width, height, offsetX, offsetY) {
|
2013-09-04 00:10:01 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
offsetX = offsetX || this.offset.x;
|
|
|
|
offsetY = offsetY || this.offset.y;
|
2013-09-03 14:35:40 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.sourceWidth = width;
|
|
|
|
this.sourceHeight = height;
|
|
|
|
this.width = this.sourceWidth * this._sx;
|
|
|
|
this.height = this.sourceHeight * this._sy;
|
|
|
|
this.halfWidth = Math.floor(this.width / 2);
|
|
|
|
this.halfHeight = Math.floor(this.height / 2);
|
|
|
|
this.offset.setTo(offsetX, offsetY);
|
2013-09-03 14:35:40 +00:00
|
|
|
|
2013-10-30 03:46:52 +00:00
|
|
|
this.center.setTo(this.x + this.halfWidth, this.y + this.halfHeight);
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
},
|
2013-09-03 14:35:40 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* Resets all Body values (velocity, acceleration, rotation, etc)
|
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade#reset
|
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
reset: function () {
|
2013-09-10 00:26:50 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.velocity.setTo(0, 0);
|
|
|
|
this.acceleration.setTo(0, 0);
|
2013-09-10 00:26:50 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.angularVelocity = 0;
|
|
|
|
this.angularAcceleration = 0;
|
2013-10-29 04:07:26 +00:00
|
|
|
this.preX = (this.sprite.world.x - (this.sprite.anchor.x * this.width)) + this.offset.x;
|
|
|
|
this.preY = (this.sprite.world.y - (this.sprite.anchor.y * this.height)) + this.offset.y;
|
2013-11-25 04:40:04 +00:00
|
|
|
this.preRotation = this.sprite.angle;
|
2013-10-08 20:09:46 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.x = this.preX;
|
|
|
|
this.y = this.preY;
|
|
|
|
this.rotation = this.preRotation;
|
2013-10-30 03:46:52 +00:00
|
|
|
|
|
|
|
this.center.setTo(this.x + this.halfWidth, this.y + this.halfHeight);
|
2013-09-10 00:26:50 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
},
|
2013-09-10 00:26:50 +00:00
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* Returns the absolute delta x value.
|
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade.Body#deltaAbsX
|
|
|
|
* @return {number} The absolute delta value.
|
|
|
|
*/
|
2013-09-03 18:34:38 +00:00
|
|
|
deltaAbsX: function () {
|
|
|
|
return (this.deltaX() > 0 ? this.deltaX() : -this.deltaX());
|
2013-09-03 16:07:05 +00:00
|
|
|
},
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* Returns the absolute delta y value.
|
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade.Body#deltaAbsY
|
|
|
|
* @return {number} The absolute delta value.
|
|
|
|
*/
|
2013-09-03 18:34:38 +00:00
|
|
|
deltaAbsY: function () {
|
|
|
|
return (this.deltaY() > 0 ? this.deltaY() : -this.deltaY());
|
2013-09-03 16:07:05 +00:00
|
|
|
},
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
2013-11-01 02:07:21 +00:00
|
|
|
* Returns the delta x value. The difference between Body.x now and in the previous step.
|
2013-10-25 15:54:40 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade.Body#deltaX
|
2013-12-06 01:07:25 +00:00
|
|
|
* @return {number} The delta value. Positive if the motion was to the right, negative if to the left.
|
2013-10-25 15:54:40 +00:00
|
|
|
*/
|
2013-09-03 16:07:05 +00:00
|
|
|
deltaX: function () {
|
2013-09-23 00:06:09 +00:00
|
|
|
return this.x - this.preX;
|
2013-09-03 16:07:05 +00:00
|
|
|
},
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
2013-11-01 02:07:21 +00:00
|
|
|
* Returns the delta y value. The difference between Body.y now and in the previous step.
|
2013-10-25 15:54:40 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade.Body#deltaY
|
2013-12-06 01:07:25 +00:00
|
|
|
* @return {number} The delta value. Positive if the motion was downwards, negative if upwards.
|
2013-10-25 15:54:40 +00:00
|
|
|
*/
|
2013-09-03 16:07:05 +00:00
|
|
|
deltaY: function () {
|
2013-09-23 00:06:09 +00:00
|
|
|
return this.y - this.preY;
|
2013-10-07 23:58:20 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
deltaZ: function () {
|
|
|
|
return this.rotation - this.preRotation;
|
2013-09-03 16:07:05 +00:00
|
|
|
}
|
|
|
|
|
2013-09-08 00:24:59 +00:00
|
|
|
};
|
|
|
|
|
2013-12-30 16:54:00 +00:00
|
|
|
Phaser.Physics.Arcade.Body.prototype.constructor = Phaser.Physics.Arcade.Body;
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @name Phaser.Physics.Arcade.Body#bottom
|
|
|
|
* @property {number} bottom - The bottom value of this Body (same as Body.y + Body.height)
|
|
|
|
*/
|
2013-09-08 00:24:59 +00:00
|
|
|
Object.defineProperty(Phaser.Physics.Arcade.Body.prototype, "bottom", {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The sum of the y and height properties. Changing the bottom property of a Rectangle object has no effect on the x, y and width properties, but does change the height property.
|
|
|
|
* @method bottom
|
2013-10-01 15:39:39 +00:00
|
|
|
* @return {number}
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-09-08 00:24:59 +00:00
|
|
|
get: function () {
|
2013-12-06 01:07:25 +00:00
|
|
|
return Math.floor(this.y + this.height);
|
2013-09-08 00:24:59 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The sum of the y and height properties. Changing the bottom property of a Rectangle object has no effect on the x, y and width properties, but does change the height property.
|
|
|
|
* @method bottom
|
2013-10-01 15:39:39 +00:00
|
|
|
* @param {number} value
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-09-08 00:24:59 +00:00
|
|
|
set: function (value) {
|
2013-09-11 12:21:07 +00:00
|
|
|
|
|
|
|
if (value <= this.y)
|
|
|
|
{
|
2013-09-08 00:24:59 +00:00
|
|
|
this.height = 0;
|
2013-09-11 12:21:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-08 00:24:59 +00:00
|
|
|
this.height = (this.y - value);
|
|
|
|
}
|
2013-09-11 12:21:07 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-08 00:24:59 +00:00
|
|
|
});
|
|
|
|
|
2013-10-25 15:54:40 +00:00
|
|
|
/**
|
|
|
|
* @name Phaser.Physics.Arcade.Body#right
|
|
|
|
* @property {number} right - The right value of this Body (same as Body.x + Body.width)
|
|
|
|
*/
|
2013-09-08 00:24:59 +00:00
|
|
|
Object.defineProperty(Phaser.Physics.Arcade.Body.prototype, "right", {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The sum of the x and width properties. Changing the right property of a Rectangle object has no effect on the x, y and height properties.
|
|
|
|
* However it does affect the width property.
|
|
|
|
* @method right
|
2013-10-01 15:39:39 +00:00
|
|
|
* @return {number}
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2013-09-08 00:24:59 +00:00
|
|
|
get: function () {
|
2013-12-06 01:07:25 +00:00
|
|
|
return Math.floor(this.x + this.width);
|
2013-09-08 00:24:59 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The sum of the x and width properties. Changing the right property of a Rectangle object has no effect on the x, y and height properties.
|
|
|
|
* However it does affect the width property.
|
|
|
|
* @method right
|
2013-10-01 15:39:39 +00:00
|
|
|
* @param {number} value
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-09-08 00:24:59 +00:00
|
|
|
set: function (value) {
|
2013-09-11 12:21:07 +00:00
|
|
|
|
|
|
|
if (value <= this.x)
|
|
|
|
{
|
2013-09-08 00:24:59 +00:00
|
|
|
this.width = 0;
|
2013-09-11 12:21:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-08 00:24:59 +00:00
|
|
|
this.width = this.x + value;
|
|
|
|
}
|
2013-09-11 12:21:07 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-08 00:24:59 +00:00
|
|
|
});
|