2017-09-03 22:50:17 +02:00
|
|
|
#include "global.h"
|
|
|
|
#include "new_game.h"
|
2017-12-05 19:27:33 +01:00
|
|
|
#include "random.h"
|
2017-09-07 19:45:32 +02:00
|
|
|
#include "pokemon.h"
|
|
|
|
#include "roamer.h"
|
|
|
|
#include "pokemon_size_record.h"
|
|
|
|
#include "script.h"
|
|
|
|
#include "lottery_corner.h"
|
|
|
|
#include "play_time.h"
|
|
|
|
#include "mauville_old_man.h"
|
|
|
|
#include "lilycove_lady.h"
|
|
|
|
#include "load_save.h"
|
|
|
|
#include "pokeblock.h"
|
|
|
|
#include "dewford_trend.h"
|
|
|
|
#include "berry.h"
|
|
|
|
#include "rtc.h"
|
|
|
|
#include "easy_chat.h"
|
|
|
|
#include "event_data.h"
|
|
|
|
#include "money.h"
|
2017-10-13 17:09:36 +02:00
|
|
|
#include "tv.h"
|
2017-09-07 19:45:32 +02:00
|
|
|
#include "coins.h"
|
2017-09-25 21:27:54 +02:00
|
|
|
#include "text.h"
|
2018-05-01 15:54:31 +02:00
|
|
|
#include "overworld.h"
|
|
|
|
#include "mail.h"
|
|
|
|
#include "battle_records.h"
|
2018-08-19 01:06:10 +02:00
|
|
|
#include "item.h"
|
|
|
|
#include "pokedex.h"
|
2018-10-14 17:00:41 +02:00
|
|
|
#include "apprentice.h"
|
2018-10-30 21:45:26 +01:00
|
|
|
#include "frontier_util.h"
|
2017-09-03 22:50:17 +02:00
|
|
|
|
|
|
|
extern u8 gDifferentSaveFile;
|
|
|
|
extern u16 gSaveFileStatus;
|
|
|
|
extern u8 gUnknown_030060B0;
|
|
|
|
|
2017-09-07 19:45:32 +02:00
|
|
|
// TODO: replace those declarations with file headers
|
2017-09-03 22:50:17 +02:00
|
|
|
extern u16 GetGeneratedTrainerIdLower(void);
|
|
|
|
extern void ClearContestWinnerPicsInContestHall(void);
|
|
|
|
extern void sub_80BB358(void);
|
|
|
|
extern void ResetBagScrollPositions(void);
|
2017-09-07 19:45:32 +02:00
|
|
|
extern void ResetGabbyAndTy(void);
|
|
|
|
extern void ResetSecretBases(void);
|
|
|
|
extern void ResetLinkContestBoolean(void);
|
|
|
|
extern void sub_8052DA8(void);
|
|
|
|
extern void ResetPokemonStorageSystem(void);
|
|
|
|
extern void NewGameInitPCItems(void);
|
|
|
|
extern void ClearDecorationInventories(void);
|
|
|
|
extern void ResetFanClub(void);
|
|
|
|
extern void copy_strings_to_sav1(void);
|
|
|
|
extern void sub_8195E10(void);
|
|
|
|
extern void sub_801AFD8(void);
|
|
|
|
extern void sub_800E5AC(void);
|
|
|
|
extern void sub_81D54BC(void);
|
|
|
|
extern void ResetContestLinkResults(void);
|
2017-09-08 16:46:37 +02:00
|
|
|
extern void ResetPokeJumpResults(void);
|
|
|
|
extern void SetBerryPowder(u32* powder, u32 newValue);
|
2017-09-07 19:45:32 +02:00
|
|
|
|
2018-05-01 15:54:31 +02:00
|
|
|
extern const u8 EventScript_2715DE[];
|
2017-09-03 22:50:17 +02:00
|
|
|
|
2018-06-17 12:30:09 +02:00
|
|
|
// this file's functions
|
|
|
|
static void ClearFrontierRecord(void);
|
|
|
|
static void WarpToTruck(void);
|
|
|
|
static void ResetMiniGamesResults(void);
|
|
|
|
|
|
|
|
// const rom data
|
|
|
|
static const struct ContestWinner sContestWinnerPicDummy =
|
|
|
|
{
|
|
|
|
.monName = _(""),
|
|
|
|
.trainerName = _("")
|
|
|
|
};
|
|
|
|
|
|
|
|
// code
|
2018-11-01 21:31:10 +01:00
|
|
|
void SetTrainerId(u32 trainerId, u8 *dst)
|
2017-09-03 22:50:17 +02:00
|
|
|
{
|
2018-11-01 21:31:10 +01:00
|
|
|
dst[0] = trainerId;
|
|
|
|
dst[1] = trainerId >> 8;
|
|
|
|
dst[2] = trainerId >> 16;
|
|
|
|
dst[3] = trainerId >> 24;
|
2017-09-03 22:50:17 +02:00
|
|
|
}
|
|
|
|
|
2018-11-01 21:31:10 +01:00
|
|
|
u32 GetTrainerId(u8 *trainerId)
|
2017-09-03 22:50:17 +02:00
|
|
|
{
|
2018-11-01 21:31:10 +01:00
|
|
|
return (trainerId[3] << 24) | (trainerId[2] << 16) | (trainerId[1] << 8) | (trainerId[0]);
|
2017-09-03 22:50:17 +02:00
|
|
|
}
|
|
|
|
|
2018-11-01 21:31:10 +01:00
|
|
|
void CopyTrainerId(u8 *dst, u8 *src)
|
2017-09-03 22:50:17 +02:00
|
|
|
{
|
|
|
|
s32 i;
|
|
|
|
for (i = 0; i < 4; i++)
|
2018-11-01 21:31:10 +01:00
|
|
|
dst[i] = src[i];
|
2017-09-03 22:50:17 +02:00
|
|
|
}
|
|
|
|
|
2018-06-17 12:30:09 +02:00
|
|
|
static void InitPlayerTrainerId(void)
|
2017-09-03 22:50:17 +02:00
|
|
|
{
|
|
|
|
u32 trainerId = (Random() << 0x10) | GetGeneratedTrainerIdLower();
|
2018-11-01 21:31:10 +01:00
|
|
|
SetTrainerId(trainerId, gSaveBlock2Ptr->playerTrainerId);
|
2017-09-03 22:50:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// L=A isnt set here for some reason.
|
2018-06-17 12:30:09 +02:00
|
|
|
static void SetDefaultOptions(void)
|
2017-09-03 22:50:17 +02:00
|
|
|
{
|
|
|
|
gSaveBlock2Ptr->optionsTextSpeed = OPTIONS_TEXT_SPEED_MID;
|
|
|
|
gSaveBlock2Ptr->optionsWindowFrameType = 0;
|
|
|
|
gSaveBlock2Ptr->optionsSound = OPTIONS_SOUND_MONO;
|
|
|
|
gSaveBlock2Ptr->optionsBattleStyle = OPTIONS_BATTLE_STYLE_SHIFT;
|
|
|
|
gSaveBlock2Ptr->optionsBattleSceneOff = FALSE;
|
|
|
|
gSaveBlock2Ptr->regionMapZoom = FALSE;
|
|
|
|
}
|
|
|
|
|
2018-06-17 12:30:09 +02:00
|
|
|
static void ClearPokedexFlags(void)
|
2017-09-03 22:50:17 +02:00
|
|
|
{
|
|
|
|
gUnknown_030060B0 = 0;
|
|
|
|
memset(&gSaveBlock2Ptr->pokedex.owned, 0, sizeof(gSaveBlock2Ptr->pokedex.owned));
|
|
|
|
memset(&gSaveBlock2Ptr->pokedex.seen, 0, sizeof(gSaveBlock2Ptr->pokedex.seen));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClearAllContestWinnerPics(void)
|
|
|
|
{
|
|
|
|
s32 i;
|
|
|
|
|
|
|
|
ClearContestWinnerPicsInContestHall();
|
|
|
|
for (i = 8; i < 13; i++)
|
2018-06-17 12:30:09 +02:00
|
|
|
gSaveBlock1Ptr->contestWinners[i] = sContestWinnerPicDummy;
|
2017-09-03 22:50:17 +02:00
|
|
|
}
|
|
|
|
|
2018-06-17 12:30:09 +02:00
|
|
|
static void ClearFrontierRecord(void)
|
2017-09-03 22:50:17 +02:00
|
|
|
{
|
2018-06-17 12:30:09 +02:00
|
|
|
CpuFill32(0, &gSaveBlock2Ptr->frontier, sizeof(gSaveBlock2Ptr->frontier));
|
2017-09-03 22:50:17 +02:00
|
|
|
|
2018-06-17 12:30:09 +02:00
|
|
|
gSaveBlock2Ptr->frontier.field_EE1[0][0] = EOS;
|
|
|
|
gSaveBlock2Ptr->frontier.field_EE1[1][0] = EOS;
|
2017-09-03 22:50:17 +02:00
|
|
|
}
|
|
|
|
|
2018-06-17 12:30:09 +02:00
|
|
|
static void WarpToTruck(void)
|
2017-09-03 22:50:17 +02:00
|
|
|
{
|
2017-10-12 09:06:19 +02:00
|
|
|
Overworld_SetWarpDestination(25, 40, -1, -1, -1); // inside of truck
|
2018-09-05 00:31:37 +02:00
|
|
|
WarpIntoMap();
|
2017-09-03 22:50:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Sav2_ClearSetDefault(void)
|
|
|
|
{
|
|
|
|
ClearSav2();
|
|
|
|
SetDefaultOptions();
|
|
|
|
}
|
|
|
|
|
|
|
|
void sub_808447C(void)
|
|
|
|
{
|
|
|
|
gDifferentSaveFile = 0;
|
|
|
|
sub_80BB358();
|
|
|
|
ZeroPlayerPartyMons();
|
|
|
|
ZeroEnemyPartyMons();
|
|
|
|
ResetBagScrollPositions();
|
2017-12-16 00:08:23 +01:00
|
|
|
ResetPokeblockScrollPositions();
|
2017-09-03 22:50:17 +02:00
|
|
|
}
|
2017-09-07 19:45:32 +02:00
|
|
|
|
2017-09-03 22:50:17 +02:00
|
|
|
void NewGameInitData(void)
|
|
|
|
{
|
2017-09-07 19:45:32 +02:00
|
|
|
if (gSaveFileStatus == 0 || gSaveFileStatus == 2)
|
|
|
|
RtcReset();
|
|
|
|
|
|
|
|
gDifferentSaveFile = 1;
|
|
|
|
gSaveBlock2Ptr->encryptionKey = 0;
|
|
|
|
ZeroPlayerPartyMons();
|
|
|
|
ZeroEnemyPartyMons();
|
|
|
|
ResetPokedex();
|
2018-06-17 12:30:09 +02:00
|
|
|
ClearFrontierRecord();
|
2017-09-07 19:45:32 +02:00
|
|
|
ClearSav1();
|
|
|
|
ClearMailData();
|
|
|
|
gSaveBlock2Ptr->specialSaveWarp = 0;
|
|
|
|
gSaveBlock2Ptr->field_A8 = 0;
|
|
|
|
InitPlayerTrainerId();
|
|
|
|
PlayTimeCounter_Reset();
|
|
|
|
ClearPokedexFlags();
|
|
|
|
InitEventData();
|
|
|
|
ClearTVShowData();
|
|
|
|
ResetGabbyAndTy();
|
|
|
|
ResetSecretBases();
|
|
|
|
ClearBerryTrees();
|
|
|
|
SetMoney(&gSaveBlock1Ptr->money, 3000);
|
|
|
|
SetCoins(0);
|
|
|
|
ResetLinkContestBoolean();
|
|
|
|
ResetGameStats();
|
|
|
|
ClearAllContestWinnerPics();
|
2018-05-01 14:01:54 +02:00
|
|
|
ClearPlayerLinkBattleRecords();
|
2017-09-07 19:45:32 +02:00
|
|
|
InitSeedotSizeRecord();
|
|
|
|
InitLotadSizeRecord();
|
|
|
|
gPlayerPartyCount = 0;
|
|
|
|
ZeroPlayerPartyMons();
|
|
|
|
ResetPokemonStorageSystem();
|
|
|
|
ClearRoamerData();
|
|
|
|
ClearRoamerLocationData();
|
|
|
|
gSaveBlock1Ptr->registeredItem = 0;
|
|
|
|
ClearBag();
|
|
|
|
NewGameInitPCItems();
|
|
|
|
ClearPokeblocks();
|
|
|
|
ClearDecorationInventories();
|
|
|
|
InitEasyChatPhrases();
|
|
|
|
SetMauvilleOldMan();
|
|
|
|
InitDewfordTrend();
|
|
|
|
ResetFanClub();
|
|
|
|
ResetLotteryCorner();
|
|
|
|
WarpToTruck();
|
2017-11-11 01:12:18 +01:00
|
|
|
ScriptContext2_RunNewScript(EventScript_2715DE);
|
2017-09-07 19:45:32 +02:00
|
|
|
ResetMiniGamesResults();
|
|
|
|
copy_strings_to_sav1();
|
|
|
|
SetLilycoveLady();
|
2018-10-14 17:00:41 +02:00
|
|
|
ResetAllApprenticeData();
|
2018-11-05 22:13:59 +01:00
|
|
|
ClearRankingHallRecords();
|
2017-09-07 19:45:32 +02:00
|
|
|
sub_8195E10();
|
|
|
|
sub_801AFD8();
|
|
|
|
sub_800E5AC();
|
|
|
|
sub_81D54BC();
|
|
|
|
ResetContestLinkResults();
|
|
|
|
}
|
2017-09-08 16:46:37 +02:00
|
|
|
|
2018-06-17 12:30:09 +02:00
|
|
|
static void ResetMiniGamesResults(void)
|
2017-09-08 16:46:37 +02:00
|
|
|
{
|
|
|
|
CpuFill16(0, &gSaveBlock2Ptr->berryCrush, sizeof(struct BerryCrush));
|
|
|
|
SetBerryPowder(&gSaveBlock2Ptr->berryCrush.berryPowderAmount, 0);
|
|
|
|
ResetPokeJumpResults();
|
|
|
|
CpuFill16(0, &gSaveBlock2Ptr->berryPick, sizeof(struct BerryPickingResults));
|
|
|
|
}
|