#include <Scene.hh>
Base class for all scenes.
A scene compartmentalizes certain elements of the game, such as the menu, the race, the credits, etc. This allows for easy cleanup when transitioning to a different scene, as scenes destroy instances of classes used only during the scene lifetime. While this is not an abstract class, you'll never see an instance of this base class.
Public Member Functions | |
virtual void | calc () |
virtual void | enter () |
virtual void | exit () |
virtual void | reinit () |
virtual void | incoming_childDestroy () |
virtual void | outgoing_childCreate () |
Setters | |
void | setParent (Scene *parent) |
void | setChild (Scene *child) |
void | setId (int id) |
void | setSceneMgr (SceneManager *sceneMgr) |
Getters | |
Heap * | heap () const |
Scene * | parent () const |
Scene * | child () const |
int | id () const |
SceneManager * | sceneMgr () const |
Protected Attributes | |
Heap * | m_heap |
Scene * | m_parent |
Scene * | m_child |
int | m_id |
SceneManager * | m_sceneMgr |
Additional Inherited Members | |
![]() | |
![]() | |
static constexpr u16 | getLinkOffset () |
|
inlinevirtual |
|
inlinevirtual |
|
inlinenodiscard |
|
inline |
|
protected |