mirror of https://github.com/axmolengine/axmol.git
Fixed CCLabelBMFontLoader (according to changes in: 827ee160b5
).
This commit is contained in:
parent
c754dac31b
commit
5578521a69
|
@ -6,14 +6,11 @@ using namespace cocos2d::extension;
|
||||||
#define PROPERTY_COLOR "color"
|
#define PROPERTY_COLOR "color"
|
||||||
#define PROPERTY_OPACITY "opacity"
|
#define PROPERTY_OPACITY "opacity"
|
||||||
#define PROPERTY_BLENDFUNC "blendFunc"
|
#define PROPERTY_BLENDFUNC "blendFunc"
|
||||||
|
#define PROPERTY_FNTFILE "fntFile"
|
||||||
|
#define PROPERTY_STRING "string"
|
||||||
|
|
||||||
CCLabelBMFont * CCLabelBMFontLoader::createCCNode(CCNode * pParent, CCBReader * pCCBReader) {
|
CCLabelBMFont * CCLabelBMFontLoader::createCCNode(CCNode * pParent, CCBReader * pCCBReader) {
|
||||||
if(pRet && pRet->initWithString(str, fntFile)) {
|
return CCLabelBMFont::node();
|
||||||
pRet->autorelease();
|
|
||||||
return pRet;
|
|
||||||
}
|
|
||||||
CC_SAFE_DELETE(pRet);
|
|
||||||
return new CCLabelBMFont(); // TODO Is this problematic?
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CCLabelBMFontLoader::onHandlePropTypeColor3(CCNode * pNode, CCNode * pParent, std::string pPropertyName, ccColor3B pCCColor3B, CCBReader * pCCBReader) {
|
void CCLabelBMFontLoader::onHandlePropTypeColor3(CCNode * pNode, CCNode * pParent, std::string pPropertyName, ccColor3B pCCColor3B, CCBReader * pCCBReader) {
|
||||||
|
@ -39,3 +36,19 @@ void CCLabelBMFontLoader::onHandlePropTypeBlendFunc(CCNode * pNode, CCNode * pPa
|
||||||
CCNodeLoader::onHandlePropTypeBlendFunc(pNode, pParent, pPropertyName, pCCBlendFunc, pCCBReader);
|
CCNodeLoader::onHandlePropTypeBlendFunc(pNode, pParent, pPropertyName, pCCBlendFunc, pCCBReader);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CCLabelBMFontLoader::onHandlePropTypeFntFile(CCNode * pNode, CCNode * pParent, std::string pPropertyName, std::string pFntFile, CCBReader * pCCBReader) {
|
||||||
|
if(pPropertyName.compare(PROPERTY_FNTFILE) == 0) {
|
||||||
|
((CCLabelBMFont *)pNode)->setFntFile(pFntFile.c_str());
|
||||||
|
} else {
|
||||||
|
CCNodeLoader::onHandlePropTypeFntFile(pNode, pParent, pPropertyName, pFntFile, pCCBReader);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void CCLabelBMFontLoader::onHandlePropTypeText(CCNode * pNode, CCNode * pParent, std::string pPropertyName, std::string pText, CCBReader * pCCBReader) {
|
||||||
|
if(pPropertyName.compare(PROPERTY_STRING) == 0) {
|
||||||
|
((CCLabelBMFont *)pNode)->setString(pText.c_str());
|
||||||
|
} else {
|
||||||
|
CCNodeLoader::onHandlePropTypeText(pNode, pParent, pPropertyName, pText, pCCBReader);
|
||||||
|
}
|
||||||
|
}
|
|
@ -15,6 +15,8 @@ class CCLabelBMFontLoader : public CCNodeLoader {
|
||||||
virtual void onHandlePropTypeColor3(cocos2d::CCNode *, cocos2d::CCNode *, std::string, cocos2d::ccColor3B, CCBReader *);
|
virtual void onHandlePropTypeColor3(cocos2d::CCNode *, cocos2d::CCNode *, std::string, cocos2d::ccColor3B, CCBReader *);
|
||||||
virtual void onHandlePropTypeByte(CCNode *, CCNode *, std::string, unsigned char, CCBReader *);
|
virtual void onHandlePropTypeByte(CCNode *, CCNode *, std::string, unsigned char, CCBReader *);
|
||||||
virtual void onHandlePropTypeBlendFunc(CCNode *, CCNode *, std::string, ccBlendFunc, CCBReader *);
|
virtual void onHandlePropTypeBlendFunc(CCNode *, CCNode *, std::string, ccBlendFunc, CCBReader *);
|
||||||
|
virtual void onHandlePropTypeFntFile(CCNode *, CCNode *, std::string, std::string, CCBReader *);
|
||||||
|
virtual void onHandlePropTypeText(CCNode *, CCNode *, std::string, std::string, CCBReader *);
|
||||||
};
|
};
|
||||||
|
|
||||||
NS_CC_EXT_END
|
NS_CC_EXT_END
|
||||||
|
|
Loading…
Reference in New Issue