cocos2dx3.3开发FlappyBird总结六:设计共享小鸟类(主角)

主角小鸟有三种状态:idle、fly、die。
idle状态下,小鸟会挥动翅膀,原地不动,且不受重力的影响。
fly状态下,也就是游戏过程中小鸟移动,此状态下小鸟挥动翅膀飞行移动且受重力的影响。
die状态下,游戏结束了,小鸟死亡倒地了。
所以先设计一个枚举来表示小鸟的三种状态:

/**
 * The leading role, bird's three action state
 */
typedef enum {
  kActionStateIdle = 1, /* the idle state, wave wing but  gravity */
  kActionStateFly, /* the fly state, wave wing and be affected by gravity */
  kActionStateDie  /* the die state, the bird die in the ground */
} ActionState;

先重点说说创建小鸟对象方法:

// 小鸟有三种颜色,因此每次游戏开始时,会随机生成一种颜色.
// 然后创建小鸟精灵,如果创建成功,则创建小鸟主角在游戏中需要执行的动作:idle和wing。
bool BirdSprite::createBird() {
  // Randomly generate a bird color
  srand((unsigned)time(NULL));
  int type = rand() % 3;
  char birdName[10];
  char birdNameFormat[10];
  sprintf(birdName, "bird%d_%d", type, type);
  sprintf(birdNameFormat, "bird%d_%%d", type);

  auto spriteFrame = AtlasLoader::getInstance()->getSpriteFrame(birdName);
  // Create a bird sprite
  auto isInitSuccessful = Sprite::initWithSpriteFrame(spriteFrame);
  if (isInitSuccessful) {
    // init idle status
    // create the bird idle animation
    auto animation = createAnimation(birdNameFormat, 3, 10);
    _idleAction = RepeatForever::create(Animate::create(animation));

    // create the bird waving wing animation
    auto upAction = MoveBy::create(0.4f, Vec2(0, 8));
    auto downAction = upAction->reverse();
    _wingAction = RepeatForever::create(Sequence::create(upAction, downAction, NULL));

    return true;
  }

  return false;
}

接下来很重要的一个方法就是修改小鸟主角状态的方法:

// 修改小鸟的状态,会对应执行相应的动作
// idle状态,也就是游戏准备开始时的状态,小鸟挥动翅膀原地不动
// fly状态,游戏开始了,小鸟受重力影响,由玩家控制
// die状态,游戏结束,撤消小鸟所有的动作
void BirdSprite::setActionState(ActionState state) {
  _actionState = state;

  switch (state) {
    case kActionStateIdle:
      // The idle state, the bird waves the wing and doesn't being affected by gravity
      this->runAction(_idleAction);
      this->runAction(_wingAction);
      break;
    case kActionStateFly:
      // The fly state, the bird waves the wing, affected by gravity
      this->stopAction(_wingAction);
      this->getPhysicsBody()->setGravityEnable(true);
      break;
    case kActionStateDie:
      // Thd die state, the bird get down to the ground.
      this->stopAllActions();
      break;
    default:
      break;
  }
}

下一步,说说游戏的流程

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值