2018-04-21 21:24:46 +08:00
|
|
|
|
#include "..\e2daction.h"
|
2018-01-30 16:45:38 +08:00
|
|
|
|
|
2018-02-27 21:07:43 +08:00
|
|
|
|
e2d::ActionGradual::ActionGradual(double duration)
|
2018-01-30 16:45:38 +08:00
|
|
|
|
: m_fRateOfProgress(0)
|
|
|
|
|
|
{
|
|
|
|
|
|
m_fDuration = max(duration, 0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-07 16:37:12 +08:00
|
|
|
|
void e2d::ActionGradual::_init()
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
2018-04-30 16:49:44 +08:00
|
|
|
|
ActionBase::_init();
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-07 16:37:12 +08:00
|
|
|
|
void e2d::ActionGradual::_update()
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
2018-04-30 16:49:44 +08:00
|
|
|
|
ActionBase::_update();
|
2018-01-30 16:45:38 +08:00
|
|
|
|
// <20>ж<EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7>㹻
|
|
|
|
|
|
if (m_fDuration == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
m_fRateOfProgress = 1;
|
|
|
|
|
|
this->stop();
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
// <20><><EFBFBD>㶯<EFBFBD><E3B6AF><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2018-02-07 16:37:12 +08:00
|
|
|
|
m_fRateOfProgress = min((Time::getTotalTime() - m_fLast) / m_fDuration, 1);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
// <20>ж϶<D0B6><CFB6><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
if (m_fRateOfProgress >= 1)
|
|
|
|
|
|
{
|
|
|
|
|
|
this->stop();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|