2010-12-17 23:44:19 +08:00
|
|
|
/****************************************************************************
|
2011-03-19 14:45:51 +08:00
|
|
|
Copyright (c) 2010-2011 cocos2d-x.org
|
|
|
|
Copyright (c) 2008-2010 Ricardo Quesada
|
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.
|
|
|
|
****************************************************************************/
|
2010-12-24 14:00:49 +08:00
|
|
|
#include "CCLabelTTF.h"
|
2011-11-28 17:28:43 +08:00
|
|
|
#include "CCDirector.h"
|
2012-03-16 13:42:53 +08:00
|
|
|
#include "CCGLProgram.h"
|
|
|
|
#include "CCShaderCache.h"
|
2010-12-17 23:44:19 +08:00
|
|
|
|
2012-03-16 13:42:53 +08:00
|
|
|
NS_CC_BEGIN
|
2011-03-15 11:59:45 +08:00
|
|
|
|
2012-03-16 13:42:53 +08:00
|
|
|
#if CC_USE_LA88_LABELS
|
|
|
|
#define SHADER_PROGRAM kCCShader_PositionTextureColor
|
|
|
|
#else
|
|
|
|
#define SHADER_PROGRAM kCCShader_PositionTextureA8Color
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
//CCLabelTTF
|
|
|
|
//
|
|
|
|
CCLabelTTF::CCLabelTTF()
|
|
|
|
: m_eAlignment(CCTextAlignmentCenter)
|
|
|
|
, m_pFontName(NULL)
|
|
|
|
, m_fFontSize(0.0)
|
|
|
|
, m_pString(NULL)
|
|
|
|
{
|
|
|
|
}
|
2011-03-15 11:59:45 +08:00
|
|
|
|
2012-03-16 13:42:53 +08:00
|
|
|
CCLabelTTF::~CCLabelTTF()
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(m_pFontName);
|
|
|
|
CC_SAFE_DELETE(m_pString);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCLabelTTF * CCLabelTTF::labelWithString(const char *label, const CCSize& dimensions, CCTextAlignment alignment, const char *fontName, float fontSize)
|
|
|
|
{
|
|
|
|
CCLabelTTF *pRet = new CCLabelTTF();
|
|
|
|
if(pRet && pRet->initWithString(label, dimensions, alignment, fontName, fontSize))
|
2010-08-11 18:09:10 +08:00
|
|
|
{
|
2012-03-16 13:42:53 +08:00
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
2010-08-11 18:09:10 +08:00
|
|
|
}
|
2012-03-16 13:42:53 +08:00
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
CCLabelTTF * CCLabelTTF::labelWithString(const char *label, const char *fontName, float fontSize)
|
|
|
|
{
|
|
|
|
CCLabelTTF *pRet = new CCLabelTTF();
|
|
|
|
if(pRet && pRet->initWithString(label, fontName, fontSize))
|
2010-08-11 18:09:10 +08:00
|
|
|
{
|
2012-03-16 13:42:53 +08:00
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
2010-08-11 18:09:10 +08:00
|
|
|
}
|
2012-03-16 13:42:53 +08:00
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCLabelTTF::init()
|
|
|
|
{
|
|
|
|
return this->initWithString("", "Helvetica", 12);
|
|
|
|
}
|
2010-08-11 18:09:10 +08:00
|
|
|
|
2012-03-16 13:42:53 +08:00
|
|
|
bool CCLabelTTF::initWithString(const char *label, const CCSize& dimensions, CCTextAlignment alignment, const char *fontName, float fontSize)
|
|
|
|
{
|
|
|
|
CCAssert(label != NULL, "");
|
|
|
|
if (CCSprite::init())
|
2010-08-11 18:09:10 +08:00
|
|
|
{
|
2012-03-16 13:42:53 +08:00
|
|
|
// shader program
|
|
|
|
setShaderProgram(CCShaderCache::sharedShaderCache()->programForKey(SHADER_PROGRAM));
|
|
|
|
|
|
|
|
m_tDimensions = CCSizeMake( dimensions.width * CC_CONTENT_SCALE_FACTOR(), dimensions.height * CC_CONTENT_SCALE_FACTOR() );
|
|
|
|
m_eAlignment = alignment;
|
|
|
|
|
|
|
|
CC_SAFE_DELETE(m_pFontName);
|
|
|
|
m_pFontName = new std::string(fontName);
|
|
|
|
|
|
|
|
m_fFontSize = fontSize * CC_CONTENT_SCALE_FACTOR();
|
|
|
|
this->setString(label);
|
|
|
|
return true;
|
2010-08-11 18:09:10 +08:00
|
|
|
}
|
2012-03-16 13:42:53 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool CCLabelTTF::initWithString(const char *label, const char *fontName, float fontSize)
|
|
|
|
{
|
|
|
|
CCAssert(label != NULL, "");
|
|
|
|
if (CCSprite::init())
|
2010-08-11 18:09:10 +08:00
|
|
|
{
|
2012-03-16 13:42:53 +08:00
|
|
|
// shader program
|
|
|
|
setShaderProgram(CCShaderCache::sharedShaderCache()->programForKey(SHADER_PROGRAM));
|
|
|
|
|
|
|
|
m_tDimensions = CCSizeZero;
|
|
|
|
|
|
|
|
CC_SAFE_DELETE(m_pFontName);
|
|
|
|
m_pFontName = new std::string(fontName);
|
|
|
|
|
|
|
|
m_fFontSize = fontSize;
|
|
|
|
this->setString(label);
|
|
|
|
return true;
|
2010-08-11 18:09:10 +08:00
|
|
|
}
|
2012-03-16 13:42:53 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
void CCLabelTTF::setString(const char *label)
|
|
|
|
{
|
|
|
|
if (m_pString)
|
|
|
|
{
|
|
|
|
delete m_pString;
|
|
|
|
m_pString = NULL;
|
|
|
|
}
|
|
|
|
m_pString = new std::string(label);
|
|
|
|
|
|
|
|
CCTexture2D *texture;
|
|
|
|
if( CCSize::CCSizeEqualToSize( m_tDimensions, CCSizeZero ) )
|
2010-08-11 18:09:10 +08:00
|
|
|
{
|
2012-03-16 13:42:53 +08:00
|
|
|
texture = new CCTexture2D();
|
|
|
|
texture->initWithString(label, m_pFontName->c_str(), m_fFontSize);
|
2010-08-11 18:09:10 +08:00
|
|
|
}
|
2012-03-16 13:42:53 +08:00
|
|
|
else
|
2010-12-28 15:05:55 +08:00
|
|
|
{
|
2012-03-16 13:42:53 +08:00
|
|
|
texture = new CCTexture2D();
|
|
|
|
texture->initWithString(label, m_tDimensions, m_eAlignment, m_pFontName->c_str(), m_fFontSize);
|
2010-12-28 15:05:55 +08:00
|
|
|
}
|
|
|
|
|
2012-03-16 13:42:53 +08:00
|
|
|
// TODO
|
|
|
|
// #ifdef __CC_PLATFORM_IOS
|
|
|
|
// // iPad ?
|
|
|
|
// if( UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad ) {
|
|
|
|
// if( CC_CONTENT_SCALE_FACTOR() == 2 )
|
|
|
|
// [tex setResolutionType:kCCResolutioniPadRetinaDisplay];
|
|
|
|
// else
|
|
|
|
// [tex setResolutionType:kCCResolutioniPad];
|
|
|
|
// }
|
|
|
|
// // iPhone ?
|
|
|
|
// else
|
|
|
|
// {
|
|
|
|
// if( CC_CONTENT_SCALE_FACTOR() == 2 )
|
|
|
|
// [tex setResolutionType:kCCResolutioniPhoneRetinaDisplay];
|
|
|
|
// else
|
|
|
|
// [tex setResolutionType:kCCResolutioniPhone];
|
|
|
|
// }
|
|
|
|
// #end
|
|
|
|
this->setTexture(texture);
|
|
|
|
texture->release();
|
|
|
|
|
|
|
|
CCRect rect = CCRectZero;
|
|
|
|
rect.size = m_pobTexture->getContentSize();
|
|
|
|
this->setTextureRect(rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* CCLabelTTF::getString(void)
|
|
|
|
{
|
|
|
|
return m_pString->c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
char * CCLabelTTF::description()
|
|
|
|
{
|
|
|
|
char *ret = new char[100] ;
|
|
|
|
sprintf(ret, "<CCLabelTTF | FontName = %s, FontSize = %.1f>", m_pFontName->c_str(), m_fFontSize);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|