位置: 编程技术 - 正文
推荐整理分享cocos2dx 读取json及解析(cocos2dx schedule),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:cocos2d schedule,cocos creator json,cocos2dx schedule,cocos2dx 读取pack素材,cocos2dx 读取pack素材,cocos2dx schedule,cocos2dx 读取pack素材,cocos2dx 读取pack素材,内容如对您有帮助,希望把文章链接给更多的朋友!
ball.json 数据如下:
[html] view plaincopy{ "entities": [ { "entity": { "TapOpposite": 0, "Interval": 0., "BallNum": 1 } }, { "entity": { "TapOpposite": 0, "Interval": 0., "BallNum": 2 } }, { "entity": { "TapOpposite": 0, "Interval": 0., "BallNum": 3 } } ] } 在cocos2dx中json的读取是用的rapidjson,包含在cocostudio工程中。所以我们要先引入#include "cocostudio/CocoStudio.h"[cpp] view plaincopyvoid GameWorld::readJson() { //json 文档 rapidjson::Document _doc; bool bRet = false; ssize_t size = 0; unsigned char *pBytes = NULL; do { pBytes = cocos2d::CCFileUtils::sharedFileUtils()->getFileData("ball.json", "r", &size); CC_BREAK_IF(pBytes == NULL || strcmp((char*)pBytes, "") == 0); std::string load_str((const char*)pBytes, size); CC_SAFE_DELETE_ARRAY(pBytes); _doc.Parse<0>(load_str.c_str()); CC_BREAK_IF(_doc.HasParseError()); //生成json文档对像 if(!_doc.IsObject()) return; //是否有此成员 if(!_doc.HasMember("entities")) return; // 通过[]取成员,再根据需要转为array,int,double,string const rapidjson::Value &pArray = _doc["entities"]; //是否是数组 if(!pArray.IsArray()) return; for (rapidjson::SizeType i = 0; i < pArray.Size(); i) { const rapidjson::Value &p = pArray[i]; if(p.HasMember("entity")) { const rapidjson::Value &valueEnt = p["entity"]; if(valueEnt.HasMember("TapOpposite") && valueEnt.HasMember("Interval") && valueEnt.HasMember("BallNum")) { const rapidjson::Value &tapOpposite = valueEnt["TapOpposite"]; int tapOp = tapOpposite.GetInt(); //得到int const rapidjson::Value &interval = valueEnt["Interval"]; float inter = interval.GetDouble(); //得到float,double const rapidjson::Value &ballNum = valueEnt["BallNum"]; int ball = ballNum.GetInt(); //得到int ballParam param; param.tapOp = tapOp; param.inter = inter; param.ballIndex = ball; m_ballParamVec.push_back(param); } } else { return; } } bRet = true; } while (0); }Sublime Text + decoda 调试Quick-cocos2d-x 游戏 小白一个,初学quick-cocos2d,初期使用cocos2dx开发游戏,后期使用quick-cocos2dx3.2。SublimeTextdecoda调试Quick-cocos2d-x游戏的方法。1.安装vs、SublimeText3、decoda
cocos2dx 网络编程(CCHttpRequest和CURL两个方式) 转自:
【Cocos2d-x 3.2】裁剪节点(ClippingNode)总结 有时候我们需要显示一张图片的部分区域,比如文字遮罩、图片遮罩等。本节要讲的ClippingNode的功能效果大致就是上面所看到的遮罩效果。Demo下载:裁
上一篇:Cocos2dx3.2编写常用UI组件(五)带滚动的表格GridView(cocos2djs)
友情链接: 武汉网站建设