本文没你想象的那么,,复杂。事实上就是通过重力感应控制个小球移动而已。

先看头文件:

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

看.cpp

  1. #include "HelloWorldScene.h"
  2. using namespace cocos2d;
  3. #define FIX_POS(_pos, _min, _max) \
  4. if (_pos < _min)        \
  5. _pos = _min;        \
  6. else if (_pos > _max)   \
  7. _pos = _max;        \
  8. HelloWorld::HelloWorld()
  9. : m_fLastTime(0.0)
  10. {
  11. }
  12. HelloWorld::~HelloWorld()
  13. {
  14. m_pBall->release();
  15. }
  16. CCScene* HelloWorld::scene()
  17. {
  18. CCScene * scene = NULL;
  19. do
  20. {
  21. // 'scene' is an autorelease object
  22. scene = CCScene::create();
  23. CC_BREAK_IF(! scene);
  24. // 'layer' is an autorelease object
  25. HelloWorld *layer = HelloWorld::create();
  26. CC_BREAK_IF(! layer);
  27. // add layer as a child to scene
  28. scene->addChild(layer);
  29. } while (0);
  30. // return the scene
  31. return scene;
  32. }
  33. // on "init" you need to initialize your instance
  34. bool HelloWorld::init()
  35. {
  36. bool bRet = false;
  37. do
  38. {
  39. CC_BREAK_IF(! CCLayer::init());
  40. CCMenuItemImage *pCloseItem = CCMenuItemImage::create(
  41. "CloseNormal.png",
  42. "CloseSelected.png",
  43. this,
  44. menu_selector(HelloWorld::menuCloseCallback));
  45. CC_BREAK_IF(! pCloseItem);
  46. // Place the menu item bottom-right conner.
  47. pCloseItem->setPosition(ccp(CCDirector::sharedDirector()->getWinSize().width - 20, 20));
  48. // Create a menu with the "close" menu item, it's an auto release object.
  49. CCMenu* pMenu = CCMenu::create(pCloseItem, NULL);
  50. pMenu->setPosition(CCPointZero);
  51. CC_BREAK_IF(! pMenu);
  52. // Add the menu to HelloWorld layer as a child layer.
  53. this->addChild(pMenu, 1);
  54. //add Accelerometer
  55. CSize size = CCDirector::sharedDirector()->getWinSize();
  56. setAccelerometerEnabled(true);//打开重力感应
  57. m_pBall = CCSprite::create("ball.png");
  58. m_pBall->setPosition(ccp(size.width/2, size.height/2));
  59. addChild(m_pBall);
  60. m_pBall->retain();
  61. bRet = true;
  62. } while (0);
  63. return bRet;
  64. }
  65. <pre name="code" class="cpp">void HelloWorld::menuCloseCallback(CCObject* pSender)
  66. {
  67. // "close" menu item clicked
  68. CCDirector::sharedDirector()->end();
  69. }
  70. void HelloWorld::didAccelerate(CCAcceleration* pAccelerationValue)
  71. {
  72. //     double fNow = pAccelerationValue->timestamp;
  73. //
  74. //     if (m_fLastTime > 0.0)
  75. //     {
  76. //         CCPoint ptNow = convertToUI
  77. //     }
  78. //
  79. //     m_fLastTime = fNow;
  80. CCSize size = CCDirector::sharedDirector()->getWinSize();
  81. CCDirector* pDir = CCDirector::sharedDirector();
  82. /*FIXME: Testing on the Nexus S sometimes m_pBall is NULL */
  83. if ( m_pBall == NULL ) {
  84. return;
  85. }
  86. CCSize ballSize  = m_pBall->getContentSize();
  87. CCPoint ptNow  = m_pBall->getPosition();
  88. CCPoint ptTemp = pDir->convertToUI(ptNow);
  89. //9.8 重力加速度
  90. ptTemp.x += pAccelerationValue->x * 9.81f;
  91. ptTemp.y -= pAccelerationValue->y * 9.81f;
  92. CCPoint ptNext = pDir->convertToGL(ptTemp);
  93. FIX_POS(ptNext.x, (0+ballSize.width / 2.0), (size.width - ballSize.width / 2.0));
  94. FIX_POS(ptNext.y, (0+ballSize.height / 2.0), (size.height - ballSize.height / 2.0));
  95. m_pBall->setPosition(ptNext);
  96. }</pre>
  97. <p></p>
  98. <pre></pre>

