2013-07-24 21:22:46 +04:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 Zynga Inc.
|
2017-02-14 09:36:57 +03:00
|
|
|
Copyright (c) 2013-2017 Chukong Technologies Inc.
|
2013-07-24 21:22:46 +04: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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _CCFontAtlasCache_h_
|
|
|
|
#define _CCFontAtlasCache_h_
|
|
|
|
|
2015-03-24 15:23:51 +03:00
|
|
|
/// @cond DO_NOT_SHOW
|
|
|
|
|
2013-11-07 05:05:13 +04:00
|
|
|
#include <unordered_map>
|
2015-07-30 06:33:18 +03:00
|
|
|
#include "base/ccTypes.h"
|
2013-07-24 21:22:46 +04:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2014-08-27 09:39:50 +04:00
|
|
|
class FontAtlas;
|
2015-07-30 06:33:18 +03:00
|
|
|
class Texture2D;
|
|
|
|
struct _ttfConfig;
|
2014-08-27 09:39:50 +04:00
|
|
|
|
2013-07-24 21:22:46 +04:00
|
|
|
class CC_DLL FontAtlasCache
|
2014-01-17 05:46:59 +04:00
|
|
|
{
|
2013-07-24 21:22:46 +04:00
|
|
|
public:
|
2015-07-30 06:33:18 +03:00
|
|
|
static FontAtlas* getFontAtlasTTF(const _ttfConfig* config);
|
|
|
|
static FontAtlas* getFontAtlasFNT(const std::string& fontFileName, const Vec2& imageOffset = Vec2::ZERO);
|
2014-01-16 12:37:29 +04:00
|
|
|
|
2015-07-30 06:33:18 +03:00
|
|
|
static FontAtlas* getFontAtlasCharMap(const std::string& charMapFile, int itemWidth, int itemHeight, int startCharMap);
|
|
|
|
static FontAtlas* getFontAtlasCharMap(Texture2D* texture, int itemWidth, int itemHeight, int startCharMap);
|
|
|
|
static FontAtlas* getFontAtlasCharMap(const std::string& plistFile);
|
2013-08-06 02:11:07 +04:00
|
|
|
|
2013-11-07 05:05:13 +04:00
|
|
|
static bool releaseFontAtlas(FontAtlas *atlas);
|
2014-03-14 10:59:26 +04:00
|
|
|
|
|
|
|
/** Removes cached data.
|
|
|
|
It will purge the textures atlas and if multiple texture exist in one FontAtlas.
|
|
|
|
*/
|
|
|
|
static void purgeCachedData();
|
2015-11-12 04:49:49 +03:00
|
|
|
|
2015-12-08 19:45:39 +03:00
|
|
|
/** Release current FNT texture and reload it.
|
2015-12-03 09:21:00 +03:00
|
|
|
CAUTION : All component use this font texture should be reset font name, though the file name is same!
|
|
|
|
otherwise, it will cause program crash!
|
|
|
|
*/
|
2015-11-12 04:49:49 +03:00
|
|
|
static void reloadFontAtlasFNT(const std::string& fontFileName, const Vec2& imageOffset = Vec2::ZERO);
|
2015-12-03 09:21:00 +03:00
|
|
|
|
|
|
|
/** Unload all texture atlas texture create by special file name.
|
|
|
|
CAUTION : All component use this font texture should be reset font name, though the file name is same!
|
|
|
|
otherwise, it will cause program crash!
|
|
|
|
*/
|
2015-11-12 04:49:49 +03:00
|
|
|
static void unloadFontAtlasTTF(const std::string& fontFileName);
|
|
|
|
|
2015-07-30 06:33:18 +03:00
|
|
|
private:
|
2013-11-07 05:05:13 +04:00
|
|
|
static std::unordered_map<std::string, FontAtlas *> _atlasMap;
|
2013-07-24 21:22:46 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
2015-03-24 15:23:51 +03:00
|
|
|
/// @endcond
|
2013-07-24 21:22:46 +04:00
|
|
|
#endif
|