2013-09-03 15:35:40 +01:00
|
|
|
Phaser.Physics.Arcade.Body = function (sprite) {
|
|
|
|
|
|
|
|
this.sprite = sprite;
|
|
|
|
this.game = sprite.game;
|
|
|
|
|
|
|
|
this.offset = new Phaser.Point;
|
|
|
|
|
2013-09-04 01:10:01 +01:00
|
|
|
// the top-left of the Body
|
|
|
|
this.x = sprite.x;
|
|
|
|
this.y = sprite.y;
|
|
|
|
|
|
|
|
// un-scaled original size
|
|
|
|
this.sourceWidth = sprite.currentFrame.sourceSizeW;
|
|
|
|
this.sourceHeight = sprite.currentFrame.sourceSizeH;
|
|
|
|
|
|
|
|
// calculated (scaled) size
|
|
|
|
this.width = sprite.currentFrame.sourceSizeW;
|
|
|
|
this.height = sprite.currentFrame.sourceSizeH;
|
|
|
|
this.halfWidth = Math.floor(sprite.currentFrame.sourceSizeW / 2);
|
|
|
|
this.halfHeight = Math.floor(sprite.currentFrame.sourceSizeH / 2);
|
|
|
|
|
|
|
|
this.bounds = new Phaser.Rectangle(sprite.x, sprite.y, this.width, this.height);
|
|
|
|
|
|
|
|
// Scale value cache
|
2013-09-03 17:07:05 +01:00
|
|
|
this._sx = sprite.scale.x;
|
|
|
|
this._sy = sprite.scale.y;
|
|
|
|
|
|
|
|
this.velocity = new Phaser.Point;
|
|
|
|
this.acceleration = new Phaser.Point;
|
|
|
|
this.drag = new Phaser.Point;
|
|
|
|
this.gravity = new Phaser.Point;
|
|
|
|
this.bounce = new Phaser.Point;
|
|
|
|
this.maxVelocity = new Phaser.Point(10000, 10000);
|
|
|
|
|
|
|
|
this.angularVelocity = 0;
|
|
|
|
this.angularAcceleration = 0;
|
|
|
|
this.angularDrag = 0;
|
|
|
|
this.maxAngular = 1000;
|
|
|
|
this.mass = 1;
|
|
|
|
|
2013-09-04 01:10:01 +01:00
|
|
|
// Handy consts
|
|
|
|
this.LEFT = 0x0001;
|
|
|
|
this.RIGHT = 0x0010;
|
|
|
|
this.UP = 0x0100;
|
|
|
|
this.DOWN = 0x1000;
|
|
|
|
this.NONE = 0;
|
|
|
|
this.CEILING = this.UP;
|
|
|
|
this.FLOOR = this.DOWN;
|
|
|
|
this.WALL = this.LEFT | this.RIGHT;
|
|
|
|
this.ANY = this.LEFT | this.RIGHT | this.UP | this.DOWN;
|
|
|
|
|
2013-09-03 17:28:12 +01:00
|
|
|
this.immovable = false;
|
2013-09-04 01:10:01 +01:00
|
|
|
this.moves = true;
|
2013-09-03 17:07:05 +01:00
|
|
|
this.touching = 0;
|
|
|
|
this.wasTouching = 0;
|
2013-09-04 01:10:01 +01:00
|
|
|
this.rotation = 0;
|
|
|
|
this.allowCollisions = this.ANY;
|
|
|
|
this.allowRotation = false;
|
|
|
|
this.allowGravity = true;
|
2013-09-03 17:07:05 +01:00
|
|
|
|
2013-09-03 19:34:38 +01:00
|
|
|
this.lastX = sprite.x;
|
|
|
|
this.lastY = sprite.y;
|
2013-09-03 15:35:40 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Physics.Arcade.Body.prototype = {
|
|
|
|
|
2013-09-04 01:10:01 +01:00
|
|
|
updateBounds: function (centerX, centerY, scaleX, scaleY) {
|
2013-09-03 17:07:05 +01:00
|
|
|
|
|
|
|
if (scaleX != this._sx || scaleY != this._sy)
|
|
|
|
{
|
2013-09-04 01:10:01 +01:00
|
|
|
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.bounds.width = this.width;
|
|
|
|
this.bounds.height = this.height;
|
2013-09-03 17:07:05 +01:00
|
|
|
this._sx = scaleX;
|
|
|
|
this._sy = scaleY;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-09-03 19:34:38 +01:00
|
|
|
update: function () {
|
2013-09-03 17:07:05 +01:00
|
|
|
|
2013-09-03 19:34:38 +01:00
|
|
|
this.lastX = this.x;
|
|
|
|
this.lastY = this.y;
|
2013-09-03 17:07:05 +01:00
|
|
|
|
|
|
|
this.game.physics.updateMotion(this);
|
|
|
|
|
2013-09-04 01:10:01 +01:00
|
|
|
this.bounds.x = this.x;
|
|
|
|
this.bounds.y = this.y;
|
2013-09-03 17:07:05 +01:00
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
postUpdate: function () {
|
|
|
|
|
2013-09-04 01:10:01 +01:00
|
|
|
this.sprite.x = this.x - this.offset.x + (this.sprite.anchor.x * this.width);
|
|
|
|
this.sprite.y = this.y - this.offset.y + (this.sprite.anchor.y * this.height);
|
|
|
|
|
|
|
|
if (this.allowRotation)
|
|
|
|
{
|
|
|
|
this.sprite.angle = this.rotation;
|
|
|
|
}
|
2013-09-03 15:35:40 +01:00
|
|
|
|
2013-09-03 17:07:05 +01:00
|
|
|
},
|
|
|
|
|
2013-09-04 01:10:01 +01:00
|
|
|
setSize: function (width, height, offsetX, offsetY) {
|
|
|
|
|
|
|
|
offsetX = offsetX || this.offset.x;
|
|
|
|
offsetY = offsetY || this.offset.y;
|
2013-09-03 15:35:40 +01:00
|
|
|
|
2013-09-04 01:10:01 +01: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.bounds.width = this.width;
|
|
|
|
this.bounds.height = this.height;
|
|
|
|
this.offset.setTo(offsetX, offsetY);
|
2013-09-03 15:35:40 +01:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-09-03 17:07:05 +01:00
|
|
|
hullWidth: function () {
|
|
|
|
|
2013-09-04 01:10:01 +01:00
|
|
|
if (this.deltaX() > 0)
|
2013-09-03 17:07:05 +01:00
|
|
|
{
|
2013-09-04 01:10:01 +01:00
|
|
|
return this.width + this.deltaX();
|
2013-09-03 17:07:05 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-04 01:10:01 +01:00
|
|
|
return this.width - this.deltaX();
|
2013-09-03 17:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
hullHeight: function () {
|
|
|
|
|
2013-09-04 01:10:01 +01:00
|
|
|
if (this.deltaY() > 0)
|
2013-09-03 17:07:05 +01:00
|
|
|
{
|
2013-09-04 01:10:01 +01:00
|
|
|
return this.height + this.deltaY();
|
2013-09-03 17:07:05 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-04 01:10:01 +01:00
|
|
|
return this.height - this.deltaY();
|
2013-09-03 17:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
hullX: function () {
|
|
|
|
|
2013-09-03 19:34:38 +01:00
|
|
|
if (this.x < this.lastX)
|
2013-09-03 17:07:05 +01:00
|
|
|
{
|
2013-09-03 19:34:38 +01:00
|
|
|
return this.x;
|
2013-09-03 17:07:05 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-03 19:34:38 +01:00
|
|
|
return this.lastX;
|
2013-09-03 17:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
hullY: function () {
|
|
|
|
|
2013-09-03 19:34:38 +01:00
|
|
|
if (this.y < this.lastY)
|
2013-09-03 17:07:05 +01:00
|
|
|
{
|
2013-09-03 19:34:38 +01:00
|
|
|
return this.y;
|
2013-09-03 17:07:05 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-03 19:34:38 +01:00
|
|
|
return this.lastY;
|
2013-09-03 17:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-09-03 19:34:38 +01:00
|
|
|
deltaAbsX: function () {
|
|
|
|
return (this.deltaX() > 0 ? this.deltaX() : -this.deltaX());
|
2013-09-03 17:07:05 +01:00
|
|
|
},
|
|
|
|
|
2013-09-03 19:34:38 +01:00
|
|
|
deltaAbsY: function () {
|
|
|
|
return (this.deltaY() > 0 ? this.deltaY() : -this.deltaY());
|
2013-09-03 17:07:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
deltaX: function () {
|
2013-09-03 19:34:38 +01:00
|
|
|
return this.x - this.lastX;
|
2013-09-03 17:07:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
deltaY: function () {
|
2013-09-03 19:34:38 +01:00
|
|
|
return this.y - this.lastY;
|
2013-09-03 17:07:05 +01:00
|
|
|
}
|
|
|
|
|
2013-09-03 15:35:40 +01:00
|
|
|
};
|