/**************************************************************************** Copyright (c) 2013 Zynga Inc. Copyright (c) 2013-2014 Chukong Technologies 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. ****************************************************************************/ #include "cocos2d.h" #include "CCFontAtlas.h" #include "CCFont.h" #include "CCFontFreeType.h" #define PAGE_WIDTH 1024 #define PAGE_HEIGHT 1024 NS_CC_BEGIN FontAtlas::FontAtlas(Font &theFont) : _font(&theFont), _currentPageData(nullptr) { _font->retain(); _makeDistanceMap = _font->isDistanceFieldEnabled(); FontFreeType* fontTTf = dynamic_cast(_font); if (fontTTf && fontTTf->isDynamicGlyphCollection()) { _currentPageLineHeight = _font->getFontMaxHeight(); _commonLineHeight = _currentPageLineHeight * 0.8f; Texture2D * tex = new Texture2D; _currentPage = 0; _currentPageOrigX = 0; _currentPageOrigY = 0; _letterPadding = 5; if(_makeDistanceMap) { _commonLineHeight += 2 * Font::DistanceMapSpread; _letterPadding += 2 * Font::DistanceMapSpread; _currentPageDataSize = (PAGE_WIDTH * PAGE_HEIGHT * 1); } else { _currentPageDataSize = (PAGE_WIDTH * PAGE_HEIGHT * 1); } _currentPageData = new unsigned char[_currentPageDataSize]; memset(_currentPageData, 0, _currentPageDataSize); addTexture(*tex,0); tex->release(); } } FontAtlas::~FontAtlas() { _font->release(); relaseTextures(); delete []_currentPageData; } void FontAtlas::relaseTextures() { for( auto &item: _atlasTextures) { item.second->release(); } } void FontAtlas::addLetterDefinition(const FontLetterDefinition &letterDefinition) { _fontLetterDefinitions[letterDefinition.letteCharUTF16] = letterDefinition; } bool FontAtlas::getLetterDefinitionForChar(unsigned short letteCharUTF16, FontLetterDefinition &outDefinition) { auto outIterator = _fontLetterDefinitions.find(letteCharUTF16); if (outIterator != _fontLetterDefinitions.end()) { outDefinition = (*outIterator).second; return true; } else { return false; } } bool FontAtlas::prepareLetterDefinitions(unsigned short *utf16String) { if(_currentPageData == nullptr) return false; FontFreeType* fontTTf = (FontFreeType*)_font; std::unordered_map fontDefs; int length = cc_wcslen(utf16String); auto yDelta = _currentPageLineHeight * 0.7; //find out new letter for (int i = 0; i < length; ++i) { auto outIterator = _fontLetterDefinitions.find(utf16String[i]); if (outIterator == _fontLetterDefinitions.end()) { auto outIterator2 = fontDefs.find(utf16String[i]); if(outIterator2 != fontDefs.end()) continue; Rect tempRect; FontLetterDefinition tempDef; tempDef.offsetX = 0; tempDef.anchorX = 0.0f; tempDef.anchorY = 1.0f; if (!fontTTf->getBBOXFotChar(utf16String[i], tempRect)) { tempDef.validDefinition = false; tempDef.letteCharUTF16 = utf16String[i]; tempDef.commonLineHeight = 0; tempDef.width = 0; tempDef.height = 0; tempDef.U = 0; tempDef.V = 0; tempDef.offsetY = 0; tempDef.textureID = 0; } else { tempDef.validDefinition = true; tempDef.letteCharUTF16 = utf16String[i]; tempDef.width = tempRect.size.width + _letterPadding; tempDef.height = _currentPageLineHeight - 1; tempDef.offsetY = tempRect.origin.y + yDelta; tempDef.commonLineHeight = _currentPageLineHeight; } fontDefs[utf16String[i]] = tempDef; } } Size _pageContentSize = Size(PAGE_WIDTH,PAGE_HEIGHT); float scaleFactor = CC_CONTENT_SCALE_FACTOR(); float glyphWidth; Texture2D::PixelFormat pixelFormat = _makeDistanceMap ? Texture2D::PixelFormat::A8 : Texture2D::PixelFormat::A8; for(auto it = fontDefs.begin(); it != fontDefs.end(); it++) { if(it->second.validDefinition) { _currentPageOrigX += _letterPadding; glyphWidth = it->second.width - _letterPadding; if (_currentPageOrigX + glyphWidth > PAGE_WIDTH) { _currentPageOrigY += _currentPageLineHeight; _currentPageOrigX = 0; if(_currentPageOrigY >= PAGE_HEIGHT) { _atlasTextures[_currentPage]->initWithData(_currentPageData, _currentPageDataSize, pixelFormat, PAGE_WIDTH, PAGE_HEIGHT, _pageContentSize ); _currentPageOrigY = 0; delete []_currentPageData; _currentPageData = new unsigned char[_currentPageDataSize]; if(_currentPageData == nullptr) return false; memset(_currentPageData, 0, _currentPageDataSize); _currentPage++; Texture2D* tex = new Texture2D; addTexture(*tex,_currentPage); tex->release(); } } _font->renderCharAt(it->second.letteCharUTF16,_currentPageOrigX,_currentPageOrigY,_currentPageData,PAGE_WIDTH); it->second.U = _currentPageOrigX - 1; it->second.V = _currentPageOrigY; it->second.textureID = _currentPage; // take from pixels to points it->second.width = it->second.width / scaleFactor; it->second.height = it->second.height / scaleFactor; it->second.U = it->second.U / scaleFactor; it->second.V = it->second.V / scaleFactor; } else glyphWidth = 0; _fontLetterDefinitions[it->second.letteCharUTF16] = it->second; _currentPageOrigX += glyphWidth; } if(fontDefs.size() > 0) _atlasTextures[_currentPage]->initWithData(_currentPageData, _currentPageDataSize, pixelFormat, PAGE_WIDTH, PAGE_HEIGHT, _pageContentSize ); return true; } void FontAtlas::addTexture(Texture2D &texture, int slot) { texture.retain(); _atlasTextures[slot] = &texture; } Texture2D & FontAtlas::getTexture(int slot) { return *(_atlasTextures[slot]); } float FontAtlas::getCommonLineHeight() const { return _commonLineHeight; } void FontAtlas::setCommonLineHeight(float newHeight) { if(_makeDistanceMap) newHeight += 2 * Font::DistanceMapSpread; _commonLineHeight = newHeight; } const Font * FontAtlas::getFont() const { return _font; } NS_CC_END