axmol/cocos/2d/CCActionEase.cpp

992 lines
18 KiB
C++
Raw Normal View History

2011-03-19 10:34:26 +08:00
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
2011-03-19 10:34:26 +08:00
Copyright (c) 2008-2009 Jason Booth
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.
****************************************************************************/
2010-08-10 14:02:13 +08:00
/*
* Elastic, Back and Bounce actions based on code from:
* http://github.com/NikhilK/silverlightfx/
*
* by http://github.com/NikhilK
*/
2011-03-19 10:34:26 +08:00
#include "CCActionEase.h"
2012-04-18 18:43:45 +08:00
NS_CC_BEGIN
2010-08-10 14:02:13 +08:00
#ifndef M_PI_X_2
#define M_PI_X_2 (float)M_PI * 2.0f
#endif
//
// EaseAction
//
bool ActionEase::initWithAction(ActionInterval *pAction)
{
CCASSERT(pAction != NULL, "");
if (ActionInterval::initWithDuration(pAction->getDuration()))
{
_inner = pAction;
pAction->retain();
2010-08-10 14:02:13 +08:00
return true;
}
2010-08-10 14:02:13 +08:00
return false;
}
2010-08-10 14:02:13 +08:00
ActionEase::~ActionEase(void)
{
CC_SAFE_RELEASE(_inner);
}
void ActionEase::startWithTarget(Node *target)
{
ActionInterval::startWithTarget(target);
_inner->startWithTarget(_target);
}
void ActionEase::stop(void)
{
_inner->stop();
ActionInterval::stop();
}
void ActionEase::update(float time)
{
_inner->update(time);
}
2010-08-10 14:02:13 +08:00
ActionInterval* ActionEase::getInnerAction()
{
return _inner;
}
//
// EaseRateAction
//
bool EaseRateAction::initWithAction(ActionInterval *pAction, float fRate)
{
if (ActionEase::initWithAction(pAction))
{
_rate = fRate;
return true;
}
2010-08-10 14:02:13 +08:00
return false;
}
2010-08-10 14:02:13 +08:00
EaseRateAction::~EaseRateAction(void)
{
}
2010-08-10 14:02:13 +08:00
//
// EeseIn
//
EaseIn* EaseIn::create(ActionInterval *pAction, float fRate)
{
EaseIn *pRet = new EaseIn();
if (pRet)
{
if (pRet->initWithAction(pAction, fRate))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseIn* EaseIn::clone() const
{
// no copy constructor
auto a = new EaseIn();
a->initWithAction(_inner->clone(), _rate);
a->autorelease();
return a;
}
void EaseIn::update(float time)
{
_inner->update(powf(time, _rate));
}
2010-08-25 18:31:55 +08:00
EaseIn* EaseIn::reverse() const
{
return EaseIn::create(_inner->reverse(), 1 / _rate);
}
//
// EaseOut
//
EaseOut* EaseOut::create(ActionInterval *pAction, float fRate)
{
EaseOut *pRet = new EaseOut();
if (pRet)
{
if (pRet->initWithAction(pAction, fRate))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
2010-08-10 14:02:13 +08:00
EaseOut* EaseOut::clone() const
{
// no copy constructor
auto a = new EaseOut();
a->initWithAction(_inner->clone(), _rate);
a->autorelease();
return a;
}
void EaseOut::update(float time)
{
_inner->update(powf(time, 1 / _rate));
}
2010-08-25 18:31:55 +08:00
EaseOut* EaseOut::reverse() const
{
return EaseOut::create(_inner->reverse(), 1 / _rate);
}
//
// EaseInOut
//
EaseInOut* EaseInOut::create(ActionInterval *pAction, float fRate)
{
EaseInOut *pRet = new EaseInOut();
if (pRet)
{
if (pRet->initWithAction(pAction, fRate))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseInOut* EaseInOut::clone() const
{
// no copy constructor
auto a = new EaseInOut();
a->initWithAction(_inner->clone(), _rate);
a->autorelease();
return a;
}
void EaseInOut::update(float time)
{
time *= 2;
if (time < 1)
{
_inner->update(0.5f * powf(time, _rate));
}
else
{
_inner->update(1.0f - 0.5f * powf(2-time, _rate));
}
}
2010-08-10 14:02:13 +08:00
// InOut and OutIn are symmetrical
EaseInOut* EaseInOut::reverse() const
{
return EaseInOut::create(_inner->reverse(), _rate);
}
2010-08-10 14:02:13 +08:00
//
// EaseExponentialIn
//
EaseExponentialIn* EaseExponentialIn::create(ActionInterval* pAction)
{
EaseExponentialIn *pRet = new EaseExponentialIn();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseExponentialIn* EaseExponentialIn::clone() const
{
// no copy constructor
auto a = new EaseExponentialIn();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseExponentialIn::update(float time)
{
_inner->update(time == 0 ? 0 : powf(2, 10 * (time/1 - 1)) - 1 * 0.001f);
}
ActionEase * EaseExponentialIn::reverse() const
{
return EaseExponentialOut::create(_inner->reverse());
}
//
// EaseExponentialOut
//
EaseExponentialOut* EaseExponentialOut::create(ActionInterval* pAction)
{
EaseExponentialOut *pRet = new EaseExponentialOut();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseExponentialOut* EaseExponentialOut::clone() const
{
// no copy constructor
auto a = new EaseExponentialOut();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseExponentialOut::update(float time)
{
_inner->update(time == 1 ? 1 : (-powf(2, -10 * time / 1) + 1));
}
ActionEase* EaseExponentialOut::reverse() const
{
return EaseExponentialIn::create(_inner->reverse());
}
2010-08-25 18:31:55 +08:00
//
// EaseExponentialInOut
//
EaseExponentialInOut* EaseExponentialInOut::create(ActionInterval *pAction)
{
EaseExponentialInOut *pRet = new EaseExponentialInOut();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseExponentialInOut* EaseExponentialInOut::clone() const
{
// no copy constructor
auto a = new EaseExponentialInOut();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseExponentialInOut::update(float time)
{
time /= 0.5f;
if (time < 1)
{
time = 0.5f * powf(2, 10 * (time - 1));
}
else
{
time = 0.5f * (-powf(2, -10 * (time - 1)) + 2);
}
2010-08-10 14:02:13 +08:00
_inner->update(time);
}
EaseExponentialInOut* EaseExponentialInOut::reverse() const
{
return EaseExponentialInOut::create(_inner->reverse());
}
//
// EaseSineIn
//
EaseSineIn* EaseSineIn::create(ActionInterval* pAction)
{
EaseSineIn *pRet = new EaseSineIn();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
2010-08-25 18:31:55 +08:00
EaseSineIn* EaseSineIn::clone() const
{
// no copy constructor
auto a = new EaseSineIn();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseSineIn::update(float time)
{
_inner->update(-1 * cosf(time * (float)M_PI_2) + 1);
}
ActionEase* EaseSineIn::reverse() const
{
return EaseSineOut::create(_inner->reverse());
}
//
// EaseSineOut
//
EaseSineOut* EaseSineOut::create(ActionInterval* pAction)
{
EaseSineOut *pRet = new EaseSineOut();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseSineOut* EaseSineOut::clone() const
{
// no copy constructor
auto a = new EaseSineOut();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseSineOut::update(float time)
{
_inner->update(sinf(time * (float)M_PI_2));
}
2010-08-25 18:31:55 +08:00
ActionEase* EaseSineOut::reverse(void) const
{
return EaseSineIn::create(_inner->reverse());
}
//
// EaseSineInOut
//
EaseSineInOut* EaseSineInOut::create(ActionInterval* pAction)
{
EaseSineInOut *pRet = new EaseSineInOut();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseSineInOut* EaseSineInOut::clone() const
{
// no copy constructor
auto a = new EaseSineInOut();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseSineInOut::update(float time)
{
_inner->update(-0.5f * (cosf((float)M_PI * time) - 1));
}
2010-08-25 18:31:55 +08:00
EaseSineInOut* EaseSineInOut::reverse() const
{
return EaseSineInOut::create(_inner->reverse());
}
//
// EaseElastic
//
2010-08-10 14:02:13 +08:00
bool EaseElastic::initWithAction(ActionInterval *pAction, float fPeriod/* = 0.3f*/)
{
if (ActionEase::initWithAction(pAction))
{
_period = fPeriod;
return true;
}
2010-08-10 14:02:13 +08:00
return false;
}
//
// EaseElasticIn
//
EaseElasticIn* EaseElasticIn::create(ActionInterval *pAction)
{
return EaseElasticIn::create(pAction, 0.3f);
}
EaseElasticIn* EaseElasticIn::create(ActionInterval *pAction, float fPeriod/* = 0.3f*/)
{
EaseElasticIn *pRet = new EaseElasticIn();
if (pRet)
{
if (pRet->initWithAction(pAction, fPeriod))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseElasticIn* EaseElasticIn::clone() const
{
// no copy constructor
auto a = new EaseElasticIn();
a->initWithAction(_inner->clone(), _period);
a->autorelease();
return a;
}
void EaseElasticIn::update(float time)
{
2012-06-08 13:55:28 +08:00
float newT = 0;
if (time == 0 || time == 1)
{
newT = time;
}
else
{
float s = _period / 4;
time = time - 1;
newT = -powf(2, 10 * time) * sinf((time - s) * M_PI_X_2 / _period);
}
_inner->update(newT);
}
2010-08-25 18:31:55 +08:00
EaseElastic* EaseElasticIn::reverse() const
{
return EaseElasticOut::create(_inner->reverse(), _period);
}
//
// EaseElasticOut
//
EaseElasticOut* EaseElasticOut::create(ActionInterval *pAction)
{
return EaseElasticOut::create(pAction, 0.3f);
}
EaseElasticOut* EaseElasticOut::create(ActionInterval *pAction, float fPeriod/* = 0.3f*/)
{
EaseElasticOut *pRet = new EaseElasticOut();
if (pRet)
{
if (pRet->initWithAction(pAction, fPeriod))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseElasticOut* EaseElasticOut::clone() const
{
// no copy constructor
auto a = new EaseElasticOut();
a->initWithAction(_inner->clone(), _period);
a->autorelease();
return a;
}
void EaseElasticOut::update(float time)
{
2012-06-08 13:55:28 +08:00
float newT = 0;
if (time == 0 || time == 1)
{
newT = time;
}
else
{
float s = _period / 4;
newT = powf(2, -10 * time) * sinf((time - s) * M_PI_X_2 / _period) + 1;
}
2010-08-25 18:31:55 +08:00
_inner->update(newT);
}
EaseElastic* EaseElasticOut::reverse() const
{
return EaseElasticIn::create(_inner->reverse(), _period);
}
//
// EaseElasticInOut
//
EaseElasticInOut* EaseElasticInOut::create(ActionInterval *pAction)
{
return EaseElasticInOut::create(pAction, 0.3f);
}
EaseElasticInOut* EaseElasticInOut::create(ActionInterval *pAction, float fPeriod/* = 0.3f*/)
{
EaseElasticInOut *pRet = new EaseElasticInOut();
if (pRet)
{
if (pRet->initWithAction(pAction, fPeriod))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseElasticInOut* EaseElasticInOut::clone() const
{
// no copy constructor
auto a = new EaseElasticInOut();
a->initWithAction(_inner->clone(), _period);
a->autorelease();
return a;
}
void EaseElasticInOut::update(float time)
{
2012-06-08 13:55:28 +08:00
float newT = 0;
if (time == 0 || time == 1)
{
newT = time;
}
else
{
time = time * 2;
if ( _period == 0)
{
_period = 0.3f * 1.5f;
}
float s = _period / 4;
time = time - 1;
if (time < 0)
{
newT = -0.5f * powf(2, 10 * time) * sinf((time -s) * M_PI_X_2 / _period);
}
else
{
newT = powf(2, -10 * time) * sinf((time - s) * M_PI_X_2 / _period) * 0.5f + 1;
}
}
_inner->update(newT);
}
2010-08-10 14:02:13 +08:00
EaseElasticInOut* EaseElasticInOut::reverse() const
{
return EaseElasticInOut::create(_inner->reverse(), _period);
}
2010-08-10 14:02:13 +08:00
//
// EaseBounce
//
float EaseBounce::bounceTime(float time)
{
if (time < 1 / 2.75)
{
return 7.5625f * time * time;
} else
if (time < 2 / 2.75)
{
time -= 1.5f / 2.75f;
return 7.5625f * time * time + 0.75f;
} else
if(time < 2.5 / 2.75)
{
time -= 2.25f / 2.75f;
return 7.5625f * time * time + 0.9375f;
}
time -= 2.625f / 2.75f;
return 7.5625f * time * time + 0.984375f;
}
//
// EaseBounceIn
//
EaseBounceIn* EaseBounceIn::create(ActionInterval* pAction)
{
EaseBounceIn *pRet = new EaseBounceIn();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
2010-08-10 14:02:13 +08:00
EaseBounceIn* EaseBounceIn::clone() const
{
// no copy constructor
auto a = new EaseBounceIn();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseBounceIn::update(float time)
{
2012-06-08 13:55:28 +08:00
float newT = 1 - bounceTime(1 - time);
_inner->update(newT);
}
EaseBounce* EaseBounceIn::reverse() const
{
return EaseBounceOut::create(_inner->reverse());
}
//
// EaseBounceOut
//
EaseBounceOut* EaseBounceOut::create(ActionInterval* pAction)
{
EaseBounceOut *pRet = new EaseBounceOut();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseBounceOut* EaseBounceOut::clone() const
{
// no copy constructor
auto a = new EaseBounceOut();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseBounceOut::update(float time)
{
2012-06-08 13:55:28 +08:00
float newT = bounceTime(time);
_inner->update(newT);
}
2010-08-25 18:31:55 +08:00
EaseBounce* EaseBounceOut::reverse() const
{
return EaseBounceIn::create(_inner->reverse());
}
//
// EaseBounceInOut
//
EaseBounceInOut* EaseBounceInOut::create(ActionInterval* pAction)
{
EaseBounceInOut *pRet = new EaseBounceInOut();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseBounceInOut* EaseBounceInOut::clone() const
{
// no copy constructor
auto a = new EaseBounceInOut();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseBounceInOut::update(float time)
{
2012-06-08 13:55:28 +08:00
float newT = 0;
if (time < 0.5f)
{
time = time * 2;
newT = (1 - bounceTime(1 - time)) * 0.5f;
}
else
{
newT = bounceTime(time * 2 - 1) * 0.5f + 0.5f;
}
2010-08-10 14:02:13 +08:00
_inner->update(newT);
}
EaseBounceInOut* EaseBounceInOut::reverse() const
{
return EaseBounceInOut::create(_inner->reverse());
}
//
// EaseBackIn
//
EaseBackIn* EaseBackIn::create(ActionInterval *pAction)
{
EaseBackIn *pRet = new EaseBackIn();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
2010-08-25 18:31:55 +08:00
EaseBackIn* EaseBackIn::clone() const
{
// no copy constructor
auto a = new EaseBackIn();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseBackIn::update(float time)
{
2012-06-08 13:55:28 +08:00
float overshoot = 1.70158f;
_inner->update(time * time * ((overshoot + 1) * time - overshoot));
}
ActionEase* EaseBackIn::reverse() const
{
return EaseBackOut::create(_inner->reverse());
}
//
// EaseBackOut
//
EaseBackOut* EaseBackOut::create(ActionInterval* pAction)
{
EaseBackOut *pRet = new EaseBackOut();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
EaseBackOut* EaseBackOut::clone() const
{
// no copy constructor
auto a = new EaseBackOut();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseBackOut::update(float time)
{
2012-06-08 13:55:28 +08:00
float overshoot = 1.70158f;
time = time - 1;
_inner->update(time * time * ((overshoot + 1) * time + overshoot) + 1);
}
2010-08-25 18:31:55 +08:00
ActionEase* EaseBackOut::reverse() const
{
return EaseBackIn::create(_inner->reverse());
}
//
// EaseBackInOut
//
EaseBackInOut* EaseBackInOut::create(ActionInterval* pAction)
{
EaseBackInOut *pRet = new EaseBackInOut();
if (pRet)
{
if (pRet->initWithAction(pAction))
{
pRet->autorelease();
}
else
{
CC_SAFE_RELEASE_NULL(pRet);
}
}
2010-08-10 14:02:13 +08:00
return pRet;
}
2010-08-10 14:02:13 +08:00
EaseBackInOut* EaseBackInOut::clone() const
{
// no copy constructor
auto a = new EaseBackInOut();
a->initWithAction(_inner->clone());
a->autorelease();
return a;
}
void EaseBackInOut::update(float time)
{
2012-06-08 13:55:28 +08:00
float overshoot = 1.70158f * 1.525f;
time = time * 2;
if (time < 1)
{
_inner->update((time * time * ((overshoot + 1) * time - overshoot)) / 2);
}
else
{
time = time - 2;
_inner->update((time * time * ((overshoot + 1) * time + overshoot)) / 2 + 1);
}
2010-08-10 14:02:13 +08:00
}
2012-04-18 18:43:45 +08:00
EaseBackInOut* EaseBackInOut::reverse() const
{
return EaseBackInOut::create(_inner->reverse());
}
2012-04-18 18:43:45 +08:00
NS_CC_END