mirror of https://github.com/axmolengine/axmol.git
Merge pull request #796 from dumganhar/gles20
issue #1056: Added CCLabelBMFont alignment support.
This commit is contained in:
commit
26a29a439b
|
@ -32,35 +32,44 @@ Use any of these editors to generate BMFonts:
|
|||
****************************************************************************/
|
||||
#ifndef __CCBITMAP_FONT_ATLAS_H__
|
||||
#define __CCBITMAP_FONT_ATLAS_H__
|
||||
|
||||
#include "CCSpriteBatchNode.h"
|
||||
#include <map>
|
||||
#include <sstream>
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
namespace cocos2d{
|
||||
NS_CC_BEGIN
|
||||
|
||||
struct _KerningHashElement;
|
||||
enum {
|
||||
kCCLabelAutomaticWidth = -1,
|
||||
};
|
||||
|
||||
/**
|
||||
@struct ccBMFontDef
|
||||
BMFont definition
|
||||
*/
|
||||
typedef struct _BMFontDef {
|
||||
struct _KerningHashElement;
|
||||
struct _FontDefHashElement;
|
||||
|
||||
/**
|
||||
@struct ccBMFontDef
|
||||
BMFont definition
|
||||
*/
|
||||
typedef struct _BMFontDef {
|
||||
//! ID of the character
|
||||
unsigned int charID;
|
||||
//! origin and size of the font
|
||||
CCRect rect;
|
||||
//! The X amount the image should be offset when drawing the image (in pixels)
|
||||
int xOffset;
|
||||
short xOffset;
|
||||
//! The Y amount the image should be offset when drawing the image (in pixels)
|
||||
int yOffset;
|
||||
short yOffset;
|
||||
//! The amount to move the current position after drawing the character (in pixels)
|
||||
int xAdvance;
|
||||
} ccBMFontDef;
|
||||
short xAdvance;
|
||||
} ccBMFontDef;
|
||||
|
||||
/** @struct ccBMFontPadding
|
||||
BMFont padding
|
||||
@since v0.8.2
|
||||
*/
|
||||
typedef struct _BMFontPadding {
|
||||
/** @struct ccBMFontPadding
|
||||
BMFont padding
|
||||
@since v0.8.2
|
||||
*/
|
||||
typedef struct _BMFontPadding {
|
||||
/// padding left
|
||||
int left;
|
||||
/// padding top
|
||||
|
@ -69,18 +78,18 @@ namespace cocos2d{
|
|||
int right;
|
||||
/// padding bottom
|
||||
int bottom;
|
||||
} ccBMFontPadding;
|
||||
} ccBMFontPadding;
|
||||
|
||||
|
||||
/** @brief CCBMFontConfiguration has parsed configuration of the the .fnt file
|
||||
@since v0.8
|
||||
*/
|
||||
class CC_DLL CCBMFontConfiguration : public CCObject
|
||||
{
|
||||
/** @brief CCBMFontConfiguration has parsed configuration of the the .fnt file
|
||||
@since v0.8
|
||||
*/
|
||||
class CC_DLL CCBMFontConfiguration : public CCObject
|
||||
{
|
||||
// XXX: Creating a public interface so that the bitmapFontArray[] is accesible
|
||||
public://@public
|
||||
//! The characters building up the font
|
||||
std::map<unsigned int, ccBMFontDef>* m_pBitmapFontArray;
|
||||
public://@public
|
||||
// BMFont definitions
|
||||
struct _FontDefHashElement* m_pFontDefDictionary;
|
||||
|
||||
//! FNTConfig: Common Height
|
||||
unsigned int m_uCommonHeight;
|
||||
|
@ -90,15 +99,15 @@ namespace cocos2d{
|
|||
std::string m_sAtlasName;
|
||||
//! values for kerning
|
||||
struct _KerningHashElement *m_pKerningDictionary;
|
||||
public:
|
||||
public:
|
||||
CCBMFontConfiguration();
|
||||
virtual ~CCBMFontConfiguration();
|
||||
char * description();
|
||||
const char * description();
|
||||
/** allocates a CCBMFontConfiguration with a FNT file */
|
||||
static CCBMFontConfiguration * configurationWithFNTFile(const char *FNTfile);
|
||||
/** initializes a BitmapFontConfiguration with a FNT file */
|
||||
bool initWithFNTfile(const char *FNTfile);
|
||||
private:
|
||||
private:
|
||||
void parseConfigFile(const char *controlFile);
|
||||
void parseCharacterDefinition(std::string line, ccBMFontDef *characterDefinition);
|
||||
void parseInfoArguments(std::string line);
|
||||
|
@ -107,57 +116,60 @@ namespace cocos2d{
|
|||
void parseKerningCapacity(std::string line);
|
||||
void parseKerningEntry(std::string line);
|
||||
void purgeKerningDictionary();
|
||||
};
|
||||
void purgeFontDefDictionary();
|
||||
};
|
||||
|
||||
/** @brief CCLabelBMFont is a subclass of CCSpriteSheet.
|
||||
/** @brief CCLabelBMFont is a subclass of CCSpriteSheet.
|
||||
|
||||
Features:
|
||||
- Treats each character like a CCSprite. This means that each individual character can be:
|
||||
- rotated
|
||||
- scaled
|
||||
- translated
|
||||
- tinted
|
||||
- chage the opacity
|
||||
- It can be used as part of a menu item.
|
||||
- anchorPoint can be used to align the "label"
|
||||
- Supports AngelCode text format
|
||||
Features:
|
||||
- Treats each character like a CCSprite. This means that each individual character can be:
|
||||
- rotated
|
||||
- scaled
|
||||
- translated
|
||||
- tinted
|
||||
- chage the opacity
|
||||
- It can be used as part of a menu item.
|
||||
- anchorPoint can be used to align the "label"
|
||||
- Supports AngelCode text format
|
||||
|
||||
Limitations:
|
||||
- All inner characters are using an anchorPoint of (0.5f, 0.5f) and it is not recommend to change it
|
||||
because it might affect the rendering
|
||||
Limitations:
|
||||
- All inner characters are using an anchorPoint of (0.5f, 0.5f) and it is not recommend to change it
|
||||
because it might affect the rendering
|
||||
|
||||
CCLabelBMFont implements the protocol CCLabelProtocol, like CCLabel and CCLabelAtlas.
|
||||
CCLabelBMFont has the flexibility of CCLabel, the speed of CCLabelAtlas and all the features of CCSprite.
|
||||
If in doubt, use CCLabelBMFont instead of CCLabelAtlas / CCLabel.
|
||||
CCLabelBMFont implements the protocol CCLabelProtocol, like CCLabel and CCLabelAtlas.
|
||||
CCLabelBMFont has the flexibility of CCLabel, the speed of CCLabelAtlas and all the features of CCSprite.
|
||||
If in doubt, use CCLabelBMFont instead of CCLabelAtlas / CCLabel.
|
||||
|
||||
Supported editors:
|
||||
http://glyphdesigner.71squared.com/ (Commercial, Mac OS X)
|
||||
http://www.n4te.com/hiero/hiero.jnlp (Free, Java)
|
||||
http://slick.cokeandcode.com/demos/hiero.jnlp (Free, Java)
|
||||
http://www.angelcode.com/products/bmfont/ (Free, Windows only)
|
||||
Supported editors:
|
||||
http://glyphdesigner.71squared.com/ (Commercial, Mac OS X)
|
||||
http://www.n4te.com/hiero/hiero.jnlp (Free, Java)
|
||||
http://slick.cokeandcode.com/demos/hiero.jnlp (Free, Java)
|
||||
http://www.angelcode.com/products/bmfont/ (Free, Windows only)
|
||||
|
||||
@since v0.8
|
||||
*/
|
||||
@since v0.8
|
||||
*/
|
||||
|
||||
class CC_DLL CCLabelBMFont : public CCSpriteBatchNode, public CCLabelProtocol, public CCRGBAProtocol
|
||||
{
|
||||
class CC_DLL CCLabelBMFont : public CCSpriteBatchNode, public CCLabelProtocol, public CCRGBAProtocol
|
||||
{
|
||||
/** conforms to CCRGBAProtocol protocol */
|
||||
CC_PROPERTY(GLubyte, m_cOpacity, Opacity)
|
||||
/** conforms to CCRGBAProtocol protocol */
|
||||
CC_PROPERTY_PASS_BY_REF(ccColor3B, m_tColor, Color)
|
||||
/** conforms to CCRGBAProtocol protocol */
|
||||
CC_PROPERTY(bool, m_bIsOpacityModifyRGB, IsOpacityModifyRGB)
|
||||
protected:
|
||||
protected:
|
||||
// string to render
|
||||
std::string m_sString;
|
||||
unsigned short* m_sString;
|
||||
std::string m_sString_initial;
|
||||
CCBMFontConfiguration *m_pConfiguration;
|
||||
public:
|
||||
CCLabelBMFont()
|
||||
: m_cOpacity(0)
|
||||
, m_bIsOpacityModifyRGB(false)
|
||||
, m_sString("")
|
||||
, m_pConfiguration(NULL)
|
||||
{}
|
||||
CCTextAlignment m_pAlignment;
|
||||
float m_fWidth;
|
||||
bool m_bLineBreakWithoutSpaces;
|
||||
// offset of the texture atlas
|
||||
CCPoint m_tImageOffset;
|
||||
public:
|
||||
CCLabelBMFont();
|
||||
|
||||
virtual ~CCLabelBMFont();
|
||||
/** Purges the cached data.
|
||||
Removes from memory the cached configurations and the atlas name dictionary.
|
||||
|
@ -166,32 +178,43 @@ namespace cocos2d{
|
|||
static void purgeCachedData();
|
||||
/** creates a bitmap font altas with an initial string and the FNT file */
|
||||
static CCLabelBMFont * labelWithString(const char *str, const char *fntFile);
|
||||
static CCLabelBMFont * labelWithString(const char *str, const char *fntFile, float width, CCTextAlignment alignment);
|
||||
static CCLabelBMFont * labelWithString(const char *str, const char *fntFile, float width, CCTextAlignment alignment, CCPoint imageOffset);
|
||||
|
||||
/** init a bitmap font altas with an initial string and the FNT file */
|
||||
bool initWithString(const char *str, const char *fntFile, float width, CCTextAlignment alignment, CCPoint imageOffset);
|
||||
bool initWithString(const char *str, const char *fntFile, float width, CCTextAlignment alignment);
|
||||
bool initWithString(const char *str, const char *fntFile);
|
||||
/** updates the font chars based on the string to render */
|
||||
void createFontChars();
|
||||
// super method
|
||||
virtual void setString(const char *label);
|
||||
virtual void setString(const char *label, bool fromUpdate);
|
||||
virtual void updateString(bool fromUpdate);
|
||||
virtual const char* getString(void);
|
||||
virtual void setCString(const char *label);
|
||||
virtual void setAnchorPoint(const CCPoint& var);
|
||||
virtual void updateLabel();
|
||||
virtual void setAlignment(CCTextAlignment alignment);
|
||||
virtual void setWidth(float width);
|
||||
virtual void setLineBreakWithoutSpace(bool breakWithoutSpace);
|
||||
|
||||
#if CC_LABELBMFONT_DEBUG_DRAW
|
||||
virtual void draw();
|
||||
#endif // CC_LABELBMFONT_DEBUG_DRAW
|
||||
private:
|
||||
private:
|
||||
char * atlasNameFromFntFile(const char *fntFile);
|
||||
int kerningAmountForFirst(unsigned short first, unsigned short second);
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
/** Free function that parses a FNT file a place it on the cache
|
||||
*/
|
||||
CC_DLL CCBMFontConfiguration * FNTConfigLoadFile( const char *file );
|
||||
/** Purges the FNT config cache
|
||||
*/
|
||||
CC_DLL void FNTConfigRemoveCache( void );
|
||||
}// namespace cocos2d
|
||||
/** Free function that parses a FNT file a place it on the cache
|
||||
*/
|
||||
CC_DLL CCBMFontConfiguration * FNTConfigLoadFile( const char *file );
|
||||
/** Purges the FNT config cache
|
||||
*/
|
||||
CC_DLL void FNTConfigRemoveCache( void );
|
||||
|
||||
NS_CC_END
|
||||
|
||||
#endif //__CCBITMAP_FONT_ATLAS_H__
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue