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.
|
|
|
|
****************************************************************************/
|
|
|
|
#include "CCActionProgressTimer.h"
|
2012-06-19 16:20:46 +08:00
|
|
|
#include "misc_nodes/CCProgressTimer.h"
|
|
|
|
#include "cocoa/CCZone.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
#define kProgressTimerCast CCProgressTimer*
|
|
|
|
|
|
|
|
// implementation of CCProgressTo
|
|
|
|
|
2012-06-14 17:18:05 +08:00
|
|
|
CCProgressTo* CCProgressTo::actionWithDuration(float duration, float fPercent)
|
|
|
|
{
|
|
|
|
return CCProgressTo::create(duration, fPercent);
|
|
|
|
}
|
2012-06-14 15:13:16 +08:00
|
|
|
|
|
|
|
CCProgressTo* CCProgressTo::create(float duration, float fPercent)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
CCProgressTo *pProgressTo = new CCProgressTo();
|
|
|
|
pProgressTo->initWithDuration(duration, fPercent);
|
|
|
|
pProgressTo->autorelease();
|
|
|
|
|
|
|
|
return pProgressTo;
|
|
|
|
}
|
|
|
|
|
2012-06-08 13:55:28 +08:00
|
|
|
bool CCProgressTo::initWithDuration(float duration, float fPercent)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
if (CCActionInterval::initWithDuration(duration))
|
|
|
|
{
|
|
|
|
m_fTo = fPercent;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCObject* CCProgressTo::copyWithZone(CCZone *pZone)
|
|
|
|
{
|
|
|
|
CCZone* pNewZone = NULL;
|
|
|
|
CCProgressTo* pCopy = NULL;
|
|
|
|
if(pZone && pZone->m_pCopyObject)
|
|
|
|
{
|
|
|
|
//in case of being called at sub class
|
|
|
|
pCopy = (CCProgressTo*)(pZone->m_pCopyObject);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pCopy = new CCProgressTo();
|
|
|
|
pZone = pNewZone = new CCZone(pCopy);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCActionInterval::copyWithZone(pZone);
|
|
|
|
|
|
|
|
pCopy->initWithDuration(m_fDuration, m_fTo);
|
|
|
|
|
|
|
|
CC_SAFE_DELETE(pNewZone);
|
|
|
|
return pCopy;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCProgressTo::startWithTarget(CCNode *pTarget)
|
|
|
|
{
|
|
|
|
CCActionInterval::startWithTarget(pTarget);
|
|
|
|
m_fFrom = ((kProgressTimerCast)(pTarget))->getPercentage();
|
|
|
|
|
|
|
|
// XXX: Is this correct ?
|
|
|
|
// Adding it to support CCRepeat
|
|
|
|
if (m_fFrom == 100)
|
|
|
|
{
|
|
|
|
m_fFrom = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-08 13:55:28 +08:00
|
|
|
void CCProgressTo::update(float time)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
((kProgressTimerCast)(m_pTarget))->setPercentage(m_fFrom + (m_fTo - m_fFrom) * time);
|
|
|
|
}
|
|
|
|
|
|
|
|
// implementation of CCProgressFromTo
|
|
|
|
|
2012-06-14 17:18:05 +08:00
|
|
|
CCProgressFromTo* CCProgressFromTo::actionWithDuration(float duration, float fFromPercentage, float fToPercentage)
|
|
|
|
{
|
|
|
|
return CCProgressFromTo::create(duration, fFromPercentage, fToPercentage);
|
|
|
|
}
|
2012-06-14 15:13:16 +08:00
|
|
|
|
|
|
|
CCProgressFromTo* CCProgressFromTo::create(float duration, float fFromPercentage, float fToPercentage)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
CCProgressFromTo *pProgressFromTo = new CCProgressFromTo();
|
|
|
|
pProgressFromTo->initWithDuration(duration, fFromPercentage, fToPercentage);
|
|
|
|
pProgressFromTo->autorelease();
|
|
|
|
|
|
|
|
return pProgressFromTo;
|
|
|
|
}
|
|
|
|
|
2012-06-08 13:55:28 +08:00
|
|
|
bool CCProgressFromTo::initWithDuration(float duration, float fFromPercentage, float fToPercentage)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
if (CCActionInterval::initWithDuration(duration))
|
|
|
|
{
|
|
|
|
m_fTo = fToPercentage;
|
|
|
|
m_fFrom = fFromPercentage;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCObject* CCProgressFromTo::copyWithZone(CCZone *pZone)
|
|
|
|
{
|
|
|
|
CCZone* pNewZone = NULL;
|
|
|
|
CCProgressFromTo* pCopy = NULL;
|
|
|
|
if(pZone && pZone->m_pCopyObject)
|
|
|
|
{
|
|
|
|
//in case of being called at sub class
|
|
|
|
pCopy = (CCProgressFromTo*)(pZone->m_pCopyObject);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pCopy = new CCProgressFromTo();
|
|
|
|
pZone = pNewZone = new CCZone(pCopy);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCActionInterval::copyWithZone(pZone);
|
|
|
|
|
|
|
|
pCopy->initWithDuration(m_fDuration, m_fFrom, m_fTo);
|
|
|
|
|
|
|
|
CC_SAFE_DELETE(pNewZone);
|
|
|
|
return pCopy;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCActionInterval* CCProgressFromTo::reverse(void)
|
|
|
|
{
|
2012-06-14 15:13:16 +08:00
|
|
|
return CCProgressFromTo::create(m_fDuration, m_fTo, m_fFrom);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCProgressFromTo::startWithTarget(CCNode *pTarget)
|
|
|
|
{
|
|
|
|
CCActionInterval::startWithTarget(pTarget);
|
|
|
|
}
|
|
|
|
|
2012-06-08 13:55:28 +08:00
|
|
|
void CCProgressFromTo::update(float time)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
((kProgressTimerCast)(m_pTarget))->setPercentage(m_fFrom + (m_fTo - m_fFrom) * time);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|