首页 > 其他分享 >【Cocos2d-X(2.x) 游戏开发系列之一】cocos2dx(v2.x)与(v1.x)的一些常用函数区别讲解!在2.x版CCFileData类被去除等

【Cocos2d-X(2.x) 游戏开发系列之一】cocos2dx(v2.x)与(v1.x)的一些常用函数区别讲解!在2.x版CCFileData类被去除等

时间:2022-11-24 15:38:41浏览次数:65  
标签:cocos2dx Cocos2d 创建 CCFileData scene CCArray 版本 World create




本站文章均为​ 李华明Himi ​​原创,转载务必在明显处注明:​​​​


cocos2dx v2.0版本发布一段时间了,现在最新版本是 cocos2d-2.0-rc2-x-2.0.1 ;这段时间Himi对2.x的更新版也有关注,也尝试使用过,发现不少地方都有改动,对于Himi最新项目快到尾声的考虑,所以也没有更新引擎到最新。那么今天开始Himi将陆续使用最新v2.x版本的一些东东,同步更新一些经常使用的改动以及值得注意的地方发博文出来与大家共享;

在之前我们使用cocos2dx 1.x版本中,我们都知道,创建一个CCObject类,都是类名然后::类名去除CC这个规律来创建和初始化,但是这一条在Cocos2dx 2.x版本就不行了,在cocos2dx  2.x版本中初始化和创建类基本都是 create 关键字开头创建。

首先我们来看第一个改动:  CCLayer初始化

自定义Layer,类名:World


​.h中:​


​1.x版本Layer函数​


​LAYER_NODE_FUNC(World);​


 


​2.x版本Layer函数​


​LAYER_CREATE_FUNC(World);​



​.cpp中:​


​1.x版本的重写函数:​


 


​CCScene* World::scene()​


​{​


​CCScene *scene = CCScene::node(); ​


​World *layer = World::node(); ​


​scene->addChild(layer); ​


​return​​ ​​scene;​


​}​


 


​2.x版本的重写函数:​


 


​CCScene* World::scene()​


​{​


​CCScene *scene = CCScene::create(); ​


​World *layer = World::create(); ​


​scene->addChild(layer); ​


​return​​ ​​scene;​


​}​


 

然后我们看第二个常用的CCArray的初始化:


​1.​​​​x版本的CCArray创建: ​

​CCArray​​​​*​​​​array ​​​​=​​​​CCArray​​​​:​​​​:​​​​array​​​​(​​​​)​​​​;​


 

​2.​​​​x版本的CCArray创建:  ​

​CCArray​​​​*​​​​array ​​​​=​​​​CCArray​​​​:​​​​:​​​​create​​​​(​​​​)​​​​;​


 

 

第三个我们看文件路径相关CCFileUtils函数使用:

1.x版本的使用: 
const char* fullpath = cocos2d::CCFileUtils::fullPathFromRelativePath(patha.c_str());

2.x版本的使用:
const char* fullpath = cocos2d::CCFileUtils::sharedFileUtils()->fullPathFromRelativePath(patha.c_str());



第四个精灵的创建:  


1.x中精灵的创建:
CCSprite *sp = CCSprite::spriteWithFile("himi.png");
2.x中精灵的创建:
CCSprite *sp = CCSprite::create("himi.png");




第五个注册触屏事件监听:


1.x中注册:
CCTouchDispatcher::sharedDispatcher()->addTargetedDelegate(this, 0, false);

2.x中注册:
CCDirector::sharedDirector()->getTouchDispatcher()->addTargetedDelegate(this, 0, false);



第六个粒子相关

1.x粒子创建和设置自动释放设置
CCParticleSystem *tempSystem = CCParticleSystem::particleWithFile("himi.plist");
tempSystem->setIsAutoRemoveOnFinish(true);

2.x粒子创建和设置自动释放设置
CCParticleSystem *tempSystem = CCParticleSystemQuad::create("himi.plist");
tempSystem->setAutoRemoveOnFinish(true);



第七个:CCFileData 类去除了:


1.x的CCFileData的使用:

cocos2d::CCFileData fileDataClip(const char *pszFileName, const char *pszMode);

2.x中CCFileData被删除,直接使用如下函数即可代替:
CCFileUtils::sharedFileUtils()->getFileData(const char *pszFileName, const char *pszMode, unsigned long *pSize)



第八个 Action 动作使用与创建:

1.x动作的创建与使用:
this->runAction(CCSequence::actions(
CCMoveTo::actionWithDuration(ccpDistance(this->getPosition(), target) / velocity,
target),
CCCallFunc::actionWithTarget(this, callfunc_selector(Player::removeTarget))
,NULL));

2.x的动作创建和使用:
this->runAction(CCSequence::create(
CCMoveTo::create(ccpDistance(this->getPosition(), target) / velocity,
target),
CCCallFunc::create(this, callfunc_selector(Player::removeTarget))
,NULL));



其实以上这几个例子比较有代表性了,其他的一些区分我想大家也能找到不一定的规律。那么本篇对于cocos2dx v2.0版本的差异就讲述到这,后续如果Himi还发现比较重点区分的地方也一定会博文分享出来的。   



标签:cocos2dx,Cocos2d,创建,CCFileData,scene,CCArray,版本,World,create
From: https://blog.51cto.com/xiaominghimi/5884017

相关文章