mirror of https://github.com/axmolengine/axmol.git
214 lines
5.4 KiB
C++
214 lines
5.4 KiB
C++
#include "MotionStreakTest.h"
|
|
#include "../testResource.h"
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// MotionStreakTest1
|
|
//
|
|
//------------------------------------------------------------------
|
|
|
|
void MotionStreakTest1::onEnter()
|
|
{
|
|
MotionStreakTest::onEnter();
|
|
|
|
CGSize s = CCDirector::getSharedDirector()->getWinSize();
|
|
|
|
// the root object just rotates around
|
|
m_root = CCSprite::spriteWithFile(s_pPathR1);
|
|
addChild(m_root, 1);
|
|
m_root->setPosition( CGPointMake(s.width/2, s.height/2) );
|
|
|
|
// the target object is offset from root, and the streak is moved to follow it
|
|
m_target = CCSprite::spriteWithFile(s_pPathR1);
|
|
m_root->addChild(m_target);
|
|
m_target->setPosition( CGPointMake(100,0) );
|
|
|
|
// create the streak object and add it to the scene
|
|
m_streak = CCMotionStreak::streakWithFade(2, 3, s_streak, 32, 32, ccc4(0,255,0,255) );
|
|
addChild( m_streak );
|
|
// schedule an update on each frame so we can syncronize the streak with the target
|
|
schedule(schedule_selector(MotionStreakTest1::onUpdate));
|
|
|
|
CCIntervalAction* a1 = CCRotateBy::actionWithDuration(2, 360);
|
|
|
|
CCAction* action1 = CCRepeatForever::actionWithAction(a1);
|
|
CCIntervalAction* motion = CCMoveBy::actionWithDuration(2, CGPointMake(100,0) );
|
|
m_root->runAction( CCRepeatForever::actionWithAction((CCIntervalAction*)(CCSequence::actions(motion, motion->reverse(), NULL)) ) );
|
|
m_root->runAction( action1 );
|
|
}
|
|
|
|
void MotionStreakTest1::onUpdate(ccTime delta)
|
|
{
|
|
m_streak->setPosition( m_target->convertToWorldSpace(CGPointZero) );
|
|
}
|
|
|
|
std::string MotionStreakTest1::title()
|
|
{
|
|
return "MotionStreak test 1";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// MotionStreakTest2
|
|
//
|
|
//------------------------------------------------------------------
|
|
|
|
void MotionStreakTest2::onEnter()
|
|
{
|
|
MotionStreakTest::onEnter();
|
|
|
|
setIsTouchEnabled(true);
|
|
|
|
CGSize s = CCDirector::getSharedDirector()->getWinSize();
|
|
|
|
// create the streak object and add it to the scene
|
|
m_streak = CCMotionStreak::streakWithFade(3, 3, s_streak, 64, 32, ccc4(255,255,255,255) );
|
|
addChild( m_streak );
|
|
|
|
m_streak->setPosition( CGPointMake(s.width/2, s.height/2) );
|
|
}
|
|
|
|
void MotionStreakTest2::ccTouchesMoved(NSSet* touches, UIEvent* event)
|
|
{
|
|
NSSetIterator it = touches->begin();
|
|
CCTouch* touch = (CCTouch*)(*it);
|
|
|
|
CGPoint touchLocation = touch->locationInView( touch->view() );
|
|
touchLocation = CCDirector::getSharedDirector()->convertToGL( touchLocation );
|
|
|
|
m_streak->setPosition( touchLocation );
|
|
}
|
|
|
|
std::string MotionStreakTest2::title()
|
|
{
|
|
return "MotionStreak test (tap screen)";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// MotionStreakTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
|
|
// enum
|
|
// {
|
|
// IDC_NEXT = 100,
|
|
// IDC_BACK,
|
|
// IDC_RESTART
|
|
// };
|
|
|
|
static int sceneIdx = -1;
|
|
|
|
#define MAX_LAYER 2
|
|
|
|
CCLayer* createMotionLayer(int nIndex)
|
|
{
|
|
switch(nIndex)
|
|
{
|
|
case 0: return new MotionStreakTest1();
|
|
case 1: return new MotionStreakTest2();
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
CCLayer* nextMotionAction()
|
|
{
|
|
sceneIdx++;
|
|
sceneIdx = sceneIdx % MAX_LAYER;
|
|
|
|
CCLayer* pLayer = createMotionLayer(sceneIdx);
|
|
pLayer->autorelease();
|
|
|
|
return pLayer;
|
|
}
|
|
|
|
CCLayer* backMotionAction()
|
|
{
|
|
sceneIdx--;
|
|
int total = MAX_LAYER;
|
|
if( sceneIdx < 0 )
|
|
sceneIdx += total;
|
|
|
|
CCLayer* pLayer = createMotionLayer(sceneIdx);
|
|
pLayer->autorelease();
|
|
|
|
return pLayer;
|
|
}
|
|
|
|
CCLayer* restartMotionAction()
|
|
{
|
|
CCLayer* pLayer = createMotionLayer(sceneIdx);
|
|
pLayer->autorelease();
|
|
|
|
return pLayer;
|
|
}
|
|
|
|
|
|
MotionStreakTest::MotionStreakTest(void)
|
|
{
|
|
}
|
|
|
|
MotionStreakTest::~MotionStreakTest(void)
|
|
{
|
|
}
|
|
|
|
std::string MotionStreakTest::title()
|
|
{
|
|
return "No title";
|
|
}
|
|
|
|
void MotionStreakTest::onEnter()
|
|
{
|
|
CCLayer::onEnter();
|
|
|
|
CGSize s = CCDirector::getSharedDirector()->getWinSize();
|
|
|
|
CCLabel* label = CCLabel::labelWithString(title().c_str(), "Arial", 32);
|
|
addChild(label, 1);
|
|
label->setPosition( CGPointMake(s.width/2, s.height-50) );
|
|
|
|
CCMenuItemImage *item1 = CCMenuItemImage::itemFromNormalImage(s_pPathB1, s_pPathB2, this, menu_selector(MotionStreakTest::backCallback) );
|
|
CCMenuItemImage *item2 = CCMenuItemImage::itemFromNormalImage(s_pPathR1, s_pPathR2, this, menu_selector(MotionStreakTest::restartCallback) );
|
|
CCMenuItemImage *item3 = CCMenuItemImage::itemFromNormalImage(s_pPathF1, s_pPathF2, this, menu_selector(MotionStreakTest::nextCallback) );
|
|
|
|
CCMenu *menu = CCMenu::menuWithItems(item1, item2, item3, NULL);
|
|
|
|
menu->setPosition( CGPointZero );
|
|
item1->setPosition( CGPointMake( s.width/2 - 100,30) );
|
|
item2->setPosition( CGPointMake( s.width/2, 30) );
|
|
item3->setPosition( CGPointMake( s.width/2 + 100,30) );
|
|
|
|
addChild(menu, 1);
|
|
}
|
|
|
|
void MotionStreakTest::restartCallback(NSObject* pSender)
|
|
{
|
|
CCScene* s = new MotionStreakTestScene();//CCScene::node();
|
|
s->addChild(restartMotionAction());
|
|
|
|
CCDirector::getSharedDirector()->replaceScene(s);
|
|
}
|
|
|
|
void MotionStreakTest::nextCallback(NSObject* pSender)
|
|
{
|
|
CCScene* s = new MotionStreakTestScene();//CCScene::node();
|
|
s->addChild( nextMotionAction() );
|
|
CCDirector::getSharedDirector()->replaceScene(s);
|
|
}
|
|
|
|
void MotionStreakTest::backCallback(NSObject* pSender)
|
|
{
|
|
CCScene* s = new MotionStreakTestScene;//CCScene::node();
|
|
s->addChild( backMotionAction() );
|
|
CCDirector::getSharedDirector()->replaceScene(s);
|
|
}
|
|
|
|
void MotionStreakTestScene::runThisTest()
|
|
{
|
|
CCLayer* pLayer = nextMotionAction();
|
|
addChild(pLayer);
|
|
|
|
CCDirector::getSharedDirector()->replaceScene(this);
|
|
}
|