2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2011 cocos2d-x.org
|
|
|
|
Copyright (C) 2010 Lam Pham
|
|
|
|
|
|
|
|
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 __ACTION_CCPROGRESS_TIMER_H__
|
|
|
|
#define __ACTION_CCPROGRESS_TIMER_H__
|
|
|
|
|
|
|
|
#include "CCActionInterval.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2010-08-16 10:02:06 +08:00
|
|
|
/**
|
2010-09-28 18:27:33 +08:00
|
|
|
@brief Progress to percentage
|
2010-08-16 10:02:06 +08:00
|
|
|
@since v0.99.1
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
|
|
|
class CC_DLL CCProgressTo : public CCActionInterval
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Initializes with a duration and a percent */
|
2012-06-08 13:55:28 +08:00
|
|
|
bool initWithDuration(float duration, float fPercent);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
virtual CCObject* copyWithZone(CCZone *pZone);
|
|
|
|
virtual void startWithTarget(CCNode *pTarget);
|
2012-06-08 13:55:28 +08:00
|
|
|
virtual void update(float time);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
public:
|
2012-06-14 15:13:16 +08:00
|
|
|
/** Creates and initializes with a duration and a percent
|
2012-06-20 14:31:36 +08:00
|
|
|
@deprecated: This interface will be deprecated sooner or later.
|
2012-06-14 15:13:16 +08:00
|
|
|
*/
|
2012-06-20 11:48:31 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static CCProgressTo* actionWithDuration(float duration, float fPercent);
|
2012-04-19 14:35:52 +08:00
|
|
|
/** Creates and initializes with a duration and a percent */
|
2012-06-14 15:13:16 +08:00
|
|
|
static CCProgressTo* create(float duration, float fPercent);
|
2012-04-19 14:35:52 +08:00
|
|
|
protected:
|
|
|
|
float m_fTo;
|
|
|
|
float m_fFrom;
|
|
|
|
};
|
|
|
|
|
2010-09-28 16:18:05 +08:00
|
|
|
/**
|
2010-09-28 18:27:33 +08:00
|
|
|
@brief Progress from a percentage to another percentage
|
2010-09-28 16:18:05 +08:00
|
|
|
@since v0.99.1
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
|
|
|
class CC_DLL CCProgressFromTo : public CCActionInterval
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Initializes the action with a duration, a "from" percentage and a "to" percentage */
|
2012-06-08 13:55:28 +08:00
|
|
|
bool initWithDuration(float duration, float fFromPercentage, float fToPercentage);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
virtual CCObject* copyWithZone(CCZone *pZone);
|
|
|
|
virtual CCActionInterval* reverse(void);
|
|
|
|
virtual void startWithTarget(CCNode *pTarget);
|
2012-06-08 13:55:28 +08:00
|
|
|
virtual void update(float time);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
public:
|
2012-06-14 15:13:16 +08:00
|
|
|
/** Creates and initializes the action with a duration, a "from" percentage and a "to" percentage
|
2012-06-20 14:31:36 +08:00
|
|
|
@deprecated: This interface will be deprecated sooner or later.
|
2012-06-14 15:13:16 +08:00
|
|
|
*/
|
2012-06-20 11:48:31 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static CCProgressFromTo* actionWithDuration(float duration, float fFromPercentage, float fToPercentage);
|
2012-04-19 14:35:52 +08:00
|
|
|
/** Creates and initializes the action with a duration, a "from" percentage and a "to" percentage */
|
2012-06-14 15:13:16 +08:00
|
|
|
static CCProgressFromTo* create(float duration, float fFromPercentage, float fToPercentage);
|
2012-04-19 14:35:52 +08:00
|
|
|
protected:
|
|
|
|
float m_fTo;
|
|
|
|
float m_fFrom;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __ACTION_CCPROGRESS_TIMER_H__
|