mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
6fec0e4dd1
* Added option for generating incrementing pokemon in pc boxes # Conflicts: # src/debug.c * added submenu arrows, increased menu high to full screen # Conflicts: # src/debug.c * combined flags and vars into one submenu # Conflicts: # src/debug.c * added new window to flags/vars showing the current state and added submenu indicator # Conflicts: # src/debug.c * added alligned arrows for debug submenus # Conflicts: # src/debug.c * used {CLEAR_TO X} instead of manual spaces # Conflicts: # src/debug.c * renamed gDebugText to proper sDebugText # Conflicts: # src/debug.c * added Fill submenu, added fill function for PC items and all bag pockets @LOuroboros # Conflicts: # src/debug.c * put cheat start into utility # Conflicts: # src/debug.c * put fill submenu into main menu # Conflicts: # src/debug.c * tiny fix * renaming and reordering # Conflicts: # src/debug.c * Added reset pokedex flags for @AsparagusEduardo * made flag toggle list dynamic # Conflicts: # src/debug.c * initial battle debug menu WIP # Conflicts: # src/debug.c # src/wild_encounter.c * fix visual bug * added battle start # Conflicts: # include/debug.h # src/battle_ai_script_commands.c * Added faster way to add initial movesets to mon * Added waiting music for the slow box filling * Simplified the call to scripts * Simplified debug scripts * Disabled Battle Test for now * Fixed personality on fast PC fill being always 0 * Removed BATTLE_ENGINE instances + added AI_FLAG_COUNT * Added missing return TRUE * Sets nickname * Changed how GetSpeciesName to how it's used upstream --------- Co-authored-by: TheXaman <48356183+TheXaman@users.noreply.github.com>
75 lines
2.6 KiB
C
75 lines
2.6 KiB
C
#ifndef GUARD_BATTLE_SETUP_H
|
|
#define GUARD_BATTLE_SETUP_H
|
|
|
|
#include "gym_leader_rematch.h"
|
|
|
|
#define REMATCHES_COUNT 5
|
|
|
|
struct RematchTrainer
|
|
{
|
|
u16 trainerIds[REMATCHES_COUNT];
|
|
u16 mapGroup;
|
|
u16 mapNum;
|
|
};
|
|
|
|
extern const struct RematchTrainer gRematchTable[REMATCH_TABLE_ENTRIES];
|
|
|
|
extern u16 gTrainerBattleOpponent_A;
|
|
extern u16 gTrainerBattleOpponent_B;
|
|
extern u16 gPartnerTrainerId;
|
|
|
|
void BattleSetup_StartWildBattle(void);
|
|
void BattleSetup_StartDoubleWildBattle(void);
|
|
void BattleSetup_StartBattlePikeWildBattle(void);
|
|
void BattleSetup_StartRoamerBattle(void);
|
|
void StartWallyTutorialBattle(void);
|
|
void BattleSetup_StartScriptedWildBattle(void);
|
|
void BattleSetup_StartScriptedDoubleWildBattle(void);
|
|
void BattleSetup_StartLatiBattle(void);
|
|
void BattleSetup_StartLegendaryBattle(void);
|
|
void StartGroudonKyogreBattle(void);
|
|
void StartRegiBattle(void);
|
|
u8 BattleSetup_GetTerrainId(void);
|
|
u8 GetWildBattleTransition(void);
|
|
u8 GetTrainerBattleTransition(void);
|
|
u8 GetSpecialBattleTransition(s32 id);
|
|
void ChooseStarter(void);
|
|
void ResetTrainerOpponentIds(void);
|
|
void SetMapVarsToTrainer(void);
|
|
const u8 *BattleSetup_ConfigureTrainerBattle(const u8 *data);
|
|
void ConfigureAndSetUpOneTrainerBattle(u8 trainerObjEventId, const u8 *trainerScript);
|
|
void ConfigureTwoTrainersBattle(u8 trainerObjEventId, const u8 *trainerScript);
|
|
void SetUpTwoTrainersBattle(void);
|
|
bool32 GetTrainerFlagFromScriptPointer(const u8 *data);
|
|
void SetTrainerFacingDirection(void);
|
|
u8 GetTrainerBattleMode(void);
|
|
bool8 GetTrainerFlag(void);
|
|
bool8 HasTrainerBeenFought(u16 trainerId);
|
|
void SetTrainerFlag(u16 trainerId);
|
|
void ClearTrainerFlag(u16 trainerId);
|
|
void BattleSetup_StartTrainerBattle(void);
|
|
void BattleSetup_StartRematchBattle(void);
|
|
void ShowTrainerIntroSpeech(void);
|
|
const u8 *BattleSetup_GetScriptAddrAfterBattle(void);
|
|
const u8 *BattleSetup_GetTrainerPostBattleScript(void);
|
|
void ShowTrainerCantBattleSpeech(void);
|
|
void PlayTrainerEncounterMusic(void);
|
|
const u8 *GetTrainerALoseText(void);
|
|
const u8 *GetTrainerBLoseText(void);
|
|
const u8 *GetTrainerWonSpeech(void);
|
|
void UpdateRematchIfDefeated(s32 rematchTableId);
|
|
void IncrementRematchStepCounter(void);
|
|
void TryUpdateRandomTrainerRematches(u16 mapGroup, u16 mapNum);
|
|
bool32 DoesSomeoneWantRematchIn(u16 mapGroup, u16 mapNum);
|
|
bool32 IsRematchTrainerIn(u16 mapGroup, u16 mapNum);
|
|
u16 GetLastBeatenRematchTrainerId(u16 trainerId);
|
|
bool8 ShouldTryRematchBattle(void);
|
|
bool8 IsTrainerReadyForRematch(void);
|
|
void ShouldTryGetTrainerScript(void);
|
|
u16 CountBattledRematchTeams(u16 trainerId);
|
|
|
|
void DoStandardWildBattle_Debug(void);
|
|
void BattleSetup_StartTrainerBattle_Debug(void);
|
|
|
|
#endif // GUARD_BATTLE_SETUP_H
|