pokeemerald/src/pokenav_unk_2.c

538 lines
11 KiB
C
Raw Normal View History

2019-05-02 20:27:59 +02:00
#include "global.h"
#include "alloc.h"
#include "bg.h"
2019-05-02 22:19:25 +02:00
#include "menu.h"
2019-05-02 20:27:59 +02:00
#include "window.h"
#include "pokenav.h"
2019-05-02 22:19:25 +02:00
#include "graphics.h"
#include "sound.h"
#include "constants/songs.h"
2019-05-02 20:27:59 +02:00
// Match Call
struct Pokenav2Struct
{
bool32 (*callback)(void);
u32 loopedTaskId;
u8 field_008;
u8 field_009;
u8 field_00a;
u8 field_00b;
u8 field_00c;
u8 field_00d;
2019-05-02 22:19:25 +02:00
u8 filler_00e[0x7E];
u8 field_08c[0x800];
2019-05-02 20:27:59 +02:00
};
struct Pokenav2Struct * sub_81C9958(void);
bool32 sub_81C99FC(void);
u32 sub_81C9A10(int state);
u32 sub_81C9C6C(int state);
u32 sub_81C9CA8(int state);
u32 sub_81C9D44(int state);
u32 sub_81C9DD8(int state);
u32 sub_81C9E58(int state);
u32 sub_81C9EC8(int state);
u32 sub_81C9EF8(int state);
u32 sub_81C9F28(int state);
2019-05-02 22:19:25 +02:00
void sub_81C9FC4(void);
2019-05-02 20:27:59 +02:00
void sub_81C9FEC(void);
2019-05-02 22:19:25 +02:00
void sub_81CA02C(void);
void sub_81CA0C8(void);
void sub_81CA20C(void);
2019-05-02 22:43:32 +02:00
void sub_81CA278(void);
void sub_81CA2DC(void);
2019-05-02 22:19:25 +02:00
bool32 sub_81CA324(void);
void sub_81CA640(void);
void sub_81CA6E0(void);
void sub_81CA714(void);
2019-05-02 22:43:32 +02:00
void sub_81CA770(void);
2019-05-02 22:19:25 +02:00
bool32 sub_81CA7C4(void);
void sub_81CA7D4(void);
void sub_81CA7F4(void);
2019-05-02 22:43:32 +02:00
void sub_81CA818(void);
2019-05-02 22:19:25 +02:00
void sub_81CA850(void);
2019-05-02 22:43:32 +02:00
void sub_81CA864(void);
bool32 sub_81CA89C(void);
2019-05-02 22:19:25 +02:00
void titlescreen_0(void);
2019-05-02 20:27:59 +02:00
void sub_81CA994(void);
2019-05-02 22:43:32 +02:00
void sub_81CA9C8(void);
void sub_81CA9D8(void);
void sub_81CAA3C(void);
2019-05-02 20:27:59 +02:00
const u16 gUnknown_0861FC78[] = INCBIN_U16("graphics/pokenav/bg.gbapal");
const u32 gUnknown_0861FC98[] = INCBIN_U32("graphics/pokenav/bg.4bpp.lz");
const u32 gUnknown_0861FCAC[] = INCBIN_U32("graphics/pokenav/bg.bin.lz");
const u16 gUnknown_0861FD4C[] = INCBIN_U16("graphics/pokenav/outline.gbapal");
const u32 gUnknown_0861FD6C[] = INCBIN_U32("graphics/pokenav/outline.4bpp.lz");
const u32 gUnknown_0861FFF4[] = INCBIN_U32("graphics/pokenav/outline_map.bin.lz");
const u16 gUnknown_08620104[] = INCBIN_U16("graphics/pokenav/blue_light.gbapal");
const u32 gUnknown_08620124[] = INCBIN_U32("graphics/pokenav/blue_light.4bpp.lz");
const struct BgTemplate gUnknown_08620194[] = {
{
.bg = 1,
.charBaseIndex = 1,
.mapBaseIndex = 15,
.screenSize = 0,
.paletteMode = 0,
.priority = 1,
.baseTile = 0x000
}, {
.bg = 2,
.charBaseIndex = 2,
.mapBaseIndex = 23,
.screenSize = 0,
.paletteMode = 0,
.priority = 2,
.baseTile = 0x000
}, {
.bg = 3,
.charBaseIndex = 3,
.mapBaseIndex = 31,
.screenSize = 0,
.paletteMode = 0,
.priority = 3,
.baseTile = 0x000
}
};
const LoopedTask gUnknown_086201A0[] = {
NULL,
sub_81C9C6C,
sub_81C9CA8,
sub_81C9D44,
sub_81C9DD8,
sub_81C9E58,
sub_81C9EC8,
sub_81C9EF8,
sub_81C9F28
};
bool32 sub_81C98D4(void)
{
s32 i;
for (i = 0; i < 78; i++)
{
if (sub_81CB0C8(i) == gMapHeader.regionMapSectionId
&& sub_81CAE08(i)
&& gSaveBlock1Ptr->trainerRematches[i])
return TRUE;
}
return FALSE;
}
bool32 sub_81C9924(void)
{
struct Pokenav2Struct * unk = sub_81C9958();
if (unk == NULL)
return FALSE;
unk->field_00d = 0;
return TRUE;
}
bool32 sub_81C9940(void)
{
struct Pokenav2Struct * unk = sub_81C9958();
if (unk == NULL)
return FALSE;
unk->field_00d = 1;
return TRUE;
}
struct Pokenav2Struct * sub_81C9958(void)
{
struct Pokenav2Struct * unk = AllocSubstruct(2, sizeof(struct Pokenav2Struct));
if (unk != NULL)
{
unk->field_00c = 0;
unk->loopedTaskId = CreateLoopedTask(sub_81C9A10, 1);
unk->callback = sub_81C99FC;
}
return unk;
}
void sub_81C9990(s32 ltIdx)
{
struct Pokenav2Struct * unk = GetSubstructPtr(2);
unk->loopedTaskId = CreateLoopedTask(gUnknown_086201A0[ltIdx], 1);
unk->callback = sub_81C99FC;
}
bool32 sub_81C99C0(void)
{
struct Pokenav2Struct * unk = GetSubstructPtr(2);
return unk->callback();
}
void sub_81C99D4(void)
{
struct Pokenav2Struct * unk = GetSubstructPtr(2);
sub_81CA7F4();
RemoveWindow(unk->field_008);
sub_81C9FEC();
sub_81CA994();
FreePokenavSubstruct(2);
}
bool32 sub_81C99FC(void)
{
struct Pokenav2Struct * unk = GetSubstructPtr(2);
return IsLoopedTaskActive(unk->loopedTaskId);
}
2019-05-02 22:19:25 +02:00
u32 sub_81C9A10(int state)
{
struct Pokenav2Struct * unk = GetSubstructPtr(2);
switch (state)
{
case 0:
InitBgTemplates(gUnknown_08620194, ARRAY_COUNT(gUnknown_08620194));
decompress_and_copy_tile_data_to_vram(1, gPokenavMessageBox_Gfx, 0, 0, 0);
SetBgTilemapBuffer(1, unk->field_08c);
CopyToBgTilemapBuffer(1, gPokenavMessageBox_Tilemap, 0, 0);
CopyBgTilemapBufferToVram(1);
CopyPaletteIntoBufferUnfaded(gPokenavMessageBox_Pal, 0x10, 0x20);
ChangeBgX(1, 0, 0);
ChangeBgY(1, 0, 0);
ChangeBgX(2, 0, 0);
ChangeBgY(2, 0, 0);
ChangeBgX(3, 0, 0);
ChangeBgY(3, 0, 0);
return 0;
case 1:
if (free_temp_tile_data_buffers_if_possible())
return 2;
decompress_and_copy_tile_data_to_vram(2, gUnknown_0861FD6C, 0, 0, 0);
decompress_and_copy_tile_data_to_vram(2, gUnknown_0861FFF4, 0, 0, 1);
CopyPaletteIntoBufferUnfaded(gUnknown_0861FD4C, 0x20, 0x20);
return 0;
case 2:
if (free_temp_tile_data_buffers_if_possible())
return 2;
decompress_and_copy_tile_data_to_vram(3, gUnknown_0861FC98, 0, 0, 0);
decompress_and_copy_tile_data_to_vram(3, gUnknown_0861FCAC, 0, 0, 1);
CopyPaletteIntoBufferUnfaded(gUnknown_0861FC78, 0x30, 0x20);
if (sub_81C9894() == 3 || sub_81C9894() == 4)
sub_81CA850();
return 0;
case 3:
if (free_temp_tile_data_buffers_if_possible())
return 2;
sub_81CA6E0();
sub_81CA7D4();
return 1;
case 4:
sub_81C9FC4();
return 1;
case 5:
sub_81CA714();
sub_81CA02C();
sub_81CA640();
sub_81CA0C8();
return 0;
case 6:
if (sub_81CA7C4())
return 2;
return 1;
case 7:
ShowBg(1);
ShowBg(2);
ShowBg(3);
if (unk->field_00d)
sub_81C7AC0(1);
else
{
PlaySE(SE_PN_ON);
sub_81C7AC0(3);
}
switch (sub_81C9894())
{
case 4:
LoadLeftHeaderGfxForIndex(7);
// fallthrough
case 3:
LoadLeftHeaderGfxForIndex(1);
break;
default:
LoadLeftHeaderGfxForIndex(0);
break;
}
return 0;
case 8:
if (IsPaletteFadeActive())
return 2;
switch (sub_81C9894())
{
case 4:
sub_81C7FA0(7, FALSE, FALSE);
// fallthrough
case 3:
sub_81C7FA0(1, FALSE, FALSE);
break;
default:
sub_81C7FA0(0, FALSE, FALSE);
break;
}
sub_81CA20C();
titlescreen_0();
return 1;
case 9:
if (sub_81CA324())
return 2;
if (sub_81C8010())
return 2;
break;
}
return 4;
}
2019-05-02 22:43:32 +02:00
u32 sub_81C9C6C(int state)
{
switch (state)
{
case 0:
sub_81CAA3C();
sub_81CA278();
sub_81CA714();
PlaySE(SE_SELECT);
return 0;
case 1:
if (sub_81CA324())
return 2;
if (sub_81CA7C4())
return 2;
break;
}
return 4;
}
u32 sub_81C9CA8(int state)
{
switch (state)
{
case 0:
sub_81CA9C8();
sub_81CA2DC();
sub_81C7FC4(0, 0);
PlaySE(SE_SELECT);
return 0;
case 1:
if (sub_81CA324())
return 2;
if (sub_81C8010())
return 2;
sub_81CA0C8();
LoadLeftHeaderGfxForIndex(1);
return 0;
case 2:
sub_81CA20C();
sub_81C7FA0(1, FALSE, FALSE);
sub_81CA818();
sub_81CA714();
return 0;
case 3:
if (sub_81CA324())
return 2;
if (sub_81C8010())
return 2;
if (sub_81CA89C())
return 2;
if (sub_81CA7C4())
return 2;
sub_81CA9D8();
break;
}
return 4;
}
u32 sub_81C9D44(int state)
{
switch (state)
{
case 0:
sub_81CA9C8();
sub_81CA2DC();
sub_81C7FC4(1, 0);
return 0;
case 1:
if (sub_81CA324())
return 2;
if (sub_81C8010())
return 2;
sub_81CA0C8();
LoadLeftHeaderGfxForIndex(0);
return 0;
case 2:
sub_81CA20C();
sub_81C7FA0(0, FALSE, FALSE);
sub_81CA864();
sub_81CA714();
return 0;
case 3:
if (sub_81CA324())
return 2;
if (sub_81C8010())
return 2;
if (sub_81CA89C())
return 2;
if (sub_81CA7C4())
return 2;
sub_81CA9D8();
break;
}
return 4;
}
u32 sub_81C9DD8(int state)
{
switch (state)
{
case 0:
sub_81CA9C8();
sub_81CA2DC();
PlaySE(SE_SELECT);
return 0;
case 1:
if (sub_81CA324())
return 2;
LoadLeftHeaderGfxForIndex(7);
sub_81CA0C8();
return 0;
case 2:
sub_81CA20C();
sub_81C7FA0(7, FALSE, FALSE);
sub_81CA714();
return 0;
case 3:
if (sub_81CA324())
return 2;
if (sub_81C8010())
return 2;
if (sub_81CA89C())
return 2;
sub_81CA9D8();
break;
}
return 4;
}
u32 sub_81C9E58(int state)
{
switch (state)
{
case 0:
sub_81CA9C8();
sub_81CA2DC();
sub_81C7FC4(7, 0);
return 0;
case 1:
if (sub_81CA324())
return 2;
if (sub_81C8010())
return 2;
sub_81CA0C8();
return 0;
case 2:
sub_81CA20C();
sub_81CA714();
return 0;
case 3:
if (sub_81CA324())
return 2;
if (sub_81CA89C())
return 2;
sub_81CA9D8();
break;
}
return 4;
}
u32 sub_81C9EC8(int state)
{
switch (state)
{
case 0:
PlaySE(SE_HAZURE);
sub_81CA770();
return 0;
case 1:
if (IsDma3ManagerBusyWithBgCopy())
return 2;
break;
}
return 4;
}
u32 sub_81C9EF8(int state)
{
switch (state)
{
case 0:
PlaySE(SE_SELECT);
sub_81CA714();
return 0;
case 1:
if (IsDma3ManagerBusyWithBgCopy())
return 2;
break;
}
return 4;
}
u32 sub_81C9F28(int state)
{
switch (state)
{
case 0:
sub_81C7BA4(sub_81C98C4());
return 0;
case 1:
if (IsDma3ManagerBusyWithBgCopy_())
return 2;
sub_81C7880();
sub_81CA9C8();
sub_81CA2DC();
switch (sub_81C9894())
{
case 4:
sub_81C7FC4(7, FALSE);
// fallthrough
case 3:
sub_81C7FC4(1, FALSE);
break;
default:
sub_81C7FC4(0, FALSE);
break;
}
PlaySE(SE_SELECT);
return 0;
case 2:
if (sub_81CA324())
return 2;
if (sub_81C8010())
return 2;
sub_81C7AC0(0);
return 0;
case 3:
if (IsPaletteFadeActive())
return 2;
break;
}
return 4;
}