c++ - cocos2dx 3.3动画实现

标签 c++ cocos2d-x cocos2d-x-3.0 cocos2d-android cocos2d-js

我是 cocos2dx 开发的新手。我几乎使用 cpp 语言在 android 中学习了 cocos2dx(3.3 版)的所有基础级别。我展示了 cocos2dx.org 上有很多更新。

在 android 中,我目前正在使用 cocos2dx 3.3 版开发俄罗斯方 block 游戏,我想知道什么是实现令人敬畏的动画的最佳方法,例如滴答作响的炸弹、炸弹爆炸、旋转的游戏分数显示、弹出和消失的气球分数递增。我想知道在 android 中使用 c++ 的动画实现 cocos2dx。我们还需要制作支持多屏支持的游戏,我搜索了很多所有这些点无法通过谷歌找到太多信息。

我很好地展示了声纳系统对初学者水平的支持,我们真的很感激,我在 YouTube 上观看了声纳系统分享的所有视频。我在那里学到了很多东西。我想知道在cocos2dx中android的进阶动画。

我们将不胜感激。

谢谢

最佳答案

这是我的 appmacros.h filr ..

#ifndef __APPMACROS_H__
#define __APPMACROS_H__

#include "cocos2d.h"



#define DESIGN_RESOLUTION_480X320    0
#define DESIGN_RESOLUTION_480X800    1
#define DESIGN_RESOLUTION_1024X768   2
#define DESIGN_RESOLUTION_1280X800   3
#define DESIGN_RESOLUTION_2048X1536  4

/* If you want to switch design resolution, change next line */
#define TARGET_DESIGN_RESOLUTION_SIZE  DESIGN_RESOLUTION_1280X800

typedef struct tagResource
{
    cocos2d::CCSize size;
    char directory[100];
}Resource;

static Resource smallResource  =  { CCSizeMake(480, 320),   "iphone" };
static Resource mysmallResource  =  { CCSizeMake(800, 480),   "iphone" };
static Resource mediumResource =  { CCSizeMake(1024, 768),  "ipad"   };
static Resource myResource =  { CCSizeMake(1280, 800),  "ipad" };
static Resource largeResource  =  { CCSizeMake(2048, 1536), "ipadhd" };

#if (TARGET_DESIGN_RESOLUTION_SIZE == DESIGN_RESOLUTION_480X320)
static cocos2d::CCSize designResolutionSize = cocos2d::CCSizeMake(480, 320);
#elif (TARGET_DESIGN_RESOLUTION_SIZE == DESIGN_RESOLUTION_480X800)
static cocos2d::CCSize designResolutionSize = cocos2d::CCSizeMake(800, 480);
#elif (TARGET_DESIGN_RESOLUTION_SIZE == DESIGN_RESOLUTION_1024X768)
static cocos2d::CCSize designResolutionSize = cocos2d::CCSizeMake(1024, 768);
#elif (TARGET_DESIGN_RESOLUTION_SIZE == DESIGN_RESOLUTION_2048X1536)
static cocos2d::CCSize designResolutionSize = cocos2d::CCSizeMake(2048, 1536);
#elif (TARGET_DESIGN_RESOLUTION_SIZE == DESIGN_RESOLUTION_1280X800)
static CCSize designResolutionSize = cocos2d::CCSizeMake(1280, 800);
#else
#error unknown target design resolution!
#endif

// The font size 24 is designed for small resolution, so we should change it to fit for current design resolution
#define TITLE_FONT_SIZE  (cocos2d::CCEGLView::sharedOpenGLView()->getDesignResolutionSize().width / myResource.size.width * 24)

#endif /* __APPMACROS_H__ */

现在我们可以在 appdelegate 中使用这个类..所以我的 appdelegate 看起来像...

#include "AppDelegate.h"
#include "MenuLayer.h"
#include "AppMacros.h"
#include "SimpleAudioEngine.h"
#include "cocos2d.h"


USING_NS_CC;


AppDelegate::AppDelegate() {

}

AppDelegate::~AppDelegate() {

}
void AppDelegate::initGLContextAttrs()
{
    //set OpenGL context attributions,now can only set six attributions:
    //red,green,blue,alpha,depth,stencil
    GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8};

    GLView::setGLContextAttrs(glContextAttrs);
}

bool AppDelegate::applicationDidFinishLaunching() {

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

    CCLOG("%s","applicationDidFinishLaunching ");
    // initialize director
//  CCDirector* pDirector = CCDirector::sharedDirector();
//  CCEGLView* pEGLView = CCEGLView::sharedOpenGLView();

    director->setOpenGLView(glview);

    // Set the design resolution
    glview->setDesignResolutionSize(designResolutionSize.width,
            designResolutionSize.height, kResolutionFixedWidth);

    //CCSize frameSize = pEGLView->getFrameSize();
    CCSize frameSize = director->getVisibleSize();

    // if the frame's height is larger than the height of medium resource size, select large resource.
    if (frameSize.width > myResource.size.width) {

        director->setContentScaleFactor(
                largeResource.size.width / designResolutionSize.width);

    }
    // if the frame's height is larger than the height of small resource size, select medium resource.
    else if (frameSize.width > mediumResource.size.width) {

        director->setContentScaleFactor(
                myResource.size.width / designResolutionSize.width);

    } else if (frameSize.width > mysmallResource.size.width) {

        director->setContentScaleFactor(
                designResolutionSize.width / mediumResource.size.width);

    } else if (frameSize.width > smallResource.size.width) {

        director->setContentScaleFactor(
                designResolutionSize.width / mediumResource.size.width);

    }
    // if the frame's height is smaller than the height of medium resource size, select small resource.
    else {

        director->setContentScaleFactor(
                designResolutionSize.width / smallResource.size.width);

    }

    // turn on display FPS
    director->setDisplayStats(false);

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


    CCScene *pScene = MenuLayer::scene();


    director->runWithScene(pScene);



    return true;
}

// This function will be called when the app is inactive. When comes a phone call,it's be invoked too
void AppDelegate::applicationDidEnterBackground() {
    CCDirector::sharedDirector()->stopAnimation();

    // if you use SimpleAudioEngine, it must be pause
    CocosDenshion::SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();


}

// this function will be called when the app is active again
void AppDelegate::applicationWillEnterForeground() {
    CCDirector::sharedDirector()->startAnimation();

    // if you use SimpleAudioEngine, it must resume here
    CocosDenshion::SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();


}

关于c++ - cocos2dx 3.3动画实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30216371/

相关文章:

c++ - 您可以将带符号的字符数组转换为无符号整数吗?

c++ - 对齐数据: speed dependance on relative sampling size vs sampling frequency on a constant data read

c++ - 在循环中声明的对象是否只构造一次?

c++ - 递增迭代器超出范围

android - 无法解决 fullPathForFilename : Possible missing file error in cocos2dx

java - Android错误 Activity 管理器类型3(Eclipse,使用jni)

c++ - Sprite 在 Android 上随机闪烁

c++ - 当 isTouchEnabled 为真时,CCMenuItemLabel 不起作用?

android - 在 cocos2d-x 中有没有更好的方法来获取系统时间?

c++ - 在非静态成员函数错误之外无效使用 'this'?