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"
|
2019-02-08 18:48:51 +01:00
|
|
|
#include "match_call.h"
|
2017-09-07 19:45:32 +02:00
|
|
|
#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"
|
2019-01-13 20:50:08 +01:00
|
|
|
#include "trainer_hill.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"
|
2018-12-27 18:24:34 +01:00
|
|
|
#include "constants/maps.h"
|
2019-02-15 09:40:57 +01:00
|
|
|
#include "pokedex.h"
|
|
|
|
#include "save.h"
|
|
|
|
#include "link_rfu.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "contest.h"
|
|
|
|
#include "item_menu.h"
|
|
|
|
#include "pokemon_storage_system.h"
|
|
|
|
#include "decoration_inventory.h"
|
|
|
|
#include "secret_base.h"
|
|
|
|
#include "player_pc.h"
|
|
|
|
#include "field_specials.h"
|
2019-03-24 20:45:09 +01:00
|
|
|
#include "berry_powder.h"
|
2019-03-25 00:13:32 +01:00
|
|
|
#include "mevent.h"
|
2019-02-15 09:40:57 +01:00
|
|
|
|
2017-09-03 22:50:17 +02:00
|
|
|
|
2017-09-07 19:45:32 +02:00
|
|
|
extern void copy_strings_to_sav1(void);
|
2017-09-08 16:46:37 +02:00
|
|
|
extern void ResetPokeJumpResults(void);
|
2017-09-07 19:45:32 +02:00
|
|
|
|
2019-02-15 09:40:57 +01:00
|
|
|
extern const u8 EventScript_ResetAllMapFlags[];
|
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);
|
|
|
|
|
2018-11-19 01:03:14 +01:00
|
|
|
// EWRAM vars
|
|
|
|
EWRAM_DATA bool8 gDifferentSaveFile = FALSE;
|
|
|
|
EWRAM_DATA bool8 gUnknown_020322D5 = FALSE;
|
|
|
|
|
2018-06-17 12:30:09 +02:00
|
|
|
// 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
|
|
|
{
|
2019-02-18 07:33:41 +01:00
|
|
|
gUnusedPokedexU8 = 0;
|
2017-09-03 22:50:17 +02:00
|
|
|
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
|
|
|
|
2019-02-15 09:40:57 +01:00
|
|
|
gSaveBlock2Ptr->frontier.opponentName[0][0] = EOS;
|
|
|
|
gSaveBlock2Ptr->frontier.opponentName[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
|
|
|
{
|
2018-12-27 23:30:47 +01:00
|
|
|
SetWarpDestination(MAP_GROUP(INSIDE_OF_TRUCK), MAP_NUM(INSIDE_OF_TRUCK), -1, -1, -1);
|
2018-09-05 00:31:37 +02:00
|
|
|
WarpIntoMap();
|
2017-09-03 22:50:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Sav2_ClearSetDefault(void)
|
|
|
|
{
|
|
|
|
ClearSav2();
|
|
|
|
SetDefaultOptions();
|
|
|
|
}
|
|
|
|
|
2019-02-10 03:07:07 +01:00
|
|
|
void ResetMenuAndMonGlobals(void)
|
2017-09-03 22:50:17 +02:00
|
|
|
{
|
|
|
|
gDifferentSaveFile = 0;
|
2019-02-15 09:40:57 +01:00
|
|
|
ResetPokedexScrollPositions();
|
2017-09-03 22:50:17 +02:00
|
|
|
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();
|
2018-12-27 23:30:47 +01:00
|
|
|
gSaveBlock2Ptr->specialSaveWarpFlags = 0;
|
2019-02-18 07:33:41 +01:00
|
|
|
gSaveBlock2Ptr->field_A8 = 0;
|
2017-09-07 19:45:32 +02:00
|
|
|
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();
|
2019-02-15 09:40:57 +01:00
|
|
|
ScriptContext2_RunNewScript(EventScript_ResetAllMapFlags);
|
2017-09-07 19:45:32 +02:00
|
|
|
ResetMiniGamesResults();
|
|
|
|
copy_strings_to_sav1();
|
2018-12-05 15:31:01 +01:00
|
|
|
SetLilycoveLady();
|
|
|
|
ResetAllApprenticeData();
|
|
|
|
ClearRankingHallRecords();
|
2019-01-03 02:07:47 +01:00
|
|
|
InitMatchCallCounters();
|
2018-12-05 15:31:01 +01:00
|
|
|
sub_801AFD8();
|
2019-02-15 09:40:57 +01:00
|
|
|
WipeTrainerNameRecords();
|
2019-01-13 20:50:08 +01:00
|
|
|
ResetTrainerHillResults();
|
2018-12-05 15:31:01 +01:00
|
|
|
ResetContestLinkResults();
|
2017-09-07 19:45:32 +02:00
|
|
|
}
|
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));
|
|
|
|
}
|