axmol/cocos/2d/CCLabelTTF.cpp

557 lines
14 KiB
C++
Raw Normal View History

2010-12-17 23:44:19 +08:00
/****************************************************************************
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2014 Chukong Technologies Inc.
2010-12-17 23:44:19 +08:00
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.
****************************************************************************/
#include "CCLabelTTF.h"
#include "CCDirector.h"
#include "CCGLProgram.h"
#include "CCShaderCache.h"
2012-06-11 14:36:25 +08:00
#include "CCApplication.h"
2010-12-17 23:44:19 +08:00
NS_CC_BEGIN
#if CC_USE_LA88_LABELS
#define SHADER_PROGRAM GLProgram::SHADER_NAME_POSITION_TEXTURE_COLOR
#else
#define SHADER_PROGRAM GLProgram::SHADER_NAME_POSITION_TEXTUREA8Color
#endif
//
//CCLabelTTF
//
LabelTTF::LabelTTF()
: _alignment(TextHAlignment::CENTER)
, _vAlignment(TextVAlignment::TOP)
, _fontName("")
, _fontSize(0.0)
, _string("")
, _shadowEnabled(false)
, _strokeEnabled(false)
, _textFillColor(Color3B::WHITE)
{
}
LabelTTF::~LabelTTF()
{
}
LabelTTF * LabelTTF::create()
{
LabelTTF * ret = new LabelTTF();
if (ret && ret->init())
{
ret->autorelease();
}
else
{
CC_SAFE_DELETE(ret);
}
return ret;
}
LabelTTF * LabelTTF::create(const std::string& string, const std::string& fontName, float fontSize)
{
return LabelTTF::create(string, fontName, fontSize,
Size::ZERO, TextHAlignment::CENTER, TextVAlignment::TOP);
2012-06-11 14:36:25 +08:00
}
LabelTTF * LabelTTF::create(const std::string& string, const std::string& fontName, float fontSize,
const Size& dimensions, TextHAlignment hAlignment)
2012-06-11 14:36:25 +08:00
{
return LabelTTF::create(string, fontName, fontSize, dimensions, hAlignment, TextVAlignment::TOP);
}
2012-06-11 14:36:25 +08:00
LabelTTF* LabelTTF::create(const std::string& string, const std::string& fontName, float fontSize,
const Size &dimensions, TextHAlignment hAlignment,
TextVAlignment vAlignment)
{
LabelTTF *ret = new LabelTTF();
if(ret && ret->initWithString(string, fontName, fontSize, dimensions, hAlignment, vAlignment))
{
ret->autorelease();
return ret;
}
CC_SAFE_DELETE(ret);
return nullptr;
}
LabelTTF * LabelTTF::createWithFontDefinition(const std::string& string, FontDefinition &textDefinition)
{
LabelTTF *ret = new LabelTTF();
if(ret && ret->initWithStringAndTextDefinition(string, textDefinition))
{
ret->autorelease();
return ret;
}
CC_SAFE_DELETE(ret);
return nullptr;
}
bool LabelTTF::init()
{
return this->initWithString("", "Helvetica", 12);
}
bool LabelTTF::initWithString(const std::string& label, const std::string& fontName, float fontSize,
const Size& dimensions, TextHAlignment alignment)
{
return this->initWithString(label, fontName, fontSize, dimensions, alignment, TextVAlignment::TOP);
2012-06-11 14:36:25 +08:00
}
bool LabelTTF::initWithString(const std::string& label, const std::string& fontName, float fontSize)
2012-06-11 14:36:25 +08:00
{
return this->initWithString(label, fontName, fontSize,
Size::ZERO, TextHAlignment::LEFT, TextVAlignment::TOP);
2012-06-11 14:36:25 +08:00
}
bool LabelTTF::initWithString(const std::string& string, const std::string& fontName, float fontSize,
const cocos2d::Size &dimensions, TextHAlignment hAlignment,
TextVAlignment vAlignment)
2012-06-11 14:36:25 +08:00
{
if (Sprite::init())
{
// shader program
// this->setShaderProgram(ShaderCache::getInstance()->getProgram(SHADER_PROGRAM));
_dimensions = Size(dimensions.width, dimensions.height);
_alignment = hAlignment;
_vAlignment = vAlignment;
_fontName = fontName;
_fontSize = fontSize;
2012-06-11 14:36:25 +08:00
this->setString(string);
return true;
}
2012-06-11 14:36:25 +08:00
return false;
}
2012-06-11 14:36:25 +08:00
bool LabelTTF::initWithStringAndTextDefinition(const std::string& string, FontDefinition &textDefinition)
2013-05-04 01:06:08 +08:00
{
if (Sprite::init())
2013-05-04 01:06:08 +08:00
{
// shader program
this->setShaderProgram(ShaderCache::getInstance()->getProgram(SHADER_PROGRAM));
2013-05-04 01:06:08 +08:00
// prepare everythin needed to render the label
_updateWithTextDefinition(textDefinition, false);
2013-05-04 01:06:08 +08:00
// set the string
this->setString(string);
//
return true;
}
else
{
return false;
}
}
void LabelTTF::setString(const std::string &string)
{
if (_string.compare(string))
{
_string = string;
2012-06-11 14:36:25 +08:00
this->updateTexture();
}
}
const std::string& LabelTTF::getString() const
2012-06-11 14:36:25 +08:00
{
return _string;
2012-06-11 14:36:25 +08:00
}
std::string LabelTTF::getDescription() const
2012-06-11 14:36:25 +08:00
{
return StringUtils::format("<LabelTTF | FontName = %s, FontSize = %.1f, Label = '%s'>", _fontName.c_str(), _fontSize, _string.c_str());
2012-06-11 14:36:25 +08:00
}
TextHAlignment LabelTTF::getHorizontalAlignment() const
2012-06-11 14:36:25 +08:00
{
return _alignment;
}
2012-06-11 14:36:25 +08:00
void LabelTTF::setHorizontalAlignment(TextHAlignment alignment)
{
if (alignment != _alignment)
{
_alignment = alignment;
2012-06-11 14:36:25 +08:00
// Force update
if (_string.size() > 0)
2012-06-11 14:36:25 +08:00
{
this->updateTexture();
}
}
2012-06-11 14:36:25 +08:00
}
TextVAlignment LabelTTF::getVerticalAlignment() const
2012-06-11 14:36:25 +08:00
{
return _vAlignment;
2012-06-11 14:36:25 +08:00
}
void LabelTTF::setVerticalAlignment(TextVAlignment verticalAlignment)
2012-06-11 14:36:25 +08:00
{
if (verticalAlignment != _vAlignment)
{
_vAlignment = verticalAlignment;
2012-06-11 14:36:25 +08:00
// Force update
if (_string.size() > 0)
2012-06-11 14:36:25 +08:00
{
this->updateTexture();
}
}
2012-06-11 14:36:25 +08:00
}
const Size& LabelTTF::getDimensions() const
2012-06-11 14:36:25 +08:00
{
return _dimensions;
2012-06-11 14:36:25 +08:00
}
void LabelTTF::setDimensions(const Size &dim)
2012-06-11 14:36:25 +08:00
{
// XXX: float comparison... very unreliable
if (dim.width != _dimensions.width || dim.height != _dimensions.height)
{
_dimensions = dim;
2012-06-11 14:36:25 +08:00
// Force update
if (_string.size() > 0)
2012-06-11 14:36:25 +08:00
{
this->updateTexture();
}
}
2012-06-11 14:36:25 +08:00
}
2010-12-28 15:05:55 +08:00
float LabelTTF::getFontSize() const
2012-06-11 14:36:25 +08:00
{
return _fontSize;
}
void LabelTTF::setFontSize(float fontSize)
{
// XXX: float comparison... very unreliable
if (_fontSize != fontSize)
{
_fontSize = fontSize;
2012-06-12 09:43:27 +08:00
2012-06-11 14:36:25 +08:00
// Force update
if (_string.size() > 0)
2012-06-11 14:36:25 +08:00
{
this->updateTexture();
}
}
}
const std::string& LabelTTF::getFontName() const
{
return _fontName;
2012-06-11 14:36:25 +08:00
}
void LabelTTF::setFontName(const std::string& fontName)
2012-06-11 14:36:25 +08:00
{
if (_fontName.compare(fontName))
2012-06-11 14:36:25 +08:00
{
_fontName = fontName;
2012-06-11 14:36:25 +08:00
// Force update
if (_string.size() > 0)
2012-06-11 14:36:25 +08:00
{
this->updateTexture();
}
}
}
// Helper
bool LabelTTF::updateTexture()
2012-06-11 14:36:25 +08:00
{
Texture2D *tex;
tex = new Texture2D();
2013-05-04 01:06:08 +08:00
if (!tex)
return false;
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
FontDefinition texDef = _prepareTextDefinition(true);
tex->initWithString( _string.c_str(), texDef );
#else
tex->initWithString( _string.c_str(),
_fontName.c_str(),
_fontSize * CC_CONTENT_SCALE_FACTOR(),
CC_SIZE_POINTS_TO_PIXELS(_dimensions),
_alignment,
_vAlignment);
#endif
2013-05-04 01:06:08 +08:00
// set the texture
this->setTexture(tex);
// release it
tex->release();
// set the size in the sprite
Rect rect =Rect::ZERO;
rect.size = _texture->getContentSize();
2013-05-04 01:06:08 +08:00
this->setTextureRect(rect);
//ok
return true;
}
void LabelTTF::enableShadow(const Size &shadowOffset, float shadowOpacity, float shadowBlur, bool updateTexture)
2013-04-26 09:22:26 +08:00
{
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
2013-04-26 09:22:26 +08:00
bool valueChanged = false;
if (false == _shadowEnabled)
{
_shadowEnabled = true;
valueChanged = true;
}
if ( (_shadowOffset.width != shadowOffset.width) || (_shadowOffset.height!=shadowOffset.height) )
{
_shadowOffset.width = shadowOffset.width;
_shadowOffset.height = shadowOffset.height;
valueChanged = true;
}
if (_shadowOpacity != shadowOpacity )
{
_shadowOpacity = shadowOpacity;
valueChanged = true;
}
2013-04-26 09:22:26 +08:00
if (_shadowBlur != shadowBlur)
{
_shadowBlur = shadowBlur;
valueChanged = true;
}
2013-05-04 01:06:08 +08:00
if ( valueChanged && updateTexture )
{
this->updateTexture();
}
2013-04-26 09:22:26 +08:00
#else
CCLOGERROR("Currently only supported on iOS and Android!");
#endif
2013-04-26 09:22:26 +08:00
}
void LabelTTF::disableShadow(bool updateTexture)
2013-04-26 09:22:26 +08:00
{
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
if (_shadowEnabled)
{
_shadowEnabled = false;
2013-05-04 01:06:08 +08:00
if (updateTexture)
this->updateTexture();
}
#else
CCLOGERROR("Currently only supported on iOS and Android!");
#endif
2013-04-26 09:22:26 +08:00
}
void LabelTTF::enableStroke(const Color3B &strokeColor, float strokeSize, bool updateTexture)
2013-04-26 09:22:26 +08:00
{
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
2013-04-26 09:22:26 +08:00
bool valueChanged = false;
if(_strokeEnabled == false)
{
_strokeEnabled = true;
valueChanged = true;
}
if ( (_strokeColor.r != strokeColor.r) || (_strokeColor.g != strokeColor.g) || (_strokeColor.b != strokeColor.b) )
{
_strokeColor = strokeColor;
valueChanged = true;
}
if (_strokeSize!=strokeSize)
{
_strokeSize = strokeSize;
valueChanged = true;
}
2013-05-04 01:06:08 +08:00
if ( valueChanged && updateTexture )
{
this->updateTexture();
}
2013-04-26 09:22:26 +08:00
#else
CCLOGERROR("Currently only supported on iOS and Android!");
#endif
2013-04-26 09:22:26 +08:00
}
void LabelTTF::disableStroke(bool updateTexture)
2013-04-26 09:22:26 +08:00
{
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
if (_strokeEnabled)
{
_strokeEnabled = false;
2013-05-04 01:06:08 +08:00
if (updateTexture)
this->updateTexture();
}
#else
CCLOGERROR("Currently only supported on iOS and Android!");
#endif
2013-04-26 09:22:26 +08:00
}
void LabelTTF::setFontFillColor(const Color3B &tintColor, bool updateTexture)
{
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
if (_textFillColor.r != tintColor.r || _textFillColor.g != tintColor.g || _textFillColor.b != tintColor.b)
{
_textFillColor = tintColor;
2013-05-04 01:06:08 +08:00
if (updateTexture)
this->updateTexture();
}
#else
CCLOGERROR("Currently only supported on iOS and Android!");
#endif
}
void LabelTTF::setTextDefinition(const FontDefinition& theDefinition)
2013-05-04 01:06:08 +08:00
{
_updateWithTextDefinition(theDefinition, true);
2013-05-04 01:06:08 +08:00
}
FontDefinition LabelTTF::getTextDefinition()
2013-05-04 01:06:08 +08:00
{
return _prepareTextDefinition(false);
2013-05-04 01:06:08 +08:00
}
void LabelTTF::_updateWithTextDefinition(const FontDefinition& textDefinition, bool mustUpdateTexture)
2013-05-04 01:06:08 +08:00
{
_dimensions = Size(textDefinition._dimensions.width, textDefinition._dimensions.height);
_alignment = textDefinition._alignment;
_vAlignment = textDefinition._vertAlignment;
2013-05-04 01:06:08 +08:00
_fontName = textDefinition._fontName;
_fontSize = textDefinition._fontSize;
2013-05-04 01:06:08 +08:00
// shadow
if ( textDefinition._shadow._shadowEnabled )
2013-05-04 01:06:08 +08:00
{
enableShadow(textDefinition._shadow._shadowOffset, textDefinition._shadow._shadowOpacity, textDefinition._shadow._shadowBlur, false);
2013-05-04 01:06:08 +08:00
}
// stroke
if ( textDefinition._stroke._strokeEnabled )
2013-05-04 01:06:08 +08:00
{
enableStroke(textDefinition._stroke._strokeColor, textDefinition._stroke._strokeSize, false);
2013-05-04 01:06:08 +08:00
}
// fill color
setFontFillColor(textDefinition._fontFillColor, false);
2013-05-04 01:06:08 +08:00
if (mustUpdateTexture)
updateTexture();
}
FontDefinition LabelTTF::_prepareTextDefinition(bool adjustForResolution)
2013-05-04 01:06:08 +08:00
{
FontDefinition texDef;
2013-05-04 01:06:08 +08:00
if (adjustForResolution)
texDef._fontSize = _fontSize * CC_CONTENT_SCALE_FACTOR();
else
texDef._fontSize = _fontSize;
texDef._fontName = _fontName;
texDef._alignment = _alignment;
texDef._vertAlignment = _vAlignment;
2013-05-04 01:06:08 +08:00
if (adjustForResolution)
texDef._dimensions = CC_SIZE_POINTS_TO_PIXELS(_dimensions);
else
texDef._dimensions = _dimensions;
// stroke
if ( _strokeEnabled )
2013-05-04 01:06:08 +08:00
{
texDef._stroke._strokeEnabled = true;
texDef._stroke._strokeColor = _strokeColor;
if (adjustForResolution)
texDef._stroke._strokeSize = _strokeSize * CC_CONTENT_SCALE_FACTOR();
else
texDef._stroke._strokeSize = _strokeSize;
2013-05-04 01:06:08 +08:00
}
else
{
texDef._stroke._strokeEnabled = false;
2013-05-04 01:06:08 +08:00
}
// shadow
if ( _shadowEnabled )
2013-05-04 01:06:08 +08:00
{
texDef._shadow._shadowEnabled = true;
texDef._shadow._shadowBlur = _shadowBlur;
texDef._shadow._shadowOpacity = _shadowOpacity;
if (adjustForResolution)
texDef._shadow._shadowOffset = CC_SIZE_POINTS_TO_PIXELS(_shadowOffset);
else
texDef._shadow._shadowOffset = _shadowOffset;
2013-05-04 01:06:08 +08:00
}
else
{
texDef._shadow._shadowEnabled = false;
2013-05-04 01:06:08 +08:00
}
// text tint
texDef._fontFillColor = _textFillColor;
2013-05-04 01:06:08 +08:00
return texDef;
}
NS_CC_END