COCOS2D-X之拖动精灵Demo

我们这个Demo的效果就是可以拖动CCLayer上的特定的一个精灵.这应该是一个很常见的效果.

一、我们直接在COCOS2D-X自带的HelloCpp的工程中添加代码即可.我们在初始化中添加如下代码:

setTouchEnabled(true);//开启触屏响应
CCSize szWin = CCDirector::sharedDirector()->getVisibleSize();
CCPoint ptCenterOfLayer = CCPointMake(szWin.width/2,szWin.height/2);
CCSprite* pShoose = CCSprite::create("shoose.jpg");
pShoose->setPosition(ptCenterOfLayer);
this->addChild(pShoose,0,1000);//添加需要拖动的精灵结点
二、我们需要重写下面三个函数:

void HelloWorld::registerWithTouchDispatcher()
{
 CCDirector::sharedDirector()->getTouchDispatcher()->addTargetedDelegate(this,0,true);
}
bool HelloWorld::ccTouchBegan(CCTouch *pTouch, CCEvent *pEvent)
{
 CCPoint ptClick = pTouch->getLocation();
 CCNode *pNode = this->getChildByTag(1000);//SSPrite* pSpr = static_cast<CCSprite *>(this->getChildByTag(1000));
 return pNode->boundingBox().containsPoint(ptClick);//OR pNode->boundingBox().containsPoint(this->convertTouchToNodeSpace(pTouch));判断精灵是否被点击
}
void HelloWorld::ccTouchMoved(CCTouch *pTouch, CCEvent *pEvent)
{
 CCPoint Diff = pTouch->getDelta();
 CCNode *pNode = this->getChildByTag(1000);
 CCPoint ptCurrent = pNode->getPosition();
 pNode->setPosition(ccpAdd(ptCurrent,Diff));
}

三、在运行上面的程序的时候我们会发现一个问题就是我们会把精灵的部分拖动到屏幕之外.这可能是我们不想要的.所以还需要加入判断.代码如下:

void HelloWorld::ccTouchMoved(CCTouch *pTouch, CCEvent *pEvent)
{
 CCPoint Diff = pTouch->getDelta();
 CCNode *pNode = this->getChildByTag(1000);
 CCPoint ptCurrent = pNode->getPosition();
 pNode->setPosition(ccpAdd(ptCurrent,Diff));
 CCRect reRect = pNode->boundingBox();
 /************************以下是新添加的代码************************/
 CCSize szWin = CCDirector::sharedDirector()->getWinSize();
 CCPoint ptLowerLeft = CCPointMake(reRect.origin.x,reRect.origin.y);
 CCPoint DeltaOfLowerLeft;
 DeltaOfLowerLeft.x = min(max(reRect.origin.x,0),szWin.width-reRect.size.width)  - ptLowerLeft.x;
 DeltaOfLowerLeft.y = min(max(reRect.origin.y,0),szWin.height-reRect.size.height)- ptLowerLeft.y;
 pNode->setPosition(ccpAdd(pNode->getPosition(),DeltaOfLowerLeft));//锚点移动的"差距"和左下角的是一样的
}
PS:因为是基础学习,故不作过多分析.后继会有更多精彩内容,敬请大家关注害羞
本人郑重声明如下 一、本文来自CSDN博客,本文地址http://t.cn/z8X6uOr 二、All Rights Reserved. 任何个人或网站转载本文时不得移除本声明. 三、不得对文章进行修改,除非明确说明.同时欢迎大家评论转载和分享.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值