2017-10-13 17:09:36 +02:00
|
|
|
#ifndef GUARD_BATTLE_TOWER_H
|
|
|
|
#define GUARD_BATTLE_TOWER_H
|
|
|
|
|
2018-05-26 00:25:36 +02:00
|
|
|
struct RSBattleTowerRecord
|
|
|
|
{
|
2018-10-22 19:22:57 +02:00
|
|
|
/*0x00*/ u8 lvlMode; // 0 = level 50, 1 = level 100
|
|
|
|
/*0x01*/ u8 facilityClass;
|
2017-11-04 23:48:13 +01:00
|
|
|
/*0x02*/ u16 winStreak;
|
2018-09-01 22:03:21 +02:00
|
|
|
/*0x04*/ u8 name[PLAYER_NAME_LENGTH + 1];
|
2017-11-04 23:48:13 +01:00
|
|
|
/*0x0C*/ u8 trainerId[4];
|
2018-10-21 00:06:42 +02:00
|
|
|
/*0x10*/ u16 greeting[6];
|
2018-12-10 21:49:33 +01:00
|
|
|
/*0x1C*/ struct BattleTowerPokemon party[3];
|
2017-11-04 23:48:13 +01:00
|
|
|
/*0xA0*/ u32 checksum;
|
|
|
|
};
|
|
|
|
|
2018-06-17 12:30:09 +02:00
|
|
|
struct BattleFrontierTrainer
|
|
|
|
{
|
2018-10-21 00:06:42 +02:00
|
|
|
u8 facilityClass;
|
|
|
|
u8 filler1[3];
|
|
|
|
u8 trainerName[PLAYER_NAME_LENGTH + 1];
|
2018-06-17 12:30:09 +02:00
|
|
|
u16 speechBefore[6];
|
|
|
|
u16 speechWin[6];
|
|
|
|
u16 speechLose[6];
|
2018-11-11 16:44:27 +01:00
|
|
|
const u16 *monSets;
|
2018-06-17 12:30:09 +02:00
|
|
|
};
|
|
|
|
|
2018-08-26 15:27:06 +02:00
|
|
|
struct FacilityMon
|
|
|
|
{
|
|
|
|
u16 species;
|
|
|
|
u16 moves[4];
|
|
|
|
u8 itemTableId;
|
|
|
|
u8 evSpread;
|
|
|
|
u8 nature;
|
|
|
|
};
|
|
|
|
|
2018-12-04 18:15:13 +01:00
|
|
|
extern const u8 gTowerMaleFacilityClasses[30];
|
|
|
|
extern const u8 gTowerMaleTrainerGfxIds[30];
|
|
|
|
extern const u8 gTowerFemaleFacilityClasses[20];
|
|
|
|
extern const u8 gTowerFemaleTrainerGfxIds[20];
|
2018-12-05 22:21:26 +01:00
|
|
|
extern const u16 gBattleFrontierHeldItems[];
|
|
|
|
extern const struct FacilityMon gBattleFrontierMons[];
|
|
|
|
extern const struct BattleFrontierTrainer gBattleFrontierTrainers[];
|
|
|
|
extern const struct FacilityMon gSlateportBattleTentMons[];
|
|
|
|
extern const struct BattleFrontierTrainer gSlateportBattleTentTrainers[];
|
2018-12-04 18:15:13 +01:00
|
|
|
|
2018-11-19 17:16:01 +01:00
|
|
|
extern u16 gUnknown_03006298[];
|
|
|
|
|
2018-08-25 18:46:15 +02:00
|
|
|
extern const struct BattleFrontierTrainer *gFacilityTrainers;
|
2018-08-26 15:27:06 +02:00
|
|
|
extern const struct FacilityMon *gFacilityTrainerMons;
|
2018-06-17 12:30:09 +02:00
|
|
|
|
2018-10-25 21:27:10 +02:00
|
|
|
void sub_8161F74(void);
|
|
|
|
u16 sub_8162548(u8 challengeNum, u8 battleNum);
|
2018-10-21 00:06:42 +02:00
|
|
|
void SetBattleFacilityTrainerGfxId(u16 trainerId, u8 tempVarId);
|
2018-10-25 21:27:10 +02:00
|
|
|
void SetEReaderTrainerGfxId(void);
|
|
|
|
u8 GetBattleFacilityTrainerGfxId(u16 trainerId);
|
|
|
|
void PutNewBattleTowerRecord(struct EmeraldBattleTowerRecord *newRecordEm);
|
|
|
|
u8 GetFrontierTrainerFrontSpriteId(u16 trainerId);
|
|
|
|
u8 GetFrontierOpponentClass(u16 trainerId);
|
|
|
|
void GetFrontierTrainerName(u8 *dst, u16 trainerId);
|
2018-10-22 19:22:57 +02:00
|
|
|
void FillFrontierTrainerParty(u8 monsCount);
|
|
|
|
void FillFrontierTrainersParties(u8 monsCount);
|
2018-11-11 16:44:27 +01:00
|
|
|
u16 RandomizeFacilityTrainerMonSet(u16 trainerId);
|
2018-10-25 21:27:10 +02:00
|
|
|
void FrontierSpeechToString(const u16 *words);
|
|
|
|
void DoSpecialTrainerBattle(void);
|
|
|
|
void CalcEmeraldBattleTowerChecksum(struct EmeraldBattleTowerRecord *record);
|
|
|
|
void CalcRubyBattleTowerChecksum(struct RSBattleTowerRecord *record);
|
|
|
|
u16 GetCurrentBattleTowerWinStreak(u8 lvlMode, u8 battleMode);
|
|
|
|
u8 GetEreaderTrainerFrontSpriteId(void);
|
|
|
|
u8 GetEreaderTrainerClassId(void);
|
|
|
|
void GetEreaderTrainerName(u8 *dst);
|
|
|
|
void ValidateEReaderTrainer(void);
|
|
|
|
void ClearEReaderTrainer(struct BattleTowerEReaderTrainer *ereaderTrainer);
|
|
|
|
void CopyEReaderTrainerGreeting(void);
|
|
|
|
void sub_81653CC(void);
|
|
|
|
bool32 RubyBattleTowerRecordToEmerald(struct RSBattleTowerRecord *src, struct EmeraldBattleTowerRecord *dst);
|
|
|
|
bool32 EmeraldBattleTowerRecordToRuby(struct EmeraldBattleTowerRecord *src, struct RSBattleTowerRecord *dst);
|
|
|
|
void CalcApprenticeChecksum(struct Apprentice *apprentice);
|
|
|
|
void GetBattleTowerTrainerLanguage(u8 *dst, u16 trainerId);
|
|
|
|
u8 SetFacilityPtrsGetLevel(void);
|
|
|
|
u8 GetFrontierEnemyMonLevel(u8 lvlMode);
|
|
|
|
s32 GetHighestLevelInPlayerParty(void);
|
2019-01-13 12:12:27 +01:00
|
|
|
u8 FacilityClassToGraphicsId(u8 facilityClass);
|
2018-10-25 21:27:10 +02:00
|
|
|
bool32 ValidateBattleTowerRecord(u8 recordId); // unused
|
|
|
|
void sub_8166188(void);
|
2017-10-13 17:09:36 +02:00
|
|
|
|
|
|
|
#endif //GUARD_BATTLE_TOWER_H
|