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

前端之家收集整理的这篇文章主要介绍了【Cocos2d-X(2.x) 游戏开发系列之一】cocos2dx(v2.x)与(v1.x)的一些常用函数区别讲解!在2.x版CCFileData类被去除等前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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. .h中:
  2. 1.x版本Layer函数
  3. LAYER_NODE_FUNC(World);
  4.  
  5. 2.x版本Layer函数
  6. LAYER_CREATE_FUNC(World);
  1. .cpp中:
  2. 1.x版本的重写函数
  3.  
  4. CCScene* World::scene()
  5. {
  6. CCScene *scene = CCScene::node();
  7. World *layer = World::node();
  8. scene->addChild(layer);
  9. return scene;
  10. }
  11.  
  12. 2.x版本的重写函数
  13.  
  14. CCScene* World::scene()
  15. {
  16. CCScene *scene = CCScene::create();
  17. World *layer = World::create();
  18. scene->addChild(layer);
  19. return scene;
  20. }

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

  1. 1.x版本的CCArray创建:
  2. CCArray*array = CCArray::array();
  3.  
  4. 2.x版本的CCArray创建:
  5. CCArray*array = CCArray::create();

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

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

第四个精灵的创建:

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

第五个注册触屏事件监听

  1. 1.x注册
  2. CCTouchDispatcher::sharedDispatcher()->addTargetedDelegate(this,0,false);
  3.  
  4. 2.x注册
  5. CCDirector::sharedDirector()->getTouchDispatcher()->addTargetedDelegate(this,false);

第六个粒子相关

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

第七个:CCFileData 类去除了:

  1. 1.xCCFileData的使用:
  2. cocos2d::CCFileData fileDataClip(const char *pszFileName,const char *pszMode);
  3. 2.xCCFileData删除,直接使用如下函数即可代替:
  4. CCFileUtils::sharedFileUtils()->getFileData(const char *pszFileName,const char *pszMode,unsigned long *pSize)

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

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

猜你在找的Cocos2d-x相关文章