博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
学习cocos 空程序
阅读量:6002 次
发布时间:2019-06-20

本文共 2669 字,大约阅读时间需要 8 分钟。

今天开始学习cocos代码,首先研究源码中的空程序。
在这个程序中,在main函数中,创建了一个Application:
 
  1. int APIENTRY _tWinMain(HINSTANCE hInstance,
  2. HINSTANCE hPrevInstance,
  3. LPTSTR lpCmdLine,
  4. int nCmdShow)
  5. {
  6. UNREFERENCED_PARAMETER(hPrevInstance);
  7. UNREFERENCED_PARAMETER(lpCmdLine);
  8. // create the application instance
  9. AppDelegate app;
  10. return Application::getInstance()->run();
  11. }
其中AppDelegate继承自Application。这里明显使用了
单例模式,AppDelegate构造时,Application内部的静态成员指针被赋值:
 
  1. Application::Application()
  2. : _instance(nullptr)
  3. , _accelTable(nullptr)
  4. {
  5. _instance = GetModuleHandle(nullptr);
  6. _animationInterval.QuadPart = 0;
  7. CC_ASSERT(! sm_pSharedApplication);
  8. sm_pSharedApplication = this;
  9. }
其中sm_pSharedApplication即为静态成员。之后getInstance函数,便是返回了这个成员:
 
  1. Application* Application::getInstance()
  2. {
  3. CC_ASSERT(sm_pSharedApplication);
  4. return sm_pSharedApplication;
  5. }
在main函数调用run之后,AppDelegate::applicationDidFinishLaunching
会被调用,这个函数是一个虚函数,需要由用户指定实现。
在这个函数中,用户需要创建自己的场景。具体做法是,获取一个Director指针(Director也是单例模式),最后调用Director::runWithScene函数,把用户自定义的Scene加入:
 
  1. bool AppDelegate::applicationDidFinishLaunching() {
  2. // initialize director
  3. auto director = Director::getInstance();
  4. auto glview = director->getOpenGLView();
  5. if(!glview) {
  6. glview = GLViewImpl::create("Cpp Empty Test");
  7. director->setOpenGLView(glview);
  8. }
  9. director->setOpenGLView(glview);
  10. // turn on display FPS
  11. director->setDisplayStats(true);
  12. // set FPS. the default value is 1.0/60 if you don't call this
  13. director->setAnimationInterval(1.0 / 60);
  14. // create a scene. it's an autorelease object
  15. auto scene = HelloWorld::scene();
  16. // run
  17. director->runWithScene(scene);
  18. return true;
  19. }
上面代码中的HelloWorld是用户定义的类:
 
  1. class HelloWorld : public cocos2d::Layer
  2. {
  3. public:
  4. // Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone
  5. virtual bool init();
  6. // there's no 'id' in cpp, so we recommend returning the class instance pointer
  7. static cocos2d::Scene* scene();
  8. // a selector callback
  9. void menuCloseCallback(Ref* sender);
  10. // implement the "static node()" method manually
  11. CREATE_FUNC(HelloWorld);
  12. };
实际上HelloWorld本身是一个Layer,调用scene函数的时候,会创建一个Scene的实例,调用scene的addChild函数把自身的一个实例加进去:
 
  1. Scene* HelloWorld::scene()
  2. {
  3. // 'scene' is an autorelease object
  4. auto scene = Scene::create();
  5. // 'layer' is an autorelease object
  6. HelloWorld *layer = HelloWorld::create();
  7. // add layer as a child to scene
  8. scene->addChild(layer);
  9. // return the scene
  10. return scene;
  11. }
在create函数当中,会调用HelloWorld的init函数,这个函数是一个虚函数,在这个函数中,可以完成用户自身的初始化工作,例如加入菜单项,创建各种组成场景的元素。
总结一下,总的调用顺序是:
main调用
Application::run
AppDelegate::applicationDidFinishLaunching被调用
创建Layer,Layer的init函数被调用
创建Scene,把Layer加进scene
获得Director指针(只有一个director),把Scene加进Director

转载于:https://www.cnblogs.com/dydx/p/4295941.html

你可能感兴趣的文章
Android判断网络连接状态
查看>>
leetcode_1033. Moving Stones Until Consecutive
查看>>
logback logback.xml常用配置详解(二)<appender>
查看>>
js常用的函数库
查看>>
Sqlserver 数据库安全
查看>>
netstat命令简单使用
查看>>
Python标示符命名规则
查看>>
SSL certificate problem unable to get local issuer certificate解决办法
查看>>
20145209 刘一阳 《网络对抗》实验四:恶意代码分析
查看>>
个人学期总结
查看>>
CodeForces 985E Pencils and Boxes
查看>>
为什么Elasticsearch查询变得这么慢了?
查看>>
node.js中使用http模块创建服务器和客户端
查看>>
Away3D基础教程(六):支持双面交互的PlaneGeometry
查看>>
(十五)Centos之安装jdk
查看>>
RISC-V: custom instruction and its simulation(转)
查看>>
HDU 5366 The mook jong
查看>>
Unity ScriptableObject自定义属性显示
查看>>
【开源】简单4步搞定QQ登录,无需什么代码功底【无语言界限】
查看>>
ORACLE内存管理之ASMM AMM
查看>>