axmol/samples/TestCpp/Classes/LayerTest/LayerTest.cpp

514 lines
14 KiB
C++
Raw Normal View History

2010-11-18 14:50:28 +08:00
#include "LayerTest.h"
#include "../testResource.h"
2010-08-31 17:03:58 +08:00
enum
{
kTagLayer = 1,
2010-08-31 17:03:58 +08:00
};
2011-07-08 15:57:46 +08:00
CCLayer* nextTestAction();
CCLayer* backTestAction();
CCLayer* restartTestAction();
2010-11-18 14:50:28 +08:00
static int sceneIdx = -1;
2012-06-12 15:14:01 +08:00
#define MAX_LAYER 7
2010-08-31 17:03:58 +08:00
CCLayer* createTestLayer(int nIndex)
{
switch(nIndex)
{
case 0: return new LayerTest1();
case 1: return new LayerTest2();
case 2: return new LayerTestBlend();
2011-02-23 16:47:25 +08:00
case 3: return new LayerGradient();
2012-06-12 15:14:01 +08:00
case 4: return new LayerIgnoreAnchorPointPos();
case 5: return new LayerIgnoreAnchorPointRot();
case 6: return new LayerIgnoreAnchorPointScale();
}
2010-08-31 17:03:58 +08:00
return NULL;
2010-08-31 17:03:58 +08:00
}
CCLayer* nextTestAction()
{
sceneIdx++;
sceneIdx = sceneIdx % MAX_LAYER;
2010-08-31 17:03:58 +08:00
CCLayer* pLayer = createTestLayer(sceneIdx);
pLayer->autorelease();
2010-08-31 17:03:58 +08:00
return pLayer;
2010-08-31 17:03:58 +08:00
}
CCLayer* backTestAction()
{
sceneIdx--;
int total = MAX_LAYER;
if( sceneIdx < 0 )
sceneIdx += total;
CCLayer* pLayer = createTestLayer(sceneIdx);
pLayer->autorelease();
return pLayer;
2010-08-31 17:03:58 +08:00
}
CCLayer* restartTestAction()
{
CCLayer* pLayer = createTestLayer(sceneIdx);
pLayer->autorelease();
2010-08-31 17:03:58 +08:00
return pLayer;
2010-11-18 14:50:28 +08:00
}
2010-08-31 17:03:58 +08:00
//------------------------------------------------------------------
//
// LayerTest
//
//------------------------------------------------------------------
2010-11-18 14:50:28 +08:00
LayerTest::LayerTest(void)
{
}
LayerTest::~LayerTest(void)
{
}
2011-07-06 14:56:05 +08:00
string LayerTest::subtitle()
{
return "";
2011-07-06 14:56:05 +08:00
}
2010-08-31 17:03:58 +08:00
std::string LayerTest::title()
{
return "No title";
2010-08-31 17:03:58 +08:00
}
void LayerTest::onEnter()
{
CCLayer::onEnter();
CCSize s = CCDirector::sharedDirector()->getWinSize();
CCLabelTTF* label = CCLabelTTF::create(title().c_str(), "Arial", 32);
addChild(label, 1);
label->setPosition( CCPointMake(s.width/2, s.height-50) );
string subtitle_ = subtitle();
if (subtitle_.size() > 0)
{
CCLabelTTF *l = CCLabelTTF::create(subtitle_.c_str(), "Thonburi", 16);
addChild(l, 1);
l->setPosition(ccp(s.width / 2, s.height - 80));
}
CCMenuItemImage *item1 = CCMenuItemImage::create(s_pPathB1, s_pPathB2, this, menu_selector(LayerTest::backCallback) );
CCMenuItemImage *item2 = CCMenuItemImage::create(s_pPathR1, s_pPathR2, this, menu_selector(LayerTest::restartCallback) );
CCMenuItemImage *item3 = CCMenuItemImage::create(s_pPathF1, s_pPathF2, this, menu_selector(LayerTest::nextCallback) );
CCMenu *menu = CCMenu::create(item1, item2, item3, NULL);
menu->setPosition( CCPointZero );
2012-06-12 15:14:01 +08:00
item1->setPosition( ccp( s.width/2 - item2->getContentSize().width*2, item2->getContentSize().height/2) );
item2->setPosition( ccp( s.width/2, item2->getContentSize().height/2) );
item3->setPosition( ccp( s.width/2 + item2->getContentSize().width*2, item2->getContentSize().height/2) );
addChild(menu, 1);
2010-08-31 17:03:58 +08:00
}
void LayerTest::restartCallback(CCObject* pSender)
2010-08-31 17:03:58 +08:00
{
CCScene* s = new LayerTestScene();
s->addChild(restartTestAction());
2010-08-31 17:03:58 +08:00
CCDirector::sharedDirector()->replaceScene(s);
s->release();
2010-08-31 17:03:58 +08:00
}
void LayerTest::nextCallback(CCObject* pSender)
2010-08-31 17:03:58 +08:00
{
CCScene* s = new LayerTestScene();
s->addChild( nextTestAction() );
CCDirector::sharedDirector()->replaceScene(s);
s->release();
2010-08-31 17:03:58 +08:00
}
void LayerTest::backCallback(CCObject* pSender)
2010-08-31 17:03:58 +08:00
{
CCScene* s = new LayerTestScene();
s->addChild( backTestAction() );
CCDirector::sharedDirector()->replaceScene(s);
s->release();
2010-08-31 17:03:58 +08:00
}
//------------------------------------------------------------------
//
// LayerTest1
//
//------------------------------------------------------------------
void LayerTest1::onEnter()
{
LayerTest::onEnter();
setTouchEnabled(true);
CCSize s = CCDirector::sharedDirector()->getWinSize();
CCLayerColor* layer = CCLayerColor::create( ccc4(0xFF, 0x00, 0x00, 0x80), 200, 200);
layer->ignoreAnchorPointForPosition(false);
layer->setPosition( CCPointMake(s.width/2, s.height/2) );
addChild(layer, 1, kTagLayer);
2010-08-31 17:03:58 +08:00
}
void LayerTest1::registerWithTouchDispatcher()
{
CCDirector* pDirector = CCDirector::sharedDirector();
pDirector->getTouchDispatcher()->addTargetedDelegate(this, kCCMenuHandlerPriority + 1, true);
2010-08-31 17:03:58 +08:00
}
2012-03-22 13:59:47 +08:00
void LayerTest1::updateSize(CCPoint &touchLocation)
{
CCSize s = CCDirector::sharedDirector()->getWinSize();
CCSize newSize = CCSizeMake( fabs(touchLocation.x - s.width/2)*2, fabs(touchLocation.y - s.height/2)*2);
CCLayerColor* l = (CCLayerColor*) getChildByTag(kTagLayer);
l->setContentSize( newSize );
2010-08-31 17:03:58 +08:00
}
2011-03-18 09:39:34 +08:00
bool LayerTest1::ccTouchBegan(CCTouch* touch, CCEvent* event)
2010-08-31 17:03:58 +08:00
{
CCPoint touchLocation = touch->locationInView();
touchLocation = CCDirector::sharedDirector()->convertToGL(touchLocation);
2012-03-22 13:59:47 +08:00
updateSize(touchLocation);
2010-08-31 17:03:58 +08:00
return true;
2010-08-31 17:03:58 +08:00
}
2011-03-18 09:39:34 +08:00
void LayerTest1::ccTouchMoved(CCTouch* touch, CCEvent* event)
2010-08-31 17:03:58 +08:00
{
CCPoint touchLocation = touch->locationInView();
touchLocation = CCDirector::sharedDirector()->convertToGL(touchLocation);
2012-03-22 13:59:47 +08:00
updateSize(touchLocation);
2010-08-31 17:03:58 +08:00
}
2011-03-18 09:39:34 +08:00
void LayerTest1::ccTouchEnded(CCTouch* touch, CCEvent* event)
2010-08-31 17:03:58 +08:00
{
CCPoint touchLocation = touch->locationInView();
touchLocation = CCDirector::sharedDirector()->convertToGL(touchLocation);
2012-03-22 13:59:47 +08:00
updateSize(touchLocation);
2010-08-31 17:03:58 +08:00
}
std::string LayerTest1::title()
{
return "ColorLayer resize (tap & move)";
2010-08-31 17:03:58 +08:00
}
//------------------------------------------------------------------
//
// LayerTest2
//
//------------------------------------------------------------------
void LayerTest2::onEnter()
{
LayerTest::onEnter();
CCSize s = CCDirector::sharedDirector()->getWinSize();
CCLayerColor* layer1 = CCLayerColor::create( ccc4(255, 255, 0, 80), 100, 300);
layer1->setPosition(CCPointMake(s.width/3, s.height/2));
layer1->ignoreAnchorPointForPosition(false);
addChild(layer1, 1);
CCLayerColor* layer2 = CCLayerColor::create( ccc4(0, 0, 255, 255), 100, 300);
layer2->setPosition(CCPointMake((s.width/3)*2, s.height/2));
layer2->ignoreAnchorPointForPosition(false);
addChild(layer2, 1);
CCActionInterval* actionTint = CCTintBy::create(2, -255, -127, 0);
CCActionInterval* actionTintBack = actionTint->reverse();
CCActionInterval* seq1 = (CCActionInterval*)CCSequence::create( actionTint, actionTintBack, NULL);
layer1->runAction(seq1);
CCActionInterval* actionFade = CCFadeOut::create(2.0f);
CCActionInterval* actionFadeBack = actionFade->reverse();
CCActionInterval* seq2 = (CCActionInterval*)CCSequence::create(actionFade, actionFadeBack, NULL);
layer2->runAction(seq2);
2010-08-31 17:03:58 +08:00
}
std::string LayerTest2::title()
{
return "ColorLayer: fade and tint";
2010-08-31 17:03:58 +08:00
}
//------------------------------------------------------------------
//
// LayerTestBlend
//
//------------------------------------------------------------------
2010-11-18 14:50:28 +08:00
LayerTestBlend::LayerTestBlend()
{
CCSize s = CCDirector::sharedDirector()->getWinSize();
CCLayerColor* layer1 = CCLayerColor::create( ccc4(255, 255, 255, 80) );
CCSprite* sister1 = CCSprite::create(s_pPathSister1);
CCSprite* sister2 = CCSprite::create(s_pPathSister2);
addChild(sister1);
addChild(sister2);
addChild(layer1, 100, kTagLayer);
sister1->setPosition( CCPointMake( 160, s.height/2) );
sister2->setPosition( CCPointMake( 320, s.height/2) );
schedule( schedule_selector(LayerTestBlend::newBlend), 1.0f);
2010-11-18 14:50:28 +08:00
}
2012-06-08 13:55:28 +08:00
void LayerTestBlend::newBlend(float dt)
2010-11-18 14:50:28 +08:00
{
CCLayerColor *layer = (CCLayerColor*)getChildByTag(kTagLayer);
2010-11-18 14:50:28 +08:00
GLenum src;
GLenum dst;
if( layer->getBlendFunc().dst == GL_ZERO )
2010-11-18 14:50:28 +08:00
{
2012-03-22 13:59:47 +08:00
src = GL_SRC_ALPHA;
dst = GL_ONE_MINUS_SRC_ALPHA;
2010-11-18 14:50:28 +08:00
}
else
2010-11-18 14:50:28 +08:00
{
src = GL_ONE_MINUS_DST_COLOR;
dst = GL_ZERO;
}
ccBlendFunc bf = {src, dst};
layer->setBlendFunc( bf );
}
std::string LayerTestBlend::title()
{
return "ColorLayer: blend";
2010-11-18 14:50:28 +08:00
}
2011-02-23 16:47:25 +08:00
//------------------------------------------------------------------
//
// LayerGradient
//
//------------------------------------------------------------------
LayerGradient::LayerGradient()
{
CCLayerGradient* layer1 = CCLayerGradient::create(ccc4(255,0,0,255), ccc4(0,255,0,255), ccp(0.9f, 0.9f));
addChild(layer1, 0, kTagLayer);
setTouchEnabled(true);
CCLabelTTF *label1 = CCLabelTTF::create("Compressed Interpolation: Enabled", "Marker Felt", 26);
CCLabelTTF *label2 = CCLabelTTF::create("Compressed Interpolation: Disabled", "Marker Felt", 26);
CCMenuItemLabel *item1 = CCMenuItemLabel::create(label1);
CCMenuItemLabel *item2 = CCMenuItemLabel::create(label2);
CCMenuItemToggle *item = CCMenuItemToggle::createWithTarget(this, menu_selector(LayerGradient::toggleItem), item1, item2, NULL);
CCMenu *menu = CCMenu::create(item, NULL);
addChild(menu);
CCSize s = CCDirector::sharedDirector()->getWinSize();
menu->setPosition(ccp(s.width / 2, 100));
}
void LayerGradient::toggleItem(CCObject *sender)
{
CCLayerGradient *gradient = (CCLayerGradient*)getChildByTag(kTagLayer);
gradient->setCompressedInterpolation(! gradient->isCompressedInterpolation());
}
void LayerGradient::ccTouchesMoved(CCSet * touches, CCEvent *event)
{
CCSize s = CCDirector::sharedDirector()->getWinSize();
CCSetIterator it = touches->begin();
CCTouch* touch = (CCTouch*)(*it);
CCPoint start = touch->locationInView();
start = CCDirector::sharedDirector()->convertToGL(start);
CCPoint diff = ccpSub( ccp(s.width/2,s.height/2), start);
diff = ccpNormalize(diff);
CCLayerGradient *gradient = (CCLayerGradient*) getChildByTag(1);
gradient->setVector(diff);
}
std::string LayerGradient::title()
{
return "LayerGradient";
2011-02-23 16:47:25 +08:00
}
2011-07-06 14:56:05 +08:00
string LayerGradient::subtitle()
{
return "Touch the screen and move your finger";
2011-07-06 14:56:05 +08:00
}
// LayerIgnoreAnchorPointPos
#define kLayerIgnoreAnchorPoint 1000
void LayerIgnoreAnchorPointPos::onEnter()
{
LayerTest::onEnter();
CCSize s = CCDirector::sharedDirector()->getWinSize();
CCLayerColor *l = CCLayerColor::create(ccc4(255, 0, 0, 255), 150, 150);
l->setAnchorPoint(ccp(0.5f, 0.5f));
l->setPosition(ccp( s.width/2, s.height/2));
CCMoveBy *move = CCMoveBy::create(2, ccp(100,2));
CCMoveBy * back = (CCMoveBy *)move->reverse();
CCSequence *seq = (CCSequence *)CCSequence::create(move, back, NULL);
l->runAction(CCRepeatForever::create(seq));
this->addChild(l, 0, kLayerIgnoreAnchorPoint);
CCSprite *child = CCSprite::create("Images/grossini.png");
l->addChild(child);
CCSize lsize = l->getContentSize();
child->setPosition(ccp(lsize.width/2, lsize.height/2));
CCMenuItemFont *item = CCMenuItemFont::create("Toogle ignore anchor point", this, menu_selector(LayerIgnoreAnchorPointPos::onToggle));
CCMenu *menu = CCMenu::create(item, NULL);
this->addChild(menu);
menu->setPosition(ccp(s.width/2, s.height/2));
}
void LayerIgnoreAnchorPointPos::onToggle(CCObject* pObject)
{
CCNode* pLayer = this->getChildByTag(kLayerIgnoreAnchorPoint);
bool ignore = pLayer->isIgnoreAnchorPointForPosition();
pLayer->ignoreAnchorPointForPosition(! ignore);
}
2012-06-12 15:14:01 +08:00
std::string LayerIgnoreAnchorPointPos::title()
{
return "IgnoreAnchorPoint - Position";
}
std::string LayerIgnoreAnchorPointPos::subtitle()
{
return "Ignoring Anchor Point for position";
}
// LayerIgnoreAnchorPointRot
void LayerIgnoreAnchorPointRot::onEnter()
{
LayerTest::onEnter();
CCSize s = CCDirector::sharedDirector()->getWinSize();
CCLayerColor *l = CCLayerColor::create(ccc4(255, 0, 0, 255), 200, 200);
l->setAnchorPoint(ccp(0.5f, 0.5f));
l->setPosition(ccp( s.width/2, s.height/2));
this->addChild(l, 0, kLayerIgnoreAnchorPoint);
CCRotateBy *rot = CCRotateBy::create(2, 360);
l->runAction(CCRepeatForever::create(rot));
CCSprite *child = CCSprite::create("Images/grossini.png");
l->addChild(child);
CCSize lsize = l->getContentSize();
child->setPosition(ccp(lsize.width/2, lsize.height/2));
CCMenuItemFont *item = CCMenuItemFont::create("Toogle ignore anchor point", this, menu_selector(LayerIgnoreAnchorPointRot::onToggle));
CCMenu *menu = CCMenu::create(item, NULL);
this->addChild(menu);
menu->setPosition(ccp(s.width/2, s.height/2));
}
void LayerIgnoreAnchorPointRot::onToggle(CCObject* pObject)
{
CCNode* pLayer = this->getChildByTag(kLayerIgnoreAnchorPoint);
bool ignore = pLayer->isIgnoreAnchorPointForPosition();
pLayer->ignoreAnchorPointForPosition(! ignore);
}
2012-06-12 15:14:01 +08:00
std::string LayerIgnoreAnchorPointRot::title()
{
return "IgnoreAnchorPoint - Rotation";
}
std::string LayerIgnoreAnchorPointRot::subtitle()
{
return "Ignoring Anchor Point for rotations";
}
// LayerIgnoreAnchorPointScale
void LayerIgnoreAnchorPointScale::onEnter()
{
LayerTest::onEnter();
CCSize s = CCDirector::sharedDirector()->getWinSize();
CCLayerColor *l = CCLayerColor::create(ccc4(255, 0, 0, 255), 200, 200);
l->setAnchorPoint(ccp(0.5f, 1.0f));
l->setPosition(ccp( s.width/2, s.height/2));
CCScaleBy *scale = CCScaleBy::create(2, 2);
CCScaleBy* back = (CCScaleBy*)scale->reverse();
CCSequence *seq = (CCSequence*)CCSequence::create(scale, back, NULL);
l->runAction(CCRepeatForever::create(seq));
this->addChild(l, 0, kLayerIgnoreAnchorPoint);
CCSprite *child = CCSprite::create("Images/grossini.png");
l->addChild(child);
CCSize lsize = l->getContentSize();
child->setPosition(ccp(lsize.width/2, lsize.height/2));
CCMenuItemFont *item = CCMenuItemFont::create("Toogle ignore anchor point", this, menu_selector(LayerIgnoreAnchorPointScale::onToggle));
CCMenu *menu = CCMenu::create(item, NULL);
this->addChild(menu);
menu->setPosition(ccp(s.width/2, s.height/2));
}
void LayerIgnoreAnchorPointScale::onToggle(CCObject* pObject)
{
CCNode* pLayer = this->getChildByTag(kLayerIgnoreAnchorPoint);
bool ignore = pLayer->isIgnoreAnchorPointForPosition();
pLayer->ignoreAnchorPointForPosition(! ignore);
}
2012-06-12 15:14:01 +08:00
std::string LayerIgnoreAnchorPointScale::title()
{
return "IgnoreAnchorPoint - Scale";
}
std::string LayerIgnoreAnchorPointScale::subtitle()
{
return "Ignoring Anchor Point for scale";
2012-06-12 15:14:01 +08:00
}
2010-11-18 14:50:28 +08:00
void LayerTestScene::runThisTest()
{
CCLayer* pLayer = nextTestAction();
addChild(pLayer);
CCDirector::sharedDirector()->replaceScene(this);
}