mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-14 16:20:24 -05:00
73 lines
2.4 KiB
C
73 lines
2.4 KiB
C
#include "global.h"
|
|
#include "script_pokemon_util.h"
|
|
#include "event_data.h"
|
|
#include "credits.h"
|
|
#include "overworld.h"
|
|
#include "hall_of_fame.h"
|
|
#include "load_save.h"
|
|
#include "item.h"
|
|
#include "constants/heal_locations.h"
|
|
#include "constants/items.h"
|
|
|
|
bool8 EnterHallOfFame(void)
|
|
{
|
|
bool8 ribbonState;
|
|
bool8 *r7;
|
|
int i;
|
|
bool8 gaveAtLeastOneRibbon;
|
|
HealPlayerParty();
|
|
if (FlagGet(FLAG_SYS_GAME_CLEAR) == TRUE)
|
|
{
|
|
gHasHallOfFameRecords = TRUE;
|
|
}
|
|
else
|
|
{
|
|
gHasHallOfFameRecords = FALSE;
|
|
FlagSet(FLAG_SYS_GAME_CLEAR);
|
|
}
|
|
if (GetGameStat(GAME_STAT_FIRST_HOF_PLAY_TIME) == 0)
|
|
{
|
|
SetGameStat(GAME_STAT_FIRST_HOF_PLAY_TIME, (gSaveBlock2Ptr->playTimeHours << 16) | (gSaveBlock2Ptr->playTimeMinutes << 8) | gSaveBlock2Ptr->playTimeSeconds);
|
|
}
|
|
SetContinueGameWarpStatus();
|
|
SetContinueGameWarpToHealLocation(HEAL_LOCATION_PALLET_TOWN);
|
|
gaveAtLeastOneRibbon = FALSE;
|
|
for (i = 0, r7 = &ribbonState; i < PARTY_SIZE; i++)
|
|
{
|
|
if (GetMonData(&gPlayerParty[i], MON_DATA_SANITY_HAS_SPECIES) && !GetMonData(&gPlayerParty[i], MON_DATA_SANITY_IS_EGG))
|
|
{
|
|
if (!GetMonData(&gPlayerParty[i], MON_DATA_CHAMPION_RIBBON))
|
|
{
|
|
*r7 = TRUE;
|
|
SetMonData(&gPlayerParty[i], MON_DATA_CHAMPION_RIBBON, &ribbonState);
|
|
gaveAtLeastOneRibbon = TRUE;
|
|
}
|
|
}
|
|
}
|
|
if (gaveAtLeastOneRibbon == TRUE)
|
|
{
|
|
IncrementGameStat(GAME_STAT_RECEIVED_RIBBONS);
|
|
FlagSet(FLAG_SYS_RIBBON_GET);
|
|
// The player has entered the Hall of Fame for the first time.
|
|
// (At least, this is probably what was intended, except giving at least one Champion Ribbon does not imply first Hall of Fame entry)
|
|
// Give the event tickets, and the flags for obtaining them, if required.
|
|
if (OW_HOF_EVENT_TICKETS == TRUE && !CheckBagHasItem(ITEM_AURORA_TICKET, 1))
|
|
{
|
|
AddBagItem(ITEM_AURORA_TICKET, 1);
|
|
FlagSet(FLAG_ENABLE_SHIP_BIRTH_ISLAND);
|
|
FlagSet(FLAG_RECEIVED_AURORA_TICKET);
|
|
AddBagItem(ITEM_MYSTIC_TICKET, 1);
|
|
FlagSet(FLAG_ENABLE_SHIP_NAVEL_ROCK);
|
|
FlagSet(FLAG_RECEIVED_MYSTIC_TICKET);
|
|
}
|
|
}
|
|
SetMainCallback2(CB2_DoHallOfFameScreen);
|
|
return FALSE;
|
|
}
|
|
|
|
bool8 SetCB2WhiteOut(void)
|
|
{
|
|
SetMainCallback2(CB2_WhiteOut);
|
|
return FALSE;
|
|
}
|