2014-07-15 16:40:40 +00:00
|
|
|
/**
|
2014-10-15 21:05:38 +00:00
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2016-04-04 21:15:01 +00:00
|
|
|
* @copyright 2016 Photon Storm Ltd, Richard Davey
|
2014-07-15 16:40:40 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-10-13 11:20:02 +00:00
|
|
|
* A Rope is a Sprite that has a repeating texture.
|
|
|
|
*
|
|
|
|
* The texture will automatically wrap on the edges as it moves.
|
|
|
|
*
|
|
|
|
* Please note that Ropes cannot have an input handler.
|
2014-07-15 16:40:40 +00:00
|
|
|
*
|
|
|
|
* @class Phaser.Rope
|
|
|
|
* @constructor
|
2014-10-19 23:54:56 +00:00
|
|
|
* @extends PIXI.Rope
|
2015-03-01 07:00:17 +00:00
|
|
|
* @extends Phaser.Component.Core
|
|
|
|
* @extends Phaser.Component.Angle
|
|
|
|
* @extends Phaser.Component.Animation
|
|
|
|
* @extends Phaser.Component.AutoCull
|
|
|
|
* @extends Phaser.Component.Bounds
|
|
|
|
* @extends Phaser.Component.BringToTop
|
|
|
|
* @extends Phaser.Component.Crop
|
|
|
|
* @extends Phaser.Component.Delta
|
|
|
|
* @extends Phaser.Component.Destroy
|
|
|
|
* @extends Phaser.Component.FixedToCamera
|
|
|
|
* @extends Phaser.Component.InWorld
|
|
|
|
* @extends Phaser.Component.LifeSpan
|
|
|
|
* @extends Phaser.Component.LoadTexture
|
|
|
|
* @extends Phaser.Component.Overlap
|
|
|
|
* @extends Phaser.Component.PhysicsBody
|
|
|
|
* @extends Phaser.Component.Reset
|
|
|
|
* @extends Phaser.Component.ScaleMinMax
|
|
|
|
* @extends Phaser.Component.Smoothed
|
2014-07-15 16:40:40 +00:00
|
|
|
* @param {Phaser.Game} game - A reference to the currently running game.
|
|
|
|
* @param {number} x - The x coordinate (in world space) to position the Rope at.
|
|
|
|
* @param {number} y - The y coordinate (in world space) to position the Rope at.
|
|
|
|
* @param {string|Phaser.RenderTexture|Phaser.BitmapData|PIXI.Texture} key - This is the image or texture used by the Rope during rendering. It can be a string which is a reference to the Cache entry, or an instance of a RenderTexture or PIXI.Texture.
|
|
|
|
* @param {string|number} frame - If this Rope is using part of a sprite sheet or texture atlas you can specify the exact frame to use by giving a string or numeric index.
|
2014-10-10 13:47:58 +00:00
|
|
|
* @param {Array} points - An array of {Phaser.Point}.
|
2014-07-15 16:40:40 +00:00
|
|
|
*/
|
2014-07-15 19:01:15 +00:00
|
|
|
Phaser.Rope = function (game, x, y, key, frame, points) {
|
2014-07-15 16:40:40 +00:00
|
|
|
|
|
|
|
this.points = [];
|
2014-07-15 19:01:15 +00:00
|
|
|
this.points = points;
|
|
|
|
this._hasUpdateAnimation = false;
|
|
|
|
this._updateAnimationCallback = null;
|
2014-07-15 16:40:40 +00:00
|
|
|
x = x || 0;
|
|
|
|
y = y || 0;
|
|
|
|
key = key || null;
|
|
|
|
frame = frame || null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} type - The const type of this object.
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
this.type = Phaser.ROPE;
|
|
|
|
|
2015-05-16 17:59:12 +00:00
|
|
|
PIXI.Rope.call(this, PIXI.TextureCache['__default'], this.points);
|
2014-07-15 16:40:40 +00:00
|
|
|
|
2015-02-17 06:00:41 +00:00
|
|
|
Phaser.Component.Core.init.call(this, game, x, y, key, frame);
|
2014-07-15 16:40:40 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Rope.prototype = Object.create(PIXI.Rope.prototype);
|
|
|
|
Phaser.Rope.prototype.constructor = Phaser.Rope;
|
|
|
|
|
2015-03-23 19:19:07 +00:00
|
|
|
Phaser.Component.Core.install.call(Phaser.Rope.prototype, [
|
2015-02-23 04:44:11 +00:00
|
|
|
'Angle',
|
|
|
|
'Animation',
|
|
|
|
'AutoCull',
|
|
|
|
'Bounds',
|
|
|
|
'BringToTop',
|
|
|
|
'Crop',
|
|
|
|
'Delta',
|
|
|
|
'Destroy',
|
|
|
|
'FixedToCamera',
|
|
|
|
'InWorld',
|
|
|
|
'LifeSpan',
|
|
|
|
'LoadTexture',
|
|
|
|
'Overlap',
|
|
|
|
'PhysicsBody',
|
|
|
|
'Reset',
|
|
|
|
'ScaleMinMax',
|
|
|
|
'Smoothed'
|
2015-03-23 19:19:07 +00:00
|
|
|
]);
|
2015-02-23 04:44:11 +00:00
|
|
|
|
2015-02-25 02:49:50 +00:00
|
|
|
Phaser.Rope.prototype.preUpdatePhysics = Phaser.Component.PhysicsBody.preUpdate;
|
|
|
|
Phaser.Rope.prototype.preUpdateLifeSpan = Phaser.Component.LifeSpan.preUpdate;
|
|
|
|
Phaser.Rope.prototype.preUpdateInWorld = Phaser.Component.InWorld.preUpdate;
|
|
|
|
Phaser.Rope.prototype.preUpdateCore = Phaser.Component.Core.preUpdate;
|
|
|
|
|
2014-07-15 16:40:40 +00:00
|
|
|
/**
|
|
|
|
* Automatically called by World.preUpdate.
|
|
|
|
*
|
|
|
|
* @method Phaser.Rope#preUpdate
|
|
|
|
* @memberof Phaser.Rope
|
|
|
|
*/
|
|
|
|
Phaser.Rope.prototype.preUpdate = function() {
|
2015-02-16 17:22:51 +00:00
|
|
|
|
2015-02-25 02:49:50 +00:00
|
|
|
if (!this.preUpdatePhysics() || !this.preUpdateLifeSpan() || !this.preUpdateInWorld())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-07-15 16:40:40 +00:00
|
|
|
|
2015-02-25 02:49:50 +00:00
|
|
|
return this.preUpdateCore();
|
2014-07-15 16:40:40 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override and use this function in your own custom objects to handle any update requirements you may have.
|
|
|
|
*
|
|
|
|
* @method Phaser.Rope#update
|
|
|
|
* @memberof Phaser.Rope
|
|
|
|
*/
|
|
|
|
Phaser.Rope.prototype.update = function() {
|
|
|
|
|
2015-02-17 06:00:41 +00:00
|
|
|
if (this._hasUpdateAnimation)
|
2014-07-15 16:40:40 +00:00
|
|
|
{
|
2015-02-17 06:00:41 +00:00
|
|
|
this.updateAnimation.call(this);
|
2014-07-15 16:40:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2015-10-13 11:20:02 +00:00
|
|
|
* Resets the Rope. This places the Rope at the given x/y world coordinates and then
|
2014-07-15 16:40:40 +00:00
|
|
|
* sets alive, exists, visible and renderable all to true. Also resets the outOfBounds state.
|
|
|
|
* If the Rope has a physics body that too is reset.
|
|
|
|
*
|
|
|
|
* @method Phaser.Rope#reset
|
|
|
|
* @memberof Phaser.Rope
|
|
|
|
* @param {number} x - The x coordinate (in world space) to position the Sprite at.
|
|
|
|
* @param {number} y - The y coordinate (in world space) to position the Sprite at.
|
2015-10-27 08:10:14 +00:00
|
|
|
* @return {Phaser.Rope} This instance.
|
2014-07-15 16:40:40 +00:00
|
|
|
*/
|
|
|
|
Phaser.Rope.prototype.reset = function(x, y) {
|
|
|
|
|
2015-02-17 06:00:41 +00:00
|
|
|
Phaser.Component.Reset.prototype.reset.call(this, x, y);
|
2014-07-15 16:40:40 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-07-15 19:01:15 +00:00
|
|
|
/**
|
2015-10-13 11:20:02 +00:00
|
|
|
* A Rope will call its updateAnimation function on each update loop if it has one.
|
2014-07-15 19:01:15 +00:00
|
|
|
*
|
|
|
|
* @name Phaser.Rope#updateAnimation
|
|
|
|
* @property {function} updateAnimation - Set to a function if you'd like the rope to animate during the update phase. Set to false or null to remove it.
|
|
|
|
*/
|
|
|
|
Object.defineProperty(Phaser.Rope.prototype, "updateAnimation", {
|
|
|
|
|
|
|
|
get: function () {
|
|
|
|
|
|
|
|
return this._updateAnimation;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (value) {
|
2015-02-16 17:22:51 +00:00
|
|
|
|
|
|
|
if (value && typeof value === 'function')
|
|
|
|
{
|
2014-07-15 19:01:15 +00:00
|
|
|
this._hasUpdateAnimation = true;
|
|
|
|
this._updateAnimation = value;
|
2015-02-16 17:22:51 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-15 19:01:15 +00:00
|
|
|
this._hasUpdateAnimation = false;
|
|
|
|
this._updateAnimation = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The segments that make up the rope body as an array of Phaser.Rectangles
|
|
|
|
*
|
|
|
|
* @name Phaser.Rope#segments
|
2014-11-30 11:10:52 +00:00
|
|
|
* @property {Phaser.Rectangles[]} updateAnimation - Returns an array of Phaser.Rectangles that represent the segments of the given rope
|
2014-07-15 19:01:15 +00:00
|
|
|
*/
|
|
|
|
Object.defineProperty(Phaser.Rope.prototype, "segments", {
|
2015-02-16 17:22:51 +00:00
|
|
|
|
2014-07-15 19:01:15 +00:00
|
|
|
get: function() {
|
2015-02-16 17:22:51 +00:00
|
|
|
|
2014-07-15 19:01:15 +00:00
|
|
|
var segments = [];
|
|
|
|
var index, x1, y1, x2, y2, width, height, rect;
|
2015-02-16 17:22:51 +00:00
|
|
|
|
|
|
|
for (var i = 0; i < this.points.length; i++)
|
|
|
|
{
|
2014-07-15 19:01:15 +00:00
|
|
|
index = i * 4;
|
2015-02-16 17:22:51 +00:00
|
|
|
|
2015-07-08 15:40:26 +00:00
|
|
|
x1 = this.vertices[index] * this.scale.x;
|
|
|
|
y1 = this.vertices[index + 1] * this.scale.y;
|
|
|
|
x2 = this.vertices[index + 4] * this.scale.x;
|
|
|
|
y2 = this.vertices[index + 3] * this.scale.y;
|
2015-02-16 17:22:51 +00:00
|
|
|
|
2015-07-08 15:40:26 +00:00
|
|
|
width = Phaser.Math.difference(x1, x2);
|
|
|
|
height = Phaser.Math.difference(y1, y2);
|
2015-02-16 17:22:51 +00:00
|
|
|
|
2014-07-15 19:01:15 +00:00
|
|
|
x1 += this.world.x;
|
|
|
|
y1 += this.world.y;
|
2015-07-08 15:40:26 +00:00
|
|
|
rect = new Phaser.Rectangle(x1, y1, width, height);
|
2014-07-15 19:01:15 +00:00
|
|
|
segments.push(rect);
|
|
|
|
}
|
2014-07-15 16:40:40 +00:00
|
|
|
|
2015-02-16 17:22:51 +00:00
|
|
|
return segments;
|
2014-07-15 16:40:40 +00:00
|
|
|
}
|
2015-07-08 15:40:26 +00:00
|
|
|
|
2014-07-15 16:40:40 +00:00
|
|
|
});
|