mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-09 20:32:50 -05:00
183 lines
5.0 KiB
C
183 lines
5.0 KiB
C
#include "error_message_reset.h"
|
|
|
|
#include <nitro/gx/g2.h>
|
|
#include <nitro/gx/gx_bgcnt.h>
|
|
#include <nitro/pad/common/pad.h>
|
|
|
|
#include "global.h"
|
|
|
|
#include "msgdata/msg.naix"
|
|
#include "msgdata/msg/msg_0041.h"
|
|
|
|
#include "bg_window.h"
|
|
#include "brightness.h"
|
|
#include "font.h"
|
|
#include "gf_gfx_planes.h"
|
|
#include "main.h"
|
|
#include "msgdata.h"
|
|
#include "pm_string.h"
|
|
#include "render_window.h"
|
|
#include "system.h"
|
|
#include "text.h"
|
|
#include "unk_0200FA24.h"
|
|
#include "unk_02035900.h"
|
|
#include "unk_02037C94.h"
|
|
|
|
static const GraphicsBanks sErrorMessageBanksConfig = {
|
|
.bg = GX_VRAM_BG_256_AB,
|
|
.bgextpltt = GX_VRAM_BGEXTPLTT_NONE,
|
|
.subbg = GX_VRAM_SUB_BG_NONE,
|
|
.subbgextpltt = GX_VRAM_SUB_BGEXTPLTT_NONE,
|
|
.obj = GX_VRAM_OBJ_NONE,
|
|
.objextpltt = GX_VRAM_OBJEXTPLTT_NONE,
|
|
.subobj = GX_VRAM_SUB_OBJ_NONE,
|
|
.subobjextpltt = GX_VRAM_SUB_OBJEXTPLTT_NONE,
|
|
.tex = GX_VRAM_TEX_NONE,
|
|
.texpltt = GX_VRAM_TEXPLTT_NONE,
|
|
};
|
|
|
|
static const struct GraphicsModes sErrorMessageBgModeSet = {
|
|
.dispMode = GX_DISPMODE_GRAPHICS,
|
|
.bgMode = GX_BGMODE_0,
|
|
.subMode = GX_BGMODE_0,
|
|
._2d3dMode = GX_BG0_AS_2D,
|
|
};
|
|
|
|
static const BgTemplate sErrorMessageBgTemplate = {
|
|
.x = 0,
|
|
.y = 0,
|
|
.bufferSize = 0x800,
|
|
.baseTile = 0,
|
|
.size = GF_BG_SCR_SIZE_256x256,
|
|
.colorMode = GX_BG_COLORMODE_16,
|
|
.screenBase = GX_BG_SCRBASE_0x0000,
|
|
.charBase = GX_BG_CHARBASE_0x18000,
|
|
.bgExtPltt = GX_BG_EXTPLTT_01,
|
|
.priority = 1,
|
|
.areaOver = GX_BG_AREAOVER_XLU,
|
|
.dummy = 0,
|
|
.mosaic = FALSE,
|
|
};
|
|
|
|
static const WindowTemplate sErrorMessageWindowTemplate = {
|
|
.bgId = GF_BG_LYR_MAIN_0,
|
|
.left = 3,
|
|
.top = 3,
|
|
.width = 26,
|
|
.height = 18,
|
|
.palette = 1,
|
|
.baseTile = 0x23,
|
|
};
|
|
|
|
static const HeapParam sErrorMessageHeapParams = {
|
|
.size = 0x20000,
|
|
.arena = OS_ARENA_MAIN,
|
|
};
|
|
|
|
static BOOL sErrorMessagePrinterLock;
|
|
|
|
static void VBlankIntr() {
|
|
OS_SetIrqCheckFlag(OS_IE_VBLANK);
|
|
MI_WaitDma(GX_DEFAULT_DMAID);
|
|
}
|
|
|
|
void PrintErrorMessageAndReset(void) {
|
|
Window window;
|
|
|
|
if (sErrorMessagePrinterLock == TRUE) {
|
|
return;
|
|
}
|
|
|
|
sErrorMessagePrinterLock = TRUE;
|
|
|
|
OS_SetArenaHi(OS_ARENA_MAIN, OS_GetInitArenaHi(OS_ARENA_MAIN));
|
|
OS_SetArenaLo(OS_ARENA_MAIN, OS_GetInitArenaLo(OS_ARENA_MAIN));
|
|
Heap_InitSystem(&sErrorMessageHeapParams, 1, 1, 0);
|
|
|
|
sub_0200FBF4(PM_LCD_TOP, RGB_BLACK);
|
|
sub_0200FBF4(PM_LCD_BOTTOM, RGB_BLACK);
|
|
|
|
OS_DisableIrqMask(OS_IE_VBLANK);
|
|
OS_SetIrqFunction(OS_IE_VBLANK, VBlankIntr);
|
|
OS_EnableIrqMask(OS_IE_VBLANK);
|
|
|
|
Main_SetVBlankIntrCB(NULL, NULL);
|
|
Main_SetHBlankIntrCB(NULL, NULL);
|
|
|
|
GfGfx_DisableEngineAPlanes();
|
|
GfGfx_DisableEngineBPlanes();
|
|
GX_SetVisiblePlane(0);
|
|
GXS_SetVisiblePlane(0);
|
|
|
|
SetKeyRepeatTimers(4, 8);
|
|
|
|
gSystem.screensFlipped = FALSE;
|
|
|
|
GfGfx_SwapDisplay();
|
|
G2_BlendNone();
|
|
G2S_BlendNone();
|
|
GX_SetVisibleWnd(GX_WNDMASK_NONE);
|
|
GXS_SetVisibleWnd(0);
|
|
GfGfx_SetBanks(&sErrorMessageBanksConfig);
|
|
|
|
BgConfig *bg_config = BgConfig_Alloc(HEAP_ID_DEFAULT);
|
|
SetBothScreensModesAndDisable(&sErrorMessageBgModeSet);
|
|
InitBgFromTemplate(bg_config, 0, &sErrorMessageBgTemplate, GF_BG_TYPE_TEXT);
|
|
BgClearTilemapBufferAndCommit(bg_config, GF_BG_LYR_MAIN_0);
|
|
LoadUserFrameGfx1(bg_config, GF_BG_LYR_MAIN_0, 0x1F7, 2, 0, HEAP_ID_DEFAULT);
|
|
LoadFontPal0(GF_PAL_LOCATION_MAIN_BG, GF_PAL_SLOT_1_OFFSET, HEAP_ID_DEFAULT);
|
|
BG_ClearCharDataRange(GF_BG_LYR_MAIN_0, 0x20, 0, HEAP_ID_DEFAULT);
|
|
BG_SetMaskColor(GF_BG_LYR_MAIN_0, RGB(1, 1, 27));
|
|
BG_SetMaskColor(GF_BG_LYR_SUB_0, RGB(1, 1, 27));
|
|
|
|
MsgData *error_msgdata = NewMsgDataFromNarc(MSGDATA_LOAD_LAZY, NARC_msgdata_msg, NARC_msg_msg_0041_bin, HEAP_ID_DEFAULT);
|
|
String *error_str = String_New(384, HEAP_ID_DEFAULT);
|
|
|
|
ResetAllTextPrinters();
|
|
|
|
AddWindow(bg_config, &window, &sErrorMessageWindowTemplate);
|
|
FillWindowPixelRect(&window, 0xF, 0, 0, 208, 144);
|
|
DrawFrameAndWindow1(&window, FALSE, 0x1F7, 2);
|
|
|
|
ReadMsgDataIntoString(error_msgdata, msg_0041_00003, error_str);
|
|
AddTextPrinterParameterized(&window, 0, error_str, 0, 0, 0, NULL);
|
|
String_Delete(error_str);
|
|
|
|
GfGfx_BothDispOn();
|
|
SetMasterBrightnessNeutral(PM_LCD_TOP);
|
|
SetMasterBrightnessNeutral(PM_LCD_BOTTOM);
|
|
SetBlendBrightness(0, (GXBlendPlaneMask)(GX_BLEND_PLANEMASK_BD | GX_BLEND_PLANEMASK_OBJ | GX_BLEND_PLANEMASK_BG3 | GX_BLEND_PLANEMASK_BG2 | GX_BLEND_PLANEMASK_BG1 | GX_BLEND_PLANEMASK_BG0), SCREEN_MASK_MAIN | SCREEN_MASK_SUB);
|
|
|
|
sub_02038D90();
|
|
|
|
while (TRUE) {
|
|
HandleDSLidAction();
|
|
sub_02036144();
|
|
|
|
if (sub_02039AA4()) {
|
|
break;
|
|
}
|
|
|
|
OS_WaitIrq(TRUE, OS_IE_VBLANK);
|
|
}
|
|
|
|
while (TRUE) {
|
|
HandleDSLidAction();
|
|
|
|
if (PAD_Read() & PAD_BUTTON_A) {
|
|
break;
|
|
}
|
|
|
|
OS_WaitIrq(TRUE, OS_IE_VBLANK);
|
|
}
|
|
|
|
sub_0200FBF4(PM_LCD_TOP, RGB_WHITE);
|
|
sub_0200FBF4(PM_LCD_BOTTOM, RGB_WHITE);
|
|
|
|
RemoveWindow(&window);
|
|
DestroyMsgData(error_msgdata);
|
|
Heap_Free(bg_config);
|
|
|
|
OS_ResetSystem(0);
|
|
}
|