2010-11-18 14:50:28 +08:00
|
|
|
#include "LayerTest.h"
|
|
|
|
#include "../testResource.h"
|
|
|
|
|
2010-08-31 17:03:58 +08:00
|
|
|
enum
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
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)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
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();
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2010-08-31 17:03:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return NULL;
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CCLayer* nextTestAction()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
sceneIdx++;
|
|
|
|
sceneIdx = sceneIdx % MAX_LAYER;
|
2010-08-31 17:03:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
CCLayer* pLayer = createTestLayer(sceneIdx);
|
|
|
|
pLayer->autorelease();
|
2010-08-31 17:03:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return pLayer;
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CCLayer* backTestAction()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
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()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCLayer* pLayer = createTestLayer(sceneIdx);
|
|
|
|
pLayer->autorelease();
|
2010-08-31 17:03:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +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()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return "";
|
2011-07-06 14:56:05 +08:00
|
|
|
}
|
|
|
|
|
2010-08-31 17:03:58 +08:00
|
|
|
std::string LayerTest::title()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return "No title";
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void LayerTest::onEnter()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCLayer::onEnter();
|
|
|
|
|
|
|
|
CCSize s = CCDirector::sharedDirector()->getWinSize();
|
|
|
|
|
2012-06-14 15:13:16 +08:00
|
|
|
CCLabelTTF* label = CCLabelTTF::create(title().c_str(), "Arial", 32);
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(label, 1);
|
|
|
|
label->setPosition( CCPointMake(s.width/2, s.height-50) );
|
|
|
|
|
|
|
|
string subtitle_ = subtitle();
|
|
|
|
if (subtitle_.size() > 0)
|
|
|
|
{
|
2012-06-14 15:13:16 +08:00
|
|
|
CCLabelTTF *l = CCLabelTTF::create(subtitle_.c_str(), "Thonburi", 16);
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(l, 1);
|
|
|
|
l->setPosition(ccp(s.width / 2, s.height - 80));
|
|
|
|
}
|
|
|
|
|
2012-06-14 15:13:16 +08:00
|
|
|
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) );
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-14 15:13:16 +08:00
|
|
|
CCMenu *menu = CCMenu::create(item1, item2, item3, NULL);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
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) );
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
addChild(menu, 1);
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
void LayerTest::restartCallback(CCObject* pSender)
|
2010-08-31 17:03:58 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCScene* s = new LayerTestScene();
|
|
|
|
s->addChild(restartTestAction());
|
2010-08-31 17:03:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
CCDirector::sharedDirector()->replaceScene(s);
|
2010-09-13 17:19:49 +08:00
|
|
|
s->release();
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
void LayerTest::nextCallback(CCObject* pSender)
|
2010-08-31 17:03:58 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCScene* s = new LayerTestScene();
|
|
|
|
s->addChild( nextTestAction() );
|
|
|
|
CCDirector::sharedDirector()->replaceScene(s);
|
2010-09-13 17:19:49 +08:00
|
|
|
s->release();
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
void LayerTest::backCallback(CCObject* pSender)
|
2010-08-31 17:03:58 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCScene* s = new LayerTestScene();
|
|
|
|
s->addChild( backTestAction() );
|
|
|
|
CCDirector::sharedDirector()->replaceScene(s);
|
2010-09-13 17:19:49 +08:00
|
|
|
s->release();
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// LayerTest1
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void LayerTest1::onEnter()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
LayerTest::onEnter();
|
|
|
|
|
2012-06-15 15:10:40 +08:00
|
|
|
setTouchEnabled(true);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
CCSize s = CCDirector::sharedDirector()->getWinSize();
|
2012-06-14 15:13:16 +08:00
|
|
|
CCLayerColor* layer = CCLayerColor::create( ccc4(0xFF, 0x00, 0x00, 0x80), 200, 200);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-15 15:10:40 +08:00
|
|
|
layer->ignoreAnchorPointForPosition(false);
|
2012-04-19 14:35:52 +08:00
|
|
|
layer->setPosition( CCPointMake(s.width/2, s.height/2) );
|
|
|
|
addChild(layer, 1, kTagLayer);
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void LayerTest1::registerWithTouchDispatcher()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCDirector* pDirector = CCDirector::sharedDirector();
|
2012-03-22 14:22:06 +08:00
|
|
|
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)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
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
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCPoint touchLocation = touch->locationInView();
|
|
|
|
touchLocation = CCDirector::sharedDirector()->convertToGL(touchLocation);
|
2012-03-22 13:59:47 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
updateSize(touchLocation);
|
2010-08-31 17:03:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +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
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCPoint touchLocation = touch->locationInView();
|
|
|
|
touchLocation = CCDirector::sharedDirector()->convertToGL(touchLocation);
|
2012-03-22 13:59:47 +08:00
|
|
|
|
2012-04-19 14:35:52 +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
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCPoint touchLocation = touch->locationInView();
|
|
|
|
touchLocation = CCDirector::sharedDirector()->convertToGL(touchLocation);
|
2012-03-22 13:59:47 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
updateSize(touchLocation);
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string LayerTest1::title()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return "ColorLayer resize (tap & move)";
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// LayerTest2
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void LayerTest2::onEnter()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
LayerTest::onEnter();
|
|
|
|
|
|
|
|
CCSize s = CCDirector::sharedDirector()->getWinSize();
|
2012-06-14 15:13:16 +08:00
|
|
|
CCLayerColor* layer1 = CCLayerColor::create( ccc4(255, 255, 0, 80), 100, 300);
|
2012-04-19 14:35:52 +08:00
|
|
|
layer1->setPosition(CCPointMake(s.width/3, s.height/2));
|
2012-06-15 15:10:40 +08:00
|
|
|
layer1->ignoreAnchorPointForPosition(false);
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(layer1, 1);
|
|
|
|
|
2012-06-14 15:13:16 +08:00
|
|
|
CCLayerColor* layer2 = CCLayerColor::create( ccc4(0, 0, 255, 255), 100, 300);
|
2012-04-19 14:35:52 +08:00
|
|
|
layer2->setPosition(CCPointMake((s.width/3)*2, s.height/2));
|
2012-06-15 15:10:40 +08:00
|
|
|
layer2->ignoreAnchorPointForPosition(false);
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(layer2, 1);
|
|
|
|
|
2012-06-14 15:13:16 +08:00
|
|
|
CCActionInterval* actionTint = CCTintBy::create(2, -255, -127, 0);
|
2012-04-19 14:35:52 +08:00
|
|
|
CCActionInterval* actionTintBack = actionTint->reverse();
|
2012-06-14 15:13:16 +08:00
|
|
|
CCActionInterval* seq1 = (CCActionInterval*)CCSequence::create( actionTint, actionTintBack, NULL);
|
2012-04-19 14:35:52 +08:00
|
|
|
layer1->runAction(seq1);
|
|
|
|
|
2012-06-14 15:13:16 +08:00
|
|
|
CCActionInterval* actionFade = CCFadeOut::create(2.0f);
|
2012-04-19 14:35:52 +08:00
|
|
|
CCActionInterval* actionFadeBack = actionFade->reverse();
|
2012-06-14 15:13:16 +08:00
|
|
|
CCActionInterval* seq2 = (CCActionInterval*)CCSequence::create(actionFade, actionFadeBack, NULL);
|
2012-04-19 14:35:52 +08:00
|
|
|
layer2->runAction(seq2);
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string LayerTest2::title()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return "ColorLayer: fade and tint";
|
2010-08-31 17:03:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// LayerTestBlend
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
|
2010-11-18 14:50:28 +08:00
|
|
|
LayerTestBlend::LayerTestBlend()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCSize s = CCDirector::sharedDirector()->getWinSize();
|
2012-06-14 15:13:16 +08:00
|
|
|
CCLayerColor* layer1 = CCLayerColor::create( ccc4(255, 255, 255, 80) );
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-14 15:13:16 +08:00
|
|
|
CCSprite* sister1 = CCSprite::create(s_pPathSister1);
|
|
|
|
CCSprite* sister2 = CCSprite::create(s_pPathSister2);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
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
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCLayerColor *layer = (CCLayerColor*)getChildByTag(kTagLayer);
|
2010-11-18 14:50:28 +08:00
|
|
|
|
|
|
|
GLenum src;
|
|
|
|
GLenum dst;
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
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
|
|
|
}
|
2012-04-19 14:35:52 +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()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return "ColorLayer: blend";
|
2010-11-18 14:50:28 +08:00
|
|
|
}
|
|
|
|
|
2011-02-23 16:47:25 +08:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// LayerGradient
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------
|
2012-04-08 14:16:29 +08:00
|
|
|
LayerGradient::LayerGradient()
|
|
|
|
{
|
2012-06-14 15:13:16 +08:00
|
|
|
CCLayerGradient* layer1 = CCLayerGradient::create(ccc4(255,0,0,255), ccc4(0,255,0,255), ccp(0.9f, 0.9f));
|
2012-04-08 14:16:29 +08:00
|
|
|
addChild(layer1, 0, kTagLayer);
|
|
|
|
|
2012-06-15 15:10:40 +08:00
|
|
|
setTouchEnabled(true);
|
2012-04-08 14:16:29 +08:00
|
|
|
|
2012-06-14 15:13:16 +08:00
|
|
|
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);
|
2012-07-23 22:49:11 +08:00
|
|
|
CCMenuItemToggle *item = CCMenuItemToggle::createWithTarget(this, menu_selector(LayerGradient::toggleItem), item1, item2, NULL);
|
2012-04-08 14:16:29 +08:00
|
|
|
|
2012-06-14 15:13:16 +08:00
|
|
|
CCMenu *menu = CCMenu::create(item, NULL);
|
2012-04-19 14:35:52 +08:00
|
|
|
addChild(menu);
|
|
|
|
CCSize s = CCDirector::sharedDirector()->getWinSize();
|
|
|
|
menu->setPosition(ccp(s.width / 2, 100));
|
2012-04-08 14:16:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void LayerGradient::toggleItem(CCObject *sender)
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCLayerGradient *gradient = (CCLayerGradient*)getChildByTag(kTagLayer);
|
2012-06-15 16:47:30 +08:00
|
|
|
gradient->setCompressedInterpolation(! gradient->isCompressedInterpolation());
|
2012-04-08 14:16:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void LayerGradient::ccTouchesMoved(CCSet * touches, CCEvent *event)
|
|
|
|
{
|
|
|
|
CCSize s = CCDirector::sharedDirector()->getWinSize();
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
CCSetIterator it = touches->begin();
|
2012-04-08 14:16:29 +08:00
|
|
|
CCTouch* touch = (CCTouch*)(*it);
|
2012-04-19 14:35:52 +08:00
|
|
|
CCPoint start = touch->locationInView();
|
2012-04-08 14:16:29 +08:00
|
|
|
start = CCDirector::sharedDirector()->convertToGL(start);
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
CCPoint diff = ccpSub( ccp(s.width/2,s.height/2), start);
|
2012-04-08 14:16:29 +08:00
|
|
|
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()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
return "Touch the screen and move your finger";
|
2011-07-06 14:56:05 +08:00
|
|
|
}
|
|
|
|
|
2012-06-15 15:10:40 +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";
|
|
|
|
}
|
|
|
|
|
2012-06-15 15:10:40 +08:00
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
2012-06-15 15:10:40 +08:00
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
2012-06-15 15:10:40 +08:00
|
|
|
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);
|
|
|
|
}
|