123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- /****************************************************************************
- 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.
- ****************************************************************************/
- /**
- * The TextBMFont control of Cocos UI, it rendered by LabelBMFont.
- * @class
- * @extends ccui.Widget
- *
- * @property {String} string - Content string of the label
- */
- ccui.LabelBMFont = ccui.TextBMFont = ccui.Widget.extend(/** @lends ccui.TextBMFont# */{
- _labelBMFontRenderer: null,
- _fntFileHasInit: false,
- _fntFileName: "",
- _stringValue: "",
- _className: "TextBMFont",
- _labelBMFontRendererAdaptDirty: true,
- /**
- * Allocates and initializes a TextBMFont. <br/>
- * Constructor of ccui.TextBMFont. override it to extend the construction behavior, remember to call "this._super()" in the extended "ctor" function.
- * @param {String} text
- * @param {String} filename
- * @example
- * // example
- * var uiLabelBMFont = new ccui.TextBMFont();
- */
- ctor: function (text, filename) {
- ccui.Widget.prototype.ctor.call(this);
- if(filename != undefined){
- this.setFntFile(filename);
- this.setString(text);
- }
- },
- _initRenderer: function () {
- this._labelBMFontRenderer = new cc.LabelBMFont();
- this.addProtectedChild(this._labelBMFontRenderer, ccui.TextBMFont.RENDERER_ZORDER, -1);
- },
- /**
- * Initializes a bitmap font atlas with an initial string and the FNT file
- * @param {String} fileName
- */
- setFntFile: function (fileName) {
- if (!fileName)
- return;
- var _self = this;
- _self._fntFileName = fileName;
- _self._fntFileHasInit = true;
- _self._labelBMFontRenderer.initWithString(this._stringValue, fileName);
- var locRenderer = _self._labelBMFontRenderer;
- if(!locRenderer._textureLoaded){
- locRenderer.addLoadedEventListener(function(){
- _self.updateSizeAndPosition();
- });
- }
- },
- /**
- * Sets string value for TextBMFont
- * @deprecated since v3.0, please use setString instead.
- * @param {String} value
- */
- setText: function (value) {
- cc.log("Please use the setString");
- this.setString(value);
- },
- /**
- * Sets string value for TextBMFont
- * @param {String} value
- */
- setString: function (value) {
- this._stringValue = value;
- if (!this._fntFileHasInit)
- return;
- this._labelBMFontRenderer.setString(value);
- this._updateContentSizeWithTextureSize(this._labelBMFontRenderer.getContentSize());
- this._labelBMFontRendererAdaptDirty = true;
- },
- /**
- * Returns string value for TextBMFont.
- * @returns {String}
- */
- getString: function () {
- return this._stringValue;
- },
- /**
- * Returns the length of TextBMFont's string.
- * @returns {Number}
- */
- getStringLength: function(){
- return this._labelBMFontRenderer.getStringLength();
- },
- _onSizeChanged: function () {
- ccui.Widget.prototype._onSizeChanged.call(this);
- this._labelBMFontRendererAdaptDirty = true;
- },
- _adaptRenderers: function(){
- if (this._labelBMFontRendererAdaptDirty){
- this._labelBMFontScaleChangedWithSize();
- this._labelBMFontRendererAdaptDirty = false;
- }
- },
- /**
- * Returns TextBMFont's content size
- * @override
- * @returns {cc.Size}
- */
- getVirtualRendererSize: function(){
- return this._labelBMFontRenderer.getContentSize();
- },
- /**
- * Returns the renderer of TextBMFont
- * @override
- * @returns {cc.Node}
- */
- getVirtualRenderer: function () {
- return this._labelBMFontRenderer;
- },
- _labelBMFontScaleChangedWithSize: function () {
- var locRenderer = this._labelBMFontRenderer;
- if (this._ignoreSize)
- locRenderer.setScale(1.0);
- else {
- var textureSize = locRenderer.getContentSize();
- if (textureSize.width <= 0.0 || textureSize.height <= 0.0) {
- locRenderer.setScale(1.0);
- return;
- }
- locRenderer.setScaleX(this._contentSize.width / textureSize.width);
- locRenderer.setScaleY(this._contentSize.height / textureSize.height);
- }
- locRenderer.setPosition(this._contentSize.width / 2.0, this._contentSize.height / 2.0);
- },
- /**
- * Returns the "class name" of ccui.TextBMFont.
- * @returns {string}
- */
- getDescription: function () {
- return "TextBMFont";
- },
- _createCloneInstance: function () {
- return new ccui.TextBMFont();
- },
- _copySpecialProperties: function (labelBMFont) {
- this.setFntFile(labelBMFont._fntFileName);
- this.setString(labelBMFont._stringValue);
- }
- });
- var _p = ccui.TextBMFont.prototype;
- // Extended properties
- /** @expose */
- _p.string;
- cc.defineGetterSetter(_p, "string", _p.getString, _p.setStringValue);
- _p = null;
- /**
- * allocates and initializes a UILabelBMFont.
- * @deprecated since v3.0, please use new ccui.TextBMFont() instead.
- * @return {ccui.TextBMFont}
- * @example
- * // example
- * var uiLabelBMFont = ccui.TextBMFont.create();
- */
- ccui.TextBMFont.create = function (text, filename) {
- return new ccui.TextBMFont(text, filename);
- };
- // Constants
- /**
- * The zOrder value of TextBMFont's renderer.
- * @constant
- * @type {number}
- */
- ccui.TextBMFont.RENDERER_ZORDER = -1;
|