![]() |
Murl Engine API
Version 2024.1
|
The ITimeline interface implementation. More...
#include <murl_logic_timeline.h>
The ITimeline interface implementation.
Public Member Functions | |
~Timeline () override | |
The destructor. | |
void | ProcessTick (const Logic::IState *state) override |
Implementation of IStepable::ProcessTick() method. More... | |
IStepablePtr | GetStepable () override |
Implementation of ITimeline::GetStepable() method. More... | |
Bool | SetAppTimeline (IAppTimelinePtr appTimeline) override |
Implementation of ITimeline::SetAppTimeline() method. More... | |
void | Evaluate () override |
Implementation of ITimeline::Evaluate() method. | |
void | Reset () override |
Implementation of ITimeline::Reset() and IStepable::Reset() method. | |
void | ResetTo (Real startTime) override |
Implementation of ITimeline::ResetTo() method. More... | |
Bool | Start () override |
Implementation of ITimeline::Start() method. More... | |
Bool | Start (Real startTime, Real endTime) override |
Implementation of ITimeline::Start(Real startTime, Real endTime) method. More... | |
Bool | Start (Real startTime, Real endTime, SInt32 numberOfLoops) override |
Implementation of ITimeline::Start(Real startTime, Real endTime, SInt32 numberOfLoops) method. More... | |
Bool | Start (Real startTime, Real endTime, Real loopStartTime, Real loopEndTime, SInt32 numberOfLoops) override |
Implementation of ITimeline::Start(Real startTime, Real endTime, Real loopStartTime, Real loopEndTime, SInt32 numberOfLoops) method. More... | |
Bool | Pause () override |
Implementation of ITimeline::Pause() method. More... | |
Bool | Stop () override |
Implementation of ITimeline::Stop() method. More... | |
Bool | Rewind () override |
Implementation of ITimeline::Rewind() method. More... | |
void | SetStartTime (Real startTime) override |
Implementation of ITimeline::SetStartTime() method. More... | |
Real | GetStartTime () const override |
Implementation of ITimeline::GetStartTime() method. More... | |
void | SetEndTime (Real endTime) override |
Implementation of ITimeline::SetEndTime() method. More... | |
Real | GetEndTime () const override |
Implementation of ITimeline::GetEndTime() method. More... | |
void | SetLoopStartTime (Real startTime) override |
Implementation of ITimeline::SetLoopStartTime() method. More... | |
Real | GetLoopStartTime () const override |
Implementation of ITimeline::GetLoopStartTime() method. More... | |
void | SetLoopEndTime (Real endTime) override |
Implementation of ITimeline::SetLoopEndTime() method. More... | |
Real | GetLoopEndTime () const override |
Implementation of ITimeline::GetLoopEndTime() method. More... | |
void | SetNumberOfLoops (SInt32 numberOfLoops) override |
Implementation of ITimeline::SetNumberOfLoops() method. More... | |
SInt32 | GetNumberOfLoops () const override |
Implementation of ITimeline::GetNumberOfLoops() method. More... | |
void | SetTimeScale (Real timeScale) override |
Implementation of ITimeline::SetTimeScale() method. More... | |
Real | GetTimeScale () const override |
Implementation of ITimeline::GetTimeScale() method. More... | |
void | SetAutoRewindEnabled (Bool enabled) override |
Implementation of ITimeline::SetAutoRewindEnabled() method. More... | |
Bool | IsAutoRewindEnabled () const override |
Implementation of ITimeline::IsAutoRewindEnabled() method. More... | |
Bool | IsRunning () const override |
Implementation of ITimeline::IsRunning() method. More... | |
Bool | IsPaused () const override |
Implementation of ITimeline::IsPaused() method. More... | |
Bool | IsStopped () const override |
Implementation of ITimeline::IsStopped() method. More... | |
Bool | WasStarted () const override |
Implementation of ITimeline::WasStarted() method. More... | |
Bool | WasRunning () const override |
Implementation of ITimeline::WasRunning() method. More... | |
Bool | IsOrWasRunning () const override |
Implementation of ITimeline::IsOrWasRunning() method. More... | |
Bool | HasPassedTime (Real time) const override |
Implementation of ITimeline::HasPassedTime() method. More... | |
Bool | HasPassedLoop (SInt32 loop) const override |
Implementation of ITimeline::HasPassedLoop() method. More... | |
Double | GetCurrentTime () const override |
Implementation of ITimeline::GetCurrentTime() method. More... | |
Double | GetRemainingTime () const override |
Implementation of ITimeline::GetRemainingTime() method. More... | |
void | SetCurrentTime (Double time) override |
Implementation of ITimeline::SetCurrentTime() method. More... | |
SInt32 | GetCurrentLoop () const override |
Implementation of ITimeline::GetCurrentLoop() method. More... | |
SInt32 | GetRemainingLoops () const override |
Implementation of ITimeline::GetRemainingLoops() method. More... | |
Bool | SetCurrentLoop (SInt32 loop) override |
Implementation of ITimeline::SetCurrentLoop() method. More... | |
IEnums::AnimationState | GetCurrentState () const override |
Implementation of ITimeline::GetCurrentState() method. More... | |
![]() | |
~Stepable () override | |
The destructor. | |
Bool | SetAppStepable (IAppStepablePtr appStepable) override |
Implementation of IStepable::SetAppStepable() method. More... | |
void | SetEnabled (Bool isEnabled) override |
Implementation of IStepable::SetEnabled() method. More... | |
Bool | IsEnabled () const override |
Implementation of IStepable::IsEnabled() method. More... | |
void | FinishTick (const Logic::IState *state) override |
Implementation of IStepable::FinishTick() method. More... | |
Static Public Member Functions | |
static ITimelinePtr | Create () |
Create a timeline object. More... | |
![]() | |
static IStepablePtr | Create () |
Create a stepable object. More... | |
|
static |
Create a timeline object.
|
overridevirtual |
Implementation of IStepable::ProcessTick() method.
state | The IState object. |
Reimplemented from Murl::Logic::Stepable.
|
overridevirtual |
Implementation of ITimeline::GetStepable() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::SetAppTimeline() method.
appTimeline | The timeline callback object. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::ResetTo() method.
startTime | The start time in seconds. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::Start() method.
Implements Murl::Logic::ITimeline.
Implementation of ITimeline::Start(Real startTime, Real endTime) method.
startTime | The start time in seconds. |
endTime | The end time in seconds. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::Start(Real startTime, Real endTime, SInt32 numberOfLoops) method.
startTime | The start time in seconds. |
endTime | The end time in seconds. |
numberOfLoops | Number of loops. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::Start(Real startTime, Real endTime, Real loopStartTime, Real loopEndTime, SInt32 numberOfLoops) method.
startTime | The start time in seconds. |
endTime | The end time in seconds. |
loopStartTime | The loop start time in seconds. |
loopEndTime | The loop end time in seconds. |
numberOfLoops | Number of loops. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::Pause() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::Stop() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::Rewind() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::SetStartTime() method.
startTime | The start time in seconds. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetStartTime() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::SetEndTime() method.
endTime | The end time in seconds. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetEndTime() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::SetLoopStartTime() method.
startTime | The loop start time in seconds. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetLoopStartTime() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::SetLoopEndTime() method.
endTime | The loop end time in seconds. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetLoopEndTime() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::SetNumberOfLoops() method.
numberOfLoops | Number of loops. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetNumberOfLoops() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::SetTimeScale() method.
timeScale | The time scale factor. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetTimeScale() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::SetAutoRewindEnabled() method.
enabled | Enable automatic rewind if true. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::IsAutoRewindEnabled() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::IsRunning() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::IsPaused() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::IsStopped() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::WasStarted() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::WasRunning() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::IsOrWasRunning() method.
Implements Murl::Logic::ITimeline.
Implementation of ITimeline::HasPassedTime() method.
time | The time to check in seconds. |
Implements Murl::Logic::ITimeline.
Implementation of ITimeline::HasPassedLoop() method.
loop | The loop number to check. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetCurrentTime() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetRemainingTime() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::SetCurrentTime() method.
time | The current time to set in seconds. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetCurrentLoop() method.
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetRemainingLoops() method.
Implements Murl::Logic::ITimeline.
Implementation of ITimeline::SetCurrentLoop() method.
loop | The current loop to set. |
Implements Murl::Logic::ITimeline.
|
overridevirtual |
Implementation of ITimeline::GetCurrentState() method.
Implements Murl::Logic::ITimeline.