2014-02-10 16:01:30 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2014 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @class Phaser.Physics
|
|
|
|
*/
|
|
|
|
Phaser.Physics = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @class Phaser.Physics.World
|
|
|
|
* @classdesc Physics World Constructor
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game}
|
|
|
|
*/
|
|
|
|
Phaser.Physics.World = function (game) {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} game - Local reference to game.
|
|
|
|
*/
|
|
|
|
this.game = game;
|
|
|
|
|
2014-02-10 23:28:32 +00:00
|
|
|
this.bounds = null;
|
|
|
|
|
2014-02-10 22:54:56 +00:00
|
|
|
p2.World.call(this, { gravity: [0, 0] });
|
2014-02-10 16:01:30 +00:00
|
|
|
|
2014-02-10 23:28:32 +00:00
|
|
|
this.setBoundsToWorld(true, true, true, true);
|
|
|
|
|
2014-02-10 16:01:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Physics.World.prototype = Object.create(p2.World.prototype);
|
|
|
|
Phaser.Physics.World.prototype.constructor = Phaser.Physics.World;
|
|
|
|
|
2014-02-10 23:28:32 +00:00
|
|
|
/**
|
|
|
|
* Sets the bounds of the Physics world to match the Game.World dimensions.
|
|
|
|
* You can optionally set which 'walls' to create: left, right, top or bottom.
|
|
|
|
*
|
|
|
|
* @method Phaser.Physics#setBoundsToWorld
|
|
|
|
* @param {boolean} [left=true] - If true will create the left bounds wall.
|
|
|
|
* @param {boolean} [right=true] - If true will create the right bounds wall.
|
|
|
|
* @param {boolean} [top=true] - If true will create the top bounds wall.
|
|
|
|
* @param {boolean} [bottom=true] - If true will create the bottom bounds wall.
|
|
|
|
*/
|
|
|
|
Phaser.Physics.World.prototype.setBoundsToWorld = function (left, right, top, bottom) {
|
|
|
|
|
|
|
|
this.setBounds(this.game.world.bounds.x, this.game.world.bounds.y, this.game.world.bounds.width, this.game.world.bounds.height, left, right, top, bottom);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the bounds of the Physics world to match the given world pixel dimensions.
|
|
|
|
* You can optionally set which 'walls' to create: left, right, top or bottom.
|
|
|
|
*
|
|
|
|
* @method Phaser.Physics.Arcade#setBounds
|
|
|
|
* @param {number} x - The x coordinate of the top-left corner of the bounds.
|
|
|
|
* @param {number} y - The y coordinate of the top-left corner of the bounds.
|
|
|
|
* @param {number} width - The width of the bounds.
|
|
|
|
* @param {number} height - The height of the bounds.
|
|
|
|
* @param {boolean} [left=true] - If true will create the left bounds wall.
|
|
|
|
* @param {boolean} [right=true] - If true will create the right bounds wall.
|
|
|
|
* @param {boolean} [top=true] - If true will create the top bounds wall.
|
|
|
|
* @param {boolean} [bottom=true] - If true will create the bottom bounds wall.
|
|
|
|
*/
|
|
|
|
Phaser.Physics.World.prototype.setBounds = function (x, y, width, height, left, right, top, bottom) {
|
|
|
|
|
|
|
|
if (typeof left === 'undefined') { left = true; }
|
|
|
|
if (typeof right === 'undefined') { right = true; }
|
|
|
|
if (typeof top === 'undefined') { top = true; }
|
|
|
|
if (typeof bottom === 'undefined') { bottom = true; }
|
|
|
|
|
|
|
|
if (this.bounds !== null)
|
|
|
|
{
|
|
|
|
this.removeBody(this.bounds);
|
|
|
|
}
|
|
|
|
|
|
|
|
var hw = (width / 2);
|
|
|
|
var hh = (height / 2);
|
|
|
|
var cx = hw + x;
|
|
|
|
var cy = hh + y;
|
|
|
|
|
|
|
|
this.bounds = new p2.Body({ mass: 0, position:[this.game.math.px2p(cx), this.game.math.px2p(cy)] });
|
|
|
|
|
|
|
|
if (left)
|
|
|
|
{
|
|
|
|
this.bounds.addShape(new p2.Plane(), [this.game.math.px2p(-hw), 0], 1.5707963267948966 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if (right)
|
|
|
|
{
|
|
|
|
this.bounds.addShape(new p2.Plane(), [this.game.math.px2p(hw), 0], -1.5707963267948966 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if (top)
|
|
|
|
{
|
|
|
|
this.bounds.addShape(new p2.Plane(), [0, this.game.math.px2p(-hh)], -3.141592653589793 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bottom)
|
|
|
|
{
|
|
|
|
this.bounds.addShape(new p2.Plane(), [0, this.game.math.px2p(hh)] );
|
|
|
|
}
|
|
|
|
|
|
|
|
this.addBody(this.bounds);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-02-10 16:01:30 +00:00
|
|
|
/**
|
|
|
|
* @method Phaser.Physics.World.prototype.update
|
|
|
|
*/
|
|
|
|
Phaser.Physics.World.prototype.update = function () {
|
|
|
|
|
|
|
|
this.step(1 / 60);
|
|
|
|
|
|
|
|
};
|