1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-22 21:35:27 +00:00
oot/src/code/z_prenmi.c

64 lines
1.5 KiB
C
Raw Normal View History

#include "global.h"
#include "vt.h"
2020-03-17 04:31:30 +00:00
void func_80092320(PreNMIContext* this) {
this->state.running = false;
this->state.init = NULL;
this->state.size = 0;
2020-03-17 04:31:30 +00:00
}
void PreNMI_Update(PreNMIContext* this) {
2020-03-17 04:31:30 +00:00
osSyncPrintf(VT_COL(YELLOW, BLACK) "prenmi_move\n" VT_RST);
// Strings existing only in rodata
("../z_prenmi.c");
("(int)volume = %d\n");
if (this->timer == 0) {
2020-03-17 04:31:30 +00:00
ViConfig_UpdateVi(1);
func_80092320(this);
2020-03-17 04:31:30 +00:00
return;
}
this->timer--;
2020-03-17 04:31:30 +00:00
}
void PreNMI_Draw(PreNMIContext* this) {
GraphicsContext* gfxCtx = this->state.gfxCtx;
2020-03-17 04:31:30 +00:00
osSyncPrintf(VT_COL(YELLOW, BLACK) "prenmi_draw\n" VT_RST);
OPEN_DISPS(gfxCtx, "../z_prenmi.c", 96);
2020-03-17 04:31:30 +00:00
gSPSegment(oGfxCtx->polyOpa.p++, 0x00, NULL);
2020-03-17 04:31:30 +00:00
func_80095248(gfxCtx, 0, 0, 0);
func_800940B0(gfxCtx);
gDPSetFillColor(oGfxCtx->polyOpa.p++, (GPACK_RGBA5551(255, 255, 255, 1) << 16) | GPACK_RGBA5551(255, 255, 255, 1));
gDPFillRectangle(oGfxCtx->polyOpa.p++, 0, this->timer + 100, SCREEN_WIDTH - 1, this->timer + 100);
2020-03-17 04:31:30 +00:00
CLOSE_DISPS(gfxCtx, "../z_prenmi.c", 112);
2020-03-17 04:31:30 +00:00
}
void PreNMI_Main(GameState* thisx) {
PreNMIContext* this = (PreNMIContext*)thisx;
PreNMI_Update(this);
PreNMI_Draw(this);
2020-03-17 04:31:30 +00:00
this->state.unk_A0 = 1;
2020-03-17 04:31:30 +00:00
}
void PreNMI_Destroy(GameState* thisx) {
2020-03-17 04:31:30 +00:00
}
void PreNMI_Init(GameState* thisx) {
PreNMIContext* this = (PreNMIContext*)thisx;
this->state.main = PreNMI_Main;
this->state.destroy = PreNMI_Destroy;
this->timer = 30;
this->unk_A8 = 10;
2020-03-17 04:31:30 +00:00
R_UPDATE_RATE = 1;
}