/**************************************************************************** Copyright (c) 2011-2012 cocos2d-x.org Copyright (c) 2013-2014 Chukong Technologies Inc. http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ /** * ccui.RichElement is the base class of RichElementText, RichElementImage etc. It has type, tag, color and opacity attributes. * @class * @extends ccui.Class */ ccui.RichElement = ccui.Class.extend(/** @lends ccui.RichElement# */{ _type: 0, _tag: 0, _color: null, _opacity:0, /** * Constructor of ccui.RichElement */ ctor: function () { this._type = 0; this._tag = 0; this._color = cc.color(255, 255, 255, 255); }, /** * Initializes a richElement. * @param {Number} tag * @param {cc.Color} color * @param {Number} opacity */ init: function (tag, color, opacity) { this._tag = tag; this._color.r = color.r; this._color.g = color.g; this._color.b = color.b; this._opacity = opacity; if(opacity === undefined) this._color.a = color.a; else this._color.a = opacity; } }); /** * The text element for RichText, it has text, fontName, fontSize attributes. * @class * @extends ccui.RichElement */ ccui.RichElementText = ccui.RichElement.extend(/** @lends ccui.RichElementText# */{ _text: "", _fontName: "", _fontSize: 0, /** * Constructor of ccui.RichElementText * @param {Number} tag * @param {cc.Color} color * @param {Number} opacity * @param {String} text * @param {String} fontName * @param {Number} fontSize */ ctor: function (tag, color, opacity, text, fontName, fontSize) { ccui.RichElement.prototype.ctor.call(this); this._type = ccui.RichElement.TEXT; this._text = ""; this._fontName = ""; this._fontSize = 0; fontSize && this.init(tag, color, opacity, text, fontName, fontSize); }, /** * Initializes a ccui.RichElementText. * @param {Number} tag * @param {cc.Color} color * @param {Number} opacity * @param {String} text * @param {String} fontName * @param {Number} fontSize * @override */ init: function (tag, color, opacity, text, fontName, fontSize) { ccui.RichElement.prototype.init.call(this, tag, color, opacity); this._text = text; this._fontName = fontName; this._fontSize = fontSize; } }); /** * Create a richElementText * @deprecated since v3.0, please use new ccui.RichElementText() instead. * @param {Number} tag * @param {cc.Color} color * @param {Number} opacity * @param {String} text * @param {String} fontName * @param {Number} fontSize * @returns {ccui.RichElementText} */ ccui.RichElementText.create = function (tag, color, opacity, text, fontName, fontSize) { return new ccui.RichElementText(tag, color, opacity, text, fontName, fontSize); }; /** * The image element for RichText, it has filePath, textureRect, textureType attributes. * @class * @extends ccui.RichElement */ ccui.RichElementImage = ccui.RichElement.extend(/** @lends ccui.RichElementImage# */{ _filePath: "", _textureRect: null, _textureType: 0, /** * Constructor of ccui.RichElementImage * @param {Number} tag * @param {cc.Color} color * @param {Number} opacity * @param {String} filePath */ ctor: function (tag, color, opacity, filePath) { ccui.RichElement.prototype.ctor.call(this); this._type = ccui.RichElement.IMAGE; this._filePath = ""; this._textureRect = cc.rect(0, 0, 0, 0); this._textureType = 0; filePath && this.init(tag, color, opacity, filePath); }, /** * Initializes a ccui.RichElementImage * @param {Number} tag * @param {cc.Color} color * @param {Number} opacity * @param {String} filePath * @override */ init: function (tag, color, opacity, filePath) { ccui.RichElement.prototype.init.call(this, tag, color, opacity); this._filePath = filePath; } }); /** * Create a richElementImage * @deprecated since v3.0, please use new ccui.RichElementImage() instead. * @param {Number} tag * @param {cc.Color} color * @param {Number} opacity * @param {String} filePath * @returns {ccui.RichElementImage} */ ccui.RichElementImage.create = function (tag, color, opacity, filePath) { return new ccui.RichElementImage(tag, color, opacity, filePath); }; /** * The custom node element for RichText. * @class * @extends ccui.RichElement */ ccui.RichElementCustomNode = ccui.RichElement.extend(/** @lends ccui.RichElementCustomNode# */{ _customNode: null, /** * Constructor of ccui.RichElementCustomNode * @param {Number} tag * @param {cc.Color} color * @param {Number} opacity * @param {cc.Node} customNode */ ctor: function (tag, color, opacity, customNode) { ccui.RichElement.prototype.ctor.call(this); this._type = ccui.RichElement.CUSTOM; this._customNode = null; customNode && this.init(tag, color, opacity, customNode); }, /** * Initializes a ccui.RichElementCustomNode * @param {Number} tag * @param {cc.Color} color * @param {Number} opacity * @param {cc.Node} customNode * @override */ init: function (tag, color, opacity, customNode) { ccui.RichElement.prototype.init.call(this, tag, color, opacity); this._customNode = customNode; } }); /** * Create a richElementCustomNode * @deprecated since v3.0, please use new ccui.RichElementCustomNode() instead. * @param {Number} tag * @param {Number} color * @param {Number} opacity * @param {cc.Node} customNode * @returns {ccui.RichElementCustomNode} */ ccui.RichElementCustomNode.create = function (tag, color, opacity, customNode) { return new ccui.RichElementCustomNode(tag, color, opacity, customNode); }; /** * The rich text control of Cocos UI. It receives text, image, and custom node as its children to display. * @class * @extends ccui.Widget */ ccui.RichText = ccui.Widget.extend(/** @lends ccui.RichText# */{ _formatTextDirty: false, _richElements: null, _elementRenders: null, _leftSpaceWidth: 0, _verticalSpace: 0, _elementRenderersContainer: null, /** * create a rich text * Constructor of ccui.RichText. override it to extend the construction behavior, remember to call "this._super()" in the extended "ctor" function. * @example * var uiRichText = new ccui.RichTex(); */ ctor: function () { ccui.Widget.prototype.ctor.call(this); this._formatTextDirty = false; this._richElements = []; this._elementRenders = []; this._leftSpaceWidth = 0; this._verticalSpace = 0; }, _initRenderer: function () { this._elementRenderersContainer = new cc.Node(); this._elementRenderersContainer.setAnchorPoint(0.5, 0.5); this.addProtectedChild(this._elementRenderersContainer, 0, -1); }, /** * Insert a element * @param {ccui.RichElement} element * @param {Number} index */ insertElement: function (element, index) { this._richElements.splice(index, 0, element); this._formatTextDirty = true; }, /** * Push a element * @param {ccui.RichElement} element */ pushBackElement: function (element) { this._richElements.push(element); this._formatTextDirty = true; }, /** * Remove element * @param {ccui.RichElement} element */ removeElement: function (element) { if (cc.isNumber(element)) this._richElements.splice(element, 1); else cc.arrayRemoveObject(this._richElements, element); this._formatTextDirty = true; }, /** * Formats the richText's content. */ formatText: function () { if (this._formatTextDirty) { this._elementRenderersContainer.removeAllChildren(); this._elementRenders.length = 0; var i, element, locRichElements = this._richElements; if (this._ignoreSize) { this._addNewLine(); for (i = 0; i < locRichElements.length; i++) { element = locRichElements[i]; var elementRenderer = null; switch (element._type) { case ccui.RichElement.TEXT: //todo: There may be ambiguous elementRenderer = new cc.LabelTTF(element._text, element._fontName, element._fontSize); break; case ccui.RichElement.IMAGE: elementRenderer = cc.Sprite.create(element._filePath); break; case ccui.RichElement.CUSTOM: elementRenderer = element._customNode; break; default: break; } elementRenderer.setColor(element._color); elementRenderer.setOpacity(element._color.a); this._pushToContainer(elementRenderer); } } else { this._addNewLine(); for (i = 0; i < locRichElements.length; i++) { element = locRichElements[i]; switch (element._type) { case ccui.RichElement.TEXT: this._handleTextRenderer(element._text, element._fontName, element._fontSize, element._color); break; case ccui.RichElement.IMAGE: this._handleImageRenderer(element._filePath, element._color, element._color.a); break; case ccui.RichElement.CUSTOM: this._handleCustomRenderer(element._customNode); break; default: break; } } } this.formatRenderers(); this._formatTextDirty = false; } }, _handleTextRenderer: function (text, fontName, fontSize, color) { var textRenderer = new cc.LabelTTF(text, fontName, fontSize); var textRendererWidth = textRenderer.getContentSize().width; this._leftSpaceWidth -= textRendererWidth; if (this._leftSpaceWidth < 0) { var overstepPercent = (-this._leftSpaceWidth) / textRendererWidth; var curText = text; var stringLength = curText.length; var leftLength = stringLength * (1 - overstepPercent); var leftWords = curText.substr(0, leftLength); var cutWords = curText.substr(leftLength, curText.length - 1); if (leftLength > 0) { var leftRenderer = new cc.LabelTTF(leftWords.substr(0, leftLength), fontName, fontSize); leftRenderer.setColor(color); leftRenderer.setOpacity(color.a); this._pushToContainer(leftRenderer); } this._addNewLine(); this._handleTextRenderer(cutWords, fontName, fontSize, color); } else { textRenderer.setColor(color); textRenderer.setOpacity(color.a); this._pushToContainer(textRenderer); } }, _handleImageRenderer: function (filePath, color, opacity) { var imageRenderer = cc.Sprite.create(filePath); this._handleCustomRenderer(imageRenderer); }, _handleCustomRenderer: function (renderer) { var imgSize = renderer.getContentSize(); this._leftSpaceWidth -= imgSize.width; if (this._leftSpaceWidth < 0) { this._addNewLine(); this._pushToContainer(renderer); this._leftSpaceWidth -= imgSize.width; } else this._pushToContainer(renderer); }, _addNewLine: function () { this._leftSpaceWidth = this._customSize.width; this._elementRenders.push([]); }, /** * Formats richText's renderer. */ formatRenderers: function () { var newContentSizeHeight = 0, locRenderersContainer = this._elementRenderersContainer; var locElementRenders = this._elementRenders; var i, j, row, nextPosX, l; if (this._ignoreSize) { var newContentSizeWidth = 0; row = locElementRenders[0]; nextPosX = 0; for (j = 0; j < row.length; j++) { l = row[j]; l.setAnchorPoint(cc.p(0, 0)); l.setPosition(cc.p(nextPosX, 0)); locRenderersContainer.addChild(l, 1, j); var iSize = l.getContentSize(); newContentSizeWidth += iSize.width; newContentSizeHeight = Math.max(newContentSizeHeight, iSize.height); nextPosX += iSize.width; } locRenderersContainer.setContentSize(newContentSizeWidth, newContentSizeHeight); } else { var maxHeights = []; for (i = 0; i < locElementRenders.length; i++) { row = locElementRenders[i]; var maxHeight = 0; for (j = 0; j < row.length; j++) { l = row[j]; maxHeight = Math.max(l.getContentSize().height, maxHeight); } maxHeights[i] = maxHeight; newContentSizeHeight += maxHeights[i]; } var nextPosY = this._customSize.height; for (i = 0; i < locElementRenders.length; i++) { row = locElementRenders[i]; nextPosX = 0; nextPosY -= (maxHeights[i] + this._verticalSpace); for (j = 0; j < row.length; j++) { l = row[j]; l.setAnchorPoint(cc.p(0, 0)); l.setPosition(cc.p(nextPosX, nextPosY)); locRenderersContainer.addChild(l, 1); nextPosX += l.getContentSize().width; } } locRenderersContainer.setContentSize(this._contentSize); } var length = locElementRenders.length; for (i = 0; i