原文:Learning Cocos2d-x for WP8(2)——深入刨析Hello World

cocos2d-x框架

在兄弟篇Learning Cocos2d-x for XNA1——小窥cocos2d-x框架中已有详细介绍cocos2d-x框架下的基本元素。可自行参考学习,概念的东西基本一样。

HelloWorld

HelloWorld程序虽然简单,但能测试程序是否能正确的运行,同时很能体现一个框架的整体结构。

cocos2d-x中HelloWorld显示主要通过AppDelegate和HelloWorldScene。

在显示HelloWorld程序时,得将图片资源放进Assets文件夹中

AppDelegate

C++程序中最主要的是头文件(.h)和源文件(.cpp)。

AppDelegate.h

AppDelegate.h头文件中,定义类(Class)AppDelegate继承CCApplication。在AppDelegate中声明相关方法。

AppDelegate.cpp

AppDelegate.cpp源文件中包含AppDelegate.h头文件,在其中实现头文件中声明的方法。

其中在方法applicationDidFinishLaunching中,我们找到了熟悉的CCDirector(导演),当中pScene为起始页面。很显然HelloWorld类,需要在AppDelegate.cpp中引用Classes文件夹中的HelloWorldScene.h头文件(fei话,呵呵)。

HelloWorldScene

scene()方法

主要负责将Layer层通过addChild到Scene层

init()方法

主要将Layer层以下层内容添加到Layer层。

HelloWorld::init()

  1. bool HelloWorld::init()
  2. {
  3. bool bRet = false;
  4.  
  5. do
  6. {
  7. if ( !CCLayer::init() )
  8. {
  9. break;
  10. }
  11. this->setIsTouchEnabled(true);
  12.  
  13. CCSize screenSize = CCDirector::sharedDirector()->getWinSize();
  14.  
  15. // 1. Add a menu item with "X" image, which is clicked to quit the program.
  16.  
  17. // Create a "close" menu item with close icon, it's an auto release object.
  18. CCMenuItemImage *pCloseItem = CCMenuItemImage::itemFromNormalImage(
  19. "CloseNormal.png",
  20. "CloseSelected.png",
  21. this,
  22. menu_selector(HelloWorld::menuCloseCallback));
  23. CC_BREAK_IF(! pCloseItem);
  24.  
  25. // Place the menu item bottom-right conner.
  26. pCloseItem->setPosition(ccp(CCDirector::sharedDirector()->getWinSize().width - , ));
  27.  
  28. // Create a menu with the "close" menu item, it's an auto release object.
  29. CCMenu* pMenu = CCMenu::menuWithItems(pCloseItem, NULL);
  30. pMenu->setPosition(CCPointZero);
  31. CC_BREAK_IF(! pMenu);
  32.  
  33. // Add the menu to HelloWorld layer as a child layer.
  34. this->addChild(pMenu, );
  35.  
  36. // 2. Add a label shows "Hello World".
  37.  
  38. // Create a label and initialize with string "Hello World".
  39. CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello World", "Arial", );
  40. CC_BREAK_IF(! pLabel);
  41.  
  42. // Get window size and place the label upper.
  43. CCSize size = CCDirector::sharedDirector()->getWinSize();
  44. pLabel->setPosition(ccp(size.width / , size.height - ));
  45.  
  46. // Add the label to HelloWorld layer as a child layer.
  47. this->addChild(pLabel, );
  48.  
  49. // 3. Add add a splash screen, show the cocos2d splash image.
  50. CCSprite* pSprite = CCSprite::spriteWithFile("HelloWorld.png");
  51. CC_BREAK_IF(! pSprite);
  52.  
  53. // Place the sprite on the center of the screen
  54. pSprite->setPosition(ccp(size.width/, size.height/));
  55.  
  56. // Add the sprite to HelloWorld layer as a child layer.
  57. this->addChild(pSprite, );
  58.  
  59. bRet = true;
  60. } while ();
  61.  
  62. return bRet;
  63. }

HelloWorldScene.h完整代码

HelloWorldScene.h

  1. #ifndef __HELLOWORLD_SCENE_H__
  2. #define __HELLOWORLD_SCENE_H__
  3.  
  4. #include "cocos2d.h"
  5. #include "SimpleAudioEngine.h"
  6.  
  7. class HelloWorld : public cocos2d::CCLayer
  8. {
  9. public:
  10. HelloWorld();
  11. ~HelloWorld();
  12.  
  13. // Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone
  14. virtual bool init();
  15.  
  16. // there's no 'id' in cpp, so we recommand to return the exactly class pointer
  17. static cocos2d::CCScene* scene();
  18.  
  19. // a selector callback
  20. void menuCloseCallback(CCObject* pSender);
  21.  
  22. // implement the "static node()" method manually
  23. LAYER_NODE_FUNC(HelloWorld);
  24. };
  25.  
  26. #endif // __HELLOWORLD_SCENE_H__

