2013-07-19 04:13:41 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 Zynga Inc.
|
2014-01-07 11:25:07 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2013-07-19 04:13:41 +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.
|
|
|
|
****************************************************************************/
|
2013-07-11 02:59:05 +08:00
|
|
|
|
|
|
|
#include <vector>
|
2013-07-12 05:41:03 +08:00
|
|
|
|
2013-10-14 14:01:00 +08:00
|
|
|
#include "ccUTF8.h"
|
2013-07-19 04:13:41 +08:00
|
|
|
#include "CCLabelTextFormatter.h"
|
2014-01-17 13:35:58 +08:00
|
|
|
#include "CCDirector.h"
|
2014-01-22 14:57:11 +08:00
|
|
|
#include "CCLabel.h"
|
2013-07-11 02:59:05 +08:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2014-01-22 14:57:11 +08:00
|
|
|
bool LabelTextFormatter::multilineText(Label *theLabel)
|
2013-07-11 02:59:05 +08:00
|
|
|
{
|
2014-01-21 17:55:49 +08:00
|
|
|
int strLen = theLabel->getStringLenght();
|
2014-01-22 14:57:11 +08:00
|
|
|
auto strWhole = theLabel->getUTF16String();
|
2013-10-29 20:25:03 +08:00
|
|
|
|
2014-01-21 17:55:49 +08:00
|
|
|
vector<unsigned short> multiline_string;
|
|
|
|
multiline_string.reserve( strLen );
|
2013-10-29 20:25:03 +08:00
|
|
|
|
2014-01-21 17:55:49 +08:00
|
|
|
vector<unsigned short> last_word;
|
|
|
|
last_word.reserve( strLen );
|
|
|
|
|
|
|
|
unsigned int line = 1;
|
|
|
|
|
|
|
|
bool isStartOfLine = false, isStartOfWord = false;
|
|
|
|
float startOfLine = -1, startOfWord = -1;
|
|
|
|
|
|
|
|
int skip = 0;
|
|
|
|
|
|
|
|
std::vector<LetterInfo> *leterInfo = theLabel->getLettersInfo();
|
|
|
|
int tIndex = 0;
|
2014-01-22 14:57:11 +08:00
|
|
|
float scalsX = theLabel->getScaleX();
|
|
|
|
float lineWidth = theLabel->getMaxLineWidth();
|
|
|
|
bool breakLineWithoutSpace = theLabel->breakLineWithoutSpace();
|
2014-01-21 17:55:49 +08:00
|
|
|
|
|
|
|
for (int j = 0; j+skip < strLen; j++)
|
|
|
|
{
|
|
|
|
LetterInfo* info = &leterInfo->at(j+skip);
|
|
|
|
|
|
|
|
unsigned int justSkipped = 0;
|
|
|
|
|
|
|
|
while (info->def.validDefinition == false)
|
|
|
|
{
|
|
|
|
justSkipped++;
|
|
|
|
tIndex = j+skip+justSkipped;
|
|
|
|
if (strWhole[tIndex-1] == '\n')
|
2013-07-11 02:59:05 +08:00
|
|
|
{
|
|
|
|
cc_utf8_trim_ws(&last_word);
|
2014-01-21 17:55:49 +08:00
|
|
|
|
2013-07-11 02:59:05 +08:00
|
|
|
last_word.push_back('\n');
|
|
|
|
multiline_string.insert(multiline_string.end(), last_word.begin(), last_word.end());
|
|
|
|
last_word.clear();
|
2013-09-13 11:46:46 +08:00
|
|
|
isStartOfWord = false;
|
|
|
|
isStartOfLine = false;
|
2013-07-11 02:59:05 +08:00
|
|
|
startOfWord = -1;
|
|
|
|
startOfLine = -1;
|
2013-09-13 11:46:46 +08:00
|
|
|
++line;
|
2013-07-11 02:59:05 +08:00
|
|
|
}
|
2014-01-21 17:55:49 +08:00
|
|
|
if(tIndex < strLen)
|
2013-07-11 02:59:05 +08:00
|
|
|
{
|
2014-01-21 17:55:49 +08:00
|
|
|
info = &leterInfo->at( tIndex );
|
2013-07-11 02:59:05 +08:00
|
|
|
}
|
2014-01-21 17:55:49 +08:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
skip += justSkipped;
|
|
|
|
tIndex = j + skip;
|
|
|
|
|
|
|
|
if (tIndex >= strLen)
|
|
|
|
break;
|
|
|
|
|
|
|
|
unsigned short character = strWhole[tIndex];
|
|
|
|
|
|
|
|
if (!isStartOfWord)
|
|
|
|
{
|
2014-01-22 14:57:11 +08:00
|
|
|
startOfWord = info->position.x * scalsX;
|
2014-01-21 17:55:49 +08:00
|
|
|
isStartOfWord = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isStartOfLine)
|
|
|
|
{
|
|
|
|
startOfLine = startOfWord;
|
|
|
|
isStartOfLine = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Whitespace.
|
|
|
|
if (isspace_unicode(character))
|
|
|
|
{
|
|
|
|
last_word.push_back(character);
|
|
|
|
multiline_string.insert(multiline_string.end(), last_word.begin(), last_word.end());
|
|
|
|
last_word.clear();
|
|
|
|
isStartOfWord = false;
|
|
|
|
startOfWord = -1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-01-22 14:57:11 +08:00
|
|
|
float posRight = (info->position.x + info->contentSize.width) * scalsX;
|
2014-01-21 17:55:49 +08:00
|
|
|
// Out of bounds.
|
2014-01-22 14:57:11 +08:00
|
|
|
if (posRight - startOfLine > lineWidth)
|
2014-01-21 17:55:49 +08:00
|
|
|
{
|
2014-01-22 14:57:11 +08:00
|
|
|
if (!breakLineWithoutSpace)
|
2013-07-11 02:59:05 +08:00
|
|
|
{
|
2014-01-21 17:55:49 +08:00
|
|
|
last_word.push_back(character);
|
|
|
|
|
|
|
|
int found = cc_utf8_find_last_not_char(multiline_string, ' ');
|
|
|
|
if (found != -1)
|
|
|
|
cc_utf8_trim_ws(&multiline_string);
|
2013-07-11 02:59:05 +08:00
|
|
|
else
|
2014-01-21 17:55:49 +08:00
|
|
|
multiline_string.clear();
|
|
|
|
|
|
|
|
if (multiline_string.size() > 0)
|
|
|
|
multiline_string.push_back('\n');
|
|
|
|
|
|
|
|
++line;
|
|
|
|
isStartOfLine = false;
|
|
|
|
startOfLine = -1;
|
2013-07-11 02:59:05 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-21 17:55:49 +08:00
|
|
|
cc_utf8_trim_ws(&last_word);
|
|
|
|
|
|
|
|
last_word.push_back('\n');
|
|
|
|
multiline_string.insert(multiline_string.end(), last_word.begin(), last_word.end());
|
|
|
|
last_word.clear();
|
|
|
|
isStartOfWord = false;
|
|
|
|
isStartOfLine = false;
|
|
|
|
startOfWord = -1;
|
|
|
|
startOfLine = -1;
|
|
|
|
++line;
|
|
|
|
--j;
|
2013-07-11 02:59:05 +08:00
|
|
|
}
|
|
|
|
}
|
2014-01-21 17:55:49 +08:00
|
|
|
else
|
2013-07-11 02:59:05 +08:00
|
|
|
{
|
2014-01-21 17:55:49 +08:00
|
|
|
// Character is normal.
|
|
|
|
last_word.push_back(character);
|
2013-07-11 02:59:05 +08:00
|
|
|
}
|
2013-07-23 02:40:39 +08:00
|
|
|
}
|
2014-01-21 17:55:49 +08:00
|
|
|
|
|
|
|
multiline_string.insert(multiline_string.end(), last_word.begin(), last_word.end());
|
|
|
|
|
|
|
|
size_t size = multiline_string.size();
|
|
|
|
unsigned short* strNew = new unsigned short[size + 1];
|
|
|
|
|
|
|
|
for (size_t j = 0; j < size; ++j)
|
2013-07-23 02:40:39 +08:00
|
|
|
{
|
2014-01-21 17:55:49 +08:00
|
|
|
strNew[j] = multiline_string[j];
|
2013-07-11 02:59:05 +08:00
|
|
|
}
|
2014-01-21 17:55:49 +08:00
|
|
|
|
|
|
|
strNew[size] = 0;
|
2014-01-22 14:57:11 +08:00
|
|
|
theLabel->assignNewUTF16String(strNew);
|
2014-01-21 17:55:49 +08:00
|
|
|
|
|
|
|
return true;
|
2013-07-11 02:59:05 +08:00
|
|
|
}
|
|
|
|
|
2014-01-22 14:57:11 +08:00
|
|
|
bool LabelTextFormatter::alignText(Label *theLabel)
|
2013-07-11 02:59:05 +08:00
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
int lineNumber = 0;
|
2014-01-22 14:57:11 +08:00
|
|
|
int strLen = cc_wcslen(theLabel->getUTF16String());
|
2013-09-13 11:46:46 +08:00
|
|
|
vector<unsigned short> lastLine;
|
2013-10-29 20:25:03 +08:00
|
|
|
std::vector<LetterInfo> *leterInfo = theLabel->getLettersInfo();
|
2014-01-22 14:57:11 +08:00
|
|
|
auto strWhole = theLabel->getUTF16String();
|
|
|
|
|
2013-09-13 11:46:46 +08:00
|
|
|
for (int ctr = 0; ctr <= strLen; ++ctr)
|
2014-01-22 14:57:11 +08:00
|
|
|
{
|
|
|
|
unsigned short currentChar = strWhole[ctr];
|
|
|
|
|
2013-07-11 02:59:05 +08:00
|
|
|
if (currentChar == '\n' || currentChar == 0)
|
|
|
|
{
|
|
|
|
float lineWidth = 0.0f;
|
2013-12-06 16:32:06 +08:00
|
|
|
size_t lineLength = lastLine.size();
|
2013-07-11 02:59:05 +08:00
|
|
|
|
|
|
|
// if last line is empty we must just increase lineNumber and work with next line
|
2013-09-13 11:46:46 +08:00
|
|
|
if (lineLength == 0)
|
2013-07-11 02:59:05 +08:00
|
|
|
{
|
|
|
|
lineNumber++;
|
|
|
|
continue;
|
|
|
|
}
|
2013-12-06 16:32:06 +08:00
|
|
|
int index = static_cast<int>(i + lineLength - 1 + lineNumber);
|
2013-07-11 02:59:05 +08:00
|
|
|
if (index < 0) continue;
|
|
|
|
|
2013-10-29 20:25:03 +08:00
|
|
|
LetterInfo* info = &leterInfo->at( index );
|
|
|
|
if(info->def.validDefinition == false)
|
|
|
|
continue;
|
2014-01-22 18:01:37 +08:00
|
|
|
lineWidth = info->position.x + info->contentSize.width;
|
2013-07-11 02:59:05 +08:00
|
|
|
|
|
|
|
float shift = 0;
|
|
|
|
switch (theLabel->getTextAlignment())
|
|
|
|
{
|
2013-07-27 07:04:21 +08:00
|
|
|
case TextHAlignment::CENTER:
|
2014-01-22 14:57:11 +08:00
|
|
|
shift = theLabel->getContentSize().width/2.0f - lineWidth/2.0f;
|
2013-07-11 02:59:05 +08:00
|
|
|
break;
|
2013-07-27 07:04:21 +08:00
|
|
|
case TextHAlignment::RIGHT:
|
2014-01-22 14:57:11 +08:00
|
|
|
shift = theLabel->getContentSize().width - lineWidth;
|
2013-07-11 02:59:05 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shift != 0)
|
|
|
|
{
|
2013-09-13 11:46:46 +08:00
|
|
|
for (unsigned j = 0; j < lineLength; ++j)
|
2013-07-11 02:59:05 +08:00
|
|
|
{
|
|
|
|
index = i + j + lineNumber;
|
|
|
|
if (index < 0) continue;
|
|
|
|
|
2013-10-29 20:25:03 +08:00
|
|
|
info = &leterInfo->at( index );
|
|
|
|
if(info)
|
|
|
|
{
|
2014-01-22 14:57:11 +08:00
|
|
|
info->position.x += shift;
|
2013-10-29 20:25:03 +08:00
|
|
|
}
|
2013-07-11 02:59:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-13 11:46:46 +08:00
|
|
|
i += lineLength;
|
|
|
|
++lineNumber;
|
2013-07-11 02:59:05 +08:00
|
|
|
|
2013-09-13 11:46:46 +08:00
|
|
|
lastLine.clear();
|
2013-07-11 02:59:05 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-09-13 11:46:46 +08:00
|
|
|
lastLine.push_back(currentChar);
|
2013-07-11 02:59:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-22 14:57:11 +08:00
|
|
|
bool LabelTextFormatter::createStringSprites(Label *theLabel)
|
2013-07-11 02:59:05 +08:00
|
|
|
{
|
|
|
|
// check for string
|
|
|
|
unsigned int stringLen = theLabel->getStringLenght();
|
|
|
|
|
|
|
|
// no string
|
|
|
|
if (stringLen == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
int nextFontPositionX = 0;
|
|
|
|
int nextFontPositionY = 0;
|
|
|
|
|
|
|
|
unsigned short prev = -1;
|
|
|
|
|
2013-08-06 07:52:24 +08:00
|
|
|
Size tmpSize = Size::ZERO;
|
2013-07-11 02:59:05 +08:00
|
|
|
|
|
|
|
int longestLine = 0;
|
|
|
|
unsigned int totalHeight = 0;
|
|
|
|
|
|
|
|
int quantityOfLines = theLabel->getStringNumLines();
|
|
|
|
int commonLineHeight = theLabel->getCommonLineHeight();
|
|
|
|
|
2014-01-22 17:45:56 +08:00
|
|
|
totalHeight = commonLineHeight * quantityOfLines;
|
|
|
|
nextFontPositionY = totalHeight;
|
2013-07-11 02:59:05 +08:00
|
|
|
|
|
|
|
Rect charRect;
|
|
|
|
int charXOffset = 0;
|
|
|
|
int charYOffset = 0;
|
|
|
|
int charAdvance = 0;
|
2014-01-22 14:57:11 +08:00
|
|
|
|
|
|
|
auto strWhole = theLabel->getUTF16String();
|
|
|
|
FontAtlas* fontAtlas = theLabel->getFontAtlas();
|
|
|
|
FontLetterDefinition tempDefinition;
|
|
|
|
auto kernings = theLabel->getKernings();
|
2013-07-11 02:59:05 +08:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i < stringLen; i++)
|
|
|
|
{
|
2014-01-22 14:57:11 +08:00
|
|
|
unsigned short c = strWhole[i];
|
|
|
|
if (fontAtlas->getLetterDefinitionForChar(c, tempDefinition))
|
|
|
|
{
|
|
|
|
charXOffset = tempDefinition.offsetX;
|
|
|
|
charYOffset = tempDefinition.offsetY;
|
|
|
|
charAdvance = tempDefinition.xAdvance;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
charXOffset = -1;
|
|
|
|
charYOffset = -1;
|
|
|
|
charAdvance = -1;
|
|
|
|
}
|
2013-07-11 02:59:05 +08:00
|
|
|
|
|
|
|
if (c == '\n')
|
|
|
|
{
|
|
|
|
nextFontPositionX = 0;
|
|
|
|
nextFontPositionY -= commonLineHeight;
|
2013-10-29 20:25:03 +08:00
|
|
|
|
|
|
|
theLabel->recordPlaceholderInfo(i);
|
2013-07-11 02:59:05 +08:00
|
|
|
continue;
|
2013-07-30 04:43:23 +08:00
|
|
|
}
|
2013-07-11 02:59:05 +08:00
|
|
|
|
2014-01-22 14:57:11 +08:00
|
|
|
Point fontPos = Point((float)nextFontPositionX + charXOffset + kernings[i],
|
2014-01-22 17:45:56 +08:00
|
|
|
(float)nextFontPositionY - charYOffset);
|
2013-10-29 20:25:03 +08:00
|
|
|
|
|
|
|
if( theLabel->recordLetterInfo(CC_POINT_PIXELS_TO_POINTS(fontPos),c,i) == false)
|
|
|
|
{
|
|
|
|
log("WARNING: can't find letter definition in font file for letter: %c", c);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-07-11 02:59:05 +08:00
|
|
|
// update kerning
|
2014-01-22 14:57:11 +08:00
|
|
|
nextFontPositionX += charAdvance + kernings[i];
|
2013-07-11 02:59:05 +08:00
|
|
|
prev = c;
|
|
|
|
|
|
|
|
if (longestLine < nextFontPositionX)
|
|
|
|
{
|
|
|
|
longestLine = nextFontPositionX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-22 14:57:11 +08:00
|
|
|
float lastCharWidth = tempDefinition.width * CC_CONTENT_SCALE_FACTOR();
|
2013-07-11 02:59:05 +08:00
|
|
|
// If the last character processed has an xAdvance which is less that the width of the characters image, then we need
|
|
|
|
// to adjust the width of the string to take this into account, or the character will overlap the end of the bounding
|
|
|
|
// box
|
2014-01-22 14:57:11 +08:00
|
|
|
tmpSize.width = longestLine - charAdvance + lastCharWidth;
|
2013-07-11 02:59:05 +08:00
|
|
|
|
|
|
|
tmpSize.height = totalHeight;
|
2014-01-22 14:57:11 +08:00
|
|
|
theLabel->setContentSize(CC_SIZE_PIXELS_TO_POINTS(tmpSize));
|
2013-07-11 02:59:05 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|