cocos2d-x 重力感应的更多相关文章

  1. cocos2dx 3.x(让精灵随着重力感应的方向移动而移动)

    // // GameScene.hpp // HelloWord // // Created by apple on 2017/1/7. // // #ifndef GameScene_hpp #de ...

  2. Cocos2D-X2.2.3学习笔记9(处理重力感应事件,移植到Android加入两次返回退出游戏效果)

    这节我们来学习Cocos2d-x的最后一节.怎样处理重力感应事件.移植到Android后加入再按一次返回键退出游戏等.我这里用的Android.IOS不会也没设备呃 效果图不好弄,由于是要移植到真机上 ...

  3. H5案例分享:html5重力感应事件

    html5重力感应事件 一.手机重力感应图形分析 1.设备围绕z轴的旋转角度为α,α角度的取值范围在[0,360). 设备在初始位置,与地球(XYZ)和身体(XYZ)某个位置对齐. 设备围绕z轴的旋转 ...

  4. 【Android开发学习笔记】【第九课】重力感应

    概念 使用重力感应技术的Android游戏已经屡见不鲜,不知道自己以后会不会用到,所以先研究了一下. 在网上学习了一下,貌似没有api,所以得自己去分析手机处在怎样状态下.注意: 下面提供的demo程 ...

  5. iOS 重力感应 学习1 陀螺仪 水平仪 指南针

    小球可以随着重力感应 四处乱撞. 放大了坐标位移 就可以看见小球动了. 然后规定小球的路径 当滑到中间时候 弹出一张图片 作为提示. 我做了一个小demo 效果不错哦 CMMotionManager ...

  6. 移动终端学习2:触屏原生js事件及重力感应

    如今智能移动设备已经渗透到人们生活的方方面面,用户数量也在不断迅速增长(市场研究机构 eMarketer 在今年初发表的趋势报告中预测,2014年至2018年,中国智能手机用户从总人口的 38.3%增 ...

  7. Android重力感应开发

    http://blog.csdn.net/mad1989/article/details/20848181 一.手机中常用的传感器 在Android2.3 gingerbread系统中,google提 ...

  8. 基于野火M3开发板(STM32F103VET6)的迷宫小球(重力感应控制)游戏开发

    2013-03-03 这是研一上学期<实时嵌入式系统实验>课程的大作业,是利用野火板的资源,加上一个AHRS(Attitude and Heading Reference System,姿 ...

  9. iOS设备的重力感应

    重力感应是每台iOS设备都具备的功能,所以在应用用好重力感应会有意想不到的效果 1.添加CoreMotion框架 2.在需要使用重力感应的类中添加头文件 #import <CoreMotion/ ...

随机推荐

  1. 基于C++11实现线程池的工作原理

    目录 基于C++11实现线程池的工作原理. 简介 线程池的组成 1.线程池管理器 2.工作线程 3.任务接口, 4.任务队列 线程池工作的四种情况. 1.主程序当前没有任务要执行,线程池中的任务队列为 ...

  2. ARC 101E.Ribbons on Tree(容斥 DP 树形背包)

    题目链接 \(Description\) 给定一棵\(n\)个点的树.将这\(n\)个点两两配对,并对每一对点的最短路径染色.求有多少种配对方案使得所有边都至少被染色一次. \(n\leq5000\) ...

  3. Centos 7 安装 Mysql 5.5 5.6 5.7

    环境 [root@node1 ~]# cat /etc/redhat-release CentOS Linux release (Core) [root@node1 ~]# uname -a Linu ...

  4. Git Windows 安装

    环境 Windows版本:Windows 7 旗舰版 处理器:Inte i5 系统类型:64 位操作系统 下载 Git Windows https://github.com/git-for-windo ...

  5. iOS Application Extension

    链接: iOS App Extension入门 iOS10通知及通知拓展Extension使用详解(附Demo) iOS10 通知extension之 Content Extension

  6. php_ssh2操作linux

    <?php /** * Created by PhpStorm. * User: Administrator * Date: 2018/9/15 * Time: 14:11 */ header( ...

  7. sql ,内连接,外连接,自然连接等各种连接

    1.内联接(典型的联接运算,使用像 = 或 <> 之类的比较运算符).包括相等联接和自然联接. 内联接使用比较运算符根据每个表共有的列的值匹配两个表中的行.例如,检索 students和c ...

  8. Struts2漏洞拉响网站安全红色警报以及把Struts2更新为最新版本Struts2.3.15.1步骤

    360网站安全检测平台今日发布红色警报称,广泛应用在国内大型网站系统的Struts2框架正在遭到黑客猛烈攻击.利用Struts2“命令执行漏洞”,黑客可轻易获得网站服务器ROOT权限.执行任意命令,从 ...

  9. Morris图表使用小记

    挺好用的,碰到几个问题,有的是瞎试解决了的: 1.我想折线图能够响应单击事件,即点击某个节点后,就能加载进一步的信息,帮助没找到,参照另外一个地方的写法,居然支持事件 Morris.Line({ el ...

  10. Android中Bundle和Intent的区别

    Bundle的作用,以及和Intent的区别: 一.Bundle: A mapping from String values to various Parcelable types 键值对的集合 类继 ...