1
0

CCFontFNT.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /****************************************************************************
  2. Copyright (c) 2013 Zynga Inc.
  3. Copyright (c) 2013-2017 Chukong Technologies Inc.
  4. http://www.cocos2d-x.org
  5. Permission is hereby granted, free of charge, to any person obtaining a copy
  6. of this software and associated documentation files (the "Software"), to deal
  7. in the Software without restriction, including without limitation the rights
  8. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. copies of the Software, and to permit persons to whom the Software is
  10. furnished to do so, subject to the following conditions:
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. THE SOFTWARE.
  20. ****************************************************************************/
  21. #ifndef _CCFontFNT_h_
  22. #define _CCFontFNT_h_
  23. /// @cond DO_NOT_SHOW
  24. #include "2d/CCFont.h"
  25. NS_CC_BEGIN
  26. class BMFontConfiguration;
  27. class CC_DLL FontFNT : public Font
  28. {
  29. public:
  30. static FontFNT * create(const std::string& fntFilePath, const Vec2& imageOffset = Vec2::ZERO);
  31. /** Purges the cached data.
  32. Removes from memory the cached configurations and the atlas name dictionary.
  33. */
  34. static void purgeCachedData();
  35. virtual int* getHorizontalKerningForTextUTF32(const std::u32string& text, int &outNumLetters) const override;
  36. virtual FontAtlas *createFontAtlas() override;
  37. void setFontSize(float fontSize);
  38. int getOriginalFontSize()const;
  39. static void reloadBMFontResource(const std::string& fntFilePath);
  40. protected:
  41. FontFNT(BMFontConfiguration *theContfig, const Vec2& imageOffset = Vec2::ZERO);
  42. /**
  43. * @js NA
  44. * @lua NA
  45. */
  46. virtual ~FontFNT();
  47. private:
  48. int getHorizontalKerningForChars(char32_t firstChar, char32_t secondChar) const;
  49. BMFontConfiguration * _configuration;
  50. Vec2 _imageOffset;
  51. //User defined font size
  52. float _fontSize;
  53. };
  54. /// @endcond
  55. NS_CC_END
  56. #endif /* defined(__cocos2d_libs__CCFontFNT__) */