2018-04-02 23:01:38 +08:00
|
|
|
#include "..\etransition.h"
|
|
|
|
|
#include "..\enode.h"
|
2017-10-20 00:59:26 +08:00
|
|
|
|
2018-04-17 01:11:56 +08:00
|
|
|
e2d::TransitionFade::TransitionFade(double duration)
|
2018-02-07 16:37:12 +08:00
|
|
|
: Transition(0)
|
2018-04-17 01:11:56 +08:00
|
|
|
, m_fFadeOutDuration(max(duration / 2, 0))
|
|
|
|
|
, m_fFadeInDuration(max(duration / 2, 0))
|
2017-12-09 15:27:11 +08:00
|
|
|
, m_bFadeOutTransioning(true)
|
2017-10-20 00:59:26 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 01:11:56 +08:00
|
|
|
e2d::TransitionFade::TransitionFade(double fadeOutDuration, double fadeInDuration)
|
|
|
|
|
: Transition(0)
|
|
|
|
|
, m_fFadeOutDuration(max(fadeOutDuration, 0))
|
|
|
|
|
, m_fFadeInDuration(max(fadeInDuration, 0))
|
|
|
|
|
, m_bFadeOutTransioning(true)
|
2017-10-20 00:59:26 +08:00
|
|
|
{
|
2018-04-17 01:11:56 +08:00
|
|
|
}
|
2018-01-30 16:45:38 +08:00
|
|
|
|
2018-04-17 11:41:33 +08:00
|
|
|
void e2d::TransitionFade::_init(Scene * prev, Scene * next)
|
|
|
|
|
{
|
|
|
|
|
Transition::_init(prev, next);
|
|
|
|
|
if (m_pPrevScene)
|
|
|
|
|
{
|
|
|
|
|
m_bFadeOutTransioning = true;
|
|
|
|
|
m_fDuration = m_fFadeOutDuration;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
m_bFadeOutTransioning = false;
|
|
|
|
|
m_fDuration = m_fFadeInDuration;
|
|
|
|
|
}
|
|
|
|
|
m_sPrevLayerParam.opacity = 1;
|
|
|
|
|
m_sNextLayerParam.opacity = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 01:11:56 +08:00
|
|
|
void e2d::TransitionFade::_updateCustom()
|
|
|
|
|
{
|
2018-01-30 16:45:38 +08:00
|
|
|
if (m_bFadeOutTransioning)
|
2017-10-20 00:59:26 +08:00
|
|
|
{
|
2018-04-17 01:11:56 +08:00
|
|
|
m_sPrevLayerParam.opacity = float(1 - m_fRateOfProgress);
|
2018-01-30 16:45:38 +08:00
|
|
|
if (m_fRateOfProgress >= 1)
|
2017-12-09 15:27:11 +08:00
|
|
|
{
|
2018-01-30 16:45:38 +08:00
|
|
|
m_bFadeOutTransioning = false;
|
2018-04-17 01:11:56 +08:00
|
|
|
m_fDuration = m_fFadeInDuration;
|
2018-02-07 16:37:12 +08:00
|
|
|
m_fLast = Time::getTotalTime();
|
2017-12-09 15:27:11 +08:00
|
|
|
}
|
2018-01-30 16:45:38 +08:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-04-17 01:11:56 +08:00
|
|
|
m_sNextLayerParam.opacity = float(m_fRateOfProgress);
|
2018-01-30 16:45:38 +08:00
|
|
|
if (m_fRateOfProgress >= 1)
|
2017-10-21 19:09:31 +08:00
|
|
|
{
|
2018-01-30 16:45:38 +08:00
|
|
|
this->_stop();
|
2017-10-21 19:09:31 +08:00
|
|
|
}
|
2017-12-09 15:27:11 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-07 16:37:12 +08:00
|
|
|
void e2d::TransitionFade::_reset()
|
2017-12-09 15:27:11 +08:00
|
|
|
{
|
|
|
|
|
}
|