cocos2d-x UserDefault

轉自:http://blog.csdn.net/yanghuiliu/article/details/6912612java

正在作項目中有不少遊戲數據要保存,常見的玩家數據這些比較簡單的能夠用CCUserDefault。它是cocos2d-x用來存取基本數據類型用的。保存爲XML文件格式。ui

主要方法:(和java的map很像,鍵值對,應該很容易懂的)spa

void    setBoolForKey(const char* pKey, bool value);
void    setIntegerForKey(const char* pKey, int value);
void    setFloatForKey(const char* pKey, float value);
void    setDoubleForKey(const char* pKey, double value);
void    setStringForKey(const char* pKey, const std::string & value);

經過鍵讀取數據,若是鍵不存在,能夠設置一個defaultValue返回本身想要的值。.net

bool    getBoolForKey(const char* pKey, bool defaultValue = false);
int    getIntegerForKey(const char* pKey, int defaultValue = 0);
float    getFloatForKey(const char* pKey, float defaultValue=0.0f);
double    getDoubleForKey(const char* pKey, double defaultValue=0.0);
std::string    getStringForKey(const char* pKey, const std::string & defaultValue = "");

首次運行程序時能夠去生成xml文件CCUserDefault::sharedUserDefault()->setIntegerForKey("MyGold", 0);code

這樣就能夠生成一個xml文件。不過這種硬代碼我不是很喜歡。xml

 

每次調用的時候要寫很長的代碼。能夠建議搞幾個宏,畢竟CCUserDefault的get,set實在太長了。blog

#define SaveStringToXML CCUserDefault::sharedUserDefault()->setStringForKey

#define SaveIntegerToXML CCUserDefault::sharedUserDefault()->setIntegerForKey

#define SaveBooleanToXML CCUserDefault::sharedUserDefault()->setBoolForKey

#define LoadStringFromXML CCUserDefault::sharedUserDefault()->getStringForKey

#define LoadIntegerFromXML CCUserDefault::sharedUserDefault()->getIntegerForKey

#define LoadBooleanFromXML CCUserDefault::sharedUserDefault()->getBoolForKey

如何首次生成判斷文件是否存在呢遊戲

其實能夠利用get方法去獲取。 get

if ( !LoadBooleanFromXML("_IS_EXISTED")) 
{
       initUserData();             
       SaveBooleanToXML("_IS_EXISTED", true);
}
相關文章
相關標籤/搜索