cocos2dx3.3开发FlappyBird总结八:载入场景LoadingScene

载入场景的目的是预加载资源,也就是在场景进入时,把资源加载到内存中:

// 重写onEnter方法,场景载入时,会调用方法,此外我们还需要调一下父类方法,这个是API说明的,照做就行。
// 方法其实功能是很简单的,就是先显示一张splash图片,然后异步加载图片资源,这个addImageAsync方法是引擎内部提供的API,可异步加载,这样就不会阻塞主线程了。
void LoadingScene::onEnter() {
  Layer::onEnter();

  // Add the splash screen image
  auto background = Sprite::create("splash.png");
  auto size = Director::getInstance()->getVisibleSize();
  auto origin = Director::getInstance()->getVisibleOrigin();

  background->setPosition(origin.x + size.width / 2,origin.y + size.height / 2);
  this->addChild(background);

  // Start to load texture async
  auto texture = Director::getInstance()->getTextureCache();
  texture->addImageAsync("atlas.png",CC_CALLBACK_1(LoadingScene::onLoadFinishedCallback,this));
}

加载完成后,就是加载音频文件,这里是同步加载的,如果资源很多的话,会卡的。加载完成后,就进入到WelcomeScene了。

void LoadingScene::onLoadFinishedCallback(cocos2d::Texture2D *texture) {
  // Load the atlas
  AtlasLoader::getInstance()->loadAtlas("atlas.txt",texture);

  // Preload effect music.
  // Here is not the best way to load all music files,
  // in real projects,you should find a better way to do.
  CocosDenshion::SimpleAudioEngine::getInstance()->preloadEffect("sfx_die.ogg");
  CocosDenshion::SimpleAudioEngine::getInstance()->preloadEffect("sfx_hit.ogg");
  CocosDenshion::SimpleAudioEngine::getInstance()->preloadEffect("sfx_point.ogg");
  CocosDenshion::SimpleAudioEngine::getInstance()->preloadEffect("sfx_swooshing.ogg");
  CocosDenshion::SimpleAudioEngine::getInstance()->preloadEffect("sfx_wing.ogg");

  // Now the task of the loading scene has finished,
  // auto enter into the welcome scene
  auto scene = TransitionFade::create(1.0f,WelcomeScene::createScene());
  Director::getInstance()->replaceScene(scene);
}

下一步:说说欢迎场景

相关文章

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