摘要:
先上源码: 1 bool HelloWorld::init() 2 { 3 ////////////////////////////// 4 // 1. super init first 5 if ( !CCLayer::init() ) 6 { 7 ... 阅读全文
摘要:
int 转string的方法,用到了记一个,哈哈 1 /************************************************************************/ 2 /* int to string */ 3 /************************************************************************/ 4 std::string CCardDispatcher::ItoA(int n){ ... 阅读全文
摘要:
之前在做一个游戏的时候需要获取随机数1 rand()%(end-start+1)+start; 参数end和start是为了设置获取随机数范围的,要想获取接近真实的随机数需要设置一个种子,比较常用的方法是以当前时间为种子,在cocos2d-x中提供了获取时间的方法,而且获取的时间更精确1 cc_t... 阅读全文
摘要:
//CAlert.h 1 #ifndef __CCALERT_H__ 2 #define __CCALERT_H__ 3 #include "cocos2d.h" 4 USING_NS_CC; 5 enum AlertType{ 6 AlertType_OkAndCancel=0, 7 ... 阅读全文