3#include "game/system/KPadDirector.hh"
4#include "game/system/RaceConfig.hh"
5#include "game/system/ResourceManager.hh"
7#include <egg/core/SceneManager.hh>
8#include <host/SceneId.hh>
10#include <ScopeLock.hh>
15RootScene::RootScene() {
16 m_heap->setName(
"RootSceneHeap");
20RootScene::~RootScene() =
default;
23void RootScene::enter() {
29 m_sceneMgr->createChildScene(
static_cast<int>(Host::SceneId::Race),
this);
33void RootScene::allocate() {
36 System::ResourceManager::CreateInstance();
41 System::KPadDirector::CreateInstance();
42 System::RaceConfig::CreateInstance();
47void RootScene::init() {
50 System::RaceConfig::Instance()->init();
55void RootScene::checkMemory() {
56 EGG::ExpHeap *heap = EGG::Heap::dynamicCastToExp(m_heap);
59 heap->calcGroupSize(&m_groupSizeRecord);
60 size_t defaultSize = m_groupSizeRecord.getGroupSize(
static_cast<u16>(GroupID::None));
63 ASSERT(defaultSize >=
sizeof(RootScene));
64 defaultSize -=
sizeof(RootScene);
65 if (defaultSize > 0) {
66 WARN(
"Default memory usage found! %zu bytes", defaultSize);
69 for (
u16 groupID = 1; groupID < m_groupSizeRecord.size(); ++groupID) {
70 size_t size = m_groupSizeRecord.getGroupSize(groupID);
75 DEBUG(
"Group ID %d: Allocated %zu bytes", groupID, size);
High-level implementation of a memory heap for managing dynamic memory allocation....
Pertains to scene handling.