2013-07-19 04:13:41 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 Zynga 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.
|
|
|
|
****************************************************************************/
|
2013-07-12 06:43:45 +08:00
|
|
|
|
2013-07-19 04:13:41 +08:00
|
|
|
#ifndef _FontFreetype_h_
|
|
|
|
#define _FontFreetype_h_
|
2013-07-12 06:43:45 +08:00
|
|
|
|
2013-12-23 11:53:39 +08:00
|
|
|
#include "CCFont.h"
|
|
|
|
#include "CCData.h"
|
|
|
|
|
2013-07-30 04:43:23 +08:00
|
|
|
#include <string>
|
2013-07-20 07:04:23 +08:00
|
|
|
#include <ft2build.h>
|
2013-08-07 05:37:19 +08:00
|
|
|
|
2013-07-13 03:39:47 +08:00
|
|
|
#include FT_FREETYPE_H
|
|
|
|
|
2013-07-12 06:43:45 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-07-25 01:22:46 +08:00
|
|
|
class CC_DLL FontFreeType : public Font
|
2013-07-12 06:43:45 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2013-08-07 04:43:29 +08:00
|
|
|
static FontFreeType * create(const std::string &fontName, int fontSize, GlyphCollection glyphs, const char *customGlyphs);
|
2013-10-31 17:52:22 +08:00
|
|
|
|
|
|
|
static void shutdownFreeType();
|
|
|
|
|
2013-08-15 21:00:06 +08:00
|
|
|
virtual FontAtlas * createFontAtlas() override;
|
2013-09-13 11:46:46 +08:00
|
|
|
virtual Size * getAdvancesForTextUTF16(unsigned short *text, int &outNumLetters) const override;
|
|
|
|
virtual GlyphDef * getGlyphDefintionsForText(const char *text, int &outNumGlyphs, bool UTF16text = false) const override;
|
|
|
|
unsigned char * getGlyphBitmap(unsigned short theChar, int &outWidth, int &outHeight) const override;
|
|
|
|
virtual int getFontMaxHeight() const override;
|
|
|
|
virtual int getLetterPadding() const override;
|
2013-07-18 08:31:28 +08:00
|
|
|
|
2013-10-29 20:25:03 +08:00
|
|
|
bool getBBOXFotChar(unsigned short theChar, Rect &outRect) const;
|
|
|
|
|
2013-10-31 17:52:22 +08:00
|
|
|
inline bool isDynamicGlyphCollection() { return _dynamicGlyphCollection;}
|
2013-10-29 20:25:03 +08:00
|
|
|
|
2013-08-06 06:56:18 +08:00
|
|
|
protected:
|
|
|
|
|
2013-10-29 20:25:03 +08:00
|
|
|
FontFreeType(bool dynamicGlyphCollection = false);
|
2013-08-06 06:56:18 +08:00
|
|
|
virtual ~FontFreeType();
|
2013-08-07 04:43:29 +08:00
|
|
|
bool createFontObject(const std::string &fontName, int fontSize);
|
2013-07-12 06:43:45 +08:00
|
|
|
|
2013-08-06 06:56:18 +08:00
|
|
|
private:
|
|
|
|
|
2013-07-17 06:18:39 +08:00
|
|
|
bool initFreeType();
|
|
|
|
FT_Library getFTLibrary();
|
2013-07-19 04:13:41 +08:00
|
|
|
|
2013-09-13 11:46:46 +08:00
|
|
|
int getAdvanceForChar(unsigned short theChar) const;
|
|
|
|
int getBearingXForChar(unsigned short theChar) const;
|
|
|
|
int getHorizontalKerningForChars(unsigned short firstChar, unsigned short secondChar) const;
|
2013-07-17 06:18:39 +08:00
|
|
|
|
|
|
|
static FT_Library _FTlibrary;
|
|
|
|
static bool _FTInitialized;
|
|
|
|
FT_Face _fontRef;
|
2013-12-13 12:42:15 +08:00
|
|
|
int _letterPadding;
|
2013-07-30 04:43:23 +08:00
|
|
|
std::string _fontName;
|
2013-12-23 11:53:39 +08:00
|
|
|
Data _ttfData;
|
2013-10-29 20:25:03 +08:00
|
|
|
bool _dynamicGlyphCollection;
|
2013-07-12 06:43:45 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif
|