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

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

目录
相关文章
|
3天前
|
JavaScript 前端开发 Linux
flutter开发-figma交互设计图可以转换为flutter源代码-如何将设计图转换为flutter源代码-优雅草央千澈
flutter开发-figma交互设计图可以转换为flutter源代码-如何将设计图转换为flutter源代码-优雅草央千澈
|
7月前
|
存储 图形学
【推荐100个unity插件之13】推荐一款开源的Unity网格破碎插件,实现在Unity中展示可破坏的墙壁的——unity-fracture
【推荐100个unity插件之13】推荐一款开源的Unity网格破碎插件,实现在Unity中展示可破坏的墙壁的——unity-fracture
129 0
|
8月前
|
编解码 搜索推荐 Android开发
Flutter笔记:发布一个模块 scale_design - (移动端)设计师尺寸适配工具
Flutter笔记:发布一个模块 scale_design - (移动端)设计师尺寸适配工具
131 0
|
图形学 开发者 iOS开发
iOS开发CoreGraphics核心图形框架之二——深入理解图形上下文(一)
iOS开发CoreGraphics核心图形框架之二——深入理解图形上下文
427 0
iOS开发CoreGraphics核心图形框架之二——深入理解图形上下文(一)
|
API 数据安全/隐私保护 iOS开发
iOS开发CoreGraphics核心图形框架之二——深入理解图形上下文(二)
iOS开发CoreGraphics核心图形框架之二——深入理解图形上下文
403 0
|
XML Android开发 数据格式
Android项目实战(四十):Andoird 7.0+ 安装APK适配
原文:Android项目实战(四十):Andoird 7.0+ 安装APK适配       首先看一下安装apk文件的代码    /** * 通过隐式意图调用系统安装程序安装APK */ public static void install(Context...
1216 0