cocos2dx3.3开发FlappyBird总结十:背景层设计

游戏背景层的任务是很简单的,只是根据当前时间来显示白天或者黑夜背景图,提供获取地面的高度方法。

#ifndef __EngryBird__BackgroundLayer__
#define __EngryBird__BackgroundLayer__

#include "cocos2d.h"

/**
 * The game background,showing the background information
 * in the game.
 */
class BackgroundLayer : public cocos2d::Layer {
public:
  /**
   * The default constructor
   */
  BackgroundLayer();

  /**
   * The default destructor
   */
  ~BackgroundLayer();

  /**
   * The init method, will init the super init method first
   *
   * @return true if succeeded, otherwise false
   */
  virtual bool init();

  CREATE_FUNC(BackgroundLayer);

  /**
   * Get the land sprite height
   *
   * @return The height of land
   */
  static float getLandHeight();
};

#endif /* defined(__EngryBird__BackgroundLayer__) */

背景层的实现中,看看怎么判断是不是白天或者黑夜。


bool BackgroundLayer::init() {
  if (!Layer::init()) {
    return false;
  }

  // Get the current time, judge whether now is day or night
  time_t t = time(NULL);
  tm *localTime = localtime(&t);
  int hour = localTime->tm_hour;

  std::string bgName;
  if (hour >= 6 && hour <= 17) {
    bgName = "bg_day";
  } else {
    bgName = "bg_night";
  }

  auto bgSprite = Sprite::createWithSpriteFrame(AtlasLoader::getInstance()->getSpriteFrame(bgName));
  // 这里设置成(0,0),就可以从左下角开始显示至全屏
  bgSprite->setAnchorPoint(Vec2::ZERO);
  bgSprite->setPosition(Vec2::ZERO);
  this->addChild(bgSprite);

  return true;
}

获取地面的高度:

// 其实就是加载地面精灵,然后获取其内容大小的高度
float BackgroundLayer::getLandHeight() {
  auto spriteFrame = AtlasLoader::getInstance()->getSpriteFrame("land");
  auto land = Sprite::createWithSpriteFrame(spriteFrame);

  return land->getContentSize().height;
}

下一步,说说控制层(选项层)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值