android - 如何创建android cocos2dx启动画面?

标签 android cocos2d-x splash-screen scene

这是我的代码,我不知道如何创建初始屏幕以及它如何直接出现在我的菜单屏幕中。所有 .h 必须连接到 BaseScreen,而 BaseScreen 将是在 cocos2d 层中连接的那个。请帮助我的代码。唯一出现在我的模拟器中的是我在 HelloWorldScreen.h 中编写的 Sprite

SplashScreen.h

ifndef __SPLASH_SCREEN_H__
define __SPLASH_SCREEN_H__

include "BaseScreen.h"
include "cocos2d.h"

class SplashScreen : BaseScreen 
{
public:
void update ();
static cocos2d::CCSprite* splashScreen;
int time;
MenuScreen menuScreen;
};
endif

HelloWorldScene.cpp

include "HelloWorldScene.h"
include "SplashScreen.h"
include "cocos2d.h"

USING_NS_CC;

CCScene* HelloWorld::scene()
{
// 'scene' is an autorelease object
CCScene *scene = CCScene::create();

// 'layer' is an autorelease object
HelloWorld *layer = HelloWorld::create();

// add layer as a child to scene
scene->addChild(layer);

// return the scene
return scene;
}

// on "init" you need to initialize your instance
bool HelloWorld::init()
{

// 1. super init first
if ( !CCLayer::init() )
{
    return false;
}

CCSize winSize = CCDirector::sharedDirector()->getWinSize();
CCSize size = CCDirector::sharedDirector()->getWinSize();
CCSize visibleSize = CCDirector::sharedDirector()->getVisibleSize();
CCPoint origin = CCDirector::sharedDirector()->getVisibleOrigin();


// 2. add a menu item with "X" image, which is clicked to quit the program
//    you may modify it.

// add a "close" icon to exit the progress. it's an autorelease object
CCMenuItemImage *pCloseItem = CCMenuItemImage::create(
                                    "CloseNormal.png",
                                    "CloseSelected.png",
                                    this,
                                    menu_selector(HelloWorld::menuCloseCallback));

pCloseItem->setPosition(ccp(origin.x + visibleSize.width -                       pCloseItem->getContentSize().width/2 ,
                            origin.y + pCloseItem->getContentSize().height/2));

// create menu, it's an autorelease object
CCMenu* pMenu = CCMenu::create(pCloseItem, NULL);
pMenu->setPosition(CCPointZero);
this->addChild(pMenu, 1);


// 3. add your codes below...

// create background image from png
    CCSprite *splashScreen = CCSprite::create("company.png");
    // position the background image at the center of window
    splashScreen->setPosition(ccp(size.width / 2, size.height / 2));


    // add background image at z-position = -1, bottom of all
    this->addChild(splashScreen, -1);

    // calculate the scaling factor to fill the window size
    float bX = size.width / splashScreen->getContentSize().width;
    float bY = size.height / splashScreen->getContentSize().height;

    // set the scaling factor to the background image
    splashScreen->setScaleX(bX);
    splashScreen->setScaleY(bY);

return true;
}


//callfuncN_selector(MainScene::spriteMoveFinished)
//backcalls the function spriteMoveFinished()
void HelloWorld::spriteMoveFinished(CCNode* pSender)
{
CCSprite *sprite = (CCSprite *)pSender;
this->removeChild(sprite, true);
}


void HelloWorld::menuCloseCallback(CCObject* pSender)
{
CCDirector::sharedDirector()->end();

if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
exit(0);
endif
}

BaseScreen.h

ifndef __BASE_SCREEN_H__
define __BASE_SCREEN_H__

include "cocos2d.h"

class BaseScreen : public cocos2d::CCLayer
{
public:
//  BaseScreen getParent ();
void loadNewScreen (BaseScreen newScreen);
void update ();
//  BaseScreen *parentBaseScene;
};
endif

最佳答案

以下是在android 上添加启动画面场景的三个步骤。使用 cocos2d-x 3.4。希望这对您有所帮助!

1 创建一个 SplashScene.cpp

    #include "SplashScene.h"
    #include "HomeScene.h"

    using namespace cocos2d;

    cocos2d::Scene* SplashScene::createScene()
    {
        // 'scene' is an autorelease object
        auto scene = Scene::create();

        // 'layer' is an autorelease object
        auto layer = SplashScene::create();

        // add layer as a child to scene
        scene->addChild(layer);

        // return the scene
        return scene;
    }



// on "init" you need to initialize your instance
bool SplashScene::init()
{
    if ( !Layer::init() )
    {
        return false;
    }

    auto visibleSize = Director::getInstance()->getVisibleSize();

    auto sprite = Sprite::create("splash.png");

    // position the sprite on the center of the screen
    sprite->setPosition(Vec2(visibleSize.width/2 , visibleSize.height/2 ));

    // add the sprite as a child to this layer
    this->addChild(sprite, 0);

    return true;
}

void SplashScene::onEnter() {
    Layer::onEnter();

    // Wait for 0.5 seconds to load main scene
    this->scheduleOnce(schedule_selector(SplashScene::finishSplash), 0.5f);
}

void SplashScene::finishSplash(float dt) {
    // ... do whatever other initializations here
    // Show the actual main scene
    Director::getInstance()->replaceScene(HomeScene::createScene());
}

2 创建 SplashScene.h

#ifndef __SplashScene__
#define __SplashScene__

#include <stdio.h>
#include "cocos2d.h"

USING_NS_CC;

class SplashScene : public cocos2d::Layer
{
public:
    // there's no 'id' in cpp, so we recommend returning the class instance pointer
    static Scene* createScene();

    // Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone
    virtual bool init();

    void onEnter();

    void finishSplash(float dt);

    // implement the "static create()" method manually
    CREATE_FUNC(SplashScene);
};

#endif /* defined(__stickerPuzzle__SplashScene__) */

3 修改AppDelegate.cpp

bool AppDelegate::applicationDidFinishLaunching() {
    // initialize director
    auto director = Director::getInstance();
    auto glview = director->getOpenGLView();
    if(!glview) {
        glview = GLViewImpl::create("My Game");
        director->setOpenGLView(glview);
    }

    // set FPS. the default value is 1.0/60 if you don't call this
    director->setAnimationInterval(1.0 / 60);

    // ... other stuff ... 

#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
    // On Android - start the splash scene first
    auto scene = SplashScene::createScene(); 
    director->runWithScene(scene);
#endif

#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
    // On iOS, no need to add splash scene, start main scene directly
    auto scene = HomeScene::createScene(); 
    director->runWithScene(scene);
#endif

    return true;
}

关于android - 如何创建android cocos2dx启动画面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19044265/

相关文章:

android - 在android中改变位图中的蓝色和红色 channel

c++ - CMake 编译失败

java - 带有进度条的应用程序和启动画面的初始化 (Swing)

java - 从启动画面启动一个 Activity ,我应该使用 run() 还是 runOnUiThread()?

ios - 在 PhoneGap/Cordova 1.5.0 中显示启动屏幕

当我尝试更改选项卡时,android模拟器不断崩溃

java - 频繁点击按钮时显示 Toast

android - 将 Android Studio 更新到 2.2 Preview 3 后 Gradle 构建错误

android - 有没有办法从传入的修饰符中检索值?

android - cocos2d-x Android构建失败