axmol/core/2d/FontAtlasCache.cpp

285 lines
9.0 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2013 Zynga Inc.
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md).
2021-11-11 17:20:21 +08:00
https://axmol.dev/
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
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:
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
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 "2d/FontAtlasCache.h"
2019-11-23 20:27:39 +08:00
#include "base/Director.h"
#include "2d/FontFNT.h"
#include "2d/FontFreeType.h"
#include "2d/FontAtlas.h"
#include "2d/FontCharMap.h"
#include "2d/Label.h"
#include "platform/FileUtils.h"
#include "base/format.h"
namespace ax
{
2019-11-23 20:27:39 +08:00
hlookup::string_map<FontAtlas*> FontAtlasCache::_atlasMap;
2019-11-23 20:27:39 +08:00
void FontAtlasCache::purgeCachedData()
{
auto atlasMapCopy = _atlasMap;
for (auto&& atlas : atlasMapCopy)
{
auto refCount = atlas.second->getReferenceCount();
atlas.second->release();
if (refCount != 1)
atlas.second->purgeTexturesAtlas();
}
_atlasMap.clear();
}
void FontAtlasCache::preloadFontAtlas(std::string_view fontatlasFile)
{
FontAtlas::loadFontAtlas(fontatlasFile, _atlasMap);
}
2023-09-19 21:39:48 +08:00
FontAtlas* FontAtlasCache::getFontAtlasTTF(_ttfConfig* config)
2019-11-23 20:27:39 +08:00
{
auto& realFontFilename = config->fontFilePath;
bool useDistanceField = config->distanceFieldEnabled;
int outlineSize = useDistanceField ? 0 : config->outlineSize;
2023-09-19 21:39:48 +08:00
// underlaying font engine (freetype2) only support int type, so convert to int avoid precision issue
if (!config->distanceFieldEnabled)
config->faceSize = static_cast<int>(config->fontSize);
2023-09-19 01:38:09 +08:00
2023-09-19 21:39:48 +08:00
auto scaledFaceSize = static_cast<int>(config->faceSize * AX_CONTENT_SCALE_FACTOR());
std::string atlasName =
config->distanceFieldEnabled
? fmt::format("df {} {}", scaledFaceSize, realFontFilename)
2023-09-19 21:39:48 +08:00
: fmt::format("{} {} {}", scaledFaceSize, outlineSize, realFontFilename);
2019-11-23 20:27:39 +08:00
auto it = _atlasMap.find(atlasName);
2021-12-25 10:04:45 +08:00
if (it == _atlasMap.end())
2019-11-23 20:27:39 +08:00
{
2023-09-19 21:39:48 +08:00
auto font = FontFreeType::create(realFontFilename, scaledFaceSize, config->glyphs, config->customGlyphs,
useDistanceField, static_cast<float>(outlineSize));
2019-11-23 20:27:39 +08:00
if (font)
{
2021-11-11 17:20:21 +08:00
auto tempAtlas = font->newFontAtlas();
2019-11-23 20:27:39 +08:00
if (tempAtlas)
return _atlasMap.emplace(std::move(atlasName), tempAtlas).first->second;
2019-11-23 20:27:39 +08:00
}
}
else
return it->second;
return nullptr;
}
FontAtlas* FontAtlasCache::getFontAtlasFNT(std::string_view fontFileName)
2019-11-23 20:27:39 +08:00
{
return getFontAtlasFNT(fontFileName, Rect::ZERO, false);
}
FontAtlas* FontAtlasCache::getFontAtlasFNT(std::string_view fontFileName, std::string_view subTextureKey)
{
const auto& realFontFilename = fontFileName;
auto atlasName = fmt::format("{} {}", subTextureKey, realFontFilename);
const auto it = _atlasMap.find(atlasName);
if (it == _atlasMap.end())
{
const auto font = FontFNT::create(realFontFilename, subTextureKey);
if (font)
{
2021-11-11 17:20:21 +08:00
const auto tempAtlas = font->newFontAtlas();
if (tempAtlas)
return _atlasMap.emplace(std::move(atlasName), tempAtlas).first->second;
}
}
else
return it->second;
return nullptr;
}
FontAtlas* FontAtlasCache::getFontAtlasFNT(std::string_view fontFileName, const Rect& imageRect, bool imageRotated)
{
// resolves real file path, to prevent storing multiple atlases for the same file.
const auto& realFontFilename = fontFileName;
auto atlasName = fmt::format("{:.2f} {:.2f} {}", imageRect.origin.x, imageRect.origin.y, realFontFilename);
2021-12-25 10:04:45 +08:00
const auto it = _atlasMap.find(atlasName);
2021-12-25 10:04:45 +08:00
if (it == _atlasMap.end())
2019-11-23 20:27:39 +08:00
{
const auto font = FontFNT::create(realFontFilename, imageRect, imageRotated);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
if (font)
2019-11-23 20:27:39 +08:00
{
2021-11-11 17:20:21 +08:00
const auto tempAtlas = font->newFontAtlas();
2019-11-23 20:27:39 +08:00
if (tempAtlas)
return _atlasMap.emplace(std::move(atlasName), tempAtlas).first->second;
2019-11-23 20:27:39 +08:00
}
}
else
return it->second;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return nullptr;
}
#ifndef AX_CORE_PROFILE
FontAtlas* FontAtlasCache::getFontAtlasFNT(std::string_view fontFileName, const Vec2& imageOffset)
{
return getFontAtlasFNT(fontFileName, Rect(imageOffset.x, imageOffset.y, 0, 0), false);
}
#endif
FontAtlas* FontAtlasCache::getFontAtlasCharMap(std::string_view plistFile)
2019-11-23 20:27:39 +08:00
{
std::string_view atlasName = plistFile;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
auto it = _atlasMap.find(atlasName);
2021-12-25 10:04:45 +08:00
if (it == _atlasMap.end())
2019-11-23 20:27:39 +08:00
{
auto font = FontCharMap::create(plistFile);
2021-12-25 10:04:45 +08:00
if (font)
2019-11-23 20:27:39 +08:00
{
2021-11-11 17:20:21 +08:00
auto tempAtlas = font->newFontAtlas();
2019-11-23 20:27:39 +08:00
if (tempAtlas)
return _atlasMap.emplace(atlasName, tempAtlas).first->second;
2019-11-23 20:27:39 +08:00
}
}
else
return it->second;
return nullptr;
}
FontAtlas* FontAtlasCache::getFontAtlasCharMap(Texture2D* texture, int itemWidth, int itemHeight, int startCharMap)
{
auto atlasName = fmt::format("name:{}_{}_{}_{}", reinterpret_cast<uintptr_t>(texture->getBackendTexture()), itemWidth, itemHeight, startCharMap);
2019-11-23 20:27:39 +08:00
auto it = _atlasMap.find(atlasName);
2021-12-25 10:04:45 +08:00
if (it == _atlasMap.end())
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
auto font = FontCharMap::create(texture, itemWidth, itemHeight, startCharMap);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
if (font)
2019-11-23 20:27:39 +08:00
{
2021-11-11 17:20:21 +08:00
auto tempAtlas = font->newFontAtlas();
2019-11-23 20:27:39 +08:00
if (tempAtlas)
return _atlasMap.emplace(std::move(atlasName), tempAtlas).first->second;
2019-11-23 20:27:39 +08:00
}
}
else
return it->second;
return nullptr;
}
FontAtlas* FontAtlasCache::getFontAtlasCharMap(std::string_view charMapFile,
2021-12-25 10:04:45 +08:00
int itemWidth,
int itemHeight,
int startCharMap)
2019-11-23 20:27:39 +08:00
{
auto atlasName = fmt::format("{} {} {} {}", itemWidth, itemHeight, startCharMap, charMapFile);
2019-11-23 20:27:39 +08:00
auto it = _atlasMap.find(atlasName);
2021-12-25 10:04:45 +08:00
if (it == _atlasMap.end())
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
auto font = FontCharMap::create(charMapFile, itemWidth, itemHeight, startCharMap);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
if (font)
2019-11-23 20:27:39 +08:00
{
2021-11-11 17:20:21 +08:00
auto tempAtlas = font->newFontAtlas();
2019-11-23 20:27:39 +08:00
if (tempAtlas)
return _atlasMap.emplace(std::move(atlasName), tempAtlas).first->second;
2019-11-23 20:27:39 +08:00
}
}
else
return it->second;
return nullptr;
}
2021-12-25 10:04:45 +08:00
bool FontAtlasCache::releaseFontAtlas(FontAtlas* atlas)
2019-11-23 20:27:39 +08:00
{
if (nullptr != atlas)
{
if (atlas->getReferenceCount() == 1)
2019-11-23 20:27:39 +08:00
{
for (auto&& item : _atlasMap)
2019-11-23 20:27:39 +08:00
{
2021-10-28 21:09:03 +08:00
if (item.second == atlas)
2019-11-23 20:27:39 +08:00
{
_atlasMap.erase(item.first);
break;
2019-11-23 20:27:39 +08:00
}
}
2021-12-25 10:04:45 +08:00
}
atlas->release();
return true;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
return false;
}
void FontAtlasCache::reloadFontAtlasFNT(std::string_view fontFileName, const Rect& imageRect, bool imageRotated)
2019-11-23 20:27:39 +08:00
{
auto atlasName = fmt::format("{:.2f} {:.2f} {}", imageRect.origin.x, imageRect.origin.y, fontFileName);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
auto it = _atlasMap.find(atlasName);
if (it != _atlasMap.end())
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE_NULL(it->second);
2019-11-23 20:27:39 +08:00
_atlasMap.erase(it);
}
FontFNT::reloadBMFontResource(fontFileName);
auto font = FontFNT::create(fontFileName, imageRect, imageRotated);
2019-11-23 20:27:39 +08:00
if (font)
{
2021-11-11 17:20:21 +08:00
auto tempAtlas = font->newFontAtlas();
2019-11-23 20:27:39 +08:00
if (tempAtlas)
_atlasMap.emplace(std::move(atlasName), tempAtlas);
2019-11-23 20:27:39 +08:00
}
}
#ifndef AX_CORE_PROFILE
void FontAtlasCache::reloadFontAtlasFNT(std::string_view fontFileName, const Vec2& imageOffset)
{
reloadFontAtlasFNT(fontFileName, Rect(imageOffset.x, imageOffset.y, 0, 0), false);
2019-11-23 20:27:39 +08:00
}
#endif
2019-11-23 20:27:39 +08:00
void FontAtlasCache::unloadFontAtlasTTF(std::string_view fontFileName)
2019-11-23 20:27:39 +08:00
{
for (auto iter = _atlasMap.begin(); iter != _atlasMap.end();)
2019-11-23 20:27:39 +08:00
{
if (iter->first.find(fontFileName) != std::string::npos)
2019-11-23 20:27:39 +08:00
{
AX_SAFE_RELEASE_NULL(iter->second);
iter = _atlasMap.erase(iter);
continue;
2019-11-23 20:27:39 +08:00
}
++iter;
2019-11-23 20:27:39 +08:00
}
}
}