2018-02-09 03:00:28 +01:00
|
|
|
#ifndef GUARD_POKEMON_SUMMARY_SCREEN_H
|
|
|
|
#define GUARD_POKEMON_SUMMARY_SCREEN_H
|
|
|
|
|
2019-03-08 07:56:38 +01:00
|
|
|
#include "main.h"
|
|
|
|
|
2019-02-19 10:09:42 +01:00
|
|
|
extern u8 gLastViewedMonIndex;
|
2019-04-04 23:53:06 +02:00
|
|
|
|
2019-03-08 07:56:38 +01:00
|
|
|
extern const u8 *const gMoveDescriptionPointers[];
|
2019-04-04 23:53:06 +02:00
|
|
|
extern const u8 *const gNatureNamePointers[];
|
2018-12-16 21:10:01 +01:00
|
|
|
|
2018-09-02 19:41:33 +02:00
|
|
|
void ShowPokemonSummaryScreen(u8 mode, void *mons, u8 monIndex, u8 maxMonIndex, void (*callback)(void));
|
2018-08-15 07:05:48 +02:00
|
|
|
void ShowSelectMovePokemonSummaryScreen(struct Pokemon *, u8, u8, MainCallback, u16);
|
2018-12-10 21:36:52 +01:00
|
|
|
void ShowPokemonSummaryScreenSet40EF(u8 mode, struct BoxPokemon *mons, u8 monIndex, u8 maxMonIndex, void (*callback)(void));
|
2019-10-18 01:22:03 +02:00
|
|
|
u8 GetMoveSlotToReplace(void);
|
2018-12-24 00:02:29 +01:00
|
|
|
void SummaryScreen_SetUnknownTaskId(u8 a0);
|
|
|
|
void SummaryScreen_DestroyUnknownTask(void);
|
2018-02-09 03:00:28 +01:00
|
|
|
|
2018-08-15 10:44:20 +02:00
|
|
|
// The Pokemon Summary Screen can operate in different modes. Certain features,
|
|
|
|
// such as move re-ordering, are available in the different modes.
|
|
|
|
enum PokemonSummaryScreenMode
|
|
|
|
{
|
|
|
|
PSS_MODE_NORMAL,
|
|
|
|
PSS_MODE_UNK1,
|
2018-12-10 21:36:52 +01:00
|
|
|
PSS_MODE_BOX,
|
2018-08-15 10:44:20 +02:00
|
|
|
PSS_MODE_SELECT_MOVE,
|
|
|
|
};
|
|
|
|
|
2018-08-15 20:47:10 +02:00
|
|
|
enum PokemonSummaryScreenPage
|
|
|
|
{
|
2018-12-07 14:01:59 +01:00
|
|
|
PSS_PAGE_INFO,
|
|
|
|
PSS_PAGE_SKILLS,
|
|
|
|
PSS_PAGE_BATTLE_MOVES,
|
|
|
|
PSS_PAGE_CONTEST_MOVES,
|
2018-08-15 20:47:10 +02:00
|
|
|
};
|
|
|
|
|
2018-02-12 19:59:42 +01:00
|
|
|
#endif // GUARD_POKEMON_SUMMARY_SCREEN_H
|