cocos2d clippindNode,新手引导

cocos2d clippindNode,新手引导,第1张

概述1.LayerColor做遮罩,ClippingNode做亮点区域裁剪2.剪裁了一个区域,但是只想传递点击这个区域的触摸事件到下层 //只有触摸在圆形区域才可以向下传递触摸时间 auto touchListener = EventListenerTouchOneByOne::create(); touchListener->onTouchBegan = CC_CALLBACK
1.Layercolor做遮罩,ClipPingNode做亮点区域裁剪2.剪裁了一个区域,但是只想传递点击这个区域的触摸事件到下层	//只有触摸在圆形区域才可以向下传递触摸时间    auto touchListener = EventListenertouchOneByOne::create();    touchListener->ontouchBegan = CC_CALLBACK_2(CircleShelterLayer::ontouchBegan,this);    touchListener->ontouchBegan = [=](touch *touch,Event *event){        Point point = touch->getLocation();        float distance = point.getdistance(pos);        if (distance > radius)        {            touchListener->setSwallowtouches(true);            return true;        }        else        {            touchListener->setSwallowtouches(false);        }        return true;    }; 3.	clipPingNode:		http://www.zaojiahua.com/ccclipPing.HTML	CcclipPingNode做个新手引导:		http://www.zaojiahua.com/beginner-guIDe.HTML

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


1.ClipPingNode

CCClippingNode在做新手引导的时候经常用到,所以要想做个新手引导就得先学学这个,当然它的功能不会仅限于此,明白了原理以后你可以自由发挥啊。在网上看到不少的文章,但是说的不够明白,我今天好好给大家说说吧,这里只说下原理,下次利用这个做个新手引导出来。

需要明确的一点就是CcclipPingNode本质上是一个节点,什么是节点,节点就是可以存放东西,它也可以放到其他的节点上。大家在新手引导中看到的画面,大多数是一些背景层什么的,这个CcclipPingNode也是放到了场景中的,只不过zOrder是靠前的。我么需要完成的这些个效果都是在这个层中实现的,不要被搞乱了。首先我们在这个node层中添加一些我们的元素,当然根据你自己的情况了,基本上都是一些精灵,那个看起来透明的遮罩层就是添加到这个node中的节点。接着,最重要的一点是这个node有一个模板节点,什么是模板节点呢,就是一个模子,我们要按照这个模子来裁剪我们的这个层,道理就像我们用剪刀按照一个模子来减一块布一样,我们最后可以设置我们是要留下这个模子裁剪出来的区域还是要留下这个模子剩下来的区域,CcclipPingNode有专门的函数来设置这个模子。下面看看代码中怎么实现吧,具体的函数调用也加了注释,很好懂的。

