Cocos2d-X开发一个简单的小游戏

前端之家收集整理的这篇文章主要介绍了Cocos2d-X开发一个简单的小游戏前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

学了这么久Cocos2d-X,今天终于可以做出一个简单的小游戏了,游戏非常简单,通过菜单项控制精灵运动

在做游戏前,先学一个新概念

调度器(scheduler):

Cocos2d-x调度器为游戏提供定时事件和定时调用服务。所有Node对象都知道如何调度和取消调度事件,使用调度器有几个好处:

  1. 每当Node不再可见或已从场景中移除时,调度器会停止。
  2. Cocos2d-x暂停时,调度器也会停止。当Cocos2d-x重新开始时,调度器也会自动继续启动。
  3. Cocos2d-x封装了一个供各种不同平台使用的调度器,使用此调度器你不用关心和跟踪你所设定的定时对象的销毁和停止,以及崩溃的风险。


使用调度器时用到的一些函数

// 让帧循环调用this->update(float dt)函数
// scheduleUpdate();

// 让帧循环去调用制定的函数,时间还是1/60秒
// schedule(schedule_selector(T19Update::MyScheduleFunc));

// 定时器,每隔2秒调用T19Update::MyScheduleFunc函数
// schedule(schedule_selector(T19Update::MyScheduleFunc),2.0f);

// 有限次数的定时器,当次数定义得很大时,也认为是无限的,实际次数是制定参数的+1
schedule(schedule_selector(T19Update::MyScheduleFunc),1.0f,3,2.0f);

// 只调度一次的定时器
// scheduleOnce(schedule_selector(T19Update::MyScheduleFunc),5.0f);

// 停止一个以参数为回调函数的定时器
unschedule(schedule_selector(T19Update::MyScheduleFunc));

// 停止update调度
unscheduleUpdate();

// 停止所有的调度
unscheduleAllSelectors();


熟悉了调度器的概念后就开始我们今天的重头戏,一个简单的游戏

首先在工程目录下的Resource文件添加一张小球的图片


然后定义一个Update类

在Update.h类中添加下面的代码

  1. #ifndef _Update_H_
  2. #define _Update_H_
  3.  
  4. #include "cocos2d.h"
  5. USING_NS_CC;
  6.  
  7. class Update : public CCLayer
  8. {
  9. public:
  10. static CCScene* scene();
  11.  
  12. CREATE_FUNC(Update);
  13.  
  14. bool init();
  15.  
  16. void update(float dt);
  17.  
  18. CCSprite* _sprite;
  19.  
  20. void Handle(CCObject* sender);
  21.  
  22. //表示方向
  23. int _direction;
  24.  
  25. //窗口的大小
  26. CCSize winSize;
  27. };
  28.  
  29. #endif
  30.  

在Update.cpp中添加下面的代码

  1. #include "Update.h"
  2.  
  3. CCScene* Update::scene()
  4. {
  5. CCScene* s = CCScene::create();
  6.  
  7. Update* layer = Update::create();
  8.  
  9. s->addChild(layer);
  10.  
  11. return s;
  12. }
  13.  
  14. bool Update::init()
  15. {
  16. //初始化父类
  17. CCLayer::init();
  18.  
  19. //得到窗口的大小
  20. winSize = CCDirector::sharedDirector()->getWinSize();
  21.  
  22. //设置坐标
  23. CCPoint center = ccp(winSize.width / 2,winSize.height / 2);
  24.  
  25. //让帧循环调用this->update(float dt)函数
  26. scheduleUpdate();
  27.  
  28. //创建精灵
  29. _sprite = CCSprite::create("green_edit.png");
  30. addChild(_sprite);
  31.  
  32. //设置精灵的位置
  33. _sprite->setPosition(center);
  34.  
  35. //创建菜单
  36. CCMenuItemFont* up = CCMenuItemFont::create("up",this,menu_selector(Update::Handle));
  37. CCMenuItemFont* down = CCMenuItemFont::create("down",menu_selector(Update::Handle));
  38. CCMenuItemFont* left = CCMenuItemFont::create("left",menu_selector(Update::Handle));
  39. CCMenuItemFont* right = CCMenuItemFont::create("right",menu_selector(Update::Handle));
  40. CCMenuItemFont* Stop = CCMenuItemFont::create("Stop",menu_selector(Update::Handle));
  41.  
  42. //创建菜单
  43. CCMenu* menu = CCMenu::create(up,down,left,right,Stop,NULL);
  44. addChild(menu);
  45.  
  46. //对齐菜单
  47. menu->alignItemsVertically();
  48.  
  49. //设置菜单项的ID
  50. up->setTag(1);
  51. down->setTag(2);
  52. left->setTag(3);
  53. right->setTag(4);
  54. Stop->setTag(0);
  55.  
  56. //标记方向
  57. _direction = -1;
  58.  
  59. return true;
  60. }
  61.  
  62. void Update::Handle(CCObject* sender)
  63. {
  64. CCNode* node = (CCNode*)sender;
  65.  
  66. //得到菜单项的ID,ID对应的是精灵移动的方向
  67. _direction = node->getTag();
  68. }
  69.  
  70. void Update::update(float dt)
  71. {
  72. // _direction == 1表示精灵向上移动
  73. if(1 == _direction)
  74. {
  75. //精灵向上移动
  76. //50表示一秒钟移动50个像素
  77. _sprite->setPositionY(_sprite->getPositionY() + dt * 100);
  78. }
  79.  
  80. // _direction == 2表示精灵向下移动
  81. if(2 == _direction)
  82. {
  83. //精灵向下移动
  84. //50表示一秒钟移动50个像素
  85. _sprite->setPositionY(_sprite->getPositionY() - dt * 100);
  86. }
  87.  
  88. // _direction == 3表示精灵向左移动
  89. if(3 == _direction)
  90. {
  91. //精灵向左移动
  92. //50表示一秒钟移动50个像素
  93. _sprite->setPositionX(_sprite->getPositionX() - dt * 100);
  94. }
  95.  
  96. // _direction == 4表示精灵向右移动
  97. if(4 == _direction)
  98. {
  99. //精灵向右移动
  100. //50表示一秒钟移动50个像素
  101. _sprite->setPositionX(_sprite->getPositionX() + dt * 100);
  102. }
  103.  
  104. // _direction == 4表示精灵停止移动
  105. if(0 == _direction)
  106. {
  107. }
  108. }

执行结果:





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