8d6cb9692a
* First draft of repel lure * Updated all lure and repel scripts * Optimized inc file * Updated y coord * optimized sprays.c * Removed spray.inc * Updated cosnt use * Removed dead repel and lure code * Updated debug for testing * testing new inc file * turn on debug and options * playground generated inc file without ifs * pory generated inc with ifdef complete * Updated spray.c with new inc * reverted item config * Reverted event scripts * Reverted event scripts * Revert config * Added testing scripts for debug * Added back specials * reverted debug scripts * Updated use of constants * Addressed tabs > spaces feedback https://github.com/rh-hideout/pokeemerald-expansion/pull/3594\#discussion_r1402917676 * Updated constant names to avoid confusion Made inc file changes https://github.com/rh-hideout/pokeemerald-expansion/pull/3594\#pullrequestreview-1746418044 * Updated constant name of NUM_SPRAY_TYPES to NUM_SPRAY_STRENGTH to be more accurate
24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
#ifndef GUARD_SCRIPT_MENU_H
|
|
#define GUARD_SCRIPT_MENU_H
|
|
|
|
#include "constants/script_menu.h"
|
|
#include "menu.h"
|
|
|
|
extern const u8 *const gStdStrings[];
|
|
|
|
bool8 ScriptMenu_Multichoice(u8 left, u8 top, u8 multichoiceId, bool8 ignoreBPress);
|
|
bool8 ScriptMenu_MultichoiceWithDefault(u8 left, u8 top, u8 multichoiceId, bool8 ignoreBPress, u8 defaultChoice);
|
|
void DrawMultichoiceMenuInternal(u8 left, u8 top, u8 multichoiceId, bool8 ignoreBPress, u8 cursorPos, const struct MenuAction *actions, int count);
|
|
bool8 ScriptMenu_YesNo(u8 left, u8 top);
|
|
bool8 ScriptMenu_MultichoiceGrid(u8 left, u8 top, u8 multichoiceId, bool8 ignoreBPress, u8 columnCount);
|
|
bool8 ScriptMenu_ShowPokemonPic(u16 species, u8 x, u8 y);
|
|
bool8 (*ScriptMenu_HidePokemonPic(void))(void);
|
|
int ConvertPixelWidthToTileWidth(int width);
|
|
u8 CreateWindowFromRect(u8 x, u8 y, u8 width, u8 height);
|
|
void ClearToTransparentAndRemoveWindow(u8 windowId);
|
|
int DisplayTextAndGetWidth(const u8 *str, int width);
|
|
int ScriptMenu_AdjustLeftCoordFromWidth(int left, int width);
|
|
bool16 ScriptMenu_CreatePCMultichoice(void);
|
|
void ScriptMenu_DisplayPCStartupPrompt(void);
|
|
|
|
#endif //GUARD_SCRIPT_MENU_H
|