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

Cocos2d-x加速度计实例:运动的小球

时间:2014-07-28 16:56:35      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   strong   文件   io   

下面我们通过一个实例介绍一下如果通过层加速度计事件实现访问加速度计。该实例场景如下图所示,场景中有一个小球,当我们把移动设备水平放置,屏幕向上,然后左右晃动移动设备来改变小球的位置。

bubuko.com,布布扣 

下面我们再看看具体的程序代码,首先看一下HelloWorldScene.h文件,它的代码如下:

[html] view plaincopy

  1. #ifndef __HELLOWORLD_SCENE_H__  

  2. #define __HELLOWORLD_SCENE_H__  

  3.    

  4. #include "cocos2d.h"  

  5.    

  6. #define kBall_Tag                 100                                                                                                          ①  

  7. #define SPEED                      30.0                                                                                                        ②  

  8.    

  9. class HelloWorld : public cocos2d::Layer  

  10. {  

  11. public:  

  12.    static cocos2d::Scene* createScene();  

  13.    virtual bool init();            

  14.          virtual void onEnter();  

  15.          virtual void onExit();  

  16.      

  17.          virtual voidonAcceleration(cocos2d::Acceleration* acc, cocos2d::Event *unused_event);         ③  

  18.    CREATE_FUNC(HelloWorld);  

  19. };  

  20.    

  21. #endif // __HELLOWORLD_SCENE_H__  


上述代码第①行定义宏kBall_Tag,它是小球精灵的标签Tag数值。第②行定义宏SPEED,它表示小球运动的速度。第③行代码声明了onAcceleration函数,。

HelloWorldScene.cpp文件,它的主要代码如下:

[html] view plaincopy

  1. bool HelloWorld::init()  

  2. {  

  3.     if( !Layer::init() )  

  4.     {  

  5.          returnfalse;  

  6.     }  

  7.    

  8.     SizevisibleSize = Director::getInstance()->getVisibleSize();  

  9.     Pointorigin = Director::getInstance()->getVisibleOrigin();  

  10.    

  11.     //贴图的纹理图片宽高必须是2的n次幂,128x128  

  12.     autobg = Sprite::create("BackgroundTile.png",  

  13.                                        Rect(0,0, visibleSize.width, visibleSize.height));  

  14.     //贴图的纹理参数,水平重复平铺,垂直重复平铺  

  15.     Texture2D::TexParamstp = {GL_LINEAR, GL_LINEAR, GL_REPEAT, GL_REPEAT};  

  16.     bg->getTexture()->setTexParameters(tp);  

  17.     bg->setPosition(origin+ Point(visibleSize.width/2, visibleSize.height/2));  

  18.     addChild(bg,0);  

  19.    

  20.     autoball = Sprite::create("Ball.png");  

  21.     ball->setPosition(origin+Point(visibleSize.width/2,visibleSize.height/2));  

  22.     addChild(ball,10, kBall_Tag);  

  23.    

  24.     returntrue;  

  25. }  

  26.    

  27. void HelloWorld::onEnter()  

  28. {  

  29.     Layer::onEnter();  

  30.     log("HelloWorldonEnter");  

  31.    

  32.     setAccelerometerEnabled(true);                                                                                                      ①  

  33. }  

  34.    

  35. void HelloWorld::onAcceleration(Acceleration*acc, Event *unused_event)  

  36. {  

  37.    log("{x = %f, y = %f}", acc->x,acc->y);  

  38.    Size visibleSize = Director::getInstance()->getVisibleSize();  

  39.    Sprite* ball = (Sprite*)this->getChildByTag(kBall_Tag);                                                  ②  

  40.    Size s = ball->getContentSize();                                                                                                    ③  

  41.    Point p0 = ball->getPosition();                                                                                                      ④  

  42.    

  43.    float p1x =  p0.x + acc->x *SPEED ;                                                                                  ⑤  

  44.    if ((p1x - s.width/2) <0) {                                                                                                       ⑥  

  45.        p1x = s.width/2;                                                                                                               ⑦  

  46.    }  

  47.    if ((p1x + s.width / 2) > visibleSize.width) {                                                                                   ⑧  

  48.        p1x = visibleSize.width - s.width / 2;                                                                             ⑨  

  49.    }  

  50.    

  51.    float p1y =  p0.y + acc->y *SPEED ;  

  52.    p1y = p1y < 0 ? -p1y : p1y;  

  53.    if ((p1y - s.height/2) < 0) {  

  54.        p1y = s.height/2;  

  55.    }  

  56.    if ((p1y + s.height/2) > visibleSize.height) {  

  57.        p1y = visibleSize.height - s.height/2;  

  58.    }  

  59.    ball->runAction(Place::create(Point( p1x, p1y)));                                                                       ⑩  

  60. }  

  61.    

  62. void HelloWorld::onExit()  

  63. {  

  64.     Layer::onExit();  

  65.     log("HelloWorldonExit");  

  66. }  


上述代码①行开启加速计设备,这个代码是在HelloWorld::onEnter()函数中,意味着在进入层的时候就开启加速度计设备。

在第②行代码是通过标签属性获得小球精灵对象。第③行代码ball->getContentSize()获得小球尺寸大小。第④行代码ball->getPosition()是获得小球的位置。第⑤行代码是p0.x + acc->x * SPEED是获得小球的x轴方向移动的位置,但是需要考虑左右超出屏幕的情况,第⑥行代码是 (p1x - s.width/2) <0是判断超出左边屏幕,这种情况下我们需要通过第⑦行代码p1x = s.width/2重新设置它的x轴坐标。第⑧行代码(p1x+ s.width / 2) > visibleSize.width是判断超出右边屏幕,这种情况下我们需要通过第⑨行代码p1x = visibleSize.width - s.width / 2重新设置它的x轴坐标。类似的判断y轴也需要,代码就不再解释了。

重新获得小球的坐标位置后,通过第⑩行代码ball->runAction(Place::create(Point( p1x, p1y)))是执行一个动作使小球移动到新的位置。


更多内容请关注Cocos2d-x系列图书《Cocos2d-x实战(卷Ⅰ):C++开发》

本书交流讨论网站:http://www.cocoagame.net

欢迎加入cocos2d-x技术讨论群:257760386、327403678


Cocos2d-x加速度计实例:运动的小球,布布扣,bubuko.com

Cocos2d-x加速度计实例:运动的小球

标签:style   blog   http   color   os   strong   文件   io   

原文地址:http://my.oschina.net/u/1410370/blog/295469

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