2013-10-01 12:54:29 +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}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-11-01 17:28:09 +00:00
|
|
|
* Creates a new `BitmapText` object. BitmapText work by taking a texture file and an XML file that describes the font layout.
|
|
|
|
* On Windows you can use the free app BMFont: http://www.angelcode.com/products/bmfont/
|
|
|
|
* On OS X we recommend Glyph Designer: http://www.71squared.com/en/glyphdesigner
|
|
|
|
*
|
2013-10-01 12:54:29 +00:00
|
|
|
* @class Phaser.BitmapText
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - A reference to the currently running game.
|
2013-10-25 14:22:45 +00:00
|
|
|
* @param {number} x - X position of the new bitmapText object.
|
|
|
|
* @param {number} y - Y position of the new bitmapText object.
|
|
|
|
* @param {string} text - The actual text that will be written.
|
|
|
|
* @param {object} style - The style object containing style attributes like font, font size , etc.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
Phaser.BitmapText = function (game, x, y, text, style) {
|
|
|
|
|
|
|
|
x = x || 0;
|
|
|
|
y = y || 0;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-09-10 22:51:35 +00:00
|
|
|
text = text || '';
|
|
|
|
style = style || '';
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-01 15:39:39 +00:00
|
|
|
* @property {boolean} exists - If exists = false then the Sprite isn't updated by the core game loop or physics subsystem at all.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.exists = true;
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-01 15:39:39 +00:00
|
|
|
* @property {boolean} alive - This is a handy little var your game can use to determine if a sprite is alive or not, it doesn't effect rendering.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.alive = true;
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {Description} group - Description.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.group = null;
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {string} name - Description.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.name = '';
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} game - A reference to the currently running Game.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.game = game;
|
|
|
|
|
|
|
|
PIXI.BitmapText.call(this, text, style);
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {Description} type - Description.
|
|
|
|
*/
|
2013-09-17 15:28:59 +00:00
|
|
|
this.type = Phaser.BITMAPTEXT;
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {number} position.x - Description.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.position.x = x;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} position.y - Description.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.position.y = y;
|
|
|
|
|
|
|
|
// Replaces the PIXI.Point with a slightly more flexible one
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} anchor - Description.
|
|
|
|
*/
|
2013-09-17 15:28:59 +00:00
|
|
|
this.anchor = new Phaser.Point();
|
2013-10-01 12:54:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Point} scale - Description.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.scale = new Phaser.Point(1, 1);
|
|
|
|
|
|
|
|
// A mini cache for storing all of the calculated values
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {function} _cache - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this._cache = {
|
|
|
|
|
|
|
|
dirty: false,
|
|
|
|
|
|
|
|
// Transform cache
|
|
|
|
a00: 1, a01: 0, a02: x, a10: 0, a11: 1, a12: y, id: 1,
|
|
|
|
|
2013-10-04 13:41:15 +00:00
|
|
|
// The previous calculated position
|
2013-09-10 22:51:35 +00:00
|
|
|
x: -1, y: -1,
|
|
|
|
|
|
|
|
// The actual scale values based on the worldTransform
|
|
|
|
scaleX: 1, scaleY: 1
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-10-04 13:41:15 +00:00
|
|
|
this._cache.x = this.x;
|
|
|
|
this._cache.y = this.y;
|
2013-09-10 22:51:35 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-01 15:39:39 +00:00
|
|
|
* @property {boolean} renderable - Description.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @private
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.renderable = true;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-09-17 15:28:59 +00:00
|
|
|
Phaser.BitmapText.prototype = Object.create(PIXI.BitmapText.prototype);
|
|
|
|
// Phaser.BitmapText.prototype = Phaser.Utils.extend(true, PIXI.BitmapText.prototype);
|
2013-09-10 22:51:35 +00:00
|
|
|
Phaser.BitmapText.prototype.constructor = Phaser.BitmapText;
|
|
|
|
|
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Automatically called by World.update
|
|
|
|
* @method Phaser.BitmapText.prototype.update
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
Phaser.BitmapText.prototype.update = function() {
|
|
|
|
|
|
|
|
if (!this.exists)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._cache.dirty = false;
|
|
|
|
|
2013-10-04 13:41:15 +00:00
|
|
|
this._cache.x = this.x;
|
|
|
|
this._cache.y = this.y;
|
2013-09-10 22:51:35 +00:00
|
|
|
|
|
|
|
if (this.position.x != this._cache.x || this.position.y != this._cache.y)
|
|
|
|
{
|
|
|
|
this.position.x = this._cache.x;
|
|
|
|
this.position.y = this._cache.y;
|
|
|
|
this._cache.dirty = true;
|
|
|
|
}
|
|
|
|
|
2013-09-21 00:03:19 +00:00
|
|
|
this.pivot.x = this.anchor.x*this.width;
|
|
|
|
this.pivot.y = this.anchor.y*this.height;
|
|
|
|
|
2013-09-10 22:51:35 +00:00
|
|
|
}
|
|
|
|
|
2013-10-17 14:40:44 +00:00
|
|
|
/**
|
|
|
|
* @method Phaser.Text.prototype.destroy
|
|
|
|
*/
|
|
|
|
Phaser.BitmapText.prototype.destroy = function() {
|
|
|
|
|
|
|
|
if (this.group)
|
|
|
|
{
|
|
|
|
this.group.remove(this);
|
|
|
|
}
|
|
|
|
|
2013-11-07 04:31:37 +00:00
|
|
|
if (this.canvas && this.canvas.parentNode)
|
2013-10-17 14:40:44 +00:00
|
|
|
{
|
|
|
|
this.canvas.parentNode.removeChild(this.canvas);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.canvas = null;
|
|
|
|
this.context = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.exists = false;
|
|
|
|
|
|
|
|
this.group = null;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* Get
|
|
|
|
* @returns {Description}
|
|
|
|
*//**
|
|
|
|
* Set
|
|
|
|
* @param {Description} value - Description
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
Object.defineProperty(Phaser.BitmapText.prototype, 'angle', {
|
|
|
|
|
|
|
|
get: function() {
|
|
|
|
return Phaser.Math.radToDeg(this.rotation);
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function(value) {
|
|
|
|
this.rotation = Phaser.Math.degToRad(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* Get
|
|
|
|
* @returns {Description}
|
|
|
|
*//**
|
|
|
|
* Set
|
|
|
|
* @param {Description} value - Description
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
Object.defineProperty(Phaser.BitmapText.prototype, 'x', {
|
|
|
|
|
|
|
|
get: function() {
|
|
|
|
return this.position.x;
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function(value) {
|
|
|
|
this.position.x = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* Get
|
|
|
|
* @returns {Description}
|
|
|
|
*//**
|
|
|
|
* Set
|
|
|
|
* @param {Description} value - Description
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
Object.defineProperty(Phaser.BitmapText.prototype, 'y', {
|
|
|
|
|
|
|
|
get: function() {
|
|
|
|
return this.position.y;
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function(value) {
|
|
|
|
this.position.y = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|