Cocos2d-x   发布时间:2022-05-02  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了cocos2d 中 scene(), create(), init() 调用关系大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。


最近在学cocos2d,刚上手时对示例程序的函数调用关系不是很清楚。昨晚刚刚搞清楚,记录下。

1. 首先来看main函数:

AppDelegate app; // 创建一个AppDelegate对象
    ...
    return CCApplication::sharedApplication()->run(); // 运行 app 对象

2. 再看 AppDelegate 类:

virtual bool applicationDidFinishLaunching(); // CCApplication::sharedApplication()->run(); 之后首先执行此函数
// Implement CCDirector and CCScene init code here.
bool AppDelegate::applicationDidFinishLaunching() {
  ...
  // create a scene. it's an autorelease object
  CCScene *pScene = HelloWorld::scene();
  pDirector->runWithScene(pScenE);
  return true;
}

调用了层类(Layer)HelloWorld 的scene() 方法,并且通过 CCDirector 的一个实例来执行。

3. 最后看 HelloWorld 的 scene() 方法

CCScene* HelloWorld::scene()
{
  // 'scene' is an autorelease object
  CCScene *scene = CCScene::create();
  
  'layer' is an autorelease object
  HelloWorld *layer = HelloWorld::create();

  // add layer as a child to scene
  scene->addChild(layer);

  // return the scene
  return scene;
}

这时候会有疑问,那 HelloWorld::init() 方法在哪儿使用了?而且 HelloWorld 哪儿有 create() 方法?

这个时候,定位create() 方法,指向 CREATE_FUNC(HelloWorld);

/**
 * define a create function for a specific type,such as CCLayer
 * @__TYPE__ class type to add create(),such as CCLayer
 */
#define CREATE_FUNC(__TYPE__) \
static __TYPE__* create() \
{ \
  __TYPE__ *pRet = new __TYPE__(); \
  if (pRet && pRet->init()) \
  { \
    pRet->autorelease(); \
    return pRet; \
  } \
  else \
  { \
    delete pRet; \
    pRet = NULL; \
    return NULL; \
  } \
}

根据宏定义可以知道,create() 即为CREATE_FUNC();将__TYPE__换成 HelloWorld 之后,则在 if 判断中调用了 init() 函数

4.总结

调用顺序为 main() -> AppDelegate->HelloWorld::scene()-> CREATE_FUNC()-> init()

大佬总结

以上是大佬教程为你收集整理的cocos2d 中 scene(), create(), init() 调用关系全部内容,希望文章能够帮你解决cocos2d 中 scene(), create(), init() 调用关系所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。