2.Cocos2d-x-3.2编写3d打飞机,项目代码总结

2.Cocos2d-x-3.2编写3d打飞机,项目代码总结,第1张

概述1. AppDelete 中 applicationDidFinishLaunching 代码示范 2.当电话来了时,停止恢复游戏声音的代码(在 AppDelegate 中加入下面代码) boolAppDelegate::applicationDidFinishLaunching() {    // initialize director    autodirector =Director:: 1. AppDelete applicationDIDFinishLaunching 代码示范 2.当电话来了时,停止恢复游戏声音的代码(在 AppDelegate 中加入下面代码)

boolAppDelegate::applicationDIDFinishLaunching() {

// initialize director

autodirector =Director::getInstance();

autoglvIEw =director->getopenGLVIEw();

//glvIEw->setDesignResolutionSize(480,800,ResolutionPolicy::FIXED_HEIGHT);

if(!glvIEw) {

intheight,wIDth;

height = 800;

wIDth =height*(640.0/960.0);

glvIEw =GLVIEw::createWithRect("EarthWarrior3D",Rect(0,wIDth,height));

director->setopenGLVIEw(glvIEw);

}

//设计分辨率,和实际大小时不一样的

glvIEw->setDesignResolutionSize(640,960,ResolutionPolicy::FIXED_HEIGHT);

// 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);

// create a scene. it's an autorelease object

//auto scene = LoadingScene::createScene();

autoscene =MainMenuScene::createScene();

//auto scene = HelloWorld::createScene();

// run

director->runWithScene(scene);

glEnable(GL_CulL_FACE);

returntrue;

@H_706_502@}

当有一个手机电话了之后,停止游戏中的声音等的代码(在AppDelegate中加入下面代码)

// This function will be called when the app is inactive. When comes a phone call,it's be invoked too

voIDAppDelegate::applicationDIDEnterBackground() {

SimpleAudioEngine::getInstance()->pauseAllEffects();

SimpleAudioEngine::getInstance()->pauseBackgroundMusic();

Director::getInstance()->stopAnimation();

// if you use SimpleAudioEngine,it must be pause

// SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();

}

// this function will be called when the app is active again

voIDAppDelegate::applicationWillEnterForeground() {

SimpleAudioEngine::getInstance()->resumeAllEffects();

SimpleAudioEngine::getInstance()->resumeBackgroundMusic();

Director::getInstance()->startAnimation();

// if you use SimpleAudioEngine,it must resume here

// SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();

}

cocos2d-x-3.2createScene()init()函数编写

@H_706_502@头文件:

classMainMenuScene :publiccocos2d::Layer

{

public:

staticcocos2d::Scene*createScene();//创建场景

virtualboolinit();//初始化方法,用来添加旋转飞机,开始按钮等元素

CREATE_FUNC(MainMenuScene);//创建层

@H_706_502@};

@H_706_502@createScene实现代码:

Scene*MainMenuScene::createScene()

{

// 'scene' is an autorelease object

autoscene =Scene::create();//创建一个新的场景

// 'layer' is an autorelease object

autolayer =MainMenuScene::create();//创建本层

// add layer as a child to scene

scene->addChild(layer);//把本层添加到场景里

// return the scene

returnscene;//返回场景

@H_706_502@}

添加对游戏手柄的支持

@H_706_502@添加的头文件:

#include"base/CCEventListenerController.h"

@H_706_502@#include"base/CCController.h"

init方法中写代码时要注意:

if ( !Layer::init() )

{

returnfalse;//如果父类初始化失败,直接返回失败

@H_706_502@}

添加移动(MoveByAction的代码

auto left = MoveBy::create(2,Vec2(200,200));

//auto right = MoveBy::create(2,Vec2(-200,-200));

@H_706_502@//_test->runAction(RepeatForever::create(Sequence::create(left,right,NulL)));

播放音乐的代码

@H_706_502@头文件:

#include"cocos2d.h"

#include"SimpleAudioEngine.h"

USING_NS_CC;

@H_706_502@usingnamespaceCocosDenshion;

音乐

@H_706_502@加载音乐和音效通常是个耗时间的过程,因此为了防止由加载产生的延时导致实际播放与游戏播放不协调的现象。在播放音效和音乐前,需要预加载音乐文件。

@H_706_502@voID SimpleAudioEngine::preloadBackgroundMusic(const char* pszfilePath);

@H_706_502@voIDSimpleAudioEngine::preloadEffect(constchar* pszfilePath);

@H_706_502@

@H_706_502@因为SimpleAudioEngine与许多Cocos2d-x的部件一样,是一个单例类。所以当我们使用以上两个接口时,可以使用以下代码访问其实例:

@H_706_502@SimpleAudioEngine::getInstance()->preloadBackgroundMusic( MUSIC_file );

@H_706_502@SimpleAudioEngine::getInstance()->preloadEffect( EFFECT_file );

@H_706_502@

@H_706_502@播放与停止

@H_706_502@音频引擎提供了播放与停止的接口,以下介绍相应接口和使用方法:

@H_706_502@//播放背景音乐,bLoop表示是否要循环播放

@H_706_502@virtual voID playBackgroundMusic(const char* pszfilePath,bool bLoop = false);

@H_706_502@virtual unsigned int playEffect(const char* pszfilePath,bool bLoop = false,

@H_706_502@float pitch = 1.0f,float pan = 0.0f,float gain = 1.0f); //播放音效,bLoop表示是否要循环播放

@H_706_502@virtual voID stopBackgroundMusic(bool bReleaseData = false); //停止背景音乐

@H_706_502@virtual voID stopEffect(unsigned int nSoundID); //停止指定音效,nSoundID为音效编号

@H_706_502@virtual voID stopAllEffects(); //停止所有音效

@H_706_502@

@H_706_502@使用方法:

@H_706_502@SimpleAudioEngine::getInstance()->playBackgroundMusic(MUSIC_file,true); //播放背景音乐

@H_706_502@SimpleAudioEngine::getInstance()->stopBackgroundMusic();//停止背景音乐

@H_706_502@SimpleAudioEngine::getInstance()->stopEffect(_soundId); //停止音效

@H_706_502@

@H_706_502@暂停和恢复

@H_706_502@当游戏进入后台时,通常需要暂停播放音乐,当游戏恢复前台运行时,再继续播放音乐。以下介绍几个相关接口以及用法:

@H_706_502@virtual voID pauseBackgroundMusic(); //暂停背景音乐

@H_706_502@virtual voID pauseEffect(unsigned int nSoundID); //暂停指定音效,nSoundID为音效编号

@H_706_502@virtual voID pauseAllEffects(); //暂停所以音效

@H_706_502@virtual voID resumeBackgroundMusic(); //恢复背景音乐

@H_706_502@virtual voID resumeEffect(unsigned int nSoundID); //恢复指定音效,nSoundID为音效编号

@H_706_502@virtual voID resumeAllEffects(); //恢复所有音效

@H_706_502@

@H_706_502@使用方法:

@H_706_502@SimpleAudioEngine::getInstance()->pauseEffect(_soundID); //暂停编号为_soundID的音效

@H_706_502@SimpleAudioEngine::getInstance()->resumeEffect(_soundID); //恢复编号为_soundID的音效

@H_706_502@SimpleAudioEngine::getInstance()->pauseAllEffects(); //暂停所有音效

@H_706_502@SimpleAudioEngine::getInstance()->resumeAllEffects(); //恢复所有音效

@H_706_502@

@H_706_502@其它成员

@H_706_502@除了以上介绍的方法外,Cocos2d-x还提供了便捷的控制方法与属性:

@H_706_502@virtual voID setBackgroundMusicVolume(float volume); //设置背景音乐音量

@H_706_502@virtual voID setEffectsVolume(float volume);//设置音效音量

@H_706_502@virtual voID rewindBackgroundMusic();//重新播放背景音乐

@H_706_502@virtual bool isBackgroundMusicPlaying(); //返回一个值,表示是否在播放背景音乐

@H_706_502@预加载音乐的代码:

voIDLoadingScene::LoadingMusic()

{

audioloaded =true;//声音加载变量置为真

autoAudio =CocosDenshion::SimpleAudioEngine::getInstance();//获取声音实例

Audio->preloadEffect("explodeEffect.mp3");//预加载音效

Audio->preloadEffect("hit.mp3");//预加载音效

Audio->preloadEffect("boom2.mp3");//预加载音效

Audio->preloadEffect("boom.mp3");//预加载音效

Audio->preloadBackgroundMusic("Orbital Colossus_0.mp3");//预加载音效

Audio->playBackgroundMusic("Flux2.mp3");//预加载背景音乐

@H_706_502@}

添加粒子效果的代码

//************ adds emission flare ****************

autoflare =ParticleSystemQuad::create("missileFlare.pList");//创建料子特效,ParticleSystemQuad用法,源码

flare->setScale(5);//粒子效果放大5

floatoriginX = -9.0f;//料子效果的初始旋转角度

floatoriginY = 159.0f;//料子效果的初始旋转角度

floatoriginZ = 9.0f;//料子效果的初始旋转角度

flare->setTotalParticles(50);//粒子效果总粒子数量

flare->setRotation3D(Vec3(-originX,-originY,-originZ));//设置粒子效果的旋转角度

flare->setposition(-39,0);//设置粒子效果的位置

flare->setpositionType(tpositionType::GROUPED);//设置粒子效果的位置类型,跟随发射器,不跟随发射器,等各种效果

flare->setStartcolor(color4F(0,0.99,1,1));//设置粒子效果颜色

//sprite->addChild(flare,-1);

plane->addChild(flare,-1);//把粒子效果添加到旋转飞机上,注意粒子效果的位置是相对于旋转飞的,因为旋转飞机是粒子效果的父类

autoemis =ParticleSystemQuad::create("menuEmission.pList");//创建粒子效果

emis->setScale(3);//粒子效果放大3

emis->setRotation3D(Vec3(-originX,-originZ));//设置粒子效果旋转角度

emis->setposition(-40,0);//设置粒子效果位置,相对于旋转飞机

emis->setpositionType(tpositionType::GROUPED);//旋转粒子效果位置类型

emis->setRotation(180);//设置粒子效果旋转角度

plane->addChild(emis,-2);//添加粒子效果到飞机上

//************ adds vanishing ****************

autofileUtil =fileUtils::getInstance();//得到文件实例

autopListData =fileUtil->getValueMapFromfile("vanishingPoint.pList");//得到pList文件数据,返回类型ValuMap

//auto sf = SpriteFrame::create("bullets.png",Rect(5,8,24,32));

autovanishing =ParticleSystemQuad::create(pListData);//创建粒子效果,用于层背景,粒子创建的别一种方式

vanishing->setAnchorPoint(Vec2(0.5f,0.5f));//设置粒子效果的锚点

vanishing->setposition(visible_size_macro.wIDth-90,visible_size_macro.height/2 +50);//设置粒子效果的位置

this->addChild(vanishing,1);//添加粒子效果到本层

创建菜单,并且添加回调的方法

//************* license *******************

autolicense_normal=Sprite::createWithSpriteFramename("license.png");//作用同上

autolicense_pressed=Sprite::createWithSpriteFramename("license.png");//作用同上

license_item =MenuItemSprite::create(license_normal,license_pressed,CC_CALLBACK_1(MainMenuScene::license,this));//作用同上

license_item->setposition(visibleSize.wIDth/2-200,100);//作用同上

license_item->setScale(0.7);//作用同上

//************* credits ******************

autocredits_normal=Sprite::createWithSpriteFramename("credits.png");//作用同上

autocredits_pressed=Sprite::createWithSpriteFramename("credits.png");//作用同上

credits_item =MenuItemSprite::create(credits_normal,credits_pressed,CC_CALLBACK_1(MainMenuScene::credits,this));//作用同上

credits_item->setposition(visibleSize.wIDth/2+200,100);//作用同上

credits_item->setScale(0.7);//作用同上

//************* Menu ******************

automenu =Menu::create(startgame_item,license_item,credits_item,NulL);//创建按钮

menu->setposition(origin);//设置按钮位置

this->addChild(menu,3);//添加按钮到本层

添加回调方法:

voIDMainMenuScene::startgame(Ref*sender)

{

startgame_item->runAction(Sequence::create(Scaleto::create(0.1f,1.4f),

Scaleto::create(0.1f,1.2f),1.3f),

CallFunc::create(CC_CALLBACK_0(MainMenuScene::startgame_callback,this)),NulL));//开始按钮被点后,按钮显示放大缩小效果,并在显示完后执行开始按钮回调

}

voIDMainMenuScene::startgame_callback()

{

//auto scene_test = LoadingScene::createScene();

//Director::getInstance()->replaceScene(scene_test);

//return ;

CocosDenshion::SimpleAudioEngine::getInstance()->stopBackgroundMusic();//停止播放背景音乐

GameLayer::isDIE=false;//初始化游戏战斗部分的主角,未死

autoscene = (LoadingScene::audioloaded) ? GameMainScene::createScene() :LoadingScene::createScene();//加载资源,如果加载完成,进入游戏主界面

Director::getInstance()->replaceScene(scene);//切换场景

}

voIDMainMenuScene::credits(Ref*sender){

credits_item->runAction(Sequence::create(Scaleto::create(0.1f,0.8f),0.6f),0.7f),

CallFunc::create(CC_CALLBACK_0(MainMenuScene::credits_callback,NulL));//同开始按钮

}

voIDMainMenuScene::credits_callback()

{

autolicense =Infolayer::create("credits_03.png");//同开始按钮

license->setAnchorPoint(Vec2(0.5f,0.5f));

license->setposition(Vec2(visible_size_macro.wIDth/2,visible_size_macro.height/2));

addChild(license,20);

//为了在手柄调用的回调函数的时候去除,这里设置tag20

license->setTag(20);

license->runAction(Sequence::create(Scaleto::create(0.2f,1.1f),0.9f),1.0f),

NulL));

}

