码迷,mamicode.com
首页 > 其他好文 > 详细

Cocos2d-x3.0游戏实例之《别救我》第六篇——从代码中获取UI控件

时间:2014-05-07 12:20:11      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:cocos2d-x3.0   cocostudio   游戏开发   实例   

 

这篇的内容很简单,获取UI控件,然后使用它。

 

还记得我们在UI编辑器中给三个按钮分别命名了吧?

现在要用上了。

 

笨木头花心贡献,啥?花心?不呢,是用心~

转载请注明,原文地址: http://www.benmutou.com/blog/archives/918

文章来源:笨木头与游戏开发

 

根据名字查找控件

首先给TollgateScene再include一些头文件,不然等会编译又报错了:

  1. #include "editor-support/cocostudio/CCSGUIReader.h"
  2. #include "cocostudio/CocoStudio.h"
  3. #include "ui/CocosGUI.h"
  4. using namespace cocos2d::ui;
  5. using namespace cocostudio;

 

上面就是比较完整的使用UI所需要用到的头文件了。

 

然后,获取UI控件的方法如下,继续修改createOprUI函数:

  1. void TollgateScene::createOprUI()
  2. {
  3.     auto UI = cocostudio::GUIReader::getInstance()->widgetFromJsonFile("OprUI_1.ExportJson");
  4.     this->addChild(UI);
  5.  
  6.     /* 获取按钮对象 */
  7.     Button* rightBtn = (Button*)Helper::seekWidgetByName(UI, "rightBtn");
  8.     Button* quickMoveBtn = (Button*)Helper::seekWidgetByName(UI, "quickMoveBtn");
  9.     Button* leftBtn = (Button*)Helper::seekWidgetByName(UI, "leftBtn");
  10. }

Helper::seekWidgetByName函数会从UI里面找控件,一层层的找,父控件找不到,就找子控件,如此递归,最后找的名字相符的控件,返回这个控件对象。

 

很简单,不多解释喇~

 

添加按钮回调事件

OK,最后一步了,现在按钮摆在那里什么都做不了,我们给按钮添加回调事件~

 

先给TollgateScene添加三个函数声明:

  1.     void moveToLeft(Ref* sender, TouchEventType type);
  2.     void moveToRight(Ref* sender, TouchEventType type);
  3.     void quickMove(Ref* sender, TouchEventType type);

这是Button点击事件回调时所需要的函数格式。

 

然后,继续修改createOprUI函数:

  1. void TollgateScene::createOprUI()
  2. {
  3.     auto UI = cocostudio::GUIReader::getInstance()->widgetFromJsonFile("OprUI_1.ExportJson");
  4.     this->addChild(UI);
  5.  
  6.     /* 获取按钮对象 */
  7.     Button* rightBtn = (Button*)Helper::seekWidgetByName(UI, "rightBtn");
  8.     Button* quickMoveBtn = (Button*)Helper::seekWidgetByName(UI, "quickMoveBtn");
  9.     Button* leftBtn = (Button*)Helper::seekWidgetByName(UI, "leftBtn");
  10.  
  11.     /* 添加按钮回调事件 */
  12.     leftBtn->addTouchEventListener(this, toucheventselector(TollgateScene::moveToLeft));
  13.     rightBtn->addTouchEventListener(this, toucheventselector(TollgateScene::moveToRight));
  14.     quickMoveBtn->addTouchEventListener(this, toucheventselector(TollgateScene::moveToRight));
  15. }

 

利用addTouchEventListener函数就可以绑定按钮的回调事件了~

 

最后了,看看三个回调函数的实现:

  1. void TollgateScene::moveToLeft(Ref* sender, TouchEventType type)
  2. {
  3.     switch (type)
  4.     {
  5.     case TOUCH_EVENT_ENDED:
  6.         m_player->moveToLeft();
  7.         break;
  8.  
  9.     }
  10. }
  11.  
  12. void TollgateScene::moveToRight(Ref* sender, TouchEventType type)
  13. {
  14.     switch (type)
  15.     {
  16.     case TOUCH_EVENT_ENDED:
  17.         m_player->moveToRight();
  18.         break;
  19.  
  20.     }
  21. }
  22.  
  23. void TollgateScene::quickMove(Ref* sender, TouchEventType type)
  24. {
  25.     switch (type)
  26.     {
  27.     case TOUCH_EVENT_ENDED:
  28.         m_player->quickMove();
  29.         break;
  30.  
  31.     }
  32. }

是不是感觉有点小复杂?

应该说,有点小麻烦,因为按钮事件绑定的时候,是没有区分“按下”、“移动”、“松开”的,所以我们要自己判断一下,TOUCH_EVENT_ENDED就是按钮点击,然后松开的时候的事件。

如果大家觉得麻烦,可以自己改源码,添加一些函数,在绑定按钮事件的时候,可以指定绑定哪种事件。以及可以使用std::function来作为参数,这样很方便,当然,跑题了。为了避免大家混乱,这里就不介绍了。

 

运行测试

OK,现在大家运行游戏,然后点击这三个操作按钮,看看主角是不是能左右移动以及放屁(向下冲)吧~

 

 

下一篇,添加碰撞检测,让主角碰到墙壁之后,进行加血。

没错,就是加血,不是扣血~因为《别救我》胜利的条件是血量为0,碰到墙是要惩罚的~

惩罚的方式就是加血~

 

 

Cocos2d-x3.0游戏实例之《别救我》第六篇——从代码中获取UI控件,布布扣,bubuko.com

Cocos2d-x3.0游戏实例之《别救我》第六篇——从代码中获取UI控件

标签:cocos2d-x3.0   cocostudio   游戏开发   实例   

原文地址:http://blog.csdn.net/musicvs/article/details/25186607

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!