OpenLexocad  27.1
entt::process< Derived, Delta > Class Template Reference

Base class for processes. More...

#include <entt.hpp>

Public Types

using delta_type = Delta
 Type used to provide elapsed time. More...
 

Public Member Functions

virtual ~process () ENTT_NOEXCEPT
 Default destructor. More...
 
void abort (const bool immediately=false) ENTT_NOEXCEPT
 Aborts a process if it's still alive. More...
 
bool alive () const ENTT_NOEXCEPT
 Returns true if a process is either running or paused. More...
 
bool dead () const ENTT_NOEXCEPT
 Returns true if a process is already terminated. More...
 
bool paused () const ENTT_NOEXCEPT
 Returns true if a process is currently paused. More...
 
bool rejected () const ENTT_NOEXCEPT
 Returns true if a process terminated with errors. More...
 
void tick (const Delta delta, void *data=nullptr)
 Updates a process and its internal state if required. More...
 

Protected Member Functions

void succeed () ENTT_NOEXCEPT
 Terminates a process with success if it's still alive. More...
 
void fail () ENTT_NOEXCEPT
 Terminates a process with errors if it's still alive. More...
 
void pause () ENTT_NOEXCEPT
 Stops a process if it's in a running state. More...
 
void unpause () ENTT_NOEXCEPT
 Restarts a process if it's paused. More...
 

Detailed Description

template<typename Derived, typename Delta>
class entt::process< Derived, Delta >

Base class for processes.

This class stays true to the CRTP idiom. Derived classes must specify what's the intended type for elapsed times.
A process should expose publicly the following member functions whether required:

  • void update(Delta, void *);

    It's invoked once per tick until a process is explicitly aborted or it terminates either with or without errors. Even though it's not mandatory to declare this member function, as a rule of thumb each process should at least define it to work properly. The void * parameter is an opaque pointer to user data (if any) forwarded directly to the process during an update.

  • void init();

    It's invoked when the process joins the running queue of a scheduler. This happens as soon as it's attached to the scheduler if the process is a top level one, otherwise when it replaces its parent if the process is a continuation.

  • void succeeded();

    It's invoked in case of success, immediately after an update and during the same tick.

  • void failed();

    It's invoked in case of errors, immediately after an update and during the same tick.

  • void aborted();

    It's invoked only if a process is explicitly aborted. There is no guarantee that it executes in the same tick, this depends solely on whether the process is aborted immediately or not.

Derived classes can change the internal state of a process by invoking the succeed and fail protected member functions and even pause or unpause the process itself.

See also
scheduler
Template Parameters
DerivedActual type of process that extends the class template.
DeltaType to use to provide elapsed time.

Member Typedef Documentation

◆ delta_type

template<typename Derived, typename Delta>
using entt::process< Derived, Delta >::delta_type = Delta

Type used to provide elapsed time.

Constructor & Destructor Documentation

◆ ~process()

template<typename Derived, typename Delta>
virtual entt::process< Derived, Delta >::~process ( )
inlinevirtual

Default destructor.

Member Function Documentation

◆ abort()

template<typename Derived, typename Delta>
void entt::process< Derived, Delta >::abort ( const bool  immediately = false)
inline

Aborts a process if it's still alive.

The function is idempotent and it does nothing if the process isn't alive.

Parameters
immediatelyRequests an immediate operation.

◆ alive()

template<typename Derived, typename Delta>
bool entt::process< Derived, Delta >::alive ( ) const
inline

Returns true if a process is either running or paused.

Returns
True if the process is still alive, false otherwise.

◆ dead()

template<typename Derived, typename Delta>
bool entt::process< Derived, Delta >::dead ( ) const
inline

Returns true if a process is already terminated.

Returns
True if the process is terminated, false otherwise.

◆ fail()

template<typename Derived, typename Delta>
void entt::process< Derived, Delta >::fail ( )
inlineprotected

Terminates a process with errors if it's still alive.

The function is idempotent and it does nothing if the process isn't alive.

◆ pause()

template<typename Derived, typename Delta>
void entt::process< Derived, Delta >::pause ( )
inlineprotected

Stops a process if it's in a running state.

The function is idempotent and it does nothing if the process isn't running.

◆ paused()

template<typename Derived, typename Delta>
bool entt::process< Derived, Delta >::paused ( ) const
inline

Returns true if a process is currently paused.

Returns
True if the process is paused, false otherwise.

◆ rejected()

template<typename Derived, typename Delta>
bool entt::process< Derived, Delta >::rejected ( ) const
inline

Returns true if a process terminated with errors.

Returns
True if the process terminated with errors, false otherwise.

◆ succeed()

template<typename Derived, typename Delta>
void entt::process< Derived, Delta >::succeed ( )
inlineprotected

Terminates a process with success if it's still alive.

The function is idempotent and it does nothing if the process isn't alive.

◆ tick()

template<typename Derived, typename Delta>
void entt::process< Derived, Delta >::tick ( const Delta  delta,
void *  data = nullptr 
)
inline

Updates a process and its internal state if required.

Parameters
deltaElapsed time.
dataOptional data.

◆ unpause()

template<typename Derived, typename Delta>
void entt::process< Derived, Delta >::unpause ( )
inlineprotected

Restarts a process if it's paused.

The function is idempotent and it does nothing if the process isn't paused.


The documentation for this class was generated from the following file: