2012-06-13 02:59:49 +08:00
|
|
|
#ifndef _CCB_CCBMEMBERVARIABLEASSIGNER_H_
|
|
|
|
#define _CCB_CCBMEMBERVARIABLEASSIGNER_H_
|
2012-06-05 06:52:49 +08:00
|
|
|
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace cocosbuilder {
|
2012-06-05 06:52:49 +08:00
|
|
|
|
2012-06-19 16:31:26 +08:00
|
|
|
#define CCB_MEMBERVARIABLEASSIGNER_GLUE(TARGET, MEMBERVARIABLENAME, MEMBERVARIABLETYPE, MEMBERVARIABLE) \
|
2012-11-26 21:51:05 +08:00
|
|
|
if (pTarget == TARGET && 0 == strcmp(pMemberVariableName, (MEMBERVARIABLENAME))) { \
|
2012-06-19 16:31:26 +08:00
|
|
|
MEMBERVARIABLETYPE pOldVar = MEMBERVARIABLE; \
|
|
|
|
MEMBERVARIABLE = dynamic_cast<MEMBERVARIABLETYPE>(pNode); \
|
|
|
|
CC_ASSERT(MEMBERVARIABLE); \
|
|
|
|
if (pOldVar != MEMBERVARIABLE) { \
|
|
|
|
CC_SAFE_RELEASE(pOldVar); \
|
|
|
|
MEMBERVARIABLE->retain(); \
|
|
|
|
} \
|
|
|
|
return true; \
|
|
|
|
}
|
2012-06-15 09:16:54 +08:00
|
|
|
|
2013-04-19 06:06:25 +08:00
|
|
|
#define CCB_MEMBERVARIABLEASSIGNER_GLUE_WEAK(TARGET, MEMBERVARIABLENAME, MEMBERVARIABLETYPE, MEMBERVARIABLE) \
|
|
|
|
if (pTarget == TARGET && 0 == strcmp(pMemberVariableName, MEMBERVARIABLENAME)) { \
|
|
|
|
MEMBERVARIABLE = dynamic_cast<MEMBERVARIABLETYPE>(pNode); \
|
|
|
|
CC_ASSERT(MEMBERVARIABLE); \
|
|
|
|
return true; \
|
|
|
|
}
|
2013-01-21 18:37:17 +08:00
|
|
|
|
2014-08-27 10:18:44 +08:00
|
|
|
class CC_DLL CCBMemberVariableAssigner {
|
2012-06-05 06:52:49 +08:00
|
|
|
public:
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2012-06-19 03:03:06 +08:00
|
|
|
virtual ~CCBMemberVariableAssigner() {};
|
|
|
|
|
2013-01-21 18:37:17 +08:00
|
|
|
/**
|
|
|
|
* The callback function of assigning member variable.
|
2013-06-20 14:15:53 +08:00
|
|
|
* @note The member variable must be Node or its subclass.
|
2013-08-01 21:40:13 +08:00
|
|
|
* @param target The custom class.
|
|
|
|
* @param memberVariableName The name of the member variable.
|
|
|
|
* @param node The member variable.
|
2013-01-21 18:37:17 +08:00
|
|
|
* @return Whether the assignment was successful.
|
|
|
|
*/
|
2014-02-20 10:53:49 +08:00
|
|
|
virtual bool onAssignCCBMemberVariable(cocos2d::Ref* target, const char* memberVariableName, cocos2d::Node* node) = 0;
|
2013-01-21 18:37:17 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The callback function of assigning custom properties.
|
2013-01-22 15:10:30 +08:00
|
|
|
* @note The member variable must be Integer, Float, Boolean or String.
|
2013-08-01 21:40:13 +08:00
|
|
|
* @param target The custom class.
|
|
|
|
* @param memberVariableName The name of the member variable.
|
|
|
|
* @param value The value of the property.
|
2013-01-21 18:37:17 +08:00
|
|
|
* @return Whether the assignment was successful.
|
|
|
|
*/
|
2014-02-20 10:53:49 +08:00
|
|
|
virtual bool onAssignCCBCustomProperty(cocos2d::Ref* target, const char* memberVariableName, const cocos2d::Value& value) { return false; };
|
2012-06-05 06:52:49 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2012-06-05 06:52:49 +08:00
|
|
|
|
|
|
|
#endif
|