2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2014-02-05 05:54:25 +00:00
|
|
|
* @copyright 2014 Photon Storm Ltd.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* Creates a new `Graphics` object.
|
2013-10-01 12:54:29 +00:00
|
|
|
*
|
|
|
|
* @class Phaser.Graphics
|
|
|
|
* @constructor
|
|
|
|
*
|
|
|
|
* @param {Phaser.Game} game Current game instance.
|
2013-10-25 14:22:45 +00:00
|
|
|
* @param {number} x - X position of the new graphics object.
|
|
|
|
* @param {number} y - Y position of the new graphics object.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-09-09 16:01:59 +00:00
|
|
|
Phaser.Graphics = function (game, x, y) {
|
|
|
|
|
2014-02-17 11:27:31 +00:00
|
|
|
x = x || 0;
|
|
|
|
y = y || 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} game - A reference to the currently running Game.
|
|
|
|
*/
|
2013-10-17 20:10:00 +00:00
|
|
|
this.game = game;
|
2014-02-17 11:27:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} exists - If exists = false then the Text isn't updated by the core game loop.
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.exists = true;
|
2013-10-17 20:10:00 +00:00
|
|
|
|
2014-02-17 11:27:31 +00:00
|
|
|
/**
|
|
|
|
* @property {string} name - The user defined name given to this object.
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.name = '';
|
2013-09-09 16:01:59 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2014-02-17 11:27:31 +00:00
|
|
|
* @property {number} type - The const type of this object.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-12 20:54:41 +00:00
|
|
|
this.type = Phaser.GRAPHICS;
|
|
|
|
|
2014-03-10 23:16:49 +00:00
|
|
|
/**
|
|
|
|
* @property {number} z - The z-depth value of this object within its Group (remember the World is a Group as well). No two objects in a Group can have the same z value.
|
|
|
|
*/
|
|
|
|
this.z = 0;
|
|
|
|
|
2014-02-17 11:27:31 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} world - The world coordinates of this Sprite. This differs from the x/y coordinates which are relative to the Sprites container.
|
|
|
|
*/
|
|
|
|
this.world = new Phaser.Point(x, y);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} cameraOffset - If this object is fixedToCamera then this stores the x/y offset that its drawn at, from the top-left of the camera view.
|
|
|
|
*/
|
|
|
|
this.cameraOffset = new Phaser.Point();
|
|
|
|
|
|
|
|
PIXI.Graphics.call(this);
|
|
|
|
|
|
|
|
this.position.set(x, y);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A small internal cache:
|
|
|
|
* 0 = previous position.x
|
|
|
|
* 1 = previous position.y
|
|
|
|
* 2 = previous rotation
|
|
|
|
* 3 = renderID
|
|
|
|
* 4 = fresh? (0 = no, 1 = yes)
|
|
|
|
* 5 = outOfBoundsFired (0 = no, 1 = yes)
|
|
|
|
* 6 = exists (0 = no, 1 = yes)
|
|
|
|
* 7 = fixed to camera (0 = no, 1 = yes)
|
|
|
|
* @property {Int16Array} _cache
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._cache = new Int16Array([0, 0, 0, 0, 1, 0, 1, 0]);
|
2013-11-13 06:49:24 +00:00
|
|
|
|
2013-09-09 16:01:59 +00:00
|
|
|
};
|
|
|
|
|
2013-09-22 21:55:34 +00:00
|
|
|
Phaser.Graphics.prototype = Object.create(PIXI.Graphics.prototype);
|
2013-09-09 16:01:59 +00:00
|
|
|
Phaser.Graphics.prototype.constructor = Phaser.Graphics;
|
2013-09-22 14:21:51 +00:00
|
|
|
|
2014-02-17 11:27:31 +00:00
|
|
|
/**
|
|
|
|
* Automatically called by World.preUpdate.
|
|
|
|
* @method Phaser.Graphics.prototype.preUpdate
|
|
|
|
*/
|
|
|
|
Phaser.Graphics.prototype.preUpdate = function () {
|
|
|
|
|
|
|
|
this._cache[0] = this.world.x;
|
|
|
|
this._cache[1] = this.world.y;
|
|
|
|
this._cache[2] = this.rotation;
|
|
|
|
|
|
|
|
if (!this.exists || !this.parent.exists)
|
|
|
|
{
|
|
|
|
this.renderOrderID = -1;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.autoCull)
|
|
|
|
{
|
|
|
|
// Won't get rendered but will still get its transform updated
|
|
|
|
this.renderable = this.game.world.camera.screenView.intersects(this.getBounds());
|
|
|
|
}
|
|
|
|
|
|
|
|
this.world.setTo(this.game.camera.x + this.worldTransform[2], this.game.camera.y + this.worldTransform[5]);
|
|
|
|
|
|
|
|
if (this.visible)
|
|
|
|
{
|
2014-02-28 19:45:15 +00:00
|
|
|
this._cache[3] = this.game.stage.currentRenderOrderID++;
|
2014-02-17 11:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override and use this function in your own custom objects to handle any update requirements you may have.
|
|
|
|
*
|
|
|
|
* @method Phaser.Graphics#update
|
|
|
|
* @memberof Phaser.Graphics
|
|
|
|
*/
|
|
|
|
Phaser.Graphics.prototype.update = function() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Automatically called by World.postUpdate.
|
|
|
|
* @method Phaser.Graphics.prototype.postUpdate
|
|
|
|
*/
|
|
|
|
Phaser.Graphics.prototype.postUpdate = function () {
|
|
|
|
|
|
|
|
// Fixed to Camera?
|
|
|
|
if (this._cache[7] === 1)
|
|
|
|
{
|
2014-03-06 17:12:00 +00:00
|
|
|
this.position.x = (this.game.camera.view.x + this.cameraOffset.x) / this.game.camera.scale.x;
|
|
|
|
this.position.y = (this.game.camera.view.y + this.cameraOffset.y) / this.game.camera.scale.y;
|
2014-02-17 11:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-10-17 20:10:00 +00:00
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* Destroy this Graphics instance.
|
2013-10-17 20:10:00 +00:00
|
|
|
*
|
2014-02-20 03:44:44 +00:00
|
|
|
* @method Phaser.Graphics.prototype.destroy
|
2014-02-27 20:05:16 +00:00
|
|
|
* @param {boolean} [destroyChildren=true] - Should every child of this object have its destroy method called?
|
2013-10-17 20:10:00 +00:00
|
|
|
*/
|
2014-02-27 20:05:16 +00:00
|
|
|
Phaser.Graphics.prototype.destroy = function(destroyChildren) {
|
|
|
|
|
|
|
|
if (typeof destroyChildren === 'undefined') { destroyChildren = true; }
|
2013-10-17 20:10:00 +00:00
|
|
|
|
|
|
|
this.clear();
|
|
|
|
|
2014-02-07 19:44:14 +00:00
|
|
|
if (this.parent)
|
2013-10-17 20:10:00 +00:00
|
|
|
{
|
2014-02-28 09:30:53 +00:00
|
|
|
if (this.parent instanceof Phaser.Group)
|
2014-02-28 06:17:18 +00:00
|
|
|
{
|
|
|
|
this.parent.remove(this);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.parent.removeChild(this);
|
|
|
|
}
|
2013-10-17 20:10:00 +00:00
|
|
|
}
|
|
|
|
|
2014-02-27 20:05:16 +00:00
|
|
|
var i = this.children.length;
|
|
|
|
|
|
|
|
if (destroyChildren)
|
|
|
|
{
|
|
|
|
while (i--)
|
|
|
|
{
|
|
|
|
this.children[i].destroy(destroyChildren);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (i--)
|
|
|
|
{
|
|
|
|
this.removeChild(this.children[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-17 11:27:31 +00:00
|
|
|
this.exists = false;
|
|
|
|
this.visible = false;
|
|
|
|
|
2013-10-17 20:10:00 +00:00
|
|
|
this.game = null;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-05 19:25:06 +00:00
|
|
|
/*
|
|
|
|
* Draws a {Phaser.Polygon} or a {PIXI.Polygon} filled
|
2014-02-07 19:44:14 +00:00
|
|
|
*
|
2014-02-20 03:44:44 +00:00
|
|
|
* @method Phaser.Graphics.prototype.drawPolygon
|
2013-11-05 19:25:06 +00:00
|
|
|
*/
|
|
|
|
Phaser.Graphics.prototype.drawPolygon = function (poly) {
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
this.moveTo(poly.points[0].x, poly.points[0].y);
|
2013-11-13 06:49:24 +00:00
|
|
|
|
|
|
|
for (var i = 1; i < poly.points.length; i += 1)
|
|
|
|
{
|
2013-11-25 03:13:04 +00:00
|
|
|
this.lineTo(poly.points[i].x, poly.points[i].y);
|
2013-11-05 19:25:06 +00:00
|
|
|
}
|
2013-11-13 06:49:24 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
this.lineTo(poly.points[0].x, poly.points[0].y);
|
2013-11-13 06:49:24 +00:00
|
|
|
|
2013-11-05 19:25:06 +00:00
|
|
|
}
|
2014-02-17 11:27:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates the rotation of the Graphics, in degrees, from its original orientation. Values from 0 to 180 represent clockwise rotation; values from 0 to -180 represent counterclockwise rotation.
|
|
|
|
* Values outside this range are added to or subtracted from 360 to obtain a value within the range. For example, the statement player.angle = 450 is the same as player.angle = 90.
|
|
|
|
* If you wish to work in radians instead of degrees use the property Sprite.rotation instead.
|
|
|
|
* @name Phaser.Graphics#angle
|
|
|
|
* @property {number} angle - Gets or sets the angle of rotation in degrees.
|
|
|
|
*/
|
|
|
|
Object.defineProperty(Phaser.Graphics.prototype, 'angle', {
|
|
|
|
|
|
|
|
get: function() {
|
|
|
|
return Phaser.Math.radToDeg(this.rotation);
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function(value) {
|
|
|
|
this.rotation = Phaser.Math.degToRad(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An Graphics that is fixed to the camera uses its x/y coordinates as offsets from the top left of the camera. These are stored in Graphics.cameraOffset.
|
|
|
|
* Note that the cameraOffset values are in addition to any parent in the display list.
|
|
|
|
* So if this Graphics was in a Group that has x: 200, then this will be added to the cameraOffset.x
|
|
|
|
*
|
|
|
|
* @name Phaser.Graphics#fixedToCamera
|
|
|
|
* @property {boolean} fixedToCamera - Set to true to fix this Graphics to the Camera at its current world coordinates.
|
|
|
|
*/
|
|
|
|
Object.defineProperty(Phaser.Graphics.prototype, "fixedToCamera", {
|
|
|
|
|
|
|
|
get: function () {
|
|
|
|
|
|
|
|
return !!this._cache[7];
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (value) {
|
|
|
|
|
|
|
|
if (value)
|
|
|
|
{
|
|
|
|
this._cache[7] = 1;
|
|
|
|
this.cameraOffset.set(this.x, this.y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this._cache[7] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|