Cocos2d-x_Box2D刚体自定义形状

前端之家收集整理的这篇文章主要介绍了Cocos2d-x_Box2D刚体自定义形状前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. #ifndef __HELLOWORLD_SCENE_H__
  2. #define __HELLOWORLD_SCENE_H__
  3.  
  4. #include "cocos2d.h"
  5. #include "cocos-ext.h"
  6. #include "Box2D/Box2D.h"
  7.  
  8.  
  9. USING_NS_CC;
  10. USING_NS_CC_EXT;
  11.  
  12. using namespace std;
  13.  
  14. class HelloWorld : public cocos2d::CCLayer,public b2ContactListener
  15. {
  16. public:
  17. HelloWorld();
  18. ~HelloWorld();
  19.  
  20. virtual bool init();
  21.  
  22. static cocos2d::CCScene* scene();
  23.  
  24. // 重写生命周期函数
  25. virtual void onEnter();
  26. virtual void onEnterTransitionDidFinish();
  27. virtual void onExit();
  28.  
  29. // 重写CCTargetTouchDelegate
  30. virtual bool ccTouchBegan(CCTouch *pTouch,CCEvent *pEvent);
  31. virtual void ccTouchEnded(CCTouch *pTouch,CCEvent *pEvent);
  32. virtual void ccTouchMoved(CCTouch *pTouch,CCEvent *pEvent);
  33. virtual void ccTouchCancelled(CCTouch *pTouch,CCEvent *pEvent);
  34.  
  35. // 重写update回调函数
  36. virtual void update(float delta);
  37.  
  38. // 重写Bos2D监听函数
  39. virtual void BeginContact(b2Contact* contact);
  40.  
  41. CREATE_FUNC(HelloWorld);
  42. private:
  43. b2World *world;
  44. b2Body* groundBody;
  45.  
  46. private:
  47. void initPhysics();
  48. void addNewSpriteAtPosition(CCPoint &pt);
  49. };
  50.  
  51. #endif // __HELLOWORLD_SCENE_H__


  1. #include "HelloWorldScene.h"
  2. #include "Layer.h"
  3.  
  4. #define PTM_RATIO 30
  5.  
  6. USING_NS_CC;
  7.  
  8. HelloWorld::HelloWorld()
  9. {
  10. }
  11.  
  12. HelloWorld::~HelloWorld()
  13. {
  14. CC_SAFE_DELETE(world);
  15. }
  16.  
  17. CCScene* HelloWorld::scene()
  18. {
  19. CCScene *scene = CCScene::create();
  20. HelloWorld *layer = HelloWorld::create();
  21. scene->addChild(layer);
  22.  
  23. return scene;
  24. }
  25.  
  26. bool HelloWorld::init()
  27. {
  28. if (!CCLayer::init())
  29. {
  30. return false;
  31. }
  32.  
  33. CCSize winSize = CCDirector::sharedDirector()->getWinSize();
  34.  
  35. CCSprite *sprite = CCSprite::create("HelloWorld.png");
  36. sprite->setPosition(ccp(winSize.width/2.0,winSize.height/2.0));
  37. this->addChild(sprite);
  38.  
  39. // 初始化物理引擎
  40. this->initPhysics();
  41.  
  42. //开始游戏循环
  43. this->scheduleUpdate();
  44.  
  45. return true;
  46. }
  47.  
  48. void HelloWorld::initPhysics()
  49. {
  50. CCSize winSize = CCDirector::sharedDirector()->getVisibleSize();
  51.  
  52. //重力参数
  53. b2Vec2 gravity;
  54. gravity.Set(0.0f,-10.0f);
  55. //创建世界
  56. world = new b2World(gravity);
  57. // 允许物体是否休眠
  58. world->SetAllowSleeping(true);
  59. // 开启连续物理测试
  60. world->SetContinuousPhysics(true);
  61.  
  62. // 设置物理碰撞的监听代理
  63. world->SetContactListener(this);
  64.  
  65. //地面物体定义
  66. b2BodyDef groundBodyDef;
  67. // 左下角
  68. groundBodyDef.position.Set(winSize.width / 2.0 / PTM_RATIO,winSize.height / 2.0 / PTM_RATIO);
  69. // 设置为静态物体
  70. groundBodyDef.type = b2_staticBody;
  71.  
  72. // 创建地面物体
  73. groundBody = world->CreateBody(&groundBodyDef);
  74.  
  75. // 定义一个有边的形状
  76. b2PolygonShape groundBox;
  77.  
  78. // 底部
  79. groundBox.SetAsBox(winSize.width / 2 / PTM_RATIO,b2Vec2(0,-winSize.height / 2 / PTM_RATIO),0);
  80. //使用夹具固定形状到物体上
  81. groundBody->CreateFixture(&groundBox,0);
  82.  
  83. // 顶部
  84. groundBox.SetAsBox(winSize.width / 2 / PTM_RATIO,winSize.height / 2 / PTM_RATIO),0);
  85. groundBody->CreateFixture(&groundBox,0);
  86.  
  87. // 左边
  88. groundBox.SetAsBox(0,winSize.height / 2 / PTM_RATIO,b2Vec2(-winSize.width / 2 / PTM_RATIO,0),0);
  89.  
  90. // 右边
  91. groundBox.SetAsBox(0,b2Vec2(winSize.width / 2 / PTM_RATIO,0);
  92. }
  93.  
  94. void HelloWorld::addNewSpriteAtPosition(CCPoint &pt)
  95. {
  96. CCLOG("Add sprite x:%0.2f y:%02.f",pt.x,pt.y);
  97.  
  98. //创建物理引擎精灵对象
  99. CCSprite *sprite = CCSprite::create("BoxA.png");
  100. sprite->setPosition(pt);
  101. this->addChild(sprite);
  102.  
  103. float sprWidth = sprite->getContentSize().width;
  104. float spriHeight = sprite->getContentSize().height;
  105.  
  106. //物体定义
  107. b2BodyDef bodyDef;
  108. bodyDef.type = b2_dynamicBody;
  109. bodyDef.position.Set(pt.x / PTM_RATIO,pt.y / PTM_RATIO);
  110. bodyDef.userData = sprite;
  111.  
  112. b2Body *body = world->CreateBody(&bodyDef);
  113.  
  114. // 定义2米见方的盒子形状
  115. b2PolygonShape dynamicBox;
  116. // 注意这里的宽度和高度都是精灵的一半再除以PTM_RATIO
  117. dynamicBox.SetAsBox(sprWidth / 2 / PTM_RATIO,spriHeight / 2 / PTM_RATIO);
  118.  
  119. // 夹具定义
  120. b2FixtureDef fixtureDef;
  121. //设置夹具的形状
  122. fixtureDef.shape = &dynamicBox;
  123. //设置密度
  124. fixtureDef.density = 1.0f;
  125. //设置摩擦系数
  126. fixtureDef.friction = 0.3f;
  127. //设置弹力系数
  128. fixtureDef.restitution = 0.5f;
  129. //使用夹具固定形状到物体上
  130. body->CreateFixture(&fixtureDef);
  131. }
  132.  
  133. void HelloWorld::update(float delta)
  134. {
  135. world->Step(delta,8,3);
  136.  
  137. for (b2Body* b = world->GetBodyList(); b; b = b->GetNext())
  138. {
  139. if (b->GetType() == b2_dynamicBody)
  140. {
  141. if (b->GetUserData() != NULL)
  142. {
  143. CCSprite* sprite = (CCSprite*)b->GetUserData();
  144. sprite->setPosition(ccp(b->GetPosition().x * PTM_RATIO,b->GetPosition().y * PTM_RATIO));
  145. sprite->setRotation(-1 * CC_RADIANS_TO_DEGREES(b->GetAngle()));
  146. }
  147. }
  148. }
  149. }
  150.  
  151. void HelloWorld::BeginContact(b2Contact* contact)
  152. {
  153. if (contact->GetFixtureA()->GetBody() == groundBody || contact->GetFixtureB()->GetBody() == groundBody)
  154. {
  155. CCLOG("检测到物理碰撞");
  156. }
  157. }
  158.  
  159. void HelloWorld::onEnter()
  160. {
  161. CCLOG("HelloWorld::onEnter");
  162. CCDirector::sharedDirector()->getTouchDispatcher()->addTargetedDelegate(this,-128,false);
  163. CCLayer::onEnter();
  164. }
  165.  
  166. void HelloWorld::onEnterTransitionDidFinish()
  167. {
  168. CCLOG("HelloWorld::onEnterTransitionDidFinish");
  169. CCLayer::onEnterTransitionDidFinish();
  170. }
  171.  
  172. void HelloWorld::onExit()
  173. {
  174. CCLOG("HelloWorld::onExit");
  175. CCDirector::sharedDirector()->getTouchDispatcher()->removeDelegate(this);
  176. CCLayer::onExit();
  177. }
  178.  
  179. bool HelloWorld::ccTouchBegan(CCTouch *pTouch,CCEvent *pEvent)
  180. {
  181. CCPoint pt = pTouch->getLocation();
  182. this->addNewSpriteAtPosition(pt);
  183. return true;
  184. }
  185.  
  186. void HelloWorld::ccTouchEnded(CCTouch *pTouch,CCEvent *pEvent)
  187. {
  188. }
  189.  
  190. void HelloWorld::ccTouchMoved(CCTouch *pTouch,CCEvent *pEvent)
  191. {
  192. }
  193.  
  194. void HelloWorld::ccTouchCancelled(CCTouch *pTouch,CCEvent *pEvent)
  195. {
  196.  
  197. }

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