HelloWorldScene.cpp完整代码

HelloWorldScene.cpp

  1. #include "pch.h"
  2. #include "HelloWorldScene.h"
  3.  
  4. using namespace cocos2d;
  5.  
  6. HelloWorld::~HelloWorld()
  7. {
  8. // cpp don't need to call super dealloc
  9. // virtual destructor will do this
  10. }
  11.  
  12. HelloWorld::HelloWorld()
  13. {
  14. }
  15.  
  16. CCScene* HelloWorld::scene()
  17. {
  18. CCScene * scene = NULL;
  19. do
  20. {
  21. // 'scene' is an autorelease object
  22. scene = CCScene::node();
  23. CC_BREAK_IF(! scene);
  24.  
  25. // 'layer' is an autorelease object
  26. HelloWorld *layer = HelloWorld::node();
  27. CC_BREAK_IF(! layer);
  28.  
  29. // add layer as a child to scene
  30. scene->addChild(layer);
  31. } while ();
  32.  
  33. // return the scene
  34. return scene;
  35. }
  36.  
  37. // on "init" you need to initialize your instance
  38. bool HelloWorld::init()
  39. {
  40. bool bRet = false;
  41.  
  42. do
  43. {
  44. if ( !CCLayer::init() )
  45. {
  46. break;
  47. }
  48. this->setIsTouchEnabled(true);
  49.  
  50. CCSize screenSize = CCDirector::sharedDirector()->getWinSize();
  51.  
  52. // 1. Add a menu item with "X" image, which is clicked to quit the program.
  53.  
  54. // Create a "close" menu item with close icon, it's an auto release object.
  55. CCMenuItemImage *pCloseItem = CCMenuItemImage::itemFromNormalImage(
  56. "CloseNormal.png",
  57. "CloseSelected.png",
  58. this,
  59. menu_selector(HelloWorld::menuCloseCallback));
  60. CC_BREAK_IF(! pCloseItem);
  61.  
  62. // Place the menu item bottom-right conner.
  63. pCloseItem->setPosition(ccp(CCDirector::sharedDirector()->getWinSize().width - , ));
  64.  
  65. // Create a menu with the "close" menu item, it's an auto release object.
  66. CCMenu* pMenu = CCMenu::menuWithItems(pCloseItem, NULL);
  67. pMenu->setPosition(CCPointZero);
  68. CC_BREAK_IF(! pMenu);
  69.  
  70. // Add the menu to HelloWorld layer as a child layer.
  71. this->addChild(pMenu, );
  72.  
  73. // 2. Add a label shows "Hello World".
  74.  
  75. // Create a label and initialize with string "Hello World".
  76. CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello World", "Arial", );
  77. CC_BREAK_IF(! pLabel);
  78.  
  79. // Get window size and place the label upper.
  80. CCSize size = CCDirector::sharedDirector()->getWinSize();
  81. pLabel->setPosition(ccp(size.width / , size.height - ));
  82.  
  83. // Add the label to HelloWorld layer as a child layer.
  84. this->addChild(pLabel, );
  85.  
  86. // 3. Add add a splash screen, show the cocos2d splash image.
  87. CCSprite* pSprite = CCSprite::spriteWithFile("HelloWorld.png");
  88. CC_BREAK_IF(! pSprite);
  89.  
  90. // Place the sprite on the center of the screen
  91. pSprite->setPosition(ccp(size.width/, size.height/));
  92.  
  93. // Add the sprite to HelloWorld layer as a child layer.
  94. this->addChild(pSprite, );
  95.  
  96. bRet = true;
  97. } while ();
  98.  
  99. return bRet;
  100. }
  101.  
  102. void HelloWorld::menuCloseCallback(CCObject* pSender)
  103. {
  104. // "close" menu item clicked
  105. CCDirector::sharedDirector()->end();
  106. }

版本cocos2dx-0.13.0-wp8-0.8似乎不怎么给力,Lumia820真机上测试不通过,模拟器没任何问题。不过快有新版本出来了吧,现在凑合学习学习。

著作权声明:本文由http://www.cnblogs.com/suguoqiang 原创,欢迎转载分享。请尊重作者劳动,转载时保留该声明和作者博客链接,谢谢!