bool HelloWorld::init(){    if ( !cclayer::init() )    {        return false;    }    CCSize visibleSize = CCDirector::sharedDirector()->getVisibleSize();	//背景图片	CCSprite * background = CCSprite::create("HelloWorld.png");	background->setposition(ccp(visibleSize.wIDth/2,visibleSize.height/2));	this->addChild(background,0);	//创建一个裁剪节点用来实现遮罩的效果	CcclipPingNode * clipPingNode = CcclipPingNode::create();	this->addChild(clipPingNode,1);	//向裁剪节点中加入内容,这里加入的是一个透明的层	cclayercolor * layer = cclayercolor::create(ccc4(0,200));	clipPingNode->addChild(layer);	//继续向裁剪节点中加入内容,这里加入的是一个精灵	CCSprite * sprite = CCSprite::create("1.png");	sprite->setposition(ccp(visibleSize.wIDth/4,visibleSize.height/2));	clipPingNode->addChild(sprite);	//向裁剪节点中加入精灵,精灵的位置和裁剪的位置相同,所以最后让裁剪掉了	CCSprite * sprite2 = CCSprite::create("icon.png");	sprite2->setposition(ccp(visibleSize.wIDth/2,visibleSize.height/2));	clipPingNode->addChild(sprite2);	//创建模板,裁剪节点将按照这个模板来裁剪区域	CCSprite * stencil = CCSprite::create("icon.png");	stencil->setposition(ccp(visibleSize.wIDth/2,visibleSize.height/2));	clipPingNode-><strong>setStencil</strong>(stencil);	//这个是用来设置显示裁剪区域还是非裁剪区域的	clipPingNode-><strong>setInverted</strong>(true);	//我们之前放了一张裁剪的模板,按照这个模板裁剪的时候同时按照这个Alpha的值裁剪,这个值的范围是0-1	//设为0就把透明的区域裁剪掉了	//clipPingNode-><strong>setAlphaThreshold</strong>(0);    return true;}

你看到的上边的俩种图片就是通过setInverted这个函数来设置的,它可以设置你最终看到的是裁剪掉的区域还是模板的区域,我想原理你应该明白了吧。下面我们再来看一下init函数中最后注释掉的那行代码,意思注释已经写了,打开这句话我们看到的效果如下。

有了上面的基础我们应该想想怎么去做这个新手引导了,个人认为这个CcclipPingNode节点上只应该添加一个cclayrecolor,设置一下它的透明度,看起来就有了遮罩的效果了,而其他的元素都是在其他的层中的,然后我们为CcclipPingNode设置一个模板,同时设置setAlphaThreshold这句话,将透明度为0的都裁剪掉,这样就留下了精灵的形状,然后做一下触摸 *** 作的处理,应该是这样吧。下面这幅图就是这样做的。是不是有了新手引导的效果了!

http://www.zaojiahua.com/ccclipPing.HTML

===================================================================================================================================

今天花了一下午的时间做了个新手引导,用到的知识就是上篇的博客CCClippingNode遮罩解析,还不明白CCClippingNode是怎么回事的就读一下上篇文章吧。先说一下整体的思路吧,游戏正常的界面代码都不改动,逻辑还是原来的逻辑,我们只是在正常的场景上加上一个层,这个层来负责完成新手引导的功能,使用完这个层的时候就将其从场景中清除掉。需要解决的一个重要的问题就是触摸,我们要让我们后添加的这个层注册触摸事件,当点击非模板区域的时候,将触摸事件吞噬掉,这样的话下层就接受不到了,给用户点击错误的感官,当点击了模板区域的时候我们记录一下当前引导的步数,然后向下层传递,下层按他们自己的逻辑处理触摸。最后完成了所有的引导步数后,将注册的触摸事件清除,将引导层清除。下面先看看我们要为哪个场景添加引导层,没添加之前的效果,具体代码实现如下。

bool HelloWorld::init(){    if ( !cclayer::init() )    {        return false;    }    CCSize visibleSize = CCDirector::sharedDirector()->getVisibleSize();	//添加背景图片	CCSprite * background = CCSprite::create("background.png");	background->setposition(ccp(visibleSize.wIDth/2,visibleSize.height/2));	this->addChild(background);	//添加如下的俩个按钮	CCControlbutton * first = this->addbutton("first",ccp(visibleSize.wIDth/4,visibleSize.height/3));	//为按钮添加响应事件	first->addTargetWithActionForControlEvents(this,cccontrol_selector(HelloWorld::first),CCControlEventtouchDown);	CCControlbutton * second = this->addbutton("second",ccp(visibleSize.wIDth*3/4,visibleSize.height/3));	second->addTargetWithActionForControlEvents(this,cccontrol_selector(HelloWorld::second),CCControlEventtouchDown);	//添加一个精灵,点击精灵的时候跟随手指移动	this->m_sprite = CCSprite::create("sprite.png");	m_sprite->setposition(ccp(visibleSize.wIDth/2,visibleSize.height/2));	this->addChild(m_sprite);	//添加新手引导层,到时候这里可以做一个判断,如果玩家首次完游戏就添加进这个新手引导,否则不添加	BeginnerGuIDe * gudIE = BeginnerGuIDe::create();	this->addChild(gudIE);	//开启触摸	this->settouchEnabled(true);    return true;}//向helloworld层中添加按钮CCControlbutton * HelloWorld::addbutton(std::string str,CCPoint point){	//创建俩张九妹图片做为底图	CCScale9Sprite * normalbutton = CCScale9Sprite::create("buttonBackground.png");	CCScale9Sprite * selectedbutton = CCScale9Sprite::create("buttonHighlighted.png");	cclabelTTF * label = cclabelTTF::create(str.c_str(),"",30);	CCControlbutton * button = CCControlbutton::create(label,normalbutton);	//设置按钮被选中时候的九图	button->setBackgroundSpriteForState(selectedbutton,CCControlStateSelected);	button->setposition(point);	this->addChild(button);	return button;}//单击按钮时候的事件响应函数voID HelloWorld::first(CCObject * object,CCControlEvent evt){	cclabelTTF * text = cclabelTTF::create("first button clicked!",24);	text->setposition(ccp(400,400));	text->setcolor(ccc3(0,255,255));	this->addChild(text);}//同上voID HelloWorld::second(CCObject * object,CCControlEvent evt){	cclabelTTF * text = cclabelTTF::create("second button clicked!",200));	text->setcolor(ccc3(0,255));	this->addChild(text);}//注册触摸voID HelloWorld::registerWithtouchdispatcher(){	CCDirector::sharedDirector()->gettouchdispatcher()->addTargetedDelegate(this,true);}//以下俩个函数实现拖动精灵移动的效果bool HelloWorld::<strong>cctouchBegan</strong>(CCtouch * touch,CCEvent * evt){	//获得手指点击的点的坐标	CCPoint point = touch->getLocation();	//获得精灵所在的区域,CCRect包括x,y,wIDth,height	CCRect rect = this->m_sprite->boundingBox();	//判断手指点击的点是否点在了精灵上	if(rect.<strong>containsPoint</strong>(point))	{		//返回true则会接受其他的协议消息		return true;	}	return false;}voID HelloWorld::cctouchmoved(CCtouch * touch,CCEvent * evt){	//分别获得了手指现在的点击点和手指上次的点击点位置	CCPoint point = touch->getLocation();	CCPoint pointPre = touch->getPrevIoUsLocation();	//ccpsub将俩个点相减,获得一个移动方向的向量	CCPoint direction = ccpsub(point,pointPre);	CCPoint spritePoint = m_sprite->getposition();	//ccpAdd将精灵现在的位置点和移动方向的向量相加,获得精灵将要移动到的位置点	CCPoint spriteDirection = ccpAdd(spritePoint,direction);	m_sprite->setposition(spriteDirection);}

#ifndef __BEGINNER_GUIDE_SCENE_H__#define __BEGINNER_GUIDE_SCENE_H__#include "cocos2d.h"using namespace cocos2d;//创建枚举类型,记录用户单击到多少步enum STEP{	STEP_FirsT,STEP_SECOND,STEP_THIRD,STEP_FORTH //最后一步,有特殊作用};class BeginnerGuIDe : public cocos2d::cclayer{public:    virtual bool init();    static cocos2d::CCScene* scene();    CREATE_FUNC(BeginnerGuIDe);	//添加触摸事件	voID registerWithtouchdispatcher();	bool cctouchBegan(CCtouch * touch,CCEvent * evt);	//设置当前新手引导的步数,根据不同的步数使用不同的模板和坐标	voID setStep(enum STEP);	//当新手引导退出的时候在onExit()中处理一些事情	voID onExit();private:	CCSprite * m_sprite;	//裁剪节点	CcclipPingNode * clipPingNode;	CCSize visibleSize;	//记录当前的步数	enum STEP m_step;	//创建一个手型精灵用来指导用户点击	CCSprite * m_hand;};#endif

bool BeginnerGuIDe::init(){    if ( !cclayer::init() )    {        return false;    }    visibleSize = CCDirector::sharedDirector()->getVisibleSize();	//创建一个遮罩层	cclayercolor * layer = cclayercolor::create(ccc4(0,150));	//创建一个裁剪节点	clipPingNode = CcclipPingNode::create();	this->addChild(clipPingNode);	//设置一些属性	clipPingNode->addChild(layer);	clipPingNode->setInverted(true);	clipPingNode->setAlphaThreshold(0);	//创建一个手型精灵用来指导用户点击	this->m_hand = CCSprite::create("hand.png");	this->addChild(m_hand);	//设置当前新手引导为第一步	this->m_step = STEP_FirsT;	this->setStep(m_step);	//开启触摸	this->settouchEnabled(true);    return true;}voID BeginnerGuIDe::registerWithtouchdispatcher(){	//Ccmenu的优先级是-128,而CCControlbutton的优先级是0,这里的优先级至少要和helloWorld场景层中的	//优先级一样大,也可以设置为0,因为新手引导层是最后添加上去的,所以最先收到触摸的消息	CCDirector::sharedDirector()->gettouchdispatcher()->addTargetedDelegate(this,true);}bool BeginnerGuIDe::cctouchBegan(CCtouch * touch,CCEvent * evt){	//获取当前的模板	<strong>CCNode * stencil = clipPingNode->getStencil();	CCRect rect = stencil->boundingBox();	CCPoint point = touch->getLocation();</strong>	//判断手指点击的位置是否为模板的位置	if(rect.containsPoint(point))	{		if(m_step == STEP_FORTH)		{			//this->m_sprite->setVisible(false);			this->removeFromParent();			return false;		}		//改变步骤		this->setStep((enum STEP)((int)m_step+1));		return false;	}	return true;}//设置当前新手引导的步骤,根据不同的步骤使用不同的模板和坐标voID BeginnerGuIDe::setStep(enum STEP step){	CCNode * stencil = NulL;	//创建手型精灵的动作,一下动作写的相对的恶心,就是为了实现效果,大家就别看了	CCScaleto * scale1 = CCScaleto::create(0.8f,0.8f);	CCScaleto * scale2 = CCScaleto::create(0.8f,0.7f);	CCSequence * sequence = CCSequence::create(scale1,scale2,NulL);	CCRepeatForever * repeat = CCRepeatForever::create(sequence);	CCMoveto * move1 = CCMoveto::create(3.0f,ccp(visibleSize.wIDth*4/5,visibleSize.height/4));	CCRepeat * repeat1 = CCRepeat::create(sequence,50);	CCSequence * second = CCSequence::create(move1,repeat1,NulL);	CCMoveto * move2 = CCMoveto::create(2.0f,ccp(visibleSize.wIDth*0.55,visibleSize.height/3));	CCRepeat * repeat2 = CCRepeat::create(sequence,2);	CCMoveto * move2_2 = CCMoveto::create(2.0f,ccp(visibleSize.wIDth/3,visibleSize.height/3));	CCSequence * third = CCSequence::create(move2,repeat2,move2_2,NulL);	m_hand->stopAllActions();	switch(step)	{	case STEP_FirsT:		//设置模板和模板的位置		stencil = CCSprite::create("1.png");		stencil->setposition(ccp(visibleSize.wIDth/4,visibleSize.height/3));		//手型精灵执行动作		this->m_hand->runAction(repeat);		m_hand->setposition(ccp(visibleSize.wIDth/3,visibleSize.height/4));		break;	case STEP_SECOND:		//与上边的相同		stencil = CCSprite::create("2.png");		stencil->setposition(ccp(visibleSize.wIDth*3/4,visibleSize.height/3));		this->m_step = STEP_SECOND;		//手型精灵执行动作		this->m_hand->runAction(second);		break;	case STEP_THIRD:		this->m_sprite = CCSprite::create("sprite.png");		stencil = m_sprite;		stencil->setposition(ccp(visibleSize.wIDth/2,visibleSize.height/2));		this->m_step = STEP_THIRD;		//手型精灵执行动作		this->m_hand->runAction(third);		break;	case STEP_FORTH:		this->m_sprite = CCSprite::create("sprite.png");		this->m_sprite->setposition(ccp(visibleSize.wIDth/3,visibleSize.height/2));		stencil = m_sprite;		this->m_step = STEP_FORTH;		break;	}	//添加模板	clipPingNode->setStencil(stencil);}//将当前新手引导层从父节点上移除的时候记住要remove掉触摸voID BeginnerGuIDe::onExit(){	cclayer::onExit();	CCDirector::sharedDirector()->gettouchdispatcher()->removeDelegate(this);}

效果如图所示,当然程序还是有BUG的,比如用户快速点击的时候动作能否跟的上,最主要的问题是当用户点击了最后一步的时候如何进行判断用户是否点击完成,在我的程序中,我需要用户再次点击一下才能退出新手引导。还有就是如果用户没有按照要求点击的话,CcclipPingNode的模板应该回到上一步的位置处才对,这里没有实现,不过项目中用的时候就需要根据你自己的需要去做了,这里只是为了说明原理。

http://www.zaojiahua.com/beginner-guIDe.HTML 总结

以上是内存溢出为你收集整理的cocos2d clippindNode,新手引导全部内容,希望文章能够帮你解决cocos2d clippindNode,新手引导所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存