1

我正在开发曲棍球游戏,并且正在实施单人游戏模式。我正在尝试在进攻模式下移动“电脑”的球拍(向球移动)。我正在使用 CoCos2d 和 Box2d。我正在使用 MouseJoints 移动桨。问题是桨根本不动!

在 init 方法中调用 tick

[self schedule:@selector(tick:)];

...

  - (void)tick:(ccTime) dt 
 {
  _world->Step(dt, 10, 10);    

  CCSprite *computer_paddle;
  CCSprite *ball;
  b2Body *computer_paddle_b2Body;
  float32 direction;
  b2Vec2 velocity;


  for(b2Body *b = _world->GetBodyList(); b; b=b->GetNext()) {    
   if (b->GetUserData() != NULL) {
    CCSprite *sprite = (CCSprite *)b->GetUserData();      

    if (sprite.tag == 1) { //ball
     ball = sprite;
     static int maxSpeed = 10;
      velocity = b->GetLinearVelocity();
     float32 speed = velocity.Length();
      direction = velocity.y;

     if (speed > maxSpeed) {     
      b->SetLinearDamping(0.5);
     } else if (speed < maxSpeed) {
      b->SetLinearDamping(0.0);
     }

    } 

    if (sprite.tag == 3){ // paddle
     computer_paddle  = sprite;
     computer_paddle_b2Body = b; 


    }


  // update sprite position
  sprite.position = ccp(b->GetPosition().x * PTM_RATIO,b->GetPosition().y * PTM_RATIO);
  sprite.rotation = -1 * CC_RADIANS_TO_DEGREES(b->GetAngle()); 


  } 


 }


 // update the computer paddle in single player moving it towards the ball using MouseJoint


 //move towards the ball
 b2Vec2 b2Position = b2Vec2(ball.position.x/PTM_RATIO,ball.position.y/PTM_RATIO);

 b2MouseJointDef md1;


md1.bodyA = _groundBody;

md1.bodyB = computer_paddle_b2Body;

md1.target = b2Position;

md1.collideConnected = true;

md1.maxForce = 9999.0 * computer_paddle_b2Body->GetMass();

_mouseJoint = (b2MouseJoint *)_world->CreateJoint(&md1);

computer_paddle_b2Body->SetAwake(true);
4

1 回答 1

0

检查是否:

a)身体在睡觉

b)物体是静态物体

如果它正在睡觉并且您没有其他身体,请完全禁用睡眠。否则禁用身体睡眠:body->SetSleepingAllowed(NO)

注意:这是根据Box2D 2.2.1 API Reference的,这在 cocos2d 1.0 中还不是默认的,所以这个功能在你的 Box2D 版本中可能会有所不同。

还要通过查找 b2BodyDef 的类型成员来检查您的身体是否是动态的,如有必要,将其设置为动态的(请参阅 b2BodyType 枚举)。我不确定默认值是什么,它应该是动态的,但这可能取决于 Box2D 版本。

于 2011-10-06T09:23:12.490 回答