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;
}

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

相关文章

    本文实践自 RayWenderlich、Ali Hafizji 的文章《...
Cocos-code-ide使用入门学习地点:杭州滨江邮箱:appdevzw@1...
第一次開始用手游引擎挺激动!!!进入正题。下载资源1:从C...
    Cocos2d-x是一款强大的基于OpenGLES的跨平台游戏开发...
1.  来源 QuickV3sample项目中的2048样例游戏,以及最近《...
   Cocos2d-x3.x已经支持使用CMake来进行构建了,这里尝试...