2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2011 cocos2d-x.org
|
|
|
|
Copyright (c) 2009 Sindesso Pty Ltd http://www.sindesso.com/
|
|
|
|
|
|
|
|
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 "CCTransitionPageTurn.h"
|
|
|
|
#include "CCDirector.h"
|
|
|
|
#include "CCActionInterval.h"
|
|
|
|
#include "CCActionInstant.h"
|
|
|
|
#include "CCActionGrid.h"
|
|
|
|
#include "CCActionPageTurn3D.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2010-12-27 09:40:45 +08:00
|
|
|
CCTransitionPageTurn::CCTransitionPageTurn()
|
2010-07-13 09:48:39 +08:00
|
|
|
{
|
|
|
|
}
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2010-12-27 09:40:45 +08:00
|
|
|
CCTransitionPageTurn::~CCTransitionPageTurn()
|
2010-07-13 09:48:39 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-06-14 17:18:05 +08:00
|
|
|
CCTransitionPageTurn * CCTransitionPageTurn::transitionWithDuration(float t, CCScene *scene, bool backwards)
|
|
|
|
{
|
|
|
|
return CCTransitionPageTurn::create(t,scene,backwards);
|
|
|
|
}
|
2012-06-14 15:13:16 +08:00
|
|
|
|
2010-07-13 09:48:39 +08:00
|
|
|
/** creates a base transition with duration and incoming scene */
|
2012-06-14 15:13:16 +08:00
|
|
|
CCTransitionPageTurn * CCTransitionPageTurn::create(float t, CCScene *scene, bool backwards)
|
2010-07-13 09:48:39 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCTransitionPageTurn * pTransition = new CCTransitionPageTurn();
|
|
|
|
pTransition->initWithDuration(t,scene,backwards);
|
|
|
|
pTransition->autorelease();
|
|
|
|
return pTransition;
|
2010-07-13 09:48:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/** initializes a transition with duration and incoming scene */
|
2012-06-08 13:55:28 +08:00
|
|
|
bool CCTransitionPageTurn::initWithDuration(float t, CCScene *scene, bool backwards)
|
2010-07-13 09:48:39 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
// XXX: needed before [super init]
|
|
|
|
m_bBack = backwards;
|
|
|
|
|
|
|
|
if( CCTransitionScene::initWithDuration(t, scene) )
|
|
|
|
{
|
|
|
|
// do something
|
|
|
|
}
|
|
|
|
return true;
|
2010-07-13 09:48:39 +08:00
|
|
|
}
|
|
|
|
|
2010-12-27 09:40:45 +08:00
|
|
|
void CCTransitionPageTurn::sceneOrder()
|
2010-07-13 09:48:39 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
m_bIsInSceneOnTop = m_bBack;
|
2010-07-13 09:48:39 +08:00
|
|
|
}
|
|
|
|
|
2010-12-27 09:40:45 +08:00
|
|
|
void CCTransitionPageTurn::onEnter()
|
2010-07-13 09:48:39 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
CCTransitionScene::onEnter();
|
|
|
|
CCSize s = CCDirector::sharedDirector()->getWinSize();
|
|
|
|
int x,y;
|
|
|
|
if( s.width > s.height)
|
|
|
|
{
|
|
|
|
x=16;
|
2010-12-27 09:40:45 +08:00
|
|
|
y=12;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x=12;
|
2010-12-27 09:40:45 +08:00
|
|
|
y=16;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CCActionInterval *action = this->actionWithSize(ccg(x,y));
|
|
|
|
|
|
|
|
if(! m_bBack )
|
|
|
|
{
|
|
|
|
m_pOutScene->runAction
|
|
|
|
(
|
2012-06-14 15:13:16 +08:00
|
|
|
CCSequence::create
|
2012-04-19 14:35:52 +08:00
|
|
|
(
|
|
|
|
action,
|
2012-06-14 15:13:16 +08:00
|
|
|
CCCallFunc::create(this, callfunc_selector(CCTransitionScene::finish)),
|
|
|
|
CCStopGrid::create(),
|
2012-04-19 14:35:52 +08:00
|
|
|
NULL
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// to prevent initial flicker
|
|
|
|
m_pInScene->setIsVisible(false);
|
|
|
|
m_pInScene->runAction
|
|
|
|
(
|
2012-06-14 15:13:16 +08:00
|
|
|
CCSequence::create
|
2012-04-19 14:35:52 +08:00
|
|
|
(
|
2012-06-14 15:13:16 +08:00
|
|
|
CCShow::create(),
|
2012-04-19 14:35:52 +08:00
|
|
|
action,
|
2012-06-14 15:13:16 +08:00
|
|
|
CCCallFunc::create(this, callfunc_selector(CCTransitionScene::finish)),
|
|
|
|
CCStopGrid::create(),
|
2012-04-19 14:35:52 +08:00
|
|
|
NULL
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2010-07-13 09:48:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-17 21:19:57 +08:00
|
|
|
CCActionInterval* CCTransitionPageTurn:: actionWithSize(const ccGridSize& vector)
|
2010-07-13 09:48:39 +08:00
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
if( m_bBack )
|
|
|
|
{
|
|
|
|
// Get hold of the PageTurn3DAction
|
2012-06-14 15:13:16 +08:00
|
|
|
return CCReverseTime::create
|
2012-04-19 14:35:52 +08:00
|
|
|
(
|
2012-06-14 15:13:16 +08:00
|
|
|
CCPageTurn3D::create(vector, m_fDuration)
|
2012-04-19 14:35:52 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Get hold of the PageTurn3DAction
|
2012-06-14 15:13:16 +08:00
|
|
|
return CCPageTurn3D::create(vector, m_fDuration);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2010-07-13 09:48:39 +08:00
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|