voIDMainMenuScene::license(Ref*sender){

license_item->runAction(Sequence::create(Scaleto::create(0.1f,

CallFunc::create(CC_CALLBACK_0(MainMenuScene::license_callback,NulL));//同开始按钮

}

voIDMainMenuScene::license_callback()

{

autolicense =Infolayer::create("liCENSE_03.png");//同开始按钮

license->setAnchorPoint(Vec2(0.5f,

NulL));

}

@H_706_502@11通过SpriteFrameWithfile的方式创建精灵

@H_706_502@SpriteFrameCache::getInstance()->addSpriteFramesWithfile("loadingAndHP.pList","loadingAndHP.png");//加载资源

autoloading_bk=Sprite::createWithSpriteFramename("loading_bk.png");//创建背景精灵

loading_bk->setposition(Vec2(visibleSize.wIDth/2,visibleSize.height/2));//设置背景位置

@H_706_502@addChild(loading_bk,0);d//把背景添加到层里

通过TextureCache对的方式添加图片

voIDLoadingScene::LoadingPic()

{

autoTexureCache=Director::getInstance()->getTextureCache();//获取图片缓存

TexureCache->addImageAsync("boss.png",CC_CALLBACK_1(LoadingScene::LoadingCallback,this));//把图片添加到缓存里,并设置加载成后的回调

TexureCache->addImageAsync("coco.png",this));//把图片添加到缓存里,并设置加载成后的回调

TexureCache->addImageAsync("groundLevel.jpg",this));//把图片添加到缓存里,并设置加载成后的回调

@H_706_502@}

@H_706_502@13精灵旋转

#ifndef__RotateSprite_H__

#define__RotateSprite_H__

#include"Common.h"

#include"GameEntity.h"

#include"Sprite3DEffect.h"

/*

* author:xiao qin

* copyright:v1.0

* date:2014/11/30

* project name :3D打飞机

*

* filename:RotateSprite.h

* description:第二个场景,旋转精灵

*/

classRotateSprite :publicGameEntity

{

public:

CREATE_FUNC(RotateSprite);

//初始化方法,用于初始化旋转精灵的变量

boolinit();

//这里的EffectSprite3D实际上就是Sprite3D

EffectSprite3D*_rotateSprite;

};

@H_706_502@#endif

实现代码:

#include"RotateSprite.h"

/*

* author:xiao qin

* copyright:v1.0

* date:2014/11/30

* project name :3D打飞机

*

* filename:RotateSprite.cpp

* description:第二个场景,旋转精灵

*/

boolRotateSprite::init()

{

_rotateSprite =EffectSprite3D::createFromObjfileAndTexture(coconut_c3b,coco_png);

_rotateSprite->setposition(winSize.wIDth / 2,310);

_rotateSprite->setRotation3D(Vec3(270,0));

addChild(_rotateSprite);

RotateBy*rotate =RotateBy::create(0.5,Vec3(0,360,0));

_rotateSprite->runAction(RepeatForever::create(rotate));

returntrue;

}

调度器(scheduler)

@H_706_502@继承关系

@H_706_502@@H_404_5240@

@H_706_502@默认调度器(scheduleUpdate

该调度器是使用Node的刷新事件update方法,该方法在每帧绘制之前都会被调用一次。由于每帧之间时间间隔较短,所以每帧刷新一次已足够完成大部分游戏过程中需要的逻辑判断。

Cocos2d-xNode默认是没有启用update事件的,因此你需要重载update方法来执行自己的逻辑代码。

@H_706_502@通过执行schedulerUpdate()调度器每帧执行 update方法,如果需要停止这个调度器,可以使用unschedulerUpdate()方法。

@H_706_502@

@H_706_502@HelloWorldScene.h中添加如下代码:

@H_706_502@voID update(float dt) overrIDe;

@H_706_502@

@H_706_502@HelloWorldScene.cpp中的代码如下:

@H_706_502@bool HelloWorld::init()

@H_706_502@{

@H_706_502@...

@H_706_502@scheduleUpdate();

@H_706_502@return true;

@H_706_502@}

@H_706_502@

@H_706_502@voID HelloWorld::update(float dt)

@H_706_502@{

@H_706_502@log("update");

@H_706_502@}

@H_706_502@

@H_706_502@运行结果:

@H_706_502@cocos2d: update

@H_706_502@cocos2d: update

@H_706_502@cocos2d: update

@H_706_502@cocos2d: update

@H_706_502@自定义调度器:

游戏开发中,在某些情况下我们可能不需要频繁的进行逻辑检测,这样可以提高游戏性能。所以Cocos2d-x还提供了自定义调度器,可以实现以一定的时间间隔连续调用某个函数。

由于引擎的调度机制,自定义时间间隔必须大于两帧的间隔,否则两帧内的多次调用会被合并成一次调用。所以自定义时间间隔应在0.1秒以上。

@H_706_502@同样,取消该调度器可以用unschedule(SEL_SCHEDulE selector,float delay)

@H_706_502@

@H_706_502@以下代码用来测试该调度器:

@H_706_502@HelloWorldScene.h代码如下:

@H_706_502@voIDupdateCustom(floatdt);

@H_706_502@

@H_706_502@HelloWorldScene.cpp代码如下:

@H_706_502@boolHelloWorld::init()

@H_706_502@{

@H_706_502@...

@H_706_502@schedule(schedule_selector(HelloWorld::updateCustom),1.0f,kRepeatForever,0);

@H_706_502@returntrue;

@H_706_502@}

@H_706_502@

@H_706_502@voIDHelloWorld::updateCustom(floatdt)

@H_706_502@{

@H_706_502@log("Custom");

@H_706_502@}

@H_706_502@

@H_706_502@在控制台你会看到每隔1秒输出一下信息:

@H_706_502@cocos2d: Custom

@H_706_502@cocos2d: Custom

@H_706_502@cocos2d: Custom

@H_706_502@cocos2d: Custom

@H_706_502@cocos2d: Custom

@H_706_502@

@H_706_502@我们来看下scheduler(SEL_SCHEDulE selector,float interval,unsigned int repeat,float delay)函数里面的参数:

第一个参数selector即为你要添加的事件函数 第二个参数interval为事件触发时间间隔 第三个参数repeat为触发一次事件后还会触发的次数,默认值为kRepeatForever,表示无限触发次数 第四个参数delay表示第一次触发之前的延时
@H_706_502@1单次调度器(schedulerOnce

@H_706_502@该调度器只会触发一次,用unschedule(SEL_SCHEDulE selector,float delay)来取消该触发器。

@H_706_502@以下代码用来测试调度器:

@H_706_502@HelloWorldScene.h代码如下:

@H_706_502@voIDupdateOnce(floatdt);

@H_706_502@

@H_706_502@HelloWorldScene.cpp代码如下:

@H_706_502@bool HelloWorld::init()

@H_706_502@{

@H_706_502@...

@H_706_502@scheduleOnce(schedule_selector(HelloWorld::updateOnce),0.1f);

@H_706_502@return true;

@H_706_502@}

@H_706_502@

@H_706_502@voID HelloWorld::updateOnce(float dt)

@H_706_502@{

@H_706_502@log("Once");

@H_706_502@}

@H_706_502@在控制台中看到的效果:

@H_706_502@cocos2d: Once

切换场景

voIDLoadingScene::GotoNextScene()

{

//goto next scene.

SpriteFrameCache::getInstance()->addSpriteFramesWithfile("gameover.pList","gameover.png");//把游戏结束时要用到资源加载到缓存里

scheduleOnce(schedule_selector(LoadingScene::RunNextScene),1.0f);//完成资源加载后切换场景

}

voIDLoadingScene::RunNextScene(floatdt)

{

this->removeAllChildren();//切换场景前移除所有子结点

autoGameMainScene=GameMainScene::createScene();//创建游戏主类,用于战斗

Director::getInstance()->replaceScene(TransitionZoomFlipX::create(1.0f,GameMainScene));//切换场景

@H_706_502@}

重写create方法和事件处理函数

@H_706_502@Infolayer.h

#ifndef__Moon3d__Infolayer__

#define__Moon3d__Infolayer__

#include"cocos2d.h"

USING_NS_CC;

classInfolayer :publicLayer

{

public:

staticInfolayer*create(constchar*type_file_name);//创建层

virtualboolinit();//初始化,主要用来处理要显示的信息

private:

constchar*type_file_name;//要显示的信息对应的文件名

voIDdismiss();//信息图片消失

virtualboolontouchBegan(touch *touch,Event *event);//接受触屏事件

virtualvoIDontouchmoved(touch *touch,Event *event);//接受触屏事件

virtualvoIDontouchended(touch *touch,Event *event);//接受触屏事件

};

#endif/* defined(__Moon3d__Infolayer__) */

@H_706_502@Infolayer.cpp

#include"Infolayer.h"

Infolayer*Infolayer::create(constchar*type_file_name)

{

Infolayer *pRet = newInfolayer();//创建层

pRet->type_file_name = type_file_name;//设置要显示的信息对应的图片名字

if (pRet && pRet->init())//如果层创建成功并初始化成功

{

pRet->autorelease();//把层用自动引用计数管理

}

else//如果创建失败或初始化失败

{

deletepRet;//删除层实例

pRet =NulL;//把实例置空

}

returnpRet;//返回层实例

}

boolInfolayer::init()

{

autowindow =Sprite::create(type_file_name);//创建要显示的信息精灵

//window->setposition(Vec2(visibleSize.wIDth/2,visibleSize.height/2));

addChild(window,1);//把信息精灵添加到层中

window->setScale(0.2f);//缩小为原来的0.2

window->runAction(Sequence::create(Scaleto::create(0.2f,

NulL));//播放层放大缩小动画效果

autoListener =EventListenertouchOneByOne::create();//创建触摸监听,这是单点触屏监听,3.2触屏机制see botton notes

Listener->setSwallowtouches(true);//设置事件可穿透

Listener->ontouchBegan = CC_CALLBACK_2(Infolayer::ontouchBegan,this);//设置触屏回调

Listener->ontouchmoved = CC_CALLBACK_2(Infolayer::ontouchmoved,this);//设置触屏回调

Listener->ontouchended = CC_CALLBACK_2(Infolayer::ontouchended,this);//设置触屏回调

_eventdispatcher->addEventListenerWithSceneGraPHPriority(Listener,this);//把监听添加到事件管理器中

returntrue;//返回初始化成功

}

voIDInfolayer::dismiss(){

this->removeFromParent();//将本层从父类中移除

}

boolInfolayer::ontouchBegan(touch *touch,Event *event)

{

this->runAction(Sequence::create(Scaleto::create(0.2f,0.2f),CallFunc::create(CC_CALLBACK_0(Infolayer::dismiss,NulL));//当有点击事件时,让信息精灵播放动画,播放完动画后,调用层移除回调

returntrue;

}

voIDInfolayer::ontouchmoved(touch *touch,Event *event)

{

}

voIDInfolayer::ontouchended(touch *touch,Event *event)

{

}

/************************************************************************************************************

先来看下Event的结构。

1.Event--------EventtouchEventCustomEventMouseEventKeyboardEventFocusEventacceleration

其中,Eventtouch EventCustom是比较特殊的两个EventEventtouch3.x版本的触摸机制相关的Event,而EventCustom则是3.x自定义事件机制的基础,该机制取代了2.x版本中的NotificationCenter

2.EventListener-------------EventListenertouchOneByOneEventListenertouchAllAtOnceEventListenerCustomEventListenerFocusEventListenerMouse....对应

相比于EventListener多了一个,因为对应的touch被拆分成了两个Listener,一个是OneByone,一个是touchAllAtOnce。前者是ontouchBegan等函数的Listener,后者是ontouchesBegan等函数的Listener

1.2.Eventdispatcher,EventListener,Event三者的关系

Event相当于dataEventListener包含了datafuction的一种映射关系,而Eventdispatcher相当于一个Manager,管理着EventListener,决定着Event的调用顺序。

Event中包含了typetarget等信息;EventListener包含了ListenerID,相关联的Node,对应的callBackEventdispatcher里含有各种mapvector来管理不同的Listener

@H_706_502@*/

总结

以上是内存溢出为你收集整理的2.Cocos2d-x-3.2编写3d打飞机,项目代码总结全部内容,希望文章能够帮你解决2.Cocos2d-x-3.2编写3d打飞机,项目代码总结所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1018875.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存