axmol/cocos2dx/label_nodes/CCLabelBMFont.cpp

876 lines
27 KiB
C++
Raw Normal View History

/****************************************************************************
Copyright (c) 2010-2011 cocos2d-x.org
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2011 Zynga 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.
Use any of these editors to generate BMFonts:
http://glyphdesigner.71squared.com/ (Commercial, Mac OS X)
http://www.n4te.com/hiero/hiero.jnlp (Free, Java)
http://slick.cokeandcode.com/demos/hiero.jnlp (Free, Java)
http://www.angelcode.com/products/bmfont/ (Free, Windows only)
****************************************************************************/
#include "CCLabelBMFont.h"
#include "platform/platform.h"
#include "CCMutableDictionary.h"
#include "CCConfiguration.h"
#include "CCDrawingPrimitives.h"
#include "CCSprite.h"
#include "CCPointExtension.h"
#include "CCFileUtils.h"
#include "support/data_support/uthash.h"
namespace cocos2d{
2010-08-12 17:39:25 +08:00
//
//FNTConfig Cache - free functions
//
CCMutableDictionary<std::string, CCBMFontConfiguration*> *configurations = NULL;
2010-12-24 17:07:31 +08:00
CCBMFontConfiguration* FNTConfigLoadFile( const char *fntFile)
2010-08-12 17:39:25 +08:00
{
2010-12-24 17:07:31 +08:00
CCBMFontConfiguration *pRet = NULL;
2010-08-12 17:39:25 +08:00
if( configurations == NULL )
{
configurations = new CCMutableDictionary<std::string, CCBMFontConfiguration*>();
2010-08-12 17:39:25 +08:00
}
std::string key(fntFile);
pRet = configurations->objectForKey(key);
if( pRet == NULL )
{
2010-12-24 17:07:31 +08:00
pRet = CCBMFontConfiguration::configurationWithFNTFile(fntFile);
2010-08-12 17:39:25 +08:00
configurations->setObject(pRet, key);
}
return pRet;
}
void FNTConfigRemoveCache( void )
{
if (configurations)
{
configurations->removeAllObjects();
CC_SAFE_RELEASE_NULL(configurations);
}
2010-08-12 17:39:25 +08:00
}
//
//Hash Element
//
// Equal function for targetSet.
typedef struct _KerningHashElement
{
int key; // key for the hash. 16-bit for 1st element, 16-bit for 2nd element
int amount;
UT_hash_handle hh;
} tKerningHashElement;
//
//BitmapFontConfiguration
//
2010-12-24 17:07:31 +08:00
CCBMFontConfiguration * CCBMFontConfiguration::configurationWithFNTFile(const char *FNTfile)
2010-08-12 17:39:25 +08:00
{
2010-12-24 17:07:31 +08:00
CCBMFontConfiguration * pRet = new CCBMFontConfiguration();
if (pRet->initWithFNTfile(FNTfile))
{
pRet->autorelease();
return pRet;
}
CC_SAFE_DELETE(pRet);
return NULL;
2010-08-12 17:39:25 +08:00
}
2010-12-24 17:07:31 +08:00
bool CCBMFontConfiguration::initWithFNTfile(const char *FNTfile)
2010-08-12 17:39:25 +08:00
{
CCAssert(FNTfile != NULL && strlen(FNTfile)!=0, "");
2010-08-12 17:39:25 +08:00
m_pKerningDictionary = NULL;
this->parseConfigFile(FNTfile);
return true;
2010-08-12 17:39:25 +08:00
}
CCBMFontConfiguration::CCBMFontConfiguration()
: m_pBitmapFontArray(new std::map<unsigned int, ccBMFontDef>)
, m_uCommonHeight(0)
, m_pKerningDictionary(NULL)
{
}
2010-12-24 17:07:31 +08:00
CCBMFontConfiguration::~CCBMFontConfiguration()
2010-08-12 17:39:25 +08:00
{
2010-12-24 17:07:31 +08:00
CCLOGINFO( "cocos2d: deallocing CCBMFontConfiguration" );
CC_SAFE_DELETE(m_pBitmapFontArray);
2010-08-12 17:39:25 +08:00
this->purgeKerningDictionary();
m_sAtlasName.clear();
}
2010-12-24 17:07:31 +08:00
char * CCBMFontConfiguration::description(void)
2010-08-12 17:39:25 +08:00
{
char *ret = new char[100];
2010-12-24 17:07:31 +08:00
sprintf(ret, "<CCBMFontConfiguration | Kernings:%d | Image = %s>", HASH_COUNT(m_pKerningDictionary), m_sAtlasName.c_str());
2010-08-12 17:39:25 +08:00
return ret;
}
2010-12-24 17:07:31 +08:00
void CCBMFontConfiguration::purgeKerningDictionary()
2010-08-12 17:39:25 +08:00
{
tKerningHashElement *current;
while(m_pKerningDictionary)
{
current = m_pKerningDictionary;
HASH_DEL(m_pKerningDictionary,current);
free(current);
}
}
2010-12-24 17:07:31 +08:00
void CCBMFontConfiguration::parseConfigFile(const char *controlFile)
2010-08-12 17:39:25 +08:00
{
std::string fullpath = CCFileUtils::fullPathFromRelativePath(controlFile);
CCFileData data(fullpath.c_str(), "rb");
unsigned long nBufSize = data.getSize();
char* pBuffer = (char*) data.getBuffer();
2010-08-12 17:39:25 +08:00
CCAssert(pBuffer, "CCBMFontConfiguration::parseConfigFile | Open file error.");
if (!pBuffer)
{
return;
}
// parse spacing / padding
std::string line;
std::string strLeft(pBuffer, nBufSize);
while (strLeft.length() > 0)
{
int pos = strLeft.find('\n');
if (pos != (int)std::string::npos)
{
// the data is more than a line.get one line
line = strLeft.substr(0, pos);
strLeft = strLeft.substr(pos + 1);
}
else
{
// get the left data
line = strLeft;
strLeft.erase();
}
if(line.substr(0,strlen("info face")) == "info face")
{
// XXX: info parsing is incomplete
// Not needed for the Hiero editors, but needed for the AngelCode editor
// [self parseInfoArguments:line];
this->parseInfoArguments(line);
}
// Check to see if the start of the line is something we are interested in
else if(line.substr(0,strlen("common lineHeight")) == "common lineHeight")
{
this->parseCommonArguments(line);
}
else if(line.substr(0,strlen("page id")) == "page id")
{
this->parseImageFileName(line, controlFile);
}
else if(line.substr(0,strlen("chars c")) == "chars c")
{
// Ignore this line
}
else if(line.substr(0,strlen("char")) == "char")
{
// Parse the current line and create a new CharDef
2010-12-24 17:07:31 +08:00
ccBMFontDef characterDefinition;
this->parseCharacterDefinition(line, &characterDefinition);
// Add the CharDef returned to the charArray
(*m_pBitmapFontArray)[ characterDefinition.charID ] = characterDefinition;
}
else if(line.substr(0,strlen("kernings count")) == "kernings count")
{
this->parseKerningCapacity(line);
}
else if(line.substr(0,strlen("kerning first")) == "kerning first")
{
this->parseKerningEntry(line);
}
}
2010-08-12 17:39:25 +08:00
}
2010-12-24 17:07:31 +08:00
void CCBMFontConfiguration::parseImageFileName(std::string line, const char *fntFile)
2010-08-12 17:39:25 +08:00
{
//////////////////////////////////////////////////////////////////////////
2010-08-12 17:39:25 +08:00
// line to parse:
// page id=0 file="bitmapFontTest.png"
//////////////////////////////////////////////////////////////////////////
2010-08-12 17:39:25 +08:00
// page ID. Sanity check
int index = line.find('=')+1;
int index2 = line.find(' ', index);
std::string value = line.substr(index, index2-index);
2011-07-08 14:32:09 +08:00
CCAssert(atoi(value.c_str()) == 0, "LabelBMFont file could not be found");
2010-08-12 17:39:25 +08:00
// file
index = line.find('"')+1;
index2 = line.find('"', index);
value = line.substr(index, index2-index);
m_sAtlasName = CCFileUtils::fullPathFromRelativeFile(value.c_str(), fntFile);
2010-08-12 17:39:25 +08:00
}
2010-12-24 17:07:31 +08:00
void CCBMFontConfiguration::parseInfoArguments(std::string line)
2010-08-12 17:39:25 +08:00
{
//////////////////////////////////////////////////////////////////////////
2010-08-12 17:39:25 +08:00
// possible lines to parse:
// info face="Script" size=32 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=1,4,3,2 spacing=0,0 outline=0
// info face="Cracked" size=36 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1
//////////////////////////////////////////////////////////////////////////
2010-08-12 17:39:25 +08:00
// padding
int index = line.find("padding=");
int index2 = line.find(' ', index);
std::string value = line.substr(index, index2-index);
sscanf(value.c_str(), "padding=%d,%d,%d,%d", &m_tPadding.top, &m_tPadding.right, &m_tPadding.bottom, &m_tPadding.left);
CCLOG("cocos2d: padding: %d,%d,%d,%d", m_tPadding.left, m_tPadding.top, m_tPadding.right, m_tPadding.bottom);
}
2010-12-24 17:07:31 +08:00
void CCBMFontConfiguration::parseCommonArguments(std::string line)
2010-08-12 17:39:25 +08:00
{
//////////////////////////////////////////////////////////////////////////
2010-08-12 17:39:25 +08:00
// line to parse:
// common lineHeight=104 base=26 scaleW=1024 scaleH=512 pages=1 packed=0
//////////////////////////////////////////////////////////////////////////
2010-08-12 17:39:25 +08:00
// Height
int index = line.find("lineHeight=");
int index2 = line.find(' ', index);
std::string value = line.substr(index, index2-index);
sscanf(value.c_str(), "lineHeight=%u", &m_uCommonHeight);
// scaleW. sanity check
index = line.find("scaleW=") + strlen("scaleW=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
CCAssert(atoi(value.c_str()) <= CCConfiguration::sharedConfiguration()->getMaxTextureSize(), "CCLabelBMFont: page can't be larger than supported");
2010-08-12 17:39:25 +08:00
// scaleH. sanity check
index = line.find("scaleH=") + strlen("scaleH=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
CCAssert(atoi(value.c_str()) <= CCConfiguration::sharedConfiguration()->getMaxTextureSize(), "CCLabelBMFont: page can't be larger than supported");
2010-08-12 17:39:25 +08:00
// pages. sanity check
index = line.find("pages=") + strlen("pages=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
CCAssert(atoi(value.c_str()) == 1, "CCBitfontAtlas: only supports 1 page");
2010-08-12 17:39:25 +08:00
// packed (ignore) What does this mean ??
}
2010-12-24 17:07:31 +08:00
void CCBMFontConfiguration::parseCharacterDefinition(std::string line, ccBMFontDef *characterDefinition)
2010-08-12 17:39:25 +08:00
{
//////////////////////////////////////////////////////////////////////////
2010-08-12 17:39:25 +08:00
// line to parse:
// char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=44 xadvance=14 page=0 chnl=0
//////////////////////////////////////////////////////////////////////////
2010-08-12 17:39:25 +08:00
// Character ID
int index = line.find("id=");
int index2 = line.find(' ', index);
std::string value = line.substr(index, index2-index);
sscanf(value.c_str(), "id=%u", &characterDefinition->charID);
2010-08-12 17:39:25 +08:00
// Character x
index = line.find("x=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
sscanf(value.c_str(), "x=%f", &characterDefinition->rect.origin.x);
// Character y
index = line.find("y=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
sscanf(value.c_str(), "y=%f", &characterDefinition->rect.origin.y);
// Character width
index = line.find("width=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
sscanf(value.c_str(), "width=%f", &characterDefinition->rect.size.width);
// Character height
index = line.find("height=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
sscanf(value.c_str(), "height=%f", &characterDefinition->rect.size.height);
// Character xoffset
index = line.find("xoffset=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
sscanf(value.c_str(), "xoffset=%d", &characterDefinition->xOffset);
// Character yoffset
index = line.find("yoffset=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
sscanf(value.c_str(), "yoffset=%d", &characterDefinition->yOffset);
// Character xadvance
index = line.find("xadvance=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
sscanf(value.c_str(), "xadvance=%d", &characterDefinition->xAdvance);
}
2010-12-24 17:07:31 +08:00
void CCBMFontConfiguration::parseKerningCapacity(std::string line)
2010-08-12 17:39:25 +08:00
{
// When using uthash there is not need to parse the capacity.
// CCAssert(!kerningDictionary, @"dictionary already initialized");
2010-08-12 17:39:25 +08:00
//
// // Break the values for this line up using =
2011-03-18 14:31:29 +08:00
// CCMutableArray *values = [line componentsSeparatedByString:@"="];
2010-08-12 17:39:25 +08:00
// NSEnumerator *nse = [values objectEnumerator];
// CCString *propertyValue;
2010-08-12 17:39:25 +08:00
//
// // We need to move past the first entry in the array before we start assigning values
// [nse nextObject];
//
// // count
// propertyValue = [nse nextObject];
// int capacity = [propertyValue intValue];
//
// if( capacity != -1 )
// kerningDictionary = ccHashSetNew(capacity, targetSetEql);
}
2010-12-24 17:07:31 +08:00
void CCBMFontConfiguration::parseKerningEntry(std::string line)
{
//////////////////////////////////////////////////////////////////////////
2010-08-12 17:39:25 +08:00
// line to parse:
// kerning first=121 second=44 amount=-7
//////////////////////////////////////////////////////////////////////////
2010-08-12 17:39:25 +08:00
// first
int first;
int index = line.find("first=");
int index2 = line.find(' ', index);
std::string value = line.substr(index, index2-index);
sscanf(value.c_str(), "first=%d", &first);
// second
int second;
index = line.find("second=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
sscanf(value.c_str(), "second=%d", &second);
// amount
int amount;
index = line.find("amount=");
index2 = line.find(' ', index);
value = line.substr(index, index2-index);
sscanf(value.c_str(), "amount=%d", &amount);
tKerningHashElement *element = (tKerningHashElement *)calloc( sizeof( *element ), 1 );
element->amount = amount;
element->key = (first<<16) | (second&0xffff);
HASH_ADD_INT(m_pKerningDictionary,key, element);
}
//
2010-12-24 17:07:31 +08:00
//CCLabelBMFont
2010-08-12 17:39:25 +08:00
//
2011-07-08 14:32:09 +08:00
//LabelBMFont - Purge Cache
2010-12-24 17:07:31 +08:00
void CCLabelBMFont::purgeCachedData()
2010-08-12 17:39:25 +08:00
{
FNTConfigRemoveCache();
}
2011-07-08 14:32:09 +08:00
//LabelBMFont - Creation & Init
2010-12-24 17:07:31 +08:00
CCLabelBMFont *CCLabelBMFont::labelWithString(const char *str, const char *fntFile)
2010-08-12 17:39:25 +08:00
{
2010-12-24 17:07:31 +08:00
CCLabelBMFont *pRet = new CCLabelBMFont();
2010-08-19 14:09:40 +08:00
if(pRet && pRet->initWithString(str, fntFile))
2010-08-12 17:39:25 +08:00
{
pRet->autorelease();
return pRet;
}
CC_SAFE_DELETE(pRet)
2010-08-12 17:39:25 +08:00
return NULL;
}
2010-12-24 17:07:31 +08:00
bool CCLabelBMFont::initWithString(const char *theString, const char *fntFile)
2010-08-12 17:39:25 +08:00
{
CCAssert(theString != NULL, "");
CC_SAFE_RELEASE(m_pConfiguration);// allow re-init
2010-08-12 17:39:25 +08:00
m_pConfiguration = FNTConfigLoadFile(fntFile);
m_pConfiguration->retain();
2011-07-08 14:32:09 +08:00
CCAssert( m_pConfiguration, "Error creating config for LabelBMFont");
2010-08-12 17:39:25 +08:00
if (CCSpriteBatchNode::initWithFile(m_pConfiguration->m_sAtlasName.c_str(), strlen(theString)))
{
m_cOpacity = 255;
m_tColor = ccWHITE;
m_tContentSize = CCSizeZero;
m_bIsOpacityModifyRGB = m_pobTextureAtlas->getTexture()->getHasPremultipliedAlpha();
setAnchorPoint(ccp(0.5f, 0.5f));
this->setString(theString);
return true;
}
return false;
2010-08-12 17:39:25 +08:00
}
2010-12-24 17:07:31 +08:00
CCLabelBMFont::~CCLabelBMFont()
2010-08-12 17:39:25 +08:00
{
m_sString.clear();
CC_SAFE_RELEASE(m_pConfiguration);
2010-08-12 17:39:25 +08:00
}
2011-07-08 14:32:09 +08:00
// LabelBMFont - Atlas generation
2010-12-24 17:07:31 +08:00
int CCLabelBMFont::kerningAmountForFirst(unsigned short first, unsigned short second)
2010-08-12 17:39:25 +08:00
{
int ret = 0;
unsigned int key = (first<<16) | (second & 0xffff);
if( m_pConfiguration->m_pKerningDictionary ) {
tKerningHashElement *element = NULL;
HASH_FIND_INT(m_pConfiguration->m_pKerningDictionary, &key, element);
if(element)
ret = element->amount;
}
return ret;
}
static int cc_wcslen(const unsigned short* str)
{
int i=0;
while(*str++) i++;
return i;
}
/* Code from GLIB gutf8.c starts here. */
#define UTF8_COMPUTE(Char, Mask, Len) \
if (Char < 128) \
{ \
Len = 1; \
Mask = 0x7f; \
} \
else if ((Char & 0xe0) == 0xc0) \
{ \
Len = 2; \
Mask = 0x1f; \
} \
else if ((Char & 0xf0) == 0xe0) \
{ \
Len = 3; \
Mask = 0x0f; \
} \
else if ((Char & 0xf8) == 0xf0) \
{ \
Len = 4; \
Mask = 0x07; \
} \
else if ((Char & 0xfc) == 0xf8) \
{ \
Len = 5; \
Mask = 0x03; \
} \
else if ((Char & 0xfe) == 0xfc) \
{ \
Len = 6; \
Mask = 0x01; \
} \
else \
Len = -1;
#define UTF8_LENGTH(Char) \
((Char) < 0x80 ? 1 : \
((Char) < 0x800 ? 2 : \
((Char) < 0x10000 ? 3 : \
((Char) < 0x200000 ? 4 : \
((Char) < 0x4000000 ? 5 : 6)))))
#define UTF8_GET(Result, Chars, Count, Mask, Len) \
(Result) = (Chars)[0] & (Mask); \
for ((Count) = 1; (Count) < (Len); ++(Count)) \
{ \
if (((Chars)[(Count)] & 0xc0) != 0x80) \
{ \
(Result) = -1; \
break; \
} \
(Result) <<= 6; \
(Result) |= ((Chars)[(Count)] & 0x3f); \
}
#define UNICODE_VALID(Char) \
((Char) < 0x110000 && \
(((Char) & 0xFFFFF800) != 0xD800) && \
((Char) < 0xFDD0 || (Char) > 0xFDEF) && \
((Char) & 0xFFFE) != 0xFFFE)
static const char utf8_skip_data[256] = {
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5,
5, 5, 5, 6, 6, 1, 1
};
static const char *const g_utf8_skip = utf8_skip_data;
#define cc_utf8_next_char(p) (char *)((p) + g_utf8_skip[*(unsigned char *)(p)])
/*
* g_utf8_strlen:
* @p: pointer to the start of a UTF-8 encoded string.
* @max: the maximum number of bytes to examine. If @max
* is less than 0, then the string is assumed to be
* nul-terminated. If @max is 0, @p will not be examined and
* may be %NULL.
*
* Returns the length of the string in characters.
*
* Return value: the length of the string in characters
**/
static long
cc_utf8_strlen (const char * p, int max)
{
long len = 0;
const char *start = p;
if (!(p != NULL || max == 0))
{
return 0;
}
if (max < 0)
{
while (*p)
{
p = cc_utf8_next_char (p);
++len;
}
}
else
{
if (max == 0 || !*p)
return 0;
p = cc_utf8_next_char (p);
while (p - start < max && *p)
{
++len;
p = cc_utf8_next_char (p);
}
/* only do the last len increment if we got a complete
* char (don't count partial chars)
*/
if (p - start == max)
++len;
}
return len;
}
/*
* g_utf8_get_char:
* @p: a pointer to Unicode character encoded as UTF-8
*
* Converts a sequence of bytes encoded as UTF-8 to a Unicode character.
* If @p does not point to a valid UTF-8 encoded character, results are
* undefined. If you are not sure that the bytes are complete
* valid Unicode characters, you should use g_utf8_get_char_validated()
* instead.
*
* Return value: the resulting character
**/
static unsigned int
cc_utf8_get_char (const char * p)
{
int i, mask = 0, len;
unsigned int result;
unsigned char c = (unsigned char) *p;
UTF8_COMPUTE (c, mask, len);
if (len == -1)
return (unsigned int) - 1;
UTF8_GET (result, p, i, mask, len);
return result;
}
2010-12-24 17:07:31 +08:00
void CCLabelBMFont::createFontChars()
2010-08-12 17:39:25 +08:00
{
int nextFontPositionX = 0;
2010-12-24 17:07:31 +08:00
int nextFontPositionY = 0;
2011-03-28 10:44:14 +08:00
unsigned short prev = -1;
2010-08-12 17:39:25 +08:00
int kerningAmount = 0;
CCSize tmpSize = CCSizeZero;
2010-12-24 17:07:31 +08:00
int longestLine = 0;
unsigned int totalHeight = 0;
unsigned int quantityOfLines = 1;
2010-12-24 17:07:31 +08:00
if (0 == m_sString.length())
{
return;
}
2010-12-24 17:07:31 +08:00
int utf8len = cc_utf8_strlen(m_sString.c_str(), -1);
if (utf8len == 0)
{
return;
}
unsigned short* pUniStr = new unsigned short[utf8len+1];
pUniStr[utf8len] = 0;
const char* p = m_sString.c_str();
for (int i = 0; i < utf8len; ++i)
{
pUniStr[i] = cc_utf8_get_char(p);
p = cc_utf8_next_char (p);
}
unsigned int stringLen = cc_wcslen(pUniStr);
for (unsigned int i = 0; i < stringLen - 1; ++i)
{
unsigned short c = pUniStr[i];
if (c == '\n')
{
quantityOfLines++;
}
}
totalHeight = m_pConfiguration->m_uCommonHeight * quantityOfLines;
nextFontPositionY = -(m_pConfiguration->m_uCommonHeight - m_pConfiguration->m_uCommonHeight * quantityOfLines);
2010-12-24 17:07:31 +08:00
for (unsigned int i= 0; i < stringLen; i++)
2010-08-13 11:16:04 +08:00
{
unsigned short c = pUniStr[i];
std::map<unsigned int, ccBMFontDef>::iterator it = m_pConfiguration->m_pBitmapFontArray->find(c);
CCAssert(it != m_pConfiguration->m_pBitmapFontArray->end(), "LabelBMFont: character is not supported");
2010-08-12 17:39:25 +08:00
if (c == '\n')
{
nextFontPositionX = 0;
nextFontPositionY -= m_pConfiguration->m_uCommonHeight;
continue;
}
2010-12-24 17:07:31 +08:00
2010-08-13 11:16:04 +08:00
kerningAmount = this->kerningAmountForFirst(prev, c);
2010-08-12 17:39:25 +08:00
const ccBMFontDef& fontDef = (*(m_pConfiguration->m_pBitmapFontArray))[c];
2010-08-12 17:39:25 +08:00
CCRect rect = fontDef.rect;
2010-08-12 17:39:25 +08:00
CCSprite *fontChar;
fontChar = (CCSprite*)(this->getChildByTag(i));
2010-08-13 11:16:04 +08:00
if( ! fontChar )
{
2010-08-12 17:39:25 +08:00
fontChar = new CCSprite();
fontChar->initWithBatchNodeRectInPixels(this, rect);
2010-08-12 17:39:25 +08:00
this->addChild(fontChar, 0, i);
fontChar->release();
}
else
{
// reusing fonts
2010-12-31 16:37:00 +08:00
fontChar->setTextureRectInPixels(rect, false, rect.size);
2010-08-12 17:39:25 +08:00
// restore to default in case they were modified
fontChar->setIsVisible(true);
fontChar->setOpacity(255);
}
float yOffset = (float)(m_pConfiguration->m_uCommonHeight) - fontDef.yOffset;
2010-12-24 17:07:31 +08:00
fontChar->setPositionInPixels( ccp( nextFontPositionX + fontDef.xOffset + fontDef.rect.size.width / 2.0f + kerningAmount,
(float) nextFontPositionY + yOffset - rect.size.height/2.0f ) );
2010-08-12 17:39:25 +08:00
// NSLog(@"position.y: %f", fontChar.position.y);
// update kerning
nextFontPositionX += (*(m_pConfiguration->m_pBitmapFontArray))[c].xAdvance + kerningAmount;
2010-08-12 17:39:25 +08:00
prev = c;
// Apply label properties
fontChar->setIsOpacityModifyRGB(m_bIsOpacityModifyRGB);
// Color MUST be set before opacity, since opacity might change color if OpacityModifyRGB is on
fontChar->setColor(m_tColor);
// only apply opaccity if it is different than 255 )
// to prevent modifying the color too (issue #610)
if( m_cOpacity != 255 )
{
fontChar->setOpacity(m_cOpacity);
}
2010-12-24 17:07:31 +08:00
if (longestLine < nextFontPositionX)
{
2010-12-24 17:07:31 +08:00
longestLine = nextFontPositionX;
}
2010-08-12 17:39:25 +08:00
}
2010-12-24 17:07:31 +08:00
tmpSize.width = (float) longestLine;
2010-12-24 17:07:31 +08:00
tmpSize.height = (float) totalHeight;
this->setContentSizeInPixels(tmpSize);
CC_SAFE_DELETE_ARRAY(pUniStr);
2010-08-12 17:39:25 +08:00
}
2011-07-08 14:32:09 +08:00
//LabelBMFont - CCLabelProtocol protocol
2010-12-24 17:07:31 +08:00
void CCLabelBMFont::setString(const char *newString)
2010-08-12 17:39:25 +08:00
{
m_sString.clear();
m_sString = newString;
if (m_pChildren && m_pChildren->count() != 0)
{
CCObject* child;
CCARRAY_FOREACH(m_pChildren, child)
{
CCNode* pNode = (CCNode*) child;
if (pNode)
{
pNode->setIsVisible(false);
}
}
}
2010-08-12 17:39:25 +08:00
this->createFontChars();
}
2010-12-28 15:05:55 +08:00
const char* CCLabelBMFont::getString(void)
{
return m_sString.c_str();
}
2010-12-24 17:07:31 +08:00
void CCLabelBMFont::setCString(const char *label)
{
setString(label);
}
2011-07-08 14:32:09 +08:00
//LabelBMFont - CCRGBAProtocol protocol
void CCLabelBMFont::setColor(const ccColor3B& var)
2010-08-12 17:39:25 +08:00
{
m_tColor = var;
if (m_pChildren && m_pChildren->count() != 0)
{
CCObject* child;
CCARRAY_FOREACH(m_pChildren, child)
{
CCSprite* pNode = (CCSprite*) child;
if (pNode)
{
pNode->setColor(m_tColor);
}
}
}
2010-08-12 17:39:25 +08:00
}
const ccColor3B& CCLabelBMFont::getColor()
2010-08-12 17:39:25 +08:00
{
return m_tColor;
}
2010-12-24 17:07:31 +08:00
void CCLabelBMFont::setOpacity(GLubyte var)
2010-08-12 17:39:25 +08:00
{
m_cOpacity = var;
if (m_pChildren && m_pChildren->count() != 0)
{
CCObject* child;
CCARRAY_FOREACH(m_pChildren, child)
{
CCNode* pNode = (CCNode*) child;
if (pNode)
{
CCRGBAProtocol *pRGBAProtocol = dynamic_cast<CCRGBAProtocol*>(pNode);
if (pRGBAProtocol)
{
pRGBAProtocol->setOpacity(m_cOpacity);
}
}
}
}
2010-08-12 17:39:25 +08:00
}
2010-12-24 17:07:31 +08:00
GLubyte CCLabelBMFont::getOpacity()
2010-08-12 17:39:25 +08:00
{
return m_cOpacity;
}
2010-12-24 17:07:31 +08:00
void CCLabelBMFont::setIsOpacityModifyRGB(bool var)
2010-08-12 17:39:25 +08:00
{
m_bIsOpacityModifyRGB = var;
if (m_pChildren && m_pChildren->count() != 0)
{
CCObject* child;
CCARRAY_FOREACH(m_pChildren, child)
{
CCNode* pNode = (CCNode*) child;
if (pNode)
{
CCRGBAProtocol *pRGBAProtocol = dynamic_cast<CCRGBAProtocol*>(pNode);
if (pRGBAProtocol)
{
pRGBAProtocol->setIsOpacityModifyRGB(m_bIsOpacityModifyRGB);
}
}
}
}
2010-08-12 17:39:25 +08:00
}
2010-12-24 17:07:31 +08:00
bool CCLabelBMFont::getIsOpacityModifyRGB()
2010-08-12 17:39:25 +08:00
{
return m_bIsOpacityModifyRGB;
}
2011-07-08 14:32:09 +08:00
// LabelBMFont - AnchorPoint
void CCLabelBMFont::setAnchorPoint(const CCPoint& point)
2010-08-12 17:39:25 +08:00
{
if( ! CCPoint::CCPointEqualToPoint(point, m_tAnchorPoint) )
2010-08-12 17:39:25 +08:00
{
2010-12-31 09:36:53 +08:00
CCSpriteBatchNode::setAnchorPoint(point);
2010-08-12 17:39:25 +08:00
this->createFontChars();
}
}
2011-07-08 14:32:09 +08:00
//LabelBMFont - Debug draw
#if CC_LABELBMFONT_DEBUG_DRAW
2010-12-24 17:07:31 +08:00
void CCLabelBMFont::draw()
2010-08-12 17:39:25 +08:00
{
2010-12-31 09:36:53 +08:00
CCSpriteBatchNode::draw();
const CCSize& s = this->getContentSize();
CCPoint vertices[4]={
2010-08-12 17:39:25 +08:00
ccp(0,0),ccp(s.width,0),
ccp(s.width,s.height),ccp(0,s.height),
};
ccDrawPoly(vertices, 4, true);
}
#endif // CC_LABELBMFONT_DEBUG_DRAW
}