mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-17 03:57:38 +01:00
555 lines
17 KiB
C
555 lines
17 KiB
C
#include "global.h"
|
|
#include "mail.h"
|
|
#include "constants/items.h"
|
|
#include "main.h"
|
|
#include "overworld.h"
|
|
#include "task.h"
|
|
#include "scanline_effect.h"
|
|
#include "palette.h"
|
|
#include "text.h"
|
|
#include "menu.h"
|
|
#include "menu_helpers.h"
|
|
#include "text_window.h"
|
|
#include "string_util.h"
|
|
#include "international_string_util.h"
|
|
#include "strings.h"
|
|
#include "gpu_regs.h"
|
|
#include "bg.h"
|
|
#include "pokemon_icon.h"
|
|
#include "malloc.h"
|
|
#include "easy_chat.h"
|
|
#include "constants/rgb.h"
|
|
|
|
extern const u16 gMailPalette_Orange[];
|
|
extern const u16 gMailPalette_Harbor[];
|
|
extern const u16 gMailPalette_Glitter[];
|
|
extern const u16 gMailPalette_Mech[];
|
|
extern const u16 gMailPalette_Wood[];
|
|
extern const u16 gMailPalette_Wave[];
|
|
extern const u16 gMailPalette_Bead[];
|
|
extern const u16 gMailPalette_Shadow[];
|
|
extern const u16 gMailPalette_Tropic[];
|
|
extern const u16 gMailPalette_Dream[];
|
|
extern const u16 gMailPalette_Fab[];
|
|
extern const u16 gMailPalette_Retro[];
|
|
extern const u8 gMailTiles_Orange[];
|
|
extern const u8 gMailTilemap_Orange[];
|
|
extern const u8 gMailTiles_Harbor[];
|
|
extern const u8 gMailTilemap_Harbor[];
|
|
extern const u8 gMailTiles_Glitter[];
|
|
extern const u8 gMailTilemap_Glitter[];
|
|
extern const u8 gMailTiles_Mech[];
|
|
extern const u8 gMailTilemap_Mech[];
|
|
extern const u8 gMailTiles_Wood[];
|
|
extern const u8 gMailTilemap_Wood[];
|
|
extern const u8 gMailTiles_Wave[];
|
|
extern const u8 gMailTilemap_Wave[];
|
|
extern const u8 gMailTiles_Bead[];
|
|
extern const u8 gMailTilemap_Bead[];
|
|
extern const u8 gMailTiles_Shadow[];
|
|
extern const u8 gMailTilemap_Shadow[];
|
|
extern const u8 gMailTiles_Tropic[];
|
|
extern const u8 gMailTilemap_Tropic[];
|
|
extern const u8 gMailTiles_Dream[];
|
|
extern const u8 gMailTilemap_Dream[];
|
|
extern const u8 gMailTiles_Fab[];
|
|
extern const u8 gMailTilemap_Fab[];
|
|
extern const u8 gMailTiles_Retro[];
|
|
extern const u8 gMailTilemap_Retro[];
|
|
|
|
// Static type declarations
|
|
|
|
struct UnkMailStruct
|
|
{
|
|
u32 numEasyChatWords:2;
|
|
u32 xOffset:6;
|
|
u32 lineHeight:8;
|
|
};
|
|
|
|
struct MailLayout
|
|
{
|
|
u8 numSubStructs;
|
|
u8 signatureYPos;
|
|
u8 signatureWidth;
|
|
u8 wordsXPos;
|
|
u8 wordsYPos;
|
|
const struct UnkMailStruct *var8;
|
|
};
|
|
|
|
struct MailGraphics
|
|
{
|
|
const u16 *palette;
|
|
const u8 *tiles;
|
|
const u8 *tileMap;
|
|
u16 var0C;
|
|
u16 var0E;
|
|
u16 color10;
|
|
u16 color12;
|
|
};
|
|
|
|
struct MailRead
|
|
{
|
|
/*0x0000*/ u8 strbuf[8][64];
|
|
/*0x0200*/ u8 playerName[12];
|
|
/*0x020C*/ MainCallback callback;
|
|
/*0x0210*/ MainCallback callback2;
|
|
/*0x0214*/ struct MailStruct *mail;
|
|
/*0x0218*/ bool8 flag;
|
|
/*0x0219*/ u8 signatureWidth;
|
|
/*0x021a*/ u8 mailType;
|
|
/*0x021b*/ u8 animsActive;
|
|
/*0x021c*/ u8 monIconSprite;
|
|
/*0x021d*/ u8 language;
|
|
/*0x021e*/ bool8 playerIsSender;
|
|
/*0x0220*/ u8 * (*parserSingle)(u8 *dest, u16 word);
|
|
/*0x0224*/ u8 * (*parserMultiple)(u8 *dest, const u16 *src, u16 length1, u16 length2);
|
|
/*0x0228*/ const struct MailLayout *layout;
|
|
/*0x022c*/ u8 bg1TilemapBuffer[0x1000];
|
|
/*0x122c*/ u8 bg2TilemapBuffer[0x1000];
|
|
};
|
|
|
|
// Static RAM declarations
|
|
|
|
static EWRAM_DATA struct MailRead *sMailRead = NULL;
|
|
|
|
// Static ROM declarations
|
|
|
|
static void CB2_InitMailRead(void);
|
|
static void sub_8121A1C(void);
|
|
static void sub_8121B1C(void);
|
|
static void VBlankCB_MailRead(void);
|
|
static void CB2_MailRead(void);
|
|
static void CB2_WaitForPaletteExitOnKeyPress(void);
|
|
static void CB2_ExitOnKeyPress(void);
|
|
static void CB2_ExitMailReadFreeVars(void);
|
|
|
|
// .rodata
|
|
|
|
static const struct BgTemplate sBgTemplates[] = {
|
|
{
|
|
.bg = 0,
|
|
.charBaseIndex = 2,
|
|
.mapBaseIndex = 31,
|
|
.priority = 0
|
|
}, {
|
|
.bg = 1,
|
|
.charBaseIndex = 0,
|
|
.mapBaseIndex = 30,
|
|
.priority = 1
|
|
}, {
|
|
.bg = 2,
|
|
.charBaseIndex = 0,
|
|
.mapBaseIndex = 29,
|
|
.priority = 2
|
|
}
|
|
};
|
|
|
|
static const struct WindowTemplate sUnknown_0859F29C[] = {
|
|
{
|
|
.bg = 0,
|
|
.tilemapLeft = 2,
|
|
.tilemapTop = 3,
|
|
.width = 26,
|
|
.height = 15,
|
|
.paletteNum = 15,
|
|
.baseBlock = 1
|
|
},
|
|
DUMMY_WIN_TEMPLATE
|
|
};
|
|
|
|
static const u8 sTextColors[] = {
|
|
TEXT_COLOR_TRANSPARENT,
|
|
TEXT_DYNAMIC_COLOR_1,
|
|
TEXT_DYNAMIC_COLOR_2
|
|
};
|
|
|
|
static const u16 sUnknown_0859F2B0[][2] = {
|
|
{ 0x6ACD, 0x51A5 },
|
|
{ 0x45FC, 0x38D4 }
|
|
};
|
|
|
|
static const struct MailGraphics sUnknown_0859F2B8[] = {
|
|
{
|
|
gMailPalette_Orange, gMailTiles_Orange, gMailTilemap_Orange, 0x02c0, 0, 0x294a, 0x6739
|
|
}, {
|
|
gMailPalette_Harbor, gMailTiles_Harbor, gMailTilemap_Harbor, 0x02e0, 0, 0x7fff, 0x4631
|
|
}, {
|
|
gMailPalette_Glitter, gMailTiles_Glitter, gMailTilemap_Glitter, 0x0400, 0, 0x294a, 0x6739
|
|
}, {
|
|
gMailPalette_Mech, gMailTiles_Mech, gMailTilemap_Mech, 0x01e0, 0, 0x7fff, 0x4631
|
|
}, {
|
|
gMailPalette_Wood, gMailTiles_Wood, gMailTilemap_Wood, 0x02e0, 0, 0x7fff, 0x4631
|
|
}, {
|
|
gMailPalette_Wave, gMailTiles_Wave, gMailTilemap_Wave, 0x0300, 0, 0x294a, 0x6739
|
|
}, {
|
|
gMailPalette_Bead, gMailTiles_Bead, gMailTilemap_Bead, 0x0140, 0, 0x7fff, 0x4631
|
|
}, {
|
|
gMailPalette_Shadow, gMailTiles_Shadow, gMailTilemap_Shadow, 0x0300, 0, 0x7fff, 0x4631
|
|
}, {
|
|
gMailPalette_Tropic, gMailTiles_Tropic, gMailTilemap_Tropic, 0x0220, 0, 0x294a, 0x6739
|
|
}, {
|
|
gMailPalette_Dream, gMailTiles_Dream, gMailTilemap_Dream, 0x0340, 0, 0x294a, 0x6739
|
|
}, {
|
|
gMailPalette_Fab, gMailTiles_Fab, gMailTilemap_Fab, 0x02a0, 0, 0x294a, 0x6739
|
|
}, {
|
|
gMailPalette_Retro, gMailTiles_Retro, gMailTilemap_Retro, 0x0520, 0, 0x294a, 0x6739
|
|
}
|
|
};
|
|
|
|
static const struct UnkMailStruct Unknown_0859F3A8[] = {
|
|
{ .numEasyChatWords = 3, .lineHeight = 16 },
|
|
{ .numEasyChatWords = 3, .lineHeight = 16 },
|
|
{ .numEasyChatWords = 3, .lineHeight = 16 }
|
|
};
|
|
|
|
static const struct MailLayout sUnknown_0859F3B4[] = {
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x08, 0x00, 0x02, 0x04, Unknown_0859F3A8 },
|
|
{ 0x03, 0x00, 0x00, 0x02, 0x00, Unknown_0859F3A8 }
|
|
};
|
|
|
|
static const struct UnkMailStruct Unknown_0859F444[] = {
|
|
{ .numEasyChatWords = 2, .lineHeight = 16 },
|
|
{ .numEasyChatWords = 2, .lineHeight = 16 },
|
|
{ .numEasyChatWords = 2, .lineHeight = 16 },
|
|
{ .numEasyChatWords = 2, .lineHeight = 16 },
|
|
{ .numEasyChatWords = 1, .lineHeight = 16 }
|
|
};
|
|
|
|
static const struct MailLayout sUnknown_0859F458[] = {
|
|
{ 0x05, 0x07, 0x58, 0x0b, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x0a, 0x60, 0x09, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x0c, 0x68, 0x05, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x05, 0x60, 0x08, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x0a, 0x60, 0x09, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x09, 0x70, 0x05, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x0c, 0x68, 0x09, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x0d, 0x68, 0x0d, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x09, 0x60, 0x09, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x09, 0x60, 0x09, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x11, 0x68, 0x0f, 0x1e, Unknown_0859F444 },
|
|
{ 0x05, 0x09, 0x60, 0x05, 0x1e, Unknown_0859F444 }
|
|
};
|
|
|
|
// .text
|
|
|
|
void ReadMail(struct MailStruct *mail, void (*callback)(void), bool8 flag)
|
|
{
|
|
u16 buffer[2];
|
|
u16 species;
|
|
|
|
sMailRead = calloc(1, sizeof(*sMailRead));
|
|
sMailRead->language = LANGUAGE_ENGLISH;
|
|
sMailRead->playerIsSender = TRUE;
|
|
sMailRead->parserSingle = CopyEasyChatWord;
|
|
sMailRead->parserMultiple = ConvertEasyChatWordsToString;
|
|
if (IS_ITEM_MAIL(mail->itemId))
|
|
{
|
|
sMailRead->mailType = mail->itemId - FIRST_MAIL_INDEX;
|
|
}
|
|
else
|
|
{
|
|
sMailRead->mailType = 0;
|
|
flag = FALSE;
|
|
}
|
|
switch (sMailRead->playerIsSender)
|
|
{
|
|
case FALSE:
|
|
default:
|
|
sMailRead->layout = &sUnknown_0859F3B4[sMailRead->mailType];
|
|
break;
|
|
case TRUE:
|
|
sMailRead->layout = &sUnknown_0859F458[sMailRead->mailType];
|
|
break;
|
|
}
|
|
species = MailSpeciesToSpecies(mail->species, buffer);
|
|
if (species >= SPECIES_BULBASAUR && species < NUM_SPECIES)
|
|
{
|
|
switch (sMailRead->mailType)
|
|
{
|
|
default:
|
|
sMailRead->animsActive = 0;
|
|
break;
|
|
case ITEM_BEAD_MAIL - FIRST_MAIL_INDEX:
|
|
sMailRead->animsActive = 1;
|
|
break;
|
|
case ITEM_DREAM_MAIL - FIRST_MAIL_INDEX:
|
|
sMailRead->animsActive = 2;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
sMailRead->animsActive = 0;
|
|
}
|
|
sMailRead->mail = mail;
|
|
sMailRead->callback = callback;
|
|
sMailRead->flag = flag;
|
|
SetMainCallback2(CB2_InitMailRead);
|
|
}
|
|
|
|
static bool8 MailReadBuildGraphics(void)
|
|
{
|
|
u16 icon;
|
|
|
|
switch (gMain.state)
|
|
{
|
|
case 0:
|
|
SetVBlankCallback(NULL);
|
|
ScanlineEffect_Stop();
|
|
SetGpuReg(REG_OFFSET_DISPCNT, 0);
|
|
break;
|
|
case 1:
|
|
CpuFill16(0, (void *)OAM, OAM_SIZE);
|
|
break;
|
|
case 2:
|
|
ResetPaletteFade();
|
|
break;
|
|
case 3:
|
|
ResetTasks();
|
|
break;
|
|
case 4:
|
|
ResetSpriteData();
|
|
break;
|
|
case 5:
|
|
FreeAllSpritePalettes();
|
|
ResetTempTileDataBuffers();
|
|
SetGpuReg(REG_OFFSET_BG0HOFS, 0);
|
|
SetGpuReg(REG_OFFSET_BG0VOFS, 0);
|
|
SetGpuReg(REG_OFFSET_BG1HOFS, 0);
|
|
SetGpuReg(REG_OFFSET_BG1VOFS, 0);
|
|
SetGpuReg(REG_OFFSET_BG2VOFS, 0);
|
|
SetGpuReg(REG_OFFSET_BG2HOFS, 0);
|
|
SetGpuReg(REG_OFFSET_BG3HOFS, 0);
|
|
SetGpuReg(REG_OFFSET_BG3VOFS, 0);
|
|
SetGpuReg(REG_OFFSET_BLDCNT, 0);
|
|
SetGpuReg(REG_OFFSET_BLDALPHA, 0);
|
|
break;
|
|
case 6:
|
|
ResetBgsAndClearDma3BusyFlags(0);
|
|
InitBgsFromTemplates(0, sBgTemplates, ARRAY_COUNT(sBgTemplates));
|
|
SetBgTilemapBuffer(1, sMailRead->bg1TilemapBuffer);
|
|
SetBgTilemapBuffer(2, sMailRead->bg2TilemapBuffer);
|
|
break;
|
|
case 7:
|
|
InitWindows(sUnknown_0859F29C);
|
|
DeactivateAllTextPrinters();
|
|
break;
|
|
case 8:
|
|
DecompressAndCopyTileDataToVram(1, sUnknown_0859F2B8[sMailRead->mailType].tiles, 0, 0, 0);
|
|
break;
|
|
case 9:
|
|
if (FreeTempTileDataBuffersIfPossible())
|
|
{
|
|
return FALSE;
|
|
}
|
|
break;
|
|
case 10:
|
|
FillBgTilemapBufferRect_Palette0(0, 0, 0, 0, 30, 20);
|
|
FillBgTilemapBufferRect_Palette0(2, 1, 0, 0, 30, 20);
|
|
CopyToBgTilemapBuffer(1, sUnknown_0859F2B8[sMailRead->mailType].tileMap, 0, 0);
|
|
break;
|
|
case 11:
|
|
CopyBgTilemapBufferToVram(0);
|
|
CopyBgTilemapBufferToVram(1);
|
|
CopyBgTilemapBufferToVram(2);
|
|
break;
|
|
case 12:
|
|
LoadPalette(GetOverworldTextboxPalettePtr(), 240, 32);
|
|
gPlttBufferUnfaded[250] = sUnknown_0859F2B8[sMailRead->mailType].color10;
|
|
gPlttBufferFaded[250] = sUnknown_0859F2B8[sMailRead->mailType].color10;
|
|
gPlttBufferUnfaded[251] = sUnknown_0859F2B8[sMailRead->mailType].color12;
|
|
gPlttBufferFaded[251] = sUnknown_0859F2B8[sMailRead->mailType].color12;
|
|
LoadPalette(sUnknown_0859F2B8[sMailRead->mailType].palette, 0, 32);
|
|
gPlttBufferUnfaded[10] = sUnknown_0859F2B0[gSaveBlock2Ptr->playerGender][0];
|
|
gPlttBufferFaded[10] = sUnknown_0859F2B0[gSaveBlock2Ptr->playerGender][0];
|
|
gPlttBufferUnfaded[11] = sUnknown_0859F2B0[gSaveBlock2Ptr->playerGender][1];
|
|
gPlttBufferFaded[11] = sUnknown_0859F2B0[gSaveBlock2Ptr->playerGender][1];
|
|
break;
|
|
case 13:
|
|
if (sMailRead->flag)
|
|
{
|
|
sub_8121A1C();
|
|
}
|
|
break;
|
|
case 14:
|
|
if (sMailRead->flag)
|
|
{
|
|
sub_8121B1C();
|
|
RunTextPrinters();
|
|
}
|
|
break;
|
|
case 15:
|
|
if (sub_8087598() == TRUE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
break;
|
|
case 16:
|
|
SetVBlankCallback(VBlankCB_MailRead);
|
|
gPaletteFade.bufferTransferDisabled = TRUE;
|
|
break;
|
|
case 17:
|
|
icon = sub_80D2E84(sMailRead->mail->species);
|
|
switch (sMailRead->animsActive)
|
|
{
|
|
case 1:
|
|
LoadMonIconPalette(icon);
|
|
sMailRead->monIconSprite = sub_80D2D78(icon, SpriteCallbackDummy, 0x60, 0x80, 0, 0);
|
|
break;
|
|
case 2:
|
|
LoadMonIconPalette(icon);
|
|
sMailRead->monIconSprite = sub_80D2D78(icon, SpriteCallbackDummy, 0x28, 0x80, 0, 0);
|
|
break;
|
|
}
|
|
break;
|
|
case 18:
|
|
SetGpuReg(REG_OFFSET_DISPCNT, DISPCNT_OBJ_ON | DISPCNT_OBJ_1D_MAP);
|
|
ShowBg(0);
|
|
ShowBg(1);
|
|
ShowBg(2);
|
|
BeginNormalPaletteFade(0xFFFFFFFF, 0, 16, 0, RGB_BLACK);
|
|
gPaletteFade.bufferTransferDisabled = FALSE;
|
|
sMailRead->callback2 = CB2_WaitForPaletteExitOnKeyPress;
|
|
return TRUE;
|
|
default:
|
|
return FALSE;
|
|
}
|
|
gMain.state++;
|
|
return FALSE;
|
|
}
|
|
|
|
static void CB2_InitMailRead(void)
|
|
{
|
|
do
|
|
{
|
|
if (MailReadBuildGraphics() == TRUE)
|
|
{
|
|
SetMainCallback2(CB2_MailRead);
|
|
break;
|
|
}
|
|
} while (MenuHelpers_LinkSomething() != TRUE);
|
|
}
|
|
|
|
static void sub_8121A1C(void)
|
|
{
|
|
u16 i;
|
|
u8 total;
|
|
u8 *ptr;
|
|
|
|
total = 0;
|
|
for (i = 0; i < sMailRead->layout->numSubStructs; i ++)
|
|
{
|
|
ConvertEasyChatWordsToString(sMailRead->strbuf[i], &sMailRead->mail->words[total], sMailRead->layout->var8[i].numEasyChatWords, 1);
|
|
total += sMailRead->layout->var8[i].numEasyChatWords;
|
|
}
|
|
ptr = StringCopy(sMailRead->playerName, sMailRead->mail->playerName);
|
|
if (!sMailRead->playerIsSender)
|
|
{
|
|
StringCopy(ptr, gText_FromSpace);
|
|
sMailRead->signatureWidth = sMailRead->layout->signatureWidth - (StringLength(sMailRead->playerName) * 8 - 0x60);
|
|
}
|
|
else
|
|
{
|
|
sub_81DB52C(sMailRead->playerName);
|
|
sMailRead->signatureWidth = sMailRead->layout->signatureWidth;
|
|
}
|
|
}
|
|
|
|
static void sub_8121B1C(void)
|
|
{
|
|
u16 i;
|
|
u8 strbuf[0x20];
|
|
u8 y;
|
|
u8 *bufptr;
|
|
s32 box_x;
|
|
s32 box_y;
|
|
|
|
y = 0;
|
|
PutWindowTilemap(0);
|
|
PutWindowTilemap(1);
|
|
FillWindowPixelBuffer(0, PIXEL_FILL(0));
|
|
FillWindowPixelBuffer(1, PIXEL_FILL(0));
|
|
for (i = 0; i < sMailRead->layout->numSubStructs; i ++)
|
|
{
|
|
if (sMailRead->strbuf[i][0] == EOS || sMailRead->strbuf[i][0] == CHAR_SPACE)
|
|
{
|
|
continue;
|
|
}
|
|
AddTextPrinterParameterized3(0, 1, sMailRead->layout->var8[i].xOffset + sMailRead->layout->wordsYPos, y + sMailRead->layout->wordsXPos, sTextColors, 0, sMailRead->strbuf[i]);
|
|
y += sMailRead->layout->var8[i].lineHeight;
|
|
}
|
|
bufptr = StringCopy(strbuf, gText_FromSpace);
|
|
StringCopy(bufptr, sMailRead->playerName);
|
|
box_x = GetStringCenterAlignXOffset(1, strbuf, sMailRead->signatureWidth) + 0x68;
|
|
box_y = sMailRead->layout->signatureYPos + 0x58;
|
|
AddTextPrinterParameterized3(0, 1, box_x, box_y, sTextColors, 0, strbuf);
|
|
CopyWindowToVram(0, 3);
|
|
CopyWindowToVram(1, 3);
|
|
}
|
|
|
|
static void VBlankCB_MailRead(void)
|
|
{
|
|
LoadOam();
|
|
ProcessSpriteCopyRequests();
|
|
TransferPlttBuffer();
|
|
}
|
|
|
|
static void CB2_MailRead(void)
|
|
{
|
|
if (sMailRead->animsActive != 0)
|
|
{
|
|
AnimateSprites();
|
|
BuildOamBuffer();
|
|
}
|
|
sMailRead->callback2();
|
|
}
|
|
|
|
static void CB2_WaitForPaletteExitOnKeyPress(void)
|
|
{
|
|
if (!UpdatePaletteFade())
|
|
{
|
|
sMailRead->callback2 = CB2_ExitOnKeyPress;
|
|
}
|
|
}
|
|
|
|
static void CB2_ExitOnKeyPress(void)
|
|
{
|
|
if (JOY_NEW(A_BUTTON | B_BUTTON))
|
|
{
|
|
BeginNormalPaletteFade(0xFFFFFFFF, 0, 0, 16, RGB_BLACK);
|
|
sMailRead->callback2 = CB2_ExitMailReadFreeVars;
|
|
}
|
|
}
|
|
|
|
static void CB2_ExitMailReadFreeVars(void)
|
|
{
|
|
if (!UpdatePaletteFade())
|
|
{
|
|
SetMainCallback2(sMailRead->callback);
|
|
switch (sMailRead->animsActive)
|
|
{
|
|
case 1:
|
|
case 2:
|
|
FreeMonIconPalette(sub_80D2E84(sMailRead->mail->species));
|
|
FreeAndDestroyMonIconSprite(&gSprites[sMailRead->monIconSprite]);
|
|
}
|
|
memset(sMailRead, 0, sizeof(*sMailRead));
|
|
ResetPaletteFade();
|
|
UnsetBgTilemapBuffer(0);
|
|
UnsetBgTilemapBuffer(1);
|
|
ResetBgsAndClearDma3BusyFlags(0);
|
|
FreeAllWindowBuffers();
|
|
FREE_AND_SET_NULL(sMailRead);
|
|
}
|
|
}
|