2012-09-17 14:27:17 +08:00
|
|
|
#ifndef __CCB_VALUE_H__
|
|
|
|
#define __CCB_VALUE_H__
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "ExtensionMacros.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
These classes are wrapper of basic types, such as ccColor3B
|
|
|
|
*/
|
|
|
|
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
|
2012-09-24 11:08:10 +08:00
|
|
|
class ccColor3BWapper : public CCObject
|
2012-09-17 14:27:17 +08:00
|
|
|
{
|
|
|
|
private:
|
2012-09-24 11:08:10 +08:00
|
|
|
ccColor3B color;
|
2012-09-17 14:27:17 +08:00
|
|
|
|
|
|
|
public:
|
2012-09-24 11:08:10 +08:00
|
|
|
static ccColor3BWapper* create(const ccColor3B& color);
|
2012-09-17 14:27:17 +08:00
|
|
|
|
2013-01-14 16:06:18 +08:00
|
|
|
const ccColor3B& getColor() const;
|
2012-09-17 14:27:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
kIntValue,
|
|
|
|
kFloatValue,
|
|
|
|
kBoolValue,
|
|
|
|
kUnsignedCharValue,
|
2013-03-15 08:43:56 +08:00
|
|
|
kStringValue,
|
|
|
|
kArrayValue
|
2012-09-17 14:27:17 +08:00
|
|
|
};
|
|
|
|
|
2012-09-24 11:08:10 +08:00
|
|
|
class CCBValue : public CCObject
|
2012-09-17 14:27:17 +08:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
union
|
|
|
|
{
|
|
|
|
int nValue;
|
|
|
|
float fValue;
|
|
|
|
} mValue;
|
|
|
|
|
2013-01-21 18:37:17 +08:00
|
|
|
std::string m_strValue;
|
2013-03-15 08:43:56 +08:00
|
|
|
CCArray* m_arrValue;
|
2012-09-17 14:27:17 +08:00
|
|
|
int mType;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static CCBValue* create(int nValue);
|
|
|
|
static CCBValue* create(bool bValue);
|
|
|
|
static CCBValue* create(float fValue);
|
|
|
|
static CCBValue* create(unsigned char byte);
|
2013-01-21 18:37:17 +08:00
|
|
|
static CCBValue* create(const char* pStr);
|
2013-03-15 08:43:56 +08:00
|
|
|
static CCBValue* create(CCArray* pArr);
|
|
|
|
|
2012-09-17 14:27:17 +08:00
|
|
|
|
|
|
|
int getIntValue();
|
|
|
|
float getFloatValue();
|
|
|
|
bool getBoolValue();
|
|
|
|
unsigned char getByteValue();
|
2013-01-21 18:37:17 +08:00
|
|
|
const char* getStringValue();
|
2013-03-15 08:43:56 +08:00
|
|
|
CCArray *getArrayValue();
|
2013-01-21 18:37:17 +08:00
|
|
|
|
|
|
|
int getType();
|
2012-09-17 14:27:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_EXT_END
|
|
|
|
|
|
|
|
#endif // __CCB_VALUE_H__
|