Learning Cocos2d-x for WP8(2)——深入刨析Hello World的更多相关文章

  1. Orchard 刨析:Logging

    最近事情比较多,有预研的,有目前正在研发的,都是很需要时间的工作,所以导致这周只写了两篇Orchard系列的文章,这边不能保证后期会很频繁的更新该系列,但我会写完这整个系列,包括后面会把正在研发的东西 ...

  2. Orchard 刨析:Caching

    关于Orchard中的Caching组件已经有一些文章做了介绍,为了系列的完整性会再次对Caching组件进行一次介绍. 缓存的使用 在Orchard看到如下一段代码: 可以看到使用缓存的方法Get而 ...

  3. Orchard 刨析:导航篇

    之前承诺过针对Orchard Framework写一个系列.本应该在昨天写下这篇导航篇,不过昨天比较累偷懒的去玩了两盘单机游戏哈哈.下面进入正题. 写在前面 面向读者 之前和本文一再以Orchard ...

  4. MapReduce源码刨析

    MapReduce编程刨析: Map map函数是对一些独立元素组成的概念列表(如单词计数中每行数据形成的列表)的每一个元素进行指定的操作(如把每行数据拆分成不同单词,并把每个单词计数为1),用户可以 ...

  5. Apollo 刨析:Localization

    九月 30 2014 11:27 上午     admin 0 Comments 今天我们来看一看Apollo中的Localization Component. 本地化在Apollo中的使用 像这样的 ...

  6. 30s源码刨析系列之函数篇

    前言 由浅入深.逐个击破 30SecondsOfCode 中函数系列所有源码片段,带你领略源码之美. 本系列是对名库 30SecondsOfCode 的深入刨析. 本篇是其中的函数篇,可以在极短的时间 ...

  7. Golang 性能测试 (3) 跟踪刨析 golang trace

    简介 对于绝大部分服务,跟踪刨析是用不到的.但是如果遇到了下面问题,可以不妨一试: 怀疑哪个协程慢了 系统调用有问题 协程调度问题 (chan 交互.互斥锁.信号量等) 怀疑是 gc (Garbage ...

  8. 温故知新-多线程-深入刨析volatile关键词

    文章目录 摘要 volatile的作用 volatile如何解决线程可见? CPU Cache CPU Cache & 主内存 缓存一致性协议 volatile如何解决指令重排序? volat ...

  9. 深入刨析tomcat 之---第8篇 how tomcat works 第11章 11.9应用程序,自定义Filter,及注册

    writed by 张艳涛, 标签:全网独一份, 自定义一个Filter 起因:在学习深入刨析tomcat的学习中,第11章,说了调用过滤链的原理,但没有给出实例来,自己经过分析,给出来了一个Filt ...

随机推荐

  1. Swift - 发送消息(文本,图片,文件等)给微信好友或分享到朋友圈

    通过调用微信提供的API接口,我们可以很方便的在应用中发送消息给微信好友,或者分享到朋友圈.在微信开发平台(https://open.weixin.qq.com)里,提供了详细的说明文档和样例.但由于 ...

  2. (Relax 数论1.6)POJ 1061 青蛙的约会(扩展的欧几里得公式)

    /* * POJ_1061.cpp * * Created on: 2013年11月19日 * Author: Administrator */ #include <iostream> # ...

  3. 计算机内存碎片(中)——外部碎片化(内存 & 文件系统 & 数据库系统通杀)

    本文原创为freas_1990,转载请标明出处:http://blog.csdn.net/freas_1990/article/details/17252221 外部碎片化 当计算机内存被划分成很细碎 ...

  4. Lucene.Net 2.3.1开发介绍 —— 三、索引(三)

    原文:Lucene.Net 2.3.1开发介绍 -- 三.索引(三) 3.Field配置所产生的效果 索引数据,简单的代码,只要两个方法就搞定了,而在索引过程中用到的一些类里最简单,作用也不小的就是F ...

  5. c++ :: 域操作符

    c++ :: 域操作符 作用域:变量在程序中的起作用范围简单分为:全局作用域,局部作用域,语句作用域作用域优先级:范围越小优先级越高作用域运算符:"::" 如果希望在局部变量的作用 ...

  6. IOS 后台执行 播放音乐

    iOS 4開始引入的multitask.我们能够实现像ipod程序那样在后台播放音频了. 假设音频操作是用苹果官方的AVFoundation.framework实现.像用AvAudioPlayer.A ...

  7. Swift - 使用UIScrollView实现页面滚动切换

    UIScrollView提供了以页面为单位滚动显示各个子页面内容的功能,每次手指滑动后会滚动一屏的内容.   要实现该功能,需要如下操作: 1,将UIScrollView的pagingEnabled属 ...

  8. js弹出对话框,遮罩效果,

    刚刚来到实习单位,我跟着廖哥做项目.然后他分配给我一个小小的任务,实现起来总的效果如下: 然后,但我们单击显示数目这个链接的时候,就会弹出一个又遮罩效果的对话框,如下图: 当我们在对话框中再点击里面的 ...

  9. 如何利用Win32API取得另一支程式中的ListView內的所有值(RegisterHotKey,ReadProcessMemory,WindowFromPoint和VirtualAllocEx)

    http://blog.csdn.net/shuaihj/article/details/6129506

  10. 利用PHP SOAP扩展实现简单Web Services

    原文:利用PHP SOAP扩展实现简单Web Services WebServices能干什么? WebServices 可以将应用程序转换为网络应用程序. 通过使用 WebServices,您的应用 ...