mirror of https://github.com/axmolengine/axmol.git
91 lines
3.0 KiB
C++
91 lines
3.0 KiB
C++
|
/****************************************************************************
|
||
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
||
|
|
||
|
http://www.cocos2d-x.org
|
||
|
|
||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
of this software and associated documentation files (the "Software"), to deal
|
||
|
in the Software without restriction, including without limitation the rights
|
||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
copies of the Software, and to permit persons to whom the Software is
|
||
|
furnished to do so, subject to the following conditions:
|
||
|
|
||
|
The above copyright notice and this permission notice shall be included in
|
||
|
all copies or substantial portions of the Software.
|
||
|
|
||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
|
THE SOFTWARE.
|
||
|
****************************************************************************/
|
||
|
|
||
|
#include "ClickAndMoveTest.h"
|
||
|
#include "../testResource.h"
|
||
|
|
||
|
USING_NS_CC;
|
||
|
|
||
|
enum
|
||
|
{
|
||
|
kTagSprite = 1,
|
||
|
};
|
||
|
|
||
|
ClickAndMoveTest::ClickAndMoveTest()
|
||
|
{
|
||
|
ADD_TEST_CASE(ClickAndMoveTestCase);
|
||
|
}
|
||
|
|
||
|
ClickAndMoveTestCase::ClickAndMoveTestCase()
|
||
|
{
|
||
|
auto listener = EventListenerTouchOneByOne::create();
|
||
|
listener->onTouchBegan = CC_CALLBACK_2(ClickAndMoveTestCase::onTouchBegan, this);
|
||
|
listener->onTouchEnded = CC_CALLBACK_2(ClickAndMoveTestCase::onTouchEnded, this);
|
||
|
_eventDispatcher->addEventListenerWithSceneGraphPriority(listener, this);
|
||
|
|
||
|
auto sprite = Sprite::create(s_pathGrossini);
|
||
|
|
||
|
auto layer = LayerColor::create(Color4B(255,255,0,255));
|
||
|
addChild(layer, -1);
|
||
|
|
||
|
addChild(sprite, 0, kTagSprite);
|
||
|
sprite->setPosition(20,150);
|
||
|
|
||
|
sprite->runAction( JumpTo::create(4, Vec2(300,48), 100, 4) );
|
||
|
|
||
|
layer->runAction( RepeatForever::create(
|
||
|
Sequence::create(
|
||
|
FadeIn::create(1),
|
||
|
FadeOut::create(1),
|
||
|
nullptr)
|
||
|
));
|
||
|
}
|
||
|
|
||
|
bool ClickAndMoveTestCase::onTouchBegan(Touch* touch, Event *event)
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void ClickAndMoveTestCase::onTouchEnded(Touch* touch, Event *event)
|
||
|
{
|
||
|
auto location = touch->getLocation();
|
||
|
|
||
|
auto s = getChildByTag(kTagSprite);
|
||
|
s->stopAllActions();
|
||
|
s->runAction( MoveTo::create(1, Vec2(location.x, location.y) ) );
|
||
|
float o = location.x - s->getPosition().x;
|
||
|
float a = location.y - s->getPosition().y;
|
||
|
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);
|
||
|
}
|
||
|
|
||
|
s->runAction( RotateTo::create(1, at) );
|
||
|
}
|