3#include "egg/core/Scene.hh"
4#include "egg/core/SceneCreator.hh"
23 virtual void calcCurrentScene();
29 void createChildScene(
int nextSceneId,
Scene *parent);
30 void createScene(
int nextSceneId,
Scene *parent);
31 void destroyScene(
Scene *scene);
33 void changeScene(
int nextSceneId);
34 void changeSiblingScene(
int nextSceneId);
35 void changeSiblingScene();
36 void incomingCurrentScene();
37 void outgoingParentScene(
Scene *parent);
38 void reinitCurrentScene();
40 bool destroyCurrentSceneNoIncoming(
bool destroyRootIfNoParent);
41 bool destroyToSelectSceneId(
int nextSceneId);
42 [[nodiscard]]
Scene *findParentScene(
int id)
const;
43 void setupNextSceneId();
49 [[nodiscard]]
Scene *currentScene()
const {
50 return m_currentScene;
53 [[nodiscard]]
int currentSceneId()
const {
54 return m_currentSceneId;
57 [[nodiscard]]
static Heap *heapForCreateScene() {
58 return s_heapForCreateScene;
65 void setNextSceneId(
int id) {
69 static void SetRootHeap(
Heap *heap) {
79 Scene *m_currentScene;
84 static Heap *s_heapForCreateScene;
85 static u16 s_heapOptionFlg;
87 static Heap *s_rootHeap;
A high-level representation of a memory heap for managing dynamic memory allocation....
Interface for creating and destroying scenes.
Manages the scene stack and transitions between scenes.
Pertains to scene handling.