2018-02-09 02:00:28 +00:00
|
|
|
#ifndef GUARD_POKEMON_SUMMARY_SCREEN_H
|
|
|
|
#define GUARD_POKEMON_SUMMARY_SCREEN_H
|
|
|
|
|
2019-03-08 06:56:38 +00:00
|
|
|
#include "main.h"
|
|
|
|
|
2019-02-19 09:09:42 +00:00
|
|
|
extern u8 gLastViewedMonIndex;
|
2019-04-04 21:53:06 +00:00
|
|
|
|
2019-03-08 06:56:38 +00:00
|
|
|
extern const u8 *const gMoveDescriptionPointers[];
|
2019-04-04 21:53:06 +00:00
|
|
|
extern const u8 *const gNatureNamePointers[];
|
2018-12-16 20:10:01 +00:00
|
|
|
|
2018-09-02 17:41:33 +00:00
|
|
|
void ShowPokemonSummaryScreen(u8 mode, void *mons, u8 monIndex, u8 maxMonIndex, void (*callback)(void));
|
2020-05-25 08:19:18 +00:00
|
|
|
void ShowSelectMovePokemonSummaryScreen(struct Pokemon *mons, u8 monIndex, u8 maxMonIndex, void (*callback)(void), u16 newMove);
|
2018-12-10 20:36:52 +00:00
|
|
|
void ShowPokemonSummaryScreenSet40EF(u8 mode, struct BoxPokemon *mons, u8 monIndex, u8 maxMonIndex, void (*callback)(void));
|
2019-10-17 23:22:03 +00:00
|
|
|
u8 GetMoveSlotToReplace(void);
|
2020-05-25 08:19:18 +00:00
|
|
|
void SummaryScreen_SetUnknownTaskId(u8 taskId);
|
2018-12-23 23:02:29 +00:00
|
|
|
void SummaryScreen_DestroyUnknownTask(void);
|
2018-02-09 02:00:28 +00:00
|
|
|
|
2018-08-15 08:44:20 +00: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,
|
2020-05-18 12:03:01 +00:00
|
|
|
PSS_MODE_LOCK_MOVES,
|
2018-12-10 20:36:52 +00:00
|
|
|
PSS_MODE_BOX,
|
2018-08-15 08:44:20 +00:00
|
|
|
PSS_MODE_SELECT_MOVE,
|
|
|
|
};
|
|
|
|
|
2018-08-15 18:47:10 +00:00
|
|
|
enum PokemonSummaryScreenPage
|
|
|
|
{
|
2018-12-07 13:01:59 +00:00
|
|
|
PSS_PAGE_INFO,
|
|
|
|
PSS_PAGE_SKILLS,
|
|
|
|
PSS_PAGE_BATTLE_MOVES,
|
|
|
|
PSS_PAGE_CONTEST_MOVES,
|
2020-05-18 12:03:01 +00:00
|
|
|
PSS_PAGE_COUNT,
|
2018-08-15 18:47:10 +00:00
|
|
|
};
|
|
|
|
|
2018-02-12 18:59:42 +00:00
|
|
|
#endif // GUARD_POKEMON_SUMMARY_SCREEN_H
|