pokeemerald/src/hof_pc.c

46 lines
1.1 KiB
C
Raw Normal View History

2018-01-21 20:45:43 +01:00
#include "global.h"
#include "hall_of_fame.h"
#include "main.h"
#include "palette.h"
#include "overworld.h"
#include "script.h"
#include "script_menu.h"
#include "task.h"
extern void (*gUnknown_0300485C)(void);
extern void Overworld_PlaySpecialMapMusic(void);
2018-08-11 23:58:51 +02:00
extern bool16 Special_CreatePCMenu(void);
2018-01-21 20:45:43 +01:00
extern void ScriptMenu_DisplayPCStartupPrompt(void);
static void ReshowPCMenuAfterHallOfFamePC(void);
static void Task_WaitForPaletteFade(u8);
void AccessHallOfFamePC(void)
{
SetMainCallback2(CB2_DoHallOfFamePC);
ScriptContext2_Enable();
}
void ReturnFromHallOfFamePC(void)
{
2018-02-14 00:58:22 +01:00
SetMainCallback2(CB2_ReturnToField);
2018-01-21 20:45:43 +01:00
gFieldCallback = ReshowPCMenuAfterHallOfFamePC;
}
static void ReshowPCMenuAfterHallOfFamePC(void)
{
ScriptContext2_Enable();
Overworld_PlaySpecialMapMusic();
2018-08-11 23:58:51 +02:00
Special_CreatePCMenu();
2018-01-21 20:45:43 +01:00
ScriptMenu_DisplayPCStartupPrompt();
BeginNormalPaletteFade(0xFFFFFFFF, 0, 0x10, 0, 0);
CreateTask(Task_WaitForPaletteFade, 10);
}
static void Task_WaitForPaletteFade(u8 taskId)
{
if (!gPaletteFade.active)
DestroyTask(taskId);
}