2012-04-08 14:16:29 +08:00
|
|
|
#include "MotionStreakTest.h"
|
|
|
|
#include "../testResource.h"
|
|
|
|
|
2012-06-12 16:56:34 +08:00
|
|
|
enum {
|
|
|
|
kTagLabel = 1,
|
|
|
|
kTagSprite1 = 2,
|
|
|
|
kTagSprite2 = 3,
|
|
|
|
};
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Layer* nextMotionAction();
|
|
|
|
Layer* backMotionAction();
|
|
|
|
Layer* restartMotionAction();
|
2012-04-08 14:16:29 +08:00
|
|
|
|
2010-08-25 17:02:58 +08:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// MotionStreakTest1
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------
|
2012-04-08 14:16:29 +08:00
|
|
|
|
2010-08-25 17:02:58 +08:00
|
|
|
void MotionStreakTest1::onEnter()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
MotionStreakTest::onEnter();
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Size s = Director::sharedDirector()->getWinSize();
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// the root object just rotates around
|
2013-06-20 14:17:10 +08:00
|
|
|
_root = Sprite::create(s_pPathR1);
|
2013-06-15 14:03:30 +08:00
|
|
|
addChild(_root, 1);
|
|
|
|
_root->setPosition(ccp(s.width/2, s.height/2));
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// the target object is offset from root, and the streak is moved to follow it
|
2013-06-20 14:17:10 +08:00
|
|
|
_target = Sprite::create(s_pPathR1);
|
2013-06-15 14:03:30 +08:00
|
|
|
_root->addChild(_target);
|
|
|
|
_target->setPosition(ccp(s.width/4, 0));
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// create the streak object and add it to the scene
|
2013-07-05 16:49:22 +08:00
|
|
|
streak = MotionStreak::create(2, 3, 32, Color3B::green, s_streak);
|
2012-06-12 16:56:34 +08:00
|
|
|
addChild(streak);
|
2012-04-19 14:35:52 +08:00
|
|
|
// schedule an update on each frame so we can syncronize the streak with the target
|
|
|
|
schedule(schedule_selector(MotionStreakTest1::onUpdate));
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
ActionInterval* a1 = RotateBy::create(2, 360);
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Action* action1 = RepeatForever::create(a1);
|
|
|
|
ActionInterval* motion = MoveBy::create(2, ccp(100,0) );
|
|
|
|
_root->runAction( RepeatForever::create(Sequence::create(motion, motion->reverse(), NULL) ) );
|
2013-06-15 14:03:30 +08:00
|
|
|
_root->runAction( action1 );
|
2012-03-22 14:32:32 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
ActionInterval *colorAction = RepeatForever::create(Sequence::create(
|
|
|
|
TintTo::create(0.2f, 255, 0, 0),
|
|
|
|
TintTo::create(0.2f, 0, 255, 0),
|
|
|
|
TintTo::create(0.2f, 0, 0, 255),
|
|
|
|
TintTo::create(0.2f, 0, 255, 255),
|
|
|
|
TintTo::create(0.2f, 255, 255, 0),
|
|
|
|
TintTo::create(0.2f, 255, 0, 255),
|
|
|
|
TintTo::create(0.2f, 255, 255, 255),
|
2012-04-19 14:35:52 +08:00
|
|
|
NULL));
|
2012-03-22 14:32:32 +08:00
|
|
|
|
2012-06-12 16:56:34 +08:00
|
|
|
streak->runAction(colorAction);
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|
2012-04-08 14:16:29 +08:00
|
|
|
|
2012-06-08 13:55:28 +08:00
|
|
|
void MotionStreakTest1::onUpdate(float delta)
|
2012-04-08 14:16:29 +08:00
|
|
|
{
|
2013-06-20 14:17:10 +08:00
|
|
|
streak->setPosition( _target->convertToWorldSpace(PointZero) );
|
2012-04-08 14:16:29 +08:00
|
|
|
}
|
|
|
|
|
2010-08-25 17:02:58 +08:00
|
|
|
std::string MotionStreakTest1::title()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return "MotionStreak test 1";
|
2012-04-08 14:16:29 +08:00
|
|
|
}
|
|
|
|
|
2010-08-25 17:02:58 +08:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// MotionStreakTest2
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------
|
2012-04-08 14:16:29 +08:00
|
|
|
|
2010-08-25 17:02:58 +08:00
|
|
|
void MotionStreakTest2::onEnter()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
MotionStreakTest::onEnter();
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2012-06-15 15:10:40 +08:00
|
|
|
setTouchEnabled(true);
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Size s = Director::sharedDirector()->getWinSize();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// create the streak object and add it to the scene
|
2013-07-05 16:49:22 +08:00
|
|
|
streak = MotionStreak::create(3, 3, 64, Color3B::white, s_streak );
|
2012-06-12 16:56:34 +08:00
|
|
|
addChild(streak);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-10-23 17:48:50 +08:00
|
|
|
streak->setPosition( ccp(s.width/2, s.height/2) );
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|
2012-04-08 14:16:29 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
void MotionStreakTest2::ccTouchesMoved(Set* touches, Event* event)
|
2010-08-25 17:02:58 +08:00
|
|
|
{
|
2013-06-22 11:02:43 +08:00
|
|
|
Touch* touch = (Touch*) touches->anyObject();
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Point touchLocation = touch->getLocation();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-12 16:56:34 +08:00
|
|
|
streak->setPosition( touchLocation );
|
2012-04-08 14:16:29 +08:00
|
|
|
}
|
|
|
|
|
2010-08-25 17:02:58 +08:00
|
|
|
std::string MotionStreakTest2::title()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return "MotionStreak test";
|
2012-04-08 14:16:29 +08:00
|
|
|
}
|
|
|
|
|
2012-06-12 16:56:34 +08:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Issue1358
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
|
|
|
|
void Issue1358::onEnter()
|
|
|
|
{
|
|
|
|
MotionStreakTest::onEnter();
|
|
|
|
|
|
|
|
// ask director the the window size
|
2013-06-20 14:17:10 +08:00
|
|
|
Size size = Director::sharedDirector()->getWinSize();
|
2012-06-12 16:56:34 +08:00
|
|
|
|
2013-07-05 16:49:22 +08:00
|
|
|
streak = MotionStreak::create(2.0f, 1.0f, 50.0f, Color3B(255, 255, 0), "Images/Icon.png");
|
2012-06-12 16:56:34 +08:00
|
|
|
addChild(streak);
|
|
|
|
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_center = ccp(size.width/2, size.height/2);
|
|
|
|
_radius = size.width/3;
|
|
|
|
_angle = 0.0f;
|
2012-06-12 16:56:34 +08:00
|
|
|
|
|
|
|
schedule(schedule_selector(Issue1358::update), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Issue1358::update(float dt)
|
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_angle += 1.0f;
|
|
|
|
streak->setPosition(ccp(_center.x + cosf(_angle/180 * M_PI)*_radius,
|
|
|
|
_center.y + sinf(_angle/ 180 * M_PI)*_radius));
|
2012-06-12 16:56:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string Issue1358::title()
|
|
|
|
{
|
|
|
|
return "Issue 1358";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Issue1358::subtitle()
|
|
|
|
{
|
|
|
|
return "The tail should use the texture";
|
|
|
|
}
|
|
|
|
|
2010-08-25 17:02:58 +08:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// MotionStreakTest
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------
|
2012-04-08 14:16:29 +08:00
|
|
|
|
|
|
|
// enum
|
|
|
|
// {
|
2012-04-19 14:35:52 +08:00
|
|
|
// IDC_NEXT = 100,
|
|
|
|
// IDC_BACK,
|
|
|
|
// IDC_RESTART
|
2012-04-08 14:16:29 +08:00
|
|
|
// };
|
|
|
|
|
|
|
|
static int sceneIdx = -1;
|
|
|
|
|
2012-06-12 16:56:34 +08:00
|
|
|
#define MAX_LAYER 3
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Layer* createMotionLayer(int nIndex)
|
2010-08-25 17:02:58 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
switch(nIndex)
|
|
|
|
{
|
|
|
|
case 0: return new MotionStreakTest1();
|
|
|
|
case 1: return new MotionStreakTest2();
|
2012-06-12 16:56:34 +08:00
|
|
|
case 2: return new Issue1358();
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return NULL;
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Layer* nextMotionAction()
|
2010-08-25 17:02:58 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
sceneIdx++;
|
|
|
|
sceneIdx = sceneIdx % MAX_LAYER;
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Layer* pLayer = createMotionLayer(sceneIdx);
|
2012-04-19 14:35:52 +08:00
|
|
|
pLayer->autorelease();
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return pLayer;
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Layer* backMotionAction()
|
2010-08-25 17:02:58 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
sceneIdx--;
|
|
|
|
int total = MAX_LAYER;
|
|
|
|
if( sceneIdx < 0 )
|
|
|
|
sceneIdx += total;
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Layer* pLayer = createMotionLayer(sceneIdx);
|
2012-04-19 14:35:52 +08:00
|
|
|
pLayer->autorelease();
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return pLayer;
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Layer* restartMotionAction()
|
2010-08-25 17:02:58 +08:00
|
|
|
{
|
2013-06-20 14:17:10 +08:00
|
|
|
Layer* pLayer = createMotionLayer(sceneIdx);
|
2012-04-19 14:35:52 +08:00
|
|
|
pLayer->autorelease();
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return pLayer;
|
2012-04-08 14:16:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MotionStreakTest::MotionStreakTest(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
MotionStreakTest::~MotionStreakTest(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-08-25 17:02:58 +08:00
|
|
|
std::string MotionStreakTest::title()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return "No title";
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|
|
|
|
|
2012-06-12 16:56:34 +08:00
|
|
|
std::string MotionStreakTest::subtitle()
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2010-08-25 17:02:58 +08:00
|
|
|
void MotionStreakTest::onEnter()
|
|
|
|
{
|
2013-06-07 08:12:28 +08:00
|
|
|
BaseTest::onEnter();
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Size s = Director::sharedDirector()->getWinSize();
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
MenuItemToggle *itemMode = MenuItemToggle::createWithCallback( CC_CALLBACK_1(MotionStreakTest::modeCallback, this),
|
|
|
|
MenuItemFont::create("Use High Quality Mode"),
|
|
|
|
MenuItemFont::create("Use Fast Mode"),
|
2012-04-19 14:35:52 +08:00
|
|
|
NULL);
|
2012-03-22 14:32:32 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Menu *menuMode = Menu::create(itemMode, NULL);
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(menuMode);
|
2012-03-22 14:32:32 +08:00
|
|
|
|
2012-06-12 16:56:34 +08:00
|
|
|
menuMode->setPosition(ccp(s.width/2, s.height/4));
|
2012-03-22 14:32:32 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
void MotionStreakTest::modeCallback(Object *pSender)
|
2012-03-22 14:32:32 +08:00
|
|
|
{
|
2012-06-15 17:39:13 +08:00
|
|
|
bool fastMode = streak->isFastMode();
|
|
|
|
streak->setFastMode(! fastMode);
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
void MotionStreakTest::restartCallback(Object* pSender)
|
2010-08-25 17:02:58 +08:00
|
|
|
{
|
2013-06-20 14:17:10 +08:00
|
|
|
Scene* s = new MotionStreakTestScene();//CCScene::create();
|
2012-04-19 14:35:52 +08:00
|
|
|
s->addChild(restartMotionAction());
|
2010-08-25 17:02:58 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Director::sharedDirector()->replaceScene(s);
|
2010-09-13 18:04:36 +08:00
|
|
|
s->release();
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
void MotionStreakTest::nextCallback(Object* pSender)
|
2010-08-25 17:02:58 +08:00
|
|
|
{
|
2013-06-20 14:17:10 +08:00
|
|
|
Scene* s = new MotionStreakTestScene();//CCScene::create();
|
2012-04-19 14:35:52 +08:00
|
|
|
s->addChild( nextMotionAction() );
|
2013-06-20 14:17:10 +08:00
|
|
|
Director::sharedDirector()->replaceScene(s);
|
2010-09-13 18:04:36 +08:00
|
|
|
s->release();
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
void MotionStreakTest::backCallback(Object* pSender)
|
2010-08-25 17:02:58 +08:00
|
|
|
{
|
2013-06-20 14:17:10 +08:00
|
|
|
Scene* s = new MotionStreakTestScene;//CCScene::create();
|
2012-04-19 14:35:52 +08:00
|
|
|
s->addChild( backMotionAction() );
|
2013-06-20 14:17:10 +08:00
|
|
|
Director::sharedDirector()->replaceScene(s);
|
2010-09-13 18:04:36 +08:00
|
|
|
s->release();
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void MotionStreakTestScene::runThisTest()
|
|
|
|
{
|
2013-06-20 14:17:10 +08:00
|
|
|
Layer* pLayer = nextMotionAction();
|
2010-08-25 17:02:58 +08:00
|
|
|
addChild(pLayer);
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Director::sharedDirector()->replaceScene(this);
|
2010-08-25 17:02:58 +08:00
|
|
|
}
|