axmol/cocos/2d/CCTransitionProgress.h

163 lines
4.2 KiB
C++

/****************************************************************************
Copyright (c) 2009 Lam Pham
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2012 Ricardo Quesada
Copyright (c) 2013-2014 Chukong Technologies Inc.
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.
****************************************************************************/
#ifndef __CCTRANSITIONPROGRESS_H__
#define __CCTRANSITIONPROGRESS_H__
#include "CCTransition.h"
NS_CC_BEGIN
class ProgressTimer;
class RenderTexture;
/**
* @addtogroup transition
* @{
*/
class CC_DLL TransitionProgress : public TransitionScene
{
public:
static TransitionProgress* create(float t, Scene* scene);
TransitionProgress();
//
// Overrides
//
virtual void onEnter() override;
virtual void onExit() override;
protected:
virtual void sceneOrder() override;
protected:
virtual ProgressTimer* progressTimerNodeWithRenderTexture(RenderTexture* texture);
virtual void setupTransition();
protected:
float _to;
float _from;
Scene* _sceneToBeModified;
};
/** TransitionRadialCCW transition.
A counter clock-wise radial transition to the next scene
*/
class CC_DLL TransitionProgressRadialCCW : public TransitionProgress
{
public:
static TransitionProgressRadialCCW* create(float t, Scene* scene);
protected:
//
// Overrides
//
virtual ProgressTimer* progressTimerNodeWithRenderTexture(RenderTexture* texture) override;
};
/** TransitionRadialCW transition.
A counter clock-wise radial transition to the next scene
*/
class CC_DLL TransitionProgressRadialCW : public TransitionProgress
{
public:
static TransitionProgressRadialCW* create(float t, Scene* scene);
protected:
//
// Overrides
//
virtual ProgressTimer* progressTimerNodeWithRenderTexture(RenderTexture* texture) override;
};
/** TransitionProgressHorizontal transition.
A clock-wise radial transition to the next scene
*/
class CC_DLL TransitionProgressHorizontal : public TransitionProgress
{
public:
static TransitionProgressHorizontal* create(float t, Scene* scene);
protected:
//
// Overrides
//
virtual ProgressTimer* progressTimerNodeWithRenderTexture(RenderTexture* texture) override;
};
class CC_DLL TransitionProgressVertical : public TransitionProgress
{
public:
static TransitionProgressVertical* create(float t, Scene* scene);
protected:
//
// Overrides
//
virtual ProgressTimer* progressTimerNodeWithRenderTexture(RenderTexture* texture) override;
};
class CC_DLL TransitionProgressInOut : public TransitionProgress
{
public:
static TransitionProgressInOut* create(float t, Scene* scene);
protected:
//
// Overrides
//
virtual ProgressTimer* progressTimerNodeWithRenderTexture(RenderTexture* texture) override;
virtual void sceneOrder() override;
virtual void setupTransition() override;
};
class CC_DLL TransitionProgressOutIn : public TransitionProgress
{
public:
static TransitionProgressOutIn* create(float t, Scene* scene);
protected:
//
// Overrides
//
virtual ProgressTimer* progressTimerNodeWithRenderTexture(RenderTexture* texture) override;
};
// end of transition group
/// @}
NS_CC_END
#endif /* __CCTRANSITIONPROGRESS_H__ */