summaryrefslogtreecommitdiff
path: root/include/JSystem/JFramework/JFWSystem.h
blob: 66c89e8c56d8392eec790a00000fdddaa2420fa6 (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
#ifndef JFWSYSTEM_H
#define JFWSYSTEM_H

#include "JSystem/JKernel/JKRExpHeap.h"
#include "JSystem/JKernel/JKRThread.h"
#include "JSystem/JUtility/JUTConsole.h"
#include "JSystem/JUtility/JUTDbPrint.h"
#include "JSystem/JUtility/JUTResFont.h"
#include "dolphin/types.h"

struct JFWSystem {
    struct CSetUpParam {
        static s32 maxStdHeaps;
        static u32 sysHeapSize;
        static u32 fifoBufSize;
        static u32 aramAudioBufSize;
        static u32 aramGraphBufSize;
        static u32 streamPriority;
        static u32 decompPriority;
        static u32 aPiecePriority;
        static ResFONT* systemFontRes;
        static GXRenderModeObj* renderMode;
        static u32 exConsoleBufferSize;
    };

    /* 80271CD0 */ static void firstInit();
    /* 80271D18 */ static void init();

    static JUTConsole* getSystemConsole() { return systemConsole; }
    static JKRExpHeap* getSystemHeap() { return systemHeap; }

    static void setMaxStdHeap(s32 max) { CSetUpParam::maxStdHeaps = max; }
    static void setSysHeapSize(u32 size) { CSetUpParam::sysHeapSize = size; }
    static void setFifoBufSize(u32 size) { CSetUpParam::fifoBufSize = size; }
    static void setAramAudioBufSize(u32 size) { CSetUpParam::aramAudioBufSize = size; }
    static void setAramGraphBufSize(u32 size) { CSetUpParam::aramGraphBufSize = size; }
    static void setRenderMode(GXRenderModeObj* p_modeObj) { CSetUpParam::renderMode = p_modeObj; }

    static JKRExpHeap* rootHeap;
    static JKRExpHeap* systemHeap;
    static JKRThread* mainThread;
    static JUTDbPrint* debugPrint;
    static JUTResFont* systemFont;
    static JUTConsoleManager* systemConsoleManager;
    static JUTConsole* systemConsole;
};

#endif /* JFWSYSTEM_H */