import { ObservablePoint, Point } from '@pixi/math';
import { settings } from '@pixi/settings';
import { Mesh, MeshGeometry, MeshMaterial } from '@pixi/mesh';
import { removeItems, deprecation } from '@pixi/utils';
import { BitmapFont } from './BitmapFont';
import { Texture } from '@pixi/core';
import { Container } from '@pixi/display';
const pageMeshDataPool = [];
const charRenderDataPool = [];
/**
* A BitmapText object will create a line or multiple lines of text using bitmap font.
*
* The primary advantage of this class over Text is that all of your textures are pre-generated and loading,
* meaning that rendering is fast, and changing text has no performance implications.
*
* Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters.
*
* To split a line you can use '\n', '\r' or '\r\n' in your string.
*
* PixiJS can auto-generate fonts on-the-fly using BitmapFont or use fnt files provided by:
* http://www.angelcode.com/products/bmfont/ for Windows or
* http://www.bmglyph.com/ for Mac.
*
* A BitmapText can only be created when the font is loaded.
*
* ```js
* // in this case the font is in a file called 'desyrel.fnt'
* let bitmapText = new PIXI.BitmapText("text using a fancy font!", {font: "35px Desyrel", align: "right"});
* ```
*
* @class
* @extends PIXI.Container
* @memberof PIXI
*/
export class BitmapText extends Container {
/**
* @param {string} text - A string that you would like the text to display.
* @param {object} style - The style parameters.
* @param {string} style.fontName - The installed BitmapFont name.
* @param {number} [style.fontSize] - The size of the font in pixels, e.g. 24. If undefined,
*. this will default to the BitmapFont size.
* @param {string} [style.align='left'] - Alignment for multiline text ('left', 'center' or 'right'),
* does not affect single line text.
* @param {number} [style.tint=0xFFFFFF] - The tint color.
* @param {number} [style.letterSpacing=0] - The amount of spacing between letters.
* @param {number} [style.maxWidth=0] - The max width of the text before line wrapping.
*/
constructor(text, style = {}) {
super();
this._tint = 0xFFFFFF;
if (style.font) {
deprecation('5.3.0', 'PIXI.BitmapText constructor style.font property is deprecated.');
this._upgradeStyle(style);
}
// Apply the defaults
const { align, tint, maxWidth, letterSpacing, fontName, fontSize } = Object.assign({}, BitmapText.styleDefaults, style);
if (!BitmapFont.available[fontName]) {
throw new Error(`Missing BitmapFont "${fontName}"`);
}
/**
* Collection of page mesh data.
*
* @member {object}
* @private
*/
this._activePagesMeshData = [];
/**
* Private tracker for the width of the overall text
*
* @member {number}
* @private
*/
this._textWidth = 0;
/**
* Private tracker for the height of the overall text
*
* @member {number}
* @private
*/
this._textHeight = 0;
/**
* Private tracker for the current text align.
*
* @member {string}
* @private
*/
this._align = align;
/**
* Private tracker for the current tint.
*
* @member {number}
* @private
*/
this._tint = tint;
/**
* Private tracker for the current font name.
*
* @member {string}
* @private
*/
this._fontName = fontName;
/**
* Private tracker for the current font size.
*
* @member {number}
* @private
*/
this._fontSize = fontSize || BitmapFont.available[fontName].size;
/**
* Private tracker for the current text.
*
* @member {string}
* @private
*/
this._text = text;
/**
* The max width of this bitmap text in pixels. If the text provided is longer than the
* value provided, line breaks will be automatically inserted in the last whitespace.
* Disable by setting value to 0
*
* @member {number}
* @private
*/
this._maxWidth = maxWidth;
/**
* The max line height. This is useful when trying to use the total height of the Text,
* ie: when trying to vertically align. (Internally used)
*
* @member {number}
* @private
*/
this._maxLineHeight = 0;
/**
* Letter spacing. This is useful for setting the space between characters.
* @member {number}
* @private
*/
this._letterSpacing = letterSpacing;
/**
* Text anchor. read-only
*
* @member {PIXI.ObservablePoint}
* @private
*/
this._anchor = new ObservablePoint(() => { this.dirty = true; }, this, 0, 0);
/**
* If true PixiJS will Math.floor() x/y values when rendering
*
* @member {boolean}
* @default PIXI.settings.ROUND_PIXELS
*/
this._roundPixels = settings.ROUND_PIXELS;
/**
* Set to `true` if the BitmapText needs to be redrawn.
*
* @member {boolean}
*/
this.dirty = true;
/**
* Cached char texture is destroyed when BitmapText is destroyed
* @member {Record<number, Texture>}
* @private
*/
this._textureCache = {};
}
/**
* Renders text and updates it when needed. This should only be called
* if the BitmapFont is regenerated.
*/
updateText() {
var _a;
const data = BitmapFont.available[this._fontName];
const scale = this._fontSize / data.size;
const pos = new Point();
const chars = [];
const lineWidths = [];
const text = this._text.replace(/(?:\r\n|\r)/g, '\n') || ' ';
const textLength = text.length;
const maxWidth = this._maxWidth * data.size / this._fontSize;
let prevCharCode = null;
let lastLineWidth = 0;
let maxLineWidth = 0;
let line = 0;
let lastBreakPos = -1;
let lastBreakWidth = 0;
let spacesRemoved = 0;
let maxLineHeight = 0;
for (let i = 0; i < textLength; i++) {
const charCode = text.charCodeAt(i);
const char = text.charAt(i);
if ((/(?:\s)/).test(char)) {
lastBreakPos = i;
lastBreakWidth = lastLineWidth;
}
if (char === '\r' || char === '\n') {
lineWidths.push(lastLineWidth);
maxLineWidth = Math.max(maxLineWidth, lastLineWidth);
++line;
++spacesRemoved;
pos.x = 0;
pos.y += data.lineHeight;
prevCharCode = null;
continue;
}
const charData = data.chars[charCode];
if (!charData) {
continue;
}
if (prevCharCode && charData.kerning[prevCharCode]) {
pos.x += charData.kerning[prevCharCode];
}
const charRenderData = charRenderDataPool.pop() || {
texture: Texture.EMPTY,
line: 0,
charCode: 0,
position: new Point(),
};
charRenderData.texture = charData.texture;
charRenderData.line = line;
charRenderData.charCode = charCode;
charRenderData.position.x = pos.x + charData.xOffset + (this._letterSpacing / 2);
charRenderData.position.y = pos.y + charData.yOffset;
chars.push(charRenderData);
pos.x += charData.xAdvance + this._letterSpacing;
lastLineWidth = pos.x;
maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height));
prevCharCode = charCode;
if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth) {
++spacesRemoved;
removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos);
i = lastBreakPos;
lastBreakPos = -1;
lineWidths.push(lastBreakWidth);
maxLineWidth = Math.max(maxLineWidth, lastBreakWidth);
line++;
pos.x = 0;
pos.y += data.lineHeight;
prevCharCode = null;
}
}
const lastChar = text.charAt(text.length - 1);
if (lastChar !== '\r' && lastChar !== '\n') {
if ((/(?:\s)/).test(lastChar)) {
lastLineWidth = lastBreakWidth;
}
lineWidths.push(lastLineWidth);
maxLineWidth = Math.max(maxLineWidth, lastLineWidth);
}
const lineAlignOffsets = [];
for (let i = 0; i <= line; i++) {
let alignOffset = 0;
if (this._align === 'right') {
alignOffset = maxLineWidth - lineWidths[i];
}
else if (this._align === 'center') {
alignOffset = (maxLineWidth - lineWidths[i]) / 2;
}
lineAlignOffsets.push(alignOffset);
}
const lenChars = chars.length;
const pagesMeshData = {};
const newPagesMeshData = [];
const activePagesMeshData = this._activePagesMeshData;
for (let i = 0; i < activePagesMeshData.length; i++) {
pageMeshDataPool.push(activePagesMeshData[i]);
}
for (let i = 0; i < lenChars; i++) {
const texture = chars[i].texture;
const baseTextureUid = texture.baseTexture.uid;
if (!pagesMeshData[baseTextureUid]) {
let pageMeshData = pageMeshDataPool.pop();
if (!pageMeshData) {
const geometry = new MeshGeometry();
const material = new MeshMaterial(Texture.EMPTY);
const mesh = new Mesh(geometry, material);
pageMeshData = {
index: 0,
indexCount: 0,
vertexCount: 0,
uvsCount: 0,
total: 0,
mesh,
vertices: null,
uvs: null,
indices: null,
};
}
// reset data..
pageMeshData.index = 0;
pageMeshData.indexCount = 0;
pageMeshData.vertexCount = 0;
pageMeshData.uvsCount = 0;
pageMeshData.total = 0;
// TODO need to get page texture here somehow..
const { _textureCache } = this;
_textureCache[baseTextureUid] = _textureCache[baseTextureUid] || new Texture(texture.baseTexture);
pageMeshData.mesh.texture = _textureCache[baseTextureUid];
pageMeshData.mesh.tint = this._tint;
newPagesMeshData.push(pageMeshData);
pagesMeshData[baseTextureUid] = pageMeshData;
}
pagesMeshData[baseTextureUid].total++;
}
// lets find any previously active pageMeshDatas that are no longer required for
// the updated text (if any), removed and return them to the pool.
for (let i = 0; i < activePagesMeshData.length; i++) {
if (newPagesMeshData.indexOf(activePagesMeshData[i]) === -1) {
this.removeChild(activePagesMeshData[i].mesh);
}
}
// next lets add any new meshes, that have not yet been added to this BitmapText
// we only add if its not already a child of this BitmapObject
for (let i = 0; i < newPagesMeshData.length; i++) {
if (newPagesMeshData[i].mesh.parent !== this) {
this.addChild(newPagesMeshData[i].mesh);
}
}
// active page mesh datas are set to be the new pages added.
this._activePagesMeshData = newPagesMeshData;
for (const i in pagesMeshData) {
const pageMeshData = pagesMeshData[i];
const total = pageMeshData.total;
// lets only allocate new buffers if we can fit the new text in the current ones..
// unless that is, we will be batching. Currently batching dose not respect the size property of mesh
if (!(((_a = pageMeshData.indices) === null || _a === void 0 ? void 0 : _a.length) > 6 * total) || pageMeshData.vertices.length < Mesh.BATCHABLE_SIZE * 2) {
pageMeshData.vertices = new Float32Array(4 * 2 * total);
pageMeshData.uvs = new Float32Array(4 * 2 * total);
pageMeshData.indices = new Uint16Array(6 * total);
}
else {
const total = pageMeshData.total;
const vertices = pageMeshData.vertices;
// Clear the garbage at the end of the vertices buffer. This will prevent the bounds miscalculation.
for (let i = total * 4 * 2; i < vertices.length; i++) {
vertices[i] = 0;
}
}
// as a buffer maybe bigger than the current word, we set the size of the meshMaterial
// to match the number of letters needed
pageMeshData.mesh.size = 6 * total;
}
for (let i = 0; i < lenChars; i++) {
const char = chars[i];
let offset = char.position.x + lineAlignOffsets[char.line];
if (this._roundPixels) {
offset = Math.round(offset);
}
const xPos = offset * scale;
const yPos = char.position.y * scale;
const texture = char.texture;
const pageMesh = pagesMeshData[texture.baseTexture.uid];
const textureFrame = texture.frame;
const textureUvs = texture._uvs;
const index = pageMesh.index++;
pageMesh.indices[(index * 6) + 0] = 0 + (index * 4);
pageMesh.indices[(index * 6) + 1] = 1 + (index * 4);
pageMesh.indices[(index * 6) + 2] = 2 + (index * 4);
pageMesh.indices[(index * 6) + 3] = 0 + (index * 4);
pageMesh.indices[(index * 6) + 4] = 2 + (index * 4);
pageMesh.indices[(index * 6) + 5] = 3 + (index * 4);
pageMesh.vertices[(index * 8) + 0] = xPos;
pageMesh.vertices[(index * 8) + 1] = yPos;
pageMesh.vertices[(index * 8) + 2] = xPos + (textureFrame.width * scale);
pageMesh.vertices[(index * 8) + 3] = yPos;
pageMesh.vertices[(index * 8) + 4] = xPos + (textureFrame.width * scale);
pageMesh.vertices[(index * 8) + 5] = yPos + (textureFrame.height * scale);
pageMesh.vertices[(index * 8) + 6] = xPos;
pageMesh.vertices[(index * 8) + 7] = yPos + (textureFrame.height * scale);
pageMesh.uvs[(index * 8) + 0] = textureUvs.x0;
pageMesh.uvs[(index * 8) + 1] = textureUvs.y0;
pageMesh.uvs[(index * 8) + 2] = textureUvs.x1;
pageMesh.uvs[(index * 8) + 3] = textureUvs.y1;
pageMesh.uvs[(index * 8) + 4] = textureUvs.x2;
pageMesh.uvs[(index * 8) + 5] = textureUvs.y2;
pageMesh.uvs[(index * 8) + 6] = textureUvs.x3;
pageMesh.uvs[(index * 8) + 7] = textureUvs.y3;
}
this._textWidth = maxLineWidth * scale;
this._textHeight = (pos.y + data.lineHeight) * scale;
for (const i in pagesMeshData) {
const pageMeshData = pagesMeshData[i];
// apply anchor
if (this.anchor.x !== 0 || this.anchor.y !== 0) {
let vertexCount = 0;
const anchorOffsetX = this._textWidth * this.anchor.x;
const anchorOffsetY = this._textHeight * this.anchor.y;
for (let i = 0; i < pageMeshData.total; i++) {
pageMeshData.vertices[vertexCount++] -= anchorOffsetX;
pageMeshData.vertices[vertexCount++] -= anchorOffsetY;
pageMeshData.vertices[vertexCount++] -= anchorOffsetX;
pageMeshData.vertices[vertexCount++] -= anchorOffsetY;
pageMeshData.vertices[vertexCount++] -= anchorOffsetX;
pageMeshData.vertices[vertexCount++] -= anchorOffsetY;
pageMeshData.vertices[vertexCount++] -= anchorOffsetX;
pageMeshData.vertices[vertexCount++] -= anchorOffsetY;
}
}
this._maxLineHeight = maxLineHeight * scale;
const vertexBuffer = pageMeshData.mesh.geometry.getBuffer('aVertexPosition');
const textureBuffer = pageMeshData.mesh.geometry.getBuffer('aTextureCoord');
const indexBuffer = pageMeshData.mesh.geometry.getIndex();
vertexBuffer.data = pageMeshData.vertices;
textureBuffer.data = pageMeshData.uvs;
indexBuffer.data = pageMeshData.indices;
vertexBuffer.update();
textureBuffer.update();
indexBuffer.update();
}
for (let i = 0; i < chars.length; i++) {
charRenderDataPool.push(chars[i]);
}
}
/**
* Updates the transform of this object
*
* @private
*/
updateTransform() {
this.validate();
this.containerUpdateTransform();
}
/**
* Validates text before calling parent's getLocalBounds
*
* @return {PIXI.Rectangle} The rectangular bounding area
*/
getLocalBounds() {
this.validate();
return super.getLocalBounds();
}
/**
* Updates text when needed
*
* @private
*/
validate() {
if (this.dirty) {
this.updateText();
this.dirty = false;
}
}
/**
* The tint of the BitmapText object.
*
* @member {number}
* @default 0xffffff
*/
get tint() {
return this._tint;
}
set tint(value) {
if (this._tint === value)
return;
this._tint = value;
for (let i = 0; i < this._activePagesMeshData.length; i++) {
this._activePagesMeshData[i].mesh.tint = value;
}
}
/**
* The alignment of the BitmapText object.
*
* @member {string}
* @default 'left'
*/
get align() {
return this._align;
}
set align(value) {
if (this._align !== value) {
this._align = value;
this.dirty = true;
}
}
/**
* The name of the BitmapFont.
*
* @member {string}
*/
get fontName() {
return this._fontName;
}
set fontName(value) {
if (!BitmapFont.available[value]) {
throw new Error(`Missing BitmapFont "${value}"`);
}
if (this._fontName !== value) {
this._fontName = value;
this.dirty = true;
}
}
/**
* The size of the font to display.
*
* @member {number}
*/
get fontSize() {
return this._fontSize;
}
set fontSize(value) {
if (this._fontSize !== value) {
this._fontSize = value;
this.dirty = true;
}
}
/**
* The anchor sets the origin point of the text.
*
* The default is `(0,0)`, this means the text's origin is the top left.
*
* Setting the anchor to `(0.5,0.5)` means the text's origin is centered.
*
* Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.
*
* @member {PIXI.Point | number}
*/
get anchor() {
return this._anchor;
}
set anchor(value) {
if (typeof value === 'number') {
this._anchor.set(value);
}
else {
this._anchor.copyFrom(value);
}
}
/**
* The text of the BitmapText object.
*
* @member {string}
*/
get text() {
return this._text;
}
set text(text) {
text = String(text === null || text === undefined ? '' : text);
if (this._text === text) {
return;
}
this._text = text;
this.dirty = true;
}
/**
* The max width of this bitmap text in pixels. If the text provided is longer than the
* value provided, line breaks will be automatically inserted in the last whitespace.
* Disable by setting the value to 0.
*
* @member {number}
*/
get maxWidth() {
return this._maxWidth;
}
set maxWidth(value) {
if (this._maxWidth === value) {
return;
}
this._maxWidth = value;
this.dirty = true;
}
/**
* The max line height. This is useful when trying to use the total height of the Text,
* i.e. when trying to vertically align.
*
* @member {number}
* @readonly
*/
get maxLineHeight() {
this.validate();
return this._maxLineHeight;
}
/**
* The width of the overall text, different from fontSize,
* which is defined in the style object.
*
* @member {number}
* @readonly
*/
get textWidth() {
this.validate();
return this._textWidth;
}
/**
* Additional space between characters.
*
* @member {number}
*/
get letterSpacing() {
return this._letterSpacing;
}
set letterSpacing(value) {
if (this._letterSpacing !== value) {
this._letterSpacing = value;
this.dirty = true;
}
}
/**
* If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.
* Advantages can include sharper image quality (like text) and faster rendering on canvas.
* The main disadvantage is movement of objects may appear less smooth.
* To set the global default, change {@link PIXI.settings.ROUND_PIXELS}
*
* @member {boolean}
* @default PIXI.settings.ROUND_PIXELS
*/
get roundPixels() {
return this._roundPixels;
}
set roundPixels(value) {
if (value !== this._roundPixels) {
this._roundPixels = value;
this.dirty = true;
}
}
/**
* The height of the overall text, different from fontSize,
* which is defined in the style object.
*
* @member {number}
* @readonly
*/
get textHeight() {
this.validate();
return this._textHeight;
}
/**
* For backward compatibility, convert old style.font constructor param to fontName & fontSize properties.
*
* @private
* @deprecated since 5.3.0
*/
_upgradeStyle(style) {
if (typeof style.font === 'string') {
const valueSplit = style.font.split(' ');
style.fontName = valueSplit.length === 1
? valueSplit[0]
: valueSplit.slice(1).join(' ');
if (valueSplit.length >= 2) {
style.fontSize = parseInt(valueSplit[0], 10);
}
}
else {
style.fontName = style.font.name;
style.fontSize = typeof style.font.size === 'number'
? style.font.size
: parseInt(style.font.size, 10);
}
}
destroy(options) {
const { _textureCache } = this;
for (const id in _textureCache) {
const texture = _textureCache[id];
texture.destroy();
delete _textureCache[id];
}
this._textureCache = null;
super.destroy(options);
}
/**
* Register a bitmap font with data and a texture.
*
* @deprecated since 5.3.0
* @see PIXI.BitmapFont.install
* @static
*/
static registerFont(data, textures) {
deprecation('5.3.0', 'PIXI.BitmapText.registerFont is deprecated, use PIXI.BitmapFont.install');
return BitmapFont.install(data, textures);
}
/**
* Get the list of installed fonts.
*
* @see PIXI.BitmapFont.available
* @deprecated since 5.3.0
* @static
* @readonly
* @member {Object.<string, PIXI.BitmapFont>}
*/
static get fonts() {
deprecation('5.3.0', 'PIXI.BitmapText.fonts is deprecated, use PIXI.BitmapFont.available');
return BitmapFont.available;
}
}
BitmapText.styleDefaults = {
align: 'left',
tint: 0xFFFFFF,
maxWidth: 0,
letterSpacing: 0,
};