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

1 2 3 4 5 6 .h中: 1.x版本Layer函数 LAYER_NODE_FUNC(World); 2.x版本Layer函数 LAYER_CREATE_FUNC(World); 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 .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 2 3 4 5 1.x版本的CCArray创建: CCArray*array = CCArray::array(); 2.x版本的CCArray创建: CCArray*array = CCArray::create();

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

[cpp]view plaincopy 1.x版本的使用: constchar*fullpath=cocos2d::CCFileUtils::fullPathFromRelativePath(patha.c_str()); 2.x版本的使用: constchar*fullpath=cocos2d::CCFileUtils::sharedFileUtils()->fullPathFromRelativePath(patha.c_str());



第四个精灵的创建:

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


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

[cpp]view plaincopy 1.x中注册: CCTouchDispatcher::sharedDispatcher()->addTargetedDelegate(this,0,false); 2.x中注册: CCDirector::sharedDirector()->getTouchDispatcher()->addTargetedDelegate(this,0,false);

第六个粒子相关

[cpp]view plaincopy 1.x粒子创建和设置自动释放设置 CCParticleSystem*tempSystem=CCParticleSystem::particleWithFile("himi.plist"); tempSystem->setIsAutoRemoveOnFinish(true); 2.x粒子创建和设置自动释放设置 CCParticleSystem*tempSystem=CCParticleSystemQuad::create("himi.plist"); tempSystem->setAutoRemoveOnFinish(true);<spanstyle="color:#ff0000;"> </span>



第七个:CCFileData 类去除了:

[cpp]view plaincopy 1.x的CCFileData的使用: cocos2d::CCFileDatafileDataClip(constchar*pszFileName,constchar*pszMode); 2.x中CCFileData被删除,直接使用如下函数即可代替: CCFileUtils::sharedFileUtils()->getFileData(constchar*pszFileName,constchar*pszMode,unsignedlong*pSize)

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

[cpp]view plaincopy 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还发现比较重点区分的地方也一定会博文分享出来的。