2010-11-18 14:50:28 +08:00
|
|
|
#include "ClickAndMoveTest.h"
|
|
|
|
#include "../testResource.h"
|
|
|
|
|
2010-08-23 11:53:37 +08:00
|
|
|
enum
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
kTagSprite = 1,
|
2010-11-18 14:50:28 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
void ClickAndMoveTestScene::runThisTest()
|
|
|
|
{
|
2014-08-28 07:31:57 +08:00
|
|
|
auto layer = new (std::nothrow) MainLayer();
|
2013-07-23 08:25:44 +08:00
|
|
|
layer->autorelease();
|
2010-11-18 14:50:28 +08:00
|
|
|
|
2013-07-23 08:25:44 +08:00
|
|
|
addChild(layer);
|
2013-07-12 06:24:23 +08:00
|
|
|
Director::getInstance()->replaceScene(this);
|
2010-11-18 14:50:28 +08:00
|
|
|
}
|
|
|
|
|
2010-08-23 11:53:37 +08:00
|
|
|
MainLayer::MainLayer()
|
|
|
|
{
|
2013-10-23 11:27:24 +08:00
|
|
|
auto listener = EventListenerTouchOneByOne::create();
|
|
|
|
listener->onTouchBegan = CC_CALLBACK_2(MainLayer::onTouchBegan, this);
|
|
|
|
listener->onTouchEnded = CC_CALLBACK_2(MainLayer::onTouchEnded, this);
|
2013-10-26 15:04:01 +08:00
|
|
|
_eventDispatcher->addEventListenerWithSceneGraphPriority(listener, this);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-08-16 16:05:27 +08:00
|
|
|
auto sprite = Sprite::create(s_pathGrossini);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-08-16 16:05:27 +08:00
|
|
|
auto layer = LayerColor::create(Color4B(255,255,0,255));
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(layer, -1);
|
|
|
|
|
|
|
|
addChild(sprite, 0, kTagSprite);
|
2014-08-28 11:41:18 +08:00
|
|
|
sprite->setPosition(20,150);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2014-05-15 01:07:09 +08:00
|
|
|
sprite->runAction( JumpTo::create(4, Vec2(300,48), 100, 4) );
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
layer->runAction( RepeatForever::create(
|
|
|
|
Sequence::create(
|
|
|
|
FadeIn::create(1),
|
|
|
|
FadeOut::create(1),
|
2014-07-10 00:45:27 +08:00
|
|
|
nullptr)
|
2012-12-10 14:12:56 +08:00
|
|
|
));
|
2010-11-18 14:50:28 +08:00
|
|
|
}
|
|
|
|
|
2013-09-03 18:22:03 +08:00
|
|
|
bool MainLayer::onTouchBegan(Touch* touch, Event *event)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainLayer::onTouchEnded(Touch* touch, Event *event)
|
2010-08-23 11:53:37 +08:00
|
|
|
{
|
2013-08-16 16:05:27 +08:00
|
|
|
auto location = touch->getLocation();
|
2010-08-23 11:53:37 +08:00
|
|
|
|
2013-08-16 16:05:27 +08:00
|
|
|
auto s = getChildByTag(kTagSprite);
|
2012-04-19 14:35:52 +08:00
|
|
|
s->stopAllActions();
|
2014-05-15 01:07:09 +08:00
|
|
|
s->runAction( MoveTo::create(1, Vec2(location.x, location.y) ) );
|
2012-07-31 17:41:53 +08:00
|
|
|
float o = location.x - s->getPosition().x;
|
|
|
|
float a = location.y - s->getPosition().y;
|
2012-04-19 14:35:52 +08:00
|
|
|
float at = (float) CC_RADIANS_TO_DEGREES( atanf( o/a) );
|
|
|
|
|
|
|
|
if( a < 0 )
|
|
|
|
{
|
|
|
|
if( o < 0 )
|
|
|
|
at = 180 + fabs(at);
|
|
|
|
else
|
|
|
|
at = 180 - fabs(at);
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
s->runAction( RotateTo::create(1, at) );
|
2010-08-23 11:53:37 +08:00
|
|
|
}
|