2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-03-15 01:07:58 +00:00
|
|
|
var Class = require('../../utils/Class');
|
2017-04-25 17:07:15 +00:00
|
|
|
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
|
2018-02-07 00:18:22 +00:00
|
|
|
var GetValue = require('../../utils/object/GetValue');
|
2017-03-20 16:09:01 +00:00
|
|
|
var MeasureText = require('./MeasureText');
|
2017-03-15 01:07:58 +00:00
|
|
|
|
2017-03-16 17:15:58 +00:00
|
|
|
// Key: [ Object Key, Default Value ]
|
|
|
|
|
|
|
|
var propertyMap = {
|
2017-11-30 17:17:06 +00:00
|
|
|
fontFamily: [ 'fontFamily', 'Courier' ],
|
|
|
|
fontSize: [ 'fontSize', '16px' ],
|
|
|
|
fontStyle: [ 'fontStyle', '' ],
|
2017-03-16 17:15:58 +00:00
|
|
|
backgroundColor: [ 'backgroundColor', null ],
|
2017-11-30 17:17:06 +00:00
|
|
|
color: [ 'color', '#fff' ],
|
2017-03-16 17:15:58 +00:00
|
|
|
stroke: [ 'stroke', '#fff' ],
|
|
|
|
strokeThickness: [ 'strokeThickness', 0 ],
|
|
|
|
shadowOffsetX: [ 'shadow.offsetX', 0 ],
|
|
|
|
shadowOffsetY: [ 'shadow.offsetY', 0 ],
|
|
|
|
shadowColor: [ 'shadow.color', '#000' ],
|
|
|
|
shadowBlur: [ 'shadow.blur', 0 ],
|
|
|
|
shadowStroke: [ 'shadow.stroke', false ],
|
|
|
|
shadowFill: [ 'shadow.fill', false ],
|
|
|
|
align: [ 'align', 'left' ],
|
2017-03-20 16:09:01 +00:00
|
|
|
maxLines: [ 'maxLines', 0 ],
|
2018-02-07 02:46:11 +00:00
|
|
|
fixedWidth: [ 'fixedWidth', 0 ],
|
|
|
|
fixedHeight: [ 'fixedHeight', 0 ],
|
2017-11-30 17:17:06 +00:00
|
|
|
rtl: [ 'rtl', false ],
|
2018-03-13 13:21:51 +00:00
|
|
|
testString: [ 'testString', '|MÉqgy' ],
|
|
|
|
baselineX: [ 'baselineX', 1.2 ],
|
|
|
|
baselineY: [ 'baselineY', 1.4 ],
|
2017-12-13 21:07:37 +00:00
|
|
|
wordWrapWidth: [ 'wordWrap.width', null ],
|
|
|
|
wordWrapCallback: [ 'wordWrap.callback', null ],
|
|
|
|
wordWrapCallbackScope: [ 'wordWrap.callbackScope', null ],
|
|
|
|
wordWrapUseAdvanced: [ 'wordWrap.useAdvancedWrap', false ]
|
2017-03-16 17:15:58 +00:00
|
|
|
};
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
2018-02-07 15:27:21 +00:00
|
|
|
* @classdesc
|
2018-02-07 02:46:11 +00:00
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @class TextStyle
|
2018-03-16 17:29:39 +00:00
|
|
|
* @memberOf Phaser.GameObjects.Text
|
2018-02-07 02:46:11 +00:00
|
|
|
* @constructor
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.GameObjects.Text} text - The Text object that this TextStyle is styling.
|
|
|
|
* @param {object} style - [description]
|
|
|
|
*/
|
2017-03-15 01:07:58 +00:00
|
|
|
var TextStyle = new Class({
|
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
|
|
|
function TextStyle (text, style)
|
|
|
|
{
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* The Text object that this TextStyle is styling.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#parent
|
|
|
|
* @type {Phaser.GameObjects.Text}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-16 21:59:50 +00:00
|
|
|
this.parent = text;
|
2017-03-15 01:07:58 +00:00
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#fontFamily
|
|
|
|
* @type {string}
|
|
|
|
* @default 'Courier'
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
this.fontFamily;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#fontSize
|
|
|
|
* @type {string}
|
|
|
|
* @default '16px'
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
this.fontSize;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#fontStyle
|
|
|
|
* @type {string}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
this.fontStyle;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#backgroundColor
|
|
|
|
* @type {string}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.backgroundColor;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#color
|
|
|
|
* @type {string}
|
|
|
|
* @default '#fff'
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
this.color;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#stroke
|
|
|
|
* @type {string}
|
|
|
|
* @default '#fff'
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.stroke;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#strokeThickness
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.strokeThickness;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#shadowOffsetX
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.shadowOffsetX;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#shadowOffsetY
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.shadowOffsetY;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#shadowColor
|
|
|
|
* @type {string}
|
|
|
|
* @default '#000'
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.shadowColor;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#shadowBlur
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.shadowBlur;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#shadowStroke
|
|
|
|
* @type {boolean}
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.shadowStroke;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#shadowFill
|
|
|
|
* @type {boolean}
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.shadowFill;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#align
|
|
|
|
* @type {string}
|
|
|
|
* @default 'left'
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.align;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#maxLines
|
|
|
|
* @type {integer}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.maxLines;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#fixedWidth
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.fixedWidth;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#fixedHeight
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.fixedHeight;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#rtl
|
|
|
|
* @type {boolean}
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-21 20:25:15 +00:00
|
|
|
this.rtl;
|
2018-02-07 02:46:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#testString
|
|
|
|
* @type {string}
|
|
|
|
* @default '|MÉqgy'
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
this.testString;
|
2017-03-21 20:25:15 +00:00
|
|
|
|
2018-03-13 13:21:51 +00:00
|
|
|
/**
|
|
|
|
* The amount of horizontal padding adding to the width of the text when calculating the font metrics.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#baselineX
|
|
|
|
* @type {number}
|
|
|
|
* @default 1.2
|
|
|
|
* @since 3.3.0
|
|
|
|
*/
|
|
|
|
this.baselineX;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The amount of vertical padding adding to the width of the text when calculating the font metrics.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#baselineY
|
|
|
|
* @type {number}
|
|
|
|
* @default 1.4
|
|
|
|
* @since 3.3.0
|
|
|
|
*/
|
|
|
|
this.baselineY;
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.TextStyle#_font
|
|
|
|
* @type {string}
|
|
|
|
* @private
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
this._font;
|
2017-03-16 17:15:58 +00:00
|
|
|
|
2017-11-30 17:17:06 +00:00
|
|
|
// Set to defaults + user style
|
|
|
|
this.setStyle(style, false);
|
2017-03-20 16:09:01 +00:00
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
var metrics = GetValue(style, 'metrics', false);
|
2017-04-26 14:54:23 +00:00
|
|
|
|
|
|
|
// Provide optional TextMetrics in the style object to avoid the canvas look-up / scanning
|
2017-11-30 17:17:06 +00:00
|
|
|
// Doing this is reset if you then change the font of this TextStyle after creation
|
2017-04-26 14:54:23 +00:00
|
|
|
if (metrics)
|
|
|
|
{
|
|
|
|
this.metrics = {
|
2017-04-26 15:03:14 +00:00
|
|
|
ascent: GetValue(metrics, 'ascent', 0),
|
|
|
|
descent: GetValue(metrics, 'descent', 0),
|
|
|
|
fontSize: GetValue(metrics, 'fontSize', 0)
|
2017-04-26 14:54:23 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.metrics = MeasureText(this);
|
|
|
|
}
|
2017-03-16 17:15:58 +00:00
|
|
|
},
|
2017-03-15 01:07:58 +00:00
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setStyle
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {CSSStyleRule} style - [description]
|
2018-02-21 22:51:05 +00:00
|
|
|
* @param {boolean} [updateText=true] - [description]
|
2018-02-07 02:46:11 +00:00
|
|
|
*
|
2018-03-12 16:13:42 +00:00
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
2018-02-07 02:46:11 +00:00
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
setStyle: function (style, updateText)
|
2017-03-21 20:25:15 +00:00
|
|
|
{
|
2017-11-30 17:17:06 +00:00
|
|
|
if (updateText === undefined) { updateText = true; }
|
|
|
|
|
|
|
|
// Avoid type mutation
|
|
|
|
if (style && style.hasOwnProperty('fontSize') && typeof style.fontSize === 'number')
|
|
|
|
{
|
|
|
|
style.fontSize = style.fontSize.toString() + 'px';
|
|
|
|
}
|
|
|
|
|
2017-03-21 20:25:15 +00:00
|
|
|
for (var key in propertyMap)
|
|
|
|
{
|
2017-12-13 21:07:37 +00:00
|
|
|
if (key === 'wordWrapCallback' || key === 'wordWrapCallbackScope')
|
|
|
|
{
|
|
|
|
// Callback & scope should be set without processing the values
|
|
|
|
this[key] = GetValue(style, propertyMap[key][0], propertyMap[key][1]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this[key] = GetAdvancedValue(style, propertyMap[key][0], propertyMap[key][1]);
|
|
|
|
}
|
2017-11-30 17:17:06 +00:00
|
|
|
}
|
|
|
|
|
2017-12-01 03:11:57 +00:00
|
|
|
// Allow for 'font' override
|
|
|
|
var font = GetValue(style, 'font', null);
|
|
|
|
|
|
|
|
if (font === null)
|
|
|
|
{
|
|
|
|
this._font = [ this.fontStyle, this.fontSize, this.fontFamily ].join(' ');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this._font = font;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow for 'fill' to be used in place of 'color'
|
|
|
|
var fill = GetValue(style, 'fill', null);
|
|
|
|
|
|
|
|
if (fill !== null)
|
|
|
|
{
|
|
|
|
this.color = fill;
|
|
|
|
}
|
2017-11-30 17:17:06 +00:00
|
|
|
|
|
|
|
if (updateText)
|
|
|
|
{
|
2018-03-12 16:13:42 +00:00
|
|
|
return this.update(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return this.parent;
|
2017-03-21 20:25:15 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#syncFont
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {HTMLCanvasElement} canvas - [description]
|
|
|
|
* @param {CanvasRenderingContext2D} context - [description]
|
2018-02-07 02:46:11 +00:00
|
|
|
*/
|
2017-03-16 21:59:50 +00:00
|
|
|
syncFont: function (canvas, context)
|
|
|
|
{
|
2017-11-30 17:17:06 +00:00
|
|
|
context.font = this._font;
|
2017-12-13 21:08:43 +00:00
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#syncStyle
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {HTMLCanvasElement} canvas - [description]
|
|
|
|
* @param {CanvasRenderingContext2D} context - [description]
|
2018-02-07 02:46:11 +00:00
|
|
|
*/
|
2017-12-13 21:08:43 +00:00
|
|
|
syncStyle: function (canvas, context)
|
|
|
|
{
|
2017-03-16 21:59:50 +00:00
|
|
|
context.textBaseline = 'alphabetic';
|
|
|
|
|
2017-11-30 17:17:06 +00:00
|
|
|
context.fillStyle = this.color;
|
2017-03-16 21:59:50 +00:00
|
|
|
context.strokeStyle = this.stroke;
|
|
|
|
|
|
|
|
context.lineWidth = this.strokeThickness;
|
|
|
|
context.lineCap = 'round';
|
|
|
|
context.lineJoin = 'round';
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#syncShadow
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {CanvasRenderingContext2D} context - [description]
|
|
|
|
* @param {boolean} enabled - [description]
|
2018-02-07 02:46:11 +00:00
|
|
|
*/
|
2017-03-20 16:48:04 +00:00
|
|
|
syncShadow: function (context, enabled)
|
2017-03-16 21:59:50 +00:00
|
|
|
{
|
2017-03-20 16:48:04 +00:00
|
|
|
if (enabled)
|
2017-03-16 21:59:50 +00:00
|
|
|
{
|
2017-03-21 20:25:15 +00:00
|
|
|
context.shadowOffsetX = this.shadowOffsetX;
|
|
|
|
context.shadowOffsetY = this.shadowOffsetY;
|
|
|
|
context.shadowColor = this.shadowColor;
|
|
|
|
context.shadowBlur = this.shadowBlur;
|
2017-03-16 21:59:50 +00:00
|
|
|
}
|
2017-03-20 16:48:04 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
context.shadowOffsetX = 0;
|
|
|
|
context.shadowOffsetY = 0;
|
|
|
|
context.shadowColor = 0;
|
|
|
|
context.shadowBlur = 0;
|
|
|
|
}
|
2017-03-20 16:09:01 +00:00
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#update
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {boolean} recalculateMetrics - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-20 16:09:01 +00:00
|
|
|
update: function (recalculateMetrics)
|
|
|
|
{
|
|
|
|
if (recalculateMetrics)
|
2017-03-16 21:59:50 +00:00
|
|
|
{
|
2017-11-30 17:17:06 +00:00
|
|
|
this._font = [ this.fontStyle, this.fontSize, this.fontFamily ].join(' ');
|
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
this.metrics = MeasureText(this);
|
2017-03-16 21:59:50 +00:00
|
|
|
}
|
2017-03-20 16:09:01 +00:00
|
|
|
|
2017-03-20 16:28:09 +00:00
|
|
|
return this.parent.updateText();
|
2017-03-16 21:59:50 +00:00
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setFont
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string|object} font - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
setFont: function (font)
|
2017-03-16 17:15:58 +00:00
|
|
|
{
|
2017-12-01 03:11:57 +00:00
|
|
|
if (typeof font === 'string')
|
|
|
|
{
|
|
|
|
this.fontFamily = font;
|
|
|
|
this.fontSize = '';
|
|
|
|
this.fontStyle = '';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.fontFamily = GetValue(font, 'fontFamily', 'Courier');
|
|
|
|
this.fontSize = GetValue(font, 'fontSize', '16px');
|
|
|
|
this.fontStyle = GetValue(font, 'fontStyle', '');
|
|
|
|
}
|
2017-11-30 17:17:06 +00:00
|
|
|
|
|
|
|
return this.update(true);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setFontFamily
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {string} family - [description]
|
2018-02-07 02:46:11 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
setFontFamily: function (family)
|
|
|
|
{
|
|
|
|
this.fontFamily = family;
|
|
|
|
|
|
|
|
return this.update(true);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setFontStyle
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {string} style - [description]
|
2018-02-07 02:46:11 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
setFontStyle: function (style)
|
|
|
|
{
|
|
|
|
this.fontStyle = style;
|
|
|
|
|
|
|
|
return this.update(true);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setFontSize
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {number|string} size - [description]
|
2018-02-07 02:46:11 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
setFontSize: function (size)
|
|
|
|
{
|
|
|
|
if (typeof size === 'number')
|
2017-03-16 17:15:58 +00:00
|
|
|
{
|
2017-11-30 17:17:06 +00:00
|
|
|
size = size.toString() + 'px';
|
2017-03-16 17:15:58 +00:00
|
|
|
}
|
2017-03-15 01:07:58 +00:00
|
|
|
|
2017-11-30 17:17:06 +00:00
|
|
|
this.fontSize = size;
|
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
return this.update(true);
|
2017-03-14 16:37:32 +00:00
|
|
|
},
|
2017-03-15 01:07:58 +00:00
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setTestString
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {string} string - [description]
|
2018-02-07 02:46:11 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
setTestString: function (string)
|
2017-03-15 01:07:58 +00:00
|
|
|
{
|
2017-11-30 17:17:06 +00:00
|
|
|
this.testString = string;
|
2017-03-15 01:07:58 +00:00
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
return this.update(true);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setFixedSize
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {number} width - [description]
|
|
|
|
* @param {number} height - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-20 16:09:01 +00:00
|
|
|
setFixedSize: function (width, height)
|
|
|
|
{
|
|
|
|
this.fixedWidth = width;
|
|
|
|
this.fixedHeight = height;
|
|
|
|
|
|
|
|
if (width)
|
|
|
|
{
|
2018-03-12 16:34:21 +00:00
|
|
|
this.parent.width = width;
|
2017-03-20 16:09:01 +00:00
|
|
|
}
|
2017-03-16 21:59:50 +00:00
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
if (height)
|
|
|
|
{
|
2018-03-12 16:34:21 +00:00
|
|
|
this.parent.height = height;
|
2017-03-20 16:09:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return this.update(false);
|
2017-03-16 17:15:58 +00:00
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setBackgroundColor
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-02-21 22:51:05 +00:00
|
|
|
* @param {string} color - [description]
|
2018-02-07 02:46:11 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-16 21:59:50 +00:00
|
|
|
setBackgroundColor: function (color)
|
2017-03-16 17:15:58 +00:00
|
|
|
{
|
2017-03-16 21:59:50 +00:00
|
|
|
this.backgroundColor = color;
|
2017-03-16 17:15:58 +00:00
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
return this.update(false);
|
2017-03-16 17:15:58 +00:00
|
|
|
},
|
2017-03-15 01:07:58 +00:00
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setFill
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} color - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-12-01 03:11:57 +00:00
|
|
|
setFill: function (color)
|
|
|
|
{
|
|
|
|
this.color = color;
|
|
|
|
|
|
|
|
return this.update(false);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setColor
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} color - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-11-30 17:17:06 +00:00
|
|
|
setColor: function (color)
|
2017-03-16 21:59:50 +00:00
|
|
|
{
|
2017-11-30 17:17:06 +00:00
|
|
|
this.color = color;
|
2017-03-16 21:59:50 +00:00
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
return this.update(false);
|
2017-03-16 21:59:50 +00:00
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setStroke
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} color - [description]
|
|
|
|
* @param {number} thickness - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-16 21:59:50 +00:00
|
|
|
setStroke: function (color, thickness)
|
|
|
|
{
|
|
|
|
if (color === undefined)
|
|
|
|
{
|
|
|
|
// Reset the stroke to zero (disabling it)
|
|
|
|
this.strokeThickness = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (thickness === undefined) { thickness = this.strokeThickness; }
|
|
|
|
|
|
|
|
this.stroke = color;
|
|
|
|
this.strokeThickness = thickness;
|
|
|
|
}
|
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
return this.update(true);
|
2017-03-16 21:59:50 +00:00
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setShadow
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {number} [x=0] - [description]
|
|
|
|
* @param {number} [y=0] - [description]
|
|
|
|
* @param {string} [color='#000'] - [description]
|
|
|
|
* @param {number} [blur=0] - [description]
|
|
|
|
* @param {boolean} [shadowStroke=false] - [description]
|
|
|
|
* @param {boolean} [shadowFill=true] - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-16 21:59:50 +00:00
|
|
|
setShadow: function (x, y, color, blur, shadowStroke, shadowFill)
|
|
|
|
{
|
2017-03-20 16:48:04 +00:00
|
|
|
if (x === undefined) { x = 0; }
|
2017-03-16 21:59:50 +00:00
|
|
|
if (y === undefined) { y = 0; }
|
|
|
|
if (color === undefined) { color = '#000'; }
|
|
|
|
if (blur === undefined) { blur = 0; }
|
|
|
|
if (shadowStroke === undefined) { shadowStroke = false; }
|
2017-08-11 15:59:29 +00:00
|
|
|
if (shadowFill === undefined) { shadowFill = true; }
|
2017-03-16 21:59:50 +00:00
|
|
|
|
|
|
|
this.shadowOffsetX = x;
|
|
|
|
this.shadowOffsetY = y;
|
|
|
|
this.shadowColor = color;
|
|
|
|
this.shadowBlur = blur;
|
|
|
|
this.shadowStroke = shadowStroke;
|
|
|
|
this.shadowFill = shadowFill;
|
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
return this.update(false);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setShadowOffset
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {number} [x=0] - [description]
|
|
|
|
* @param {number} [y=0] - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-20 16:09:01 +00:00
|
|
|
setShadowOffset: function (x, y)
|
|
|
|
{
|
|
|
|
if (x === undefined) { x = 0; }
|
|
|
|
if (y === undefined) { y = x; }
|
|
|
|
|
|
|
|
this.shadowOffsetX = x;
|
|
|
|
this.shadowOffsetY = y;
|
2017-03-16 21:59:50 +00:00
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
return this.update(false);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setShadowColor
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} [color='#000'] - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-20 16:09:01 +00:00
|
|
|
setShadowColor: function (color)
|
|
|
|
{
|
|
|
|
if (color === undefined) { color = '#000'; }
|
|
|
|
|
|
|
|
this.shadowColor = color;
|
|
|
|
|
|
|
|
return this.update(false);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setShadowBlur
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {number} [blur=0] - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-20 16:09:01 +00:00
|
|
|
setShadowBlur: function (blur)
|
|
|
|
{
|
|
|
|
if (blur === undefined) { blur = 0; }
|
|
|
|
|
|
|
|
this.shadowBlur = blur;
|
|
|
|
|
|
|
|
return this.update(false);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setShadowStroke
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {boolean} enabled - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-20 16:09:01 +00:00
|
|
|
setShadowStroke: function (enabled)
|
|
|
|
{
|
|
|
|
this.shadowStroke = enabled;
|
|
|
|
|
|
|
|
return this.update(false);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setShadowFill
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {boolean} enabled - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-20 16:09:01 +00:00
|
|
|
setShadowFill: function (enabled)
|
|
|
|
{
|
|
|
|
this.shadowFill = enabled;
|
|
|
|
|
|
|
|
return this.update(false);
|
2017-03-16 21:59:50 +00:00
|
|
|
},
|
|
|
|
|
2017-12-13 21:28:52 +00:00
|
|
|
/**
|
2018-02-07 02:46:11 +00:00
|
|
|
* Set the width (in pixels) to use for wrapping lines. Pass in null to remove wrapping by width.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setWordWrapWidth
|
|
|
|
* @since 3.0.0
|
2017-12-13 21:28:52 +00:00
|
|
|
*
|
2018-02-07 02:46:11 +00:00
|
|
|
* @param {number} width - The maximum width of a line in pixels. Set to null to remove wrapping.
|
2017-12-13 21:28:52 +00:00
|
|
|
* @param {boolean} [useAdvancedWrap=false] - Whether or not to use the advanced wrapping
|
|
|
|
* algorithm. If true, spaces are collapsed and whitespace is trimmed from lines. If false,
|
|
|
|
* spaces and whitespace are left as is.
|
2018-02-07 02:46:11 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
2017-12-13 21:28:52 +00:00
|
|
|
*/
|
2017-12-13 21:07:37 +00:00
|
|
|
setWordWrapWidth: function (width, useAdvancedWrap)
|
|
|
|
{
|
|
|
|
if (useAdvancedWrap === undefined) { useAdvancedWrap = false; }
|
|
|
|
|
|
|
|
this.wordWrapWidth = width;
|
|
|
|
this.wordWrapUseAdvanced = useAdvancedWrap;
|
|
|
|
|
|
|
|
return this.update(false);
|
|
|
|
},
|
|
|
|
|
2017-12-13 21:28:52 +00:00
|
|
|
/**
|
|
|
|
* Set a custom callback for wrapping lines. Pass in null to remove wrapping by callback.
|
|
|
|
*
|
2018-02-07 02:46:11 +00:00
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setWordWrapCallback
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2017-12-13 21:28:52 +00:00
|
|
|
* @param {function} callback - A custom function that will be responsible for wrapping the
|
|
|
|
* text. It will receive two arguments: text (the string to wrap), textObject (this Text
|
|
|
|
* instance). It should return the wrapped lines either as an array of lines or as a string with
|
|
|
|
* newline characters in place to indicate where breaks should happen.
|
|
|
|
* @param {object} [scope=null] - The scope that will be applied when the callback is invoked.
|
2018-02-07 02:46:11 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
2017-12-13 21:28:52 +00:00
|
|
|
*/
|
2017-12-13 21:07:37 +00:00
|
|
|
setWordWrapCallback: function (callback, scope)
|
|
|
|
{
|
|
|
|
if (scope === undefined) { scope = null; }
|
|
|
|
|
|
|
|
this.wordWrapCallback = callback;
|
|
|
|
this.wordWrapCallbackScope = scope;
|
|
|
|
|
|
|
|
return this.update(false);
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setAlign
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {string} align - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-16 21:59:50 +00:00
|
|
|
setAlign: function (align)
|
|
|
|
{
|
|
|
|
if (align === undefined) { align = 'left'; }
|
|
|
|
|
|
|
|
this.align = align;
|
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
return this.update(false);
|
2017-03-16 21:59:50 +00:00
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#setMaxLines
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {integer} [max=0] - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Text} The parent Text object.
|
|
|
|
*/
|
2017-03-16 21:59:50 +00:00
|
|
|
setMaxLines: function (max)
|
|
|
|
{
|
|
|
|
if (max === undefined) { max = 0; }
|
|
|
|
|
|
|
|
this.maxLines = max;
|
|
|
|
|
2017-03-20 16:09:01 +00:00
|
|
|
return this.update(false);
|
2017-03-16 21:59:50 +00:00
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#getTextMetrics
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @return {object} [description]
|
|
|
|
*/
|
2017-04-26 14:54:23 +00:00
|
|
|
getTextMetrics: function ()
|
|
|
|
{
|
|
|
|
var metrics = this.metrics;
|
|
|
|
|
|
|
|
return {
|
|
|
|
ascent: metrics.ascent,
|
|
|
|
descent: metrics.descent,
|
|
|
|
fontSize: metrics.fontSize
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#toJSON
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @return {object} [description]
|
|
|
|
*/
|
2017-04-25 17:24:37 +00:00
|
|
|
toJSON: function ()
|
|
|
|
{
|
|
|
|
var output = {};
|
|
|
|
|
|
|
|
for (var key in propertyMap)
|
|
|
|
{
|
|
|
|
output[key] = this[key];
|
|
|
|
}
|
|
|
|
|
2017-04-26 14:54:23 +00:00
|
|
|
output.metrics = this.getTextMetrics();
|
|
|
|
|
2017-04-25 17:24:37 +00:00
|
|
|
return output;
|
|
|
|
},
|
|
|
|
|
2018-02-07 02:46:11 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.TextStyle#destroy
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-03-16 21:59:50 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
|
|
|
this.parent = undefined;
|
|
|
|
}
|
|
|
|
|
2017-03-15 01:07:58 +00:00
|
|
|
});
|
2017-03-13 23:38:48 +00:00
|
|
|
|
|
|
|
module.exports = TextStyle;
|