A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
SceneManager.hh
1#pragma once
2
3#include "egg/core/Scene.hh"
4#include "egg/core/SceneCreator.hh"
5
6namespace EGG {
7
10public:
11 /*------------*
12 Lifecycle
13 *------------*/
14
15 SceneManager(SceneCreator *creator = nullptr);
16 virtual ~SceneManager();
17
18 /*----------*
19 Virtual
20 *----------*/
21
22 virtual void calc();
23 virtual void calcCurrentScene();
24
25 /*----------*
26 Methods
27 *----------*/
28
29 void createChildScene(int nextSceneId, Scene *parent);
30 void createScene(int nextSceneId, Scene *parent);
31 void destroyScene(Scene *scene);
32
33 void changeScene(int nextSceneId);
34 void changeSiblingScene(int nextSceneId);
35 void changeSiblingScene();
36 void incomingCurrentScene();
37 void outgoingParentScene(Scene *parent);
38 void reinitCurrentScene();
39
40 bool destroyCurrentSceneNoIncoming(bool destroyRootIfNoParent);
41 bool destroyToSelectSceneId(int nextSceneId);
42 [[nodiscard]] Scene *findParentScene(int id) const;
43 void setupNextSceneId();
44
45 /*----------*
46 Getters
47 *----------*/
48
49 [[nodiscard]] Scene *currentScene() const {
50 return m_currentScene;
51 }
52
53 [[nodiscard]] int currentSceneId() const {
54 return m_currentSceneId;
55 }
56
57 [[nodiscard]] static Heap *heapForCreateScene() {
58 return s_heapForCreateScene;
59 }
60
61 /*----------*
62 Setters
63 *----------*/
64
65 void setNextSceneId(int id) {
66 m_nextSceneId = id;
67 }
68
69 static void SetRootHeap(Heap *heap) {
70 s_rootHeap = heap;
71 }
72
73private:
74 /*----------*
75 Members
76 *----------*/
77
78 SceneCreator *m_creator;
79 Scene *m_currentScene;
80 int m_nextSceneId;
81 int m_currentSceneId;
82 int m_prevSceneId;
83
84 static Heap *s_heapForCreateScene;
85 static u16 s_heapOptionFlg;
86
87 static Heap *s_rootHeap;
88};
89
90} // namespace EGG
A high-level representation of a memory heap for managing dynamic memory allocation....
Definition Heap.hh:16
Interface for creating and destroying scenes.
Manages the scene stack and transitions between scenes.
EGG core library.
Definition Archive.cc:6
Pertains to scene handling.
Definition GameScene.cc:8