mirror of https://github.com/axmolengine/axmol.git
90 lines
1.6 KiB
C++
90 lines
1.6 KiB
C++
//
|
|
// CCFontAtlas.cpp
|
|
// cocos2d_libs
|
|
//
|
|
// Created by Carlo Morgantini on 7/18/13.
|
|
//
|
|
//
|
|
|
|
#include "cocos2d.h"
|
|
#include "CCFontAtlas.h"
|
|
#include "CCFont.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
std::map<int, FontLetterDefinition> _atlasTextures;
|
|
std::map<unsigned short, FontLetterDefinition> _fontLettersDefinition;
|
|
|
|
|
|
FontAtlas::FontAtlas(Font *theFont) : _font(theFont)
|
|
{
|
|
if (_font)
|
|
_font->retain();
|
|
}
|
|
|
|
FontAtlas::~FontAtlas()
|
|
{
|
|
_font->release();
|
|
relaseTextures();
|
|
}
|
|
|
|
void FontAtlas::relaseTextures()
|
|
{
|
|
for( auto &item: _atlasTextures)
|
|
{
|
|
if ( item.second )
|
|
item.second->release();
|
|
}
|
|
|
|
_atlasTextures.clear();
|
|
}
|
|
|
|
void FontAtlas::addLetterDefinition(FontLetterDefinition &letterDefinition)
|
|
{
|
|
_fontLetterDefinitions[letterDefinition.letteCharUTF16] = letterDefinition;
|
|
}
|
|
|
|
FontLetterDefinition & FontAtlas::getLetterDefinitionForChar(unsigned short letteCharUTF16)
|
|
{
|
|
return _fontLetterDefinitions[letteCharUTF16];
|
|
}
|
|
|
|
void FontAtlas::addTexture(Texture2D *pTexture, int slot)
|
|
{
|
|
pTexture->retain();
|
|
_atlasTextures[slot] = pTexture;
|
|
}
|
|
|
|
Texture2D * FontAtlas::getTexture(int slot)
|
|
{
|
|
return _atlasTextures[slot];
|
|
}
|
|
|
|
float FontAtlas::getCommonLineHeight()
|
|
{
|
|
return _commonLineHeight;
|
|
}
|
|
|
|
void FontAtlas::setCommonLineHeight(float newHeight)
|
|
{
|
|
_commonLineHeight = newHeight;
|
|
}
|
|
|
|
unsigned short int * FontAtlas::getUTF16Text(const char *pText, int &outNumLetters)
|
|
{
|
|
unsigned short* utf16String = cc_utf8_to_utf16(pText);
|
|
|
|
if(!utf16String)
|
|
return 0;
|
|
|
|
outNumLetters = cc_wcslen(utf16String);
|
|
return utf16String;
|
|
}
|
|
|
|
Font * FontAtlas::getFont()
|
|
{
|
|
return _font;
|
|
}
|
|
|
|
|
|
NS_CC_END |