mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-02 15:55:59 +00:00
f1d27bf653
* Add parens around params usage in VEC_SET macro * Remove unnecessary space character in a xml * Use defines instead of magic values in head/tail magic comments * Use `OS_USEC_TO_CYCLES` to make a time look better in `Graph_TaskSet00` * `0x25800` -> `sizeof(u16[SCREEN_HEIGHT][SCREEN_WIDTH])` * `0x803DA800` -> `0x80400000 - frame buffer size` * Use `OS_VI_` defines instead of hex * Add empty line after some variable declarations * Remove unused `extern CutsceneData` in `z_bg_dy_yoseizo.c` * `Matrix_MtxFToYXZRotS` does not use `MTXMODE_` * Use `MTXMODE_` more * Remove `ASCII_TO_U32`, use `'IS64'` * Add explicit `!= NULL` in some ternaries * Use `INV_CONTENT`, `AMMO` macros more * Use `PLAYER_AP_` enum more to compare to `Player#heldItemActionParam` * Get rid of lowercase hex (outside libultra) * `gWindMill*` -> `gWindmill*` * Format and small fix enums in `z_boss_mo.h` * Use `CHECK_BTN_ANY` more * Fix xz/xy mistake in comment in tektite * Rephrase comments mentioning "the devs" in a more neutral way * Clean-up some objectively useless parens * Fix some negative values written as u16 instead of s16 in ichains * `SKJ_ACTON_` -> `SKJ_ACTION_` * Run formatter * Fix unk_ offset of `TransformUpdateIndex#unk_10` -> `unk_0E` * Remove comments using in-game text * Remove `U` suffix from integer literals * Revert "Remove `ASCII_TO_U32`, use `'IS64'`" This reverts commitc801337dde
. * Use `PLAYER_STR_*` to compare to `CUR_UPG_VALUE(UPG_STRENGTH)` * Add empty line after decl x2 * Revert "Use `PLAYER_STR_*` to compare to `CUR_UPG_VALUE(UPG_STRENGTH)`" This reverts commitd80bdb32da
. * Make `CUR_UPG_VALUE(UPG_STRENGTH)` compare to integers (eventually needs its own enum) * Only use `PLAYER_SHIELD_` enum with `Player#currentShield` * Only use `PLAYER_TUNIC_` enum with `Player#currentTunic`
116 lines
4 KiB
C
116 lines
4 KiB
C
#include "global.h"
|
|
#include "vt.h"
|
|
|
|
s32 gScreenWidth = SCREEN_WIDTH;
|
|
s32 gScreenHeight = SCREEN_HEIGHT;
|
|
u32 gSystemHeapSize = 0;
|
|
|
|
PreNmiBuff* gAppNmiBufferPtr;
|
|
SchedContext gSchedContext;
|
|
PadMgr gPadMgr;
|
|
IrqMgr gIrqMgr;
|
|
u32 gSegments[NUM_SEGMENTS];
|
|
OSThread sGraphThread;
|
|
u8 sGraphStack[0x1800];
|
|
u8 sSchedStack[0x600];
|
|
u8 sAudioStack[0x800];
|
|
u8 sPadMgrStack[0x500];
|
|
u8 sIrqMgrStack[0x500];
|
|
StackEntry sGraphStackInfo;
|
|
StackEntry sSchedStackInfo;
|
|
StackEntry sAudioStackInfo;
|
|
StackEntry sPadMgrStackInfo;
|
|
StackEntry sIrqMgrStackInfo;
|
|
AudioMgr gAudioMgr;
|
|
OSMesgQueue sSiIntMsgQ;
|
|
OSMesg sSiIntMsgBuf[1];
|
|
|
|
void Main_LogSystemHeap(void) {
|
|
osSyncPrintf(VT_FGCOL(GREEN));
|
|
// "System heap size% 08x (% dKB) Start address% 08x"
|
|
osSyncPrintf("システムヒープサイズ %08x(%dKB) 開始アドレス %08x\n", gSystemHeapSize, gSystemHeapSize / 1024,
|
|
gSystemHeap);
|
|
osSyncPrintf(VT_RST);
|
|
}
|
|
|
|
void Main(void* arg) {
|
|
IrqMgrClient irqClient;
|
|
OSMesgQueue irqMgrMsgQ;
|
|
OSMesg irqMgrMsgBuf[60];
|
|
u32 sysHeap;
|
|
u32 fb;
|
|
s32 debugHeap;
|
|
s32 debugHeapSize;
|
|
s16* msg;
|
|
|
|
osSyncPrintf("mainproc 実行開始\n"); // "Start running"
|
|
gScreenWidth = SCREEN_WIDTH;
|
|
gScreenHeight = SCREEN_HEIGHT;
|
|
gAppNmiBufferPtr = (PreNmiBuff*)osAppNmiBuffer;
|
|
PreNmiBuff_Init(gAppNmiBufferPtr);
|
|
Fault_Init();
|
|
SysCfb_Init(0);
|
|
sysHeap = (u32)gSystemHeap;
|
|
fb = SysCfb_GetFbPtr(0);
|
|
gSystemHeapSize = (fb - sysHeap);
|
|
// "System heap initalization"
|
|
osSyncPrintf("システムヒープ初期化 %08x-%08x %08x\n", sysHeap, fb, gSystemHeapSize);
|
|
SystemHeap_Init(sysHeap, gSystemHeapSize); // initializes the system heap
|
|
if (osMemSize >= 0x800000) {
|
|
debugHeap = SysCfb_GetFbEnd();
|
|
debugHeapSize = (s32)(0x80600000 - debugHeap);
|
|
} else {
|
|
debugHeapSize = 0x400;
|
|
debugHeap = SystemArena_MallocDebug(debugHeapSize, "../main.c", 0x235);
|
|
}
|
|
osSyncPrintf("debug_InitArena(%08x, %08x)\n", debugHeap, debugHeapSize);
|
|
DebugArena_Init(debugHeap, debugHeapSize);
|
|
func_800636C0();
|
|
|
|
R_ENABLE_ARENA_DBG = 0;
|
|
|
|
osCreateMesgQueue(&sSiIntMsgQ, sSiIntMsgBuf, 1);
|
|
osSetEventMesg(5, &sSiIntMsgQ, 0);
|
|
|
|
Main_LogSystemHeap();
|
|
|
|
osCreateMesgQueue(&irqMgrMsgQ, irqMgrMsgBuf, 0x3C);
|
|
StackCheck_Init(&sIrqMgrStackInfo, sIrqMgrStack, sIrqMgrStack + sizeof(sIrqMgrStack), 0, 0x100, "irqmgr");
|
|
IrqMgr_Init(&gIrqMgr, &sGraphStackInfo, Z_PRIORITY_IRQMGR, 1);
|
|
|
|
osSyncPrintf("タスクスケジューラの初期化\n"); // "Initialize the task scheduler"
|
|
StackCheck_Init(&sSchedStackInfo, sSchedStack, sSchedStack + sizeof(sSchedStack), 0, 0x100, "sched");
|
|
Sched_Init(&gSchedContext, &sAudioStack, Z_PRIORITY_SCHED, D_80013960, 1, &gIrqMgr);
|
|
|
|
IrqMgr_AddClient(&gIrqMgr, &irqClient, &irqMgrMsgQ);
|
|
|
|
StackCheck_Init(&sAudioStackInfo, sAudioStack, sAudioStack + sizeof(sAudioStack), 0, 0x100, "audio");
|
|
AudioMgr_Init(&gAudioMgr, sAudioStack + sizeof(sAudioStack), Z_PRIORITY_AUDIOMGR, 0xA, &gSchedContext, &gIrqMgr);
|
|
|
|
StackCheck_Init(&sPadMgrStackInfo, sPadMgrStack, sPadMgrStack + sizeof(sPadMgrStack), 0, 0x100, "padmgr");
|
|
PadMgr_Init(&gPadMgr, &sSiIntMsgQ, &gIrqMgr, 7, Z_PRIORITY_PADMGR, &sIrqMgrStack);
|
|
|
|
AudioMgr_Unlock(&gAudioMgr);
|
|
|
|
StackCheck_Init(&sGraphStackInfo, sGraphStack, sGraphStack + sizeof(sGraphStack), 0, 0x100, "graph");
|
|
osCreateThread(&sGraphThread, 4, Graph_ThreadEntry, arg, sGraphStack + sizeof(sGraphStack), Z_PRIORITY_GRAPH);
|
|
osStartThread(&sGraphThread);
|
|
osSetThreadPri(0, Z_PRIORITY_SCHED);
|
|
|
|
while (true) {
|
|
msg = NULL;
|
|
osRecvMesg(&irqMgrMsgQ, (OSMesg)&msg, OS_MESG_BLOCK);
|
|
if (msg == NULL) {
|
|
break;
|
|
}
|
|
if (*msg == OS_SC_PRE_NMI_MSG) {
|
|
osSyncPrintf("main.c: リセットされたみたいだよ\n"); // "Looks like it's been reset"
|
|
PreNmiBuff_SetReset(gAppNmiBufferPtr);
|
|
}
|
|
}
|
|
|
|
osSyncPrintf("mainproc 後始末\n"); // "Cleanup"
|
|
osDestroyThread(&sGraphThread);
|
|
func_800FBFD8();
|
|
osSyncPrintf("mainproc 実行終了\n"); // "End of execution"
|
|
}
|