blob: 0a24f2d865998440977e36d2f3965a1108d731a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#include "System/OverlayManager.hpp"
#include "Game/Game.hpp"
struct UnkStruct_020ee698 {
/* 00 */ unk8 mUnk_00[0x2C];
/* 2c */ unk32 mUnk_2c;
/* 30 */
};
extern UnkStruct_020ee698 data_ov000_020ee698;
extern u32 *data_027e0ce0[];
extern "C" void func_ov007_02102850(u32 **);
extern "C" void func_ov007_021028a0(u32 **);
THUMB void OverlayManager::Load(OverlayIndex index, OverlayId id) {
if (id != OverlayId_None) {
Overlay_Load(NULL, id);
}
this->mLoadedOverlays[index] = id;
}
THUMB void OverlayManager::LoadIfNotLoaded(OverlayIndex index, OverlayId id) {
OverlayId loadedId = this->mLoadedOverlays[index];
if (loadedId != id) {
this->Unload(index);
this->Load(index, id);
}
}
THUMB void OverlayManager::Unload(OverlayIndex index) {
if (this->mLoadedOverlays[index] != OverlayId_None) {
Overlay_Unload(NULL, this->mLoadedOverlays[index]);
this->mLoadedOverlays[index] = OverlayId_None;
}
}
THUMB void OverlayManager::LoadGameMode(s32 mode) {
OverlayId overlayId;
const GameModeData *pSetup;
pSetup = &gGameModes[mode];
this->LoadIfNotLoaded(OverlayIndex_1, pSetup->slot1Overlay);
this->LoadIfNotLoaded(OverlayIndex_2, pSetup->slot2Overlay);
if (mode == 5) {
func_ov007_02102850(data_027e0ce0);
} else {
overlayId = pSetup->slot12Overlay;
if (mode == 6 && data_ov000_020ee698.mUnk_2c == 2) {
overlayId = OverlayId_61;
}
this->Load(OverlayIndex_3, pSetup->slot3Overlay);
this->Load(OverlayIndex_12, overlayId);
}
}
THUMB void OverlayManager::UnloadGameMode() {
this->Unload(OverlayIndex_12);
this->Unload(OverlayIndex_3);
if (this->mLoadedOverlays[2] == OverlayId_DownloadPlay) {
func_ov007_021028a0(data_027e0ce0);
this->Unload(OverlayIndex_2);
}
}
|