mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-17 03:57:38 +01:00
766 lines
22 KiB
C
766 lines
22 KiB
C
#include "global.h"
|
|
#include "main.h"
|
|
#include "event_data.h"
|
|
#include "field_effect.h"
|
|
#include "field_specials.h"
|
|
#include "item.h"
|
|
#include "menu.h"
|
|
#include "palette.h"
|
|
#include "script.h"
|
|
#include "script_menu.h"
|
|
#include "sound.h"
|
|
#include "string_util.h"
|
|
#include "strings.h"
|
|
#include "task.h"
|
|
#include "text.h"
|
|
#include "constants/field_specials.h"
|
|
#include "constants/items.h"
|
|
#include "constants/script_menu.h"
|
|
#include "constants/songs.h"
|
|
|
|
#include "data/script_menu.h"
|
|
|
|
static EWRAM_DATA u8 sProcessInputDelay = 0;
|
|
|
|
static u8 sLilycoveSSTidalSelections[SSTIDAL_SELECTION_COUNT];
|
|
|
|
static void Task_HandleMultichoiceInput(u8 taskId);
|
|
static void Task_HandleYesNoInput(u8 taskId);
|
|
static void Task_HandleMultichoiceGridInput(u8 taskId);
|
|
static void DrawMultichoiceMenu(u8 left, u8 top, u8 multichoiceId, bool8 ignoreBPress, u8 cursorPos);
|
|
static void InitMultichoiceCheckWrap(bool8 ignoreBPress, u8 count, u8 windowId, u8 multichoiceId);
|
|
static void DrawLinkServicesMultichoiceMenu(u8 multichoiceId);
|
|
static void CreatePCMultichoice(void);
|
|
static void CreateLilycoveSSTidalMultichoice(void);
|
|
static bool8 IsPicboxClosed(void);
|
|
static void CreateStartMenuForPokenavTutorial(void);
|
|
static void InitMultichoiceNoWrap(bool8 ignoreBPress, u8 unusedCount, u8 windowId, u8 multichoiceId);
|
|
|
|
bool8 ScriptMenu_Multichoice(u8 left, u8 top, u8 multichoiceId, bool8 ignoreBPress)
|
|
{
|
|
if (FuncIsActiveTask(Task_HandleMultichoiceInput) == TRUE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
gSpecialVar_Result = 0xFF;
|
|
DrawMultichoiceMenu(left, top, multichoiceId, ignoreBPress, 0);
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
bool8 ScriptMenu_MultichoiceWithDefault(u8 left, u8 top, u8 multichoiceId, bool8 ignoreBPress, u8 defaultChoice)
|
|
{
|
|
if (FuncIsActiveTask(Task_HandleMultichoiceInput) == TRUE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
gSpecialVar_Result = 0xFF;
|
|
DrawMultichoiceMenu(left, top, multichoiceId, ignoreBPress, defaultChoice);
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
// Unused
|
|
static u16 GetLengthWithExpandedPlayerName(const u8 *str)
|
|
{
|
|
u16 length = 0;
|
|
|
|
while (*str != EOS)
|
|
{
|
|
if (*str == PLACEHOLDER_BEGIN)
|
|
{
|
|
str++;
|
|
if (*str == PLACEHOLDER_ID_PLAYER)
|
|
{
|
|
length += StringLength(gSaveBlock2Ptr->playerName);
|
|
str++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
str++;
|
|
length++;
|
|
}
|
|
}
|
|
|
|
return length;
|
|
}
|
|
|
|
static void DrawMultichoiceMenu(u8 left, u8 top, u8 multichoiceId, bool8 ignoreBPress, u8 cursorPos)
|
|
{
|
|
int i;
|
|
u8 windowId;
|
|
u8 count = sMultichoiceLists[multichoiceId].count;
|
|
const struct MenuAction *actions = sMultichoiceLists[multichoiceId].list;
|
|
int width = 0;
|
|
u8 newWidth;
|
|
|
|
for (i = 0; i < count; i++)
|
|
{
|
|
width = DisplayTextAndGetWidth(actions[i].text, width);
|
|
}
|
|
|
|
newWidth = ConvertPixelWidthToTileWidth(width);
|
|
left = ScriptMenu_AdjustLeftCoordFromWidth(left, newWidth);
|
|
windowId = CreateWindowFromRect(left, top, newWidth, count * 2);
|
|
SetStandardWindowBorderStyle(windowId, 0);
|
|
PrintMenuTable(windowId, count, actions);
|
|
InitMenuInUpperLeftCornerPlaySoundWhenAPressed(windowId, count, cursorPos);
|
|
schedule_bg_copy_tilemap_to_vram(0);
|
|
InitMultichoiceCheckWrap(ignoreBPress, count, windowId, multichoiceId);
|
|
}
|
|
|
|
#define tLeft data[0]
|
|
#define tTop data[1]
|
|
#define tRight data[2]
|
|
#define tBottom data[3]
|
|
#define tIgnoreBPress data[4]
|
|
#define tDoWrap data[5]
|
|
#define tWindowId data[6]
|
|
#define tMultichoiceId data[7]
|
|
|
|
static void InitMultichoiceCheckWrap(bool8 ignoreBPress, u8 count, u8 windowId, u8 multichoiceId)
|
|
{
|
|
u8 i;
|
|
u8 taskId;
|
|
sProcessInputDelay = 2;
|
|
|
|
for (i = 0; i < ARRAY_COUNT(sLinkServicesMultichoiceIds); i++)
|
|
{
|
|
if (sLinkServicesMultichoiceIds[i] == multichoiceId)
|
|
{
|
|
sProcessInputDelay = 12;
|
|
}
|
|
}
|
|
|
|
taskId = CreateTask(Task_HandleMultichoiceInput, 80);
|
|
|
|
gTasks[taskId].tIgnoreBPress = ignoreBPress;
|
|
|
|
if (count > 3)
|
|
gTasks[taskId].tDoWrap = TRUE;
|
|
else
|
|
gTasks[taskId].tDoWrap = FALSE;
|
|
|
|
gTasks[taskId].tWindowId = windowId;
|
|
gTasks[taskId].tMultichoiceId = multichoiceId;
|
|
|
|
DrawLinkServicesMultichoiceMenu(multichoiceId);
|
|
}
|
|
|
|
static void Task_HandleMultichoiceInput(u8 taskId)
|
|
{
|
|
s8 selection;
|
|
s16 *data = gTasks[taskId].data;
|
|
|
|
if (!gPaletteFade.active)
|
|
{
|
|
if (sProcessInputDelay)
|
|
{
|
|
sProcessInputDelay--;
|
|
}
|
|
else
|
|
{
|
|
if (!tDoWrap)
|
|
selection = Menu_ProcessInputNoWrap();
|
|
else
|
|
selection = Menu_ProcessInput();
|
|
|
|
if (gMain.newKeys & (DPAD_UP | DPAD_DOWN))
|
|
{
|
|
DrawLinkServicesMultichoiceMenu(tMultichoiceId);
|
|
}
|
|
|
|
if (selection != MENU_NOTHING_CHOSEN)
|
|
{
|
|
if (selection == MENU_B_PRESSED)
|
|
{
|
|
if (tIgnoreBPress)
|
|
return;
|
|
PlaySE(SE_SELECT);
|
|
gSpecialVar_Result = MULTI_B_PRESSED;
|
|
}
|
|
else
|
|
{
|
|
gSpecialVar_Result = selection;
|
|
}
|
|
ClearToTransparentAndRemoveWindow(tWindowId);
|
|
DestroyTask(taskId);
|
|
EnableBothScriptContexts();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
bool8 ScriptMenu_YesNo(u8 left, u8 top)
|
|
{
|
|
u8 taskId;
|
|
|
|
if (FuncIsActiveTask(Task_HandleYesNoInput) == TRUE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
gSpecialVar_Result = 0xFF;
|
|
DisplayYesNoMenuDefaultYes();
|
|
taskId = CreateTask(Task_HandleYesNoInput, 0x50);
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
// Unused
|
|
bool8 IsScriptActive(void)
|
|
{
|
|
if (gSpecialVar_Result == 0xFF)
|
|
return FALSE;
|
|
else
|
|
return TRUE;
|
|
}
|
|
|
|
static void Task_HandleYesNoInput(u8 taskId)
|
|
{
|
|
if (gTasks[taskId].tRight < 5)
|
|
{
|
|
gTasks[taskId].tRight++;
|
|
return;
|
|
}
|
|
|
|
switch (Menu_ProcessInputNoWrapClearOnChoose())
|
|
{
|
|
case MENU_NOTHING_CHOSEN:
|
|
return;
|
|
case MENU_B_PRESSED:
|
|
case 1:
|
|
PlaySE(SE_SELECT);
|
|
gSpecialVar_Result = 0;
|
|
break;
|
|
case 0:
|
|
gSpecialVar_Result = 1;
|
|
break;
|
|
}
|
|
|
|
DestroyTask(taskId);
|
|
EnableBothScriptContexts();
|
|
}
|
|
|
|
bool8 ScriptMenu_MultichoiceGrid(u8 left, u8 top, u8 multichoiceId, bool8 ignoreBPress, u8 columnCount)
|
|
{
|
|
if (FuncIsActiveTask(Task_HandleMultichoiceGridInput) == TRUE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
u8 taskId;
|
|
u8 rowCount, newWidth;
|
|
int i, width;
|
|
|
|
gSpecialVar_Result = 0xFF;
|
|
width = 0;
|
|
|
|
for (i = 0; i < sMultichoiceLists[multichoiceId].count; i++)
|
|
{
|
|
width = DisplayTextAndGetWidth(sMultichoiceLists[multichoiceId].list[i].text, width);
|
|
}
|
|
|
|
newWidth = ConvertPixelWidthToTileWidth(width);
|
|
|
|
left = ScriptMenu_AdjustLeftCoordFromWidth(left, columnCount * newWidth);
|
|
rowCount = sMultichoiceLists[multichoiceId].count / columnCount;
|
|
|
|
taskId = CreateTask(Task_HandleMultichoiceGridInput, 80);
|
|
|
|
gTasks[taskId].tIgnoreBPress = ignoreBPress;
|
|
gTasks[taskId].tWindowId = CreateWindowFromRect(left, top, columnCount * newWidth, rowCount * 2);
|
|
SetStandardWindowBorderStyle(gTasks[taskId].tWindowId, 0);
|
|
PrintMenuGridTable(gTasks[taskId].tWindowId, newWidth * 8, columnCount, rowCount, sMultichoiceLists[multichoiceId].list);
|
|
sub_8199944(gTasks[taskId].tWindowId, newWidth * 8, columnCount, rowCount, 0);
|
|
CopyWindowToVram(gTasks[taskId].tWindowId, 3);
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
static void Task_HandleMultichoiceGridInput(u8 taskId)
|
|
{
|
|
s16 *data = gTasks[taskId].data;
|
|
s8 selection = Menu_ProcessInputGridLayout();
|
|
|
|
switch (selection)
|
|
{
|
|
case MENU_NOTHING_CHOSEN:
|
|
return;
|
|
case MENU_B_PRESSED:
|
|
if (tIgnoreBPress)
|
|
return;
|
|
PlaySE(SE_SELECT);
|
|
gSpecialVar_Result = MULTI_B_PRESSED;
|
|
break;
|
|
default:
|
|
gSpecialVar_Result = selection;
|
|
break;
|
|
}
|
|
|
|
ClearToTransparentAndRemoveWindow(tWindowId);
|
|
DestroyTask(taskId);
|
|
EnableBothScriptContexts();
|
|
}
|
|
|
|
#undef tWindowId
|
|
|
|
bool16 ScriptMenu_CreatePCMultichoice(void)
|
|
{
|
|
if (FuncIsActiveTask(Task_HandleMultichoiceInput) == TRUE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
gSpecialVar_Result = 0xFF;
|
|
CreatePCMultichoice();
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
static void CreatePCMultichoice(void)
|
|
{
|
|
u8 y = 8;
|
|
u32 pixelWidth = 0;
|
|
u8 width;
|
|
u8 numChoices;
|
|
u8 windowId;
|
|
int i;
|
|
|
|
for (i = 0; i < ARRAY_COUNT(sPCNameStrings); i++)
|
|
{
|
|
pixelWidth = DisplayTextAndGetWidth(sPCNameStrings[i], pixelWidth);
|
|
}
|
|
|
|
if (FlagGet(FLAG_SYS_GAME_CLEAR))
|
|
{
|
|
pixelWidth = DisplayTextAndGetWidth(gText_HallOfFame, pixelWidth);
|
|
}
|
|
|
|
width = ConvertPixelWidthToTileWidth(pixelWidth);
|
|
|
|
// Include Hall of Fame option if player is champion
|
|
if (FlagGet(FLAG_SYS_GAME_CLEAR))
|
|
{
|
|
numChoices = 4;
|
|
windowId = CreateWindowFromRect(0, 0, width, 8);
|
|
SetStandardWindowBorderStyle(windowId, 0);
|
|
AddTextPrinterParameterized(windowId, 1, gText_HallOfFame, y, 33, TEXT_SPEED_FF, NULL);
|
|
AddTextPrinterParameterized(windowId, 1, gText_LogOff, y, 49, TEXT_SPEED_FF, NULL);
|
|
}
|
|
else
|
|
{
|
|
numChoices = 3;
|
|
windowId = CreateWindowFromRect(0, 0, width, 6);
|
|
SetStandardWindowBorderStyle(windowId, 0);
|
|
AddTextPrinterParameterized(windowId, 1, gText_LogOff, y, 33, TEXT_SPEED_FF, NULL);
|
|
}
|
|
|
|
// Change PC name if player has met Lanette
|
|
if (FlagGet(FLAG_SYS_PC_LANETTE))
|
|
AddTextPrinterParameterized(windowId, 1, gText_LanettesPC, y, 1, TEXT_SPEED_FF, NULL);
|
|
else
|
|
AddTextPrinterParameterized(windowId, 1, gText_SomeonesPC, y, 1, TEXT_SPEED_FF, NULL);
|
|
|
|
StringExpandPlaceholders(gStringVar4, gText_PlayersPC);
|
|
PrintPlayerNameOnWindow(windowId, gStringVar4, y, 17);
|
|
InitMenuInUpperLeftCornerPlaySoundWhenAPressed(windowId, numChoices, 0);
|
|
CopyWindowToVram(windowId, 3);
|
|
InitMultichoiceCheckWrap(FALSE, numChoices, windowId, MULTI_PC);
|
|
}
|
|
|
|
void ScriptMenu_DisplayPCStartupPrompt(void)
|
|
{
|
|
sub_819786C(0, TRUE);
|
|
AddTextPrinterParameterized2(0, 1, gText_WhichPCShouldBeAccessed, 0, NULL, 2, 1, 3);
|
|
}
|
|
|
|
bool8 ScriptMenu_CreateLilycoveSSTidalMultichoice(void)
|
|
{
|
|
if (FuncIsActiveTask(Task_HandleMultichoiceInput) == TRUE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
gSpecialVar_Result = 0xFF;
|
|
CreateLilycoveSSTidalMultichoice();
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
// gSpecialVar_0x8004 is 1 if the Sailor was shown multiple event tickets at the same time
|
|
// otherwise gSpecialVar_0x8004 is 0
|
|
static void CreateLilycoveSSTidalMultichoice(void)
|
|
{
|
|
u8 selectionCount = 0;
|
|
u8 count;
|
|
u32 pixelWidth;
|
|
u8 width;
|
|
u8 windowId;
|
|
u8 i;
|
|
u32 j;
|
|
|
|
for (i = 0; i < SSTIDAL_SELECTION_COUNT; i++)
|
|
{
|
|
sLilycoveSSTidalSelections[i] = 0xFF;
|
|
}
|
|
|
|
GetFontAttribute(1, FONTATTR_MAX_LETTER_WIDTH);
|
|
|
|
if (gSpecialVar_0x8004 == 0)
|
|
{
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_SLATEPORT;
|
|
selectionCount++;
|
|
|
|
if (FlagGet(FLAG_MET_SCOTT_ON_SS_TIDAL) == TRUE)
|
|
{
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_BATTLE_FRONTIER;
|
|
selectionCount++;
|
|
}
|
|
}
|
|
|
|
if (CheckBagHasItem(ITEM_EON_TICKET, 1) == TRUE && FlagGet(FLAG_ENABLE_SHIP_SOUTHERN_ISLAND) == TRUE)
|
|
{
|
|
if (gSpecialVar_0x8004 == 0)
|
|
{
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_SOUTHERN_ISLAND;
|
|
selectionCount++;
|
|
}
|
|
|
|
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_SHOWN_EON_TICKET) == FALSE)
|
|
{
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_SOUTHERN_ISLAND;
|
|
selectionCount++;
|
|
FlagSet(FLAG_SHOWN_EON_TICKET);
|
|
}
|
|
}
|
|
|
|
if (CheckBagHasItem(ITEM_MYSTIC_TICKET, 1) == TRUE && FlagGet(FLAG_ENABLE_SHIP_NAVEL_ROCK) == TRUE)
|
|
{
|
|
if (gSpecialVar_0x8004 == 0)
|
|
{
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_NAVEL_ROCK;
|
|
selectionCount++;
|
|
}
|
|
|
|
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_SHOWN_MYSTIC_TICKET) == FALSE)
|
|
{
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_NAVEL_ROCK;
|
|
selectionCount++;
|
|
FlagSet(FLAG_SHOWN_MYSTIC_TICKET);
|
|
}
|
|
}
|
|
|
|
if (CheckBagHasItem(ITEM_AURORA_TICKET, 1) == TRUE && FlagGet(FLAG_ENABLE_SHIP_BIRTH_ISLAND) == TRUE)
|
|
{
|
|
if (gSpecialVar_0x8004 == 0)
|
|
{
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_BIRTH_ISLAND;
|
|
selectionCount++;
|
|
}
|
|
|
|
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_SHOWN_AURORA_TICKET) == FALSE)
|
|
{
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_BIRTH_ISLAND;
|
|
selectionCount++;
|
|
FlagSet(FLAG_SHOWN_AURORA_TICKET);
|
|
}
|
|
}
|
|
|
|
if (CheckBagHasItem(ITEM_OLD_SEA_MAP, 1) == TRUE && FlagGet(FLAG_ENABLE_SHIP_FARAWAY_ISLAND) == TRUE)
|
|
{
|
|
if (gSpecialVar_0x8004 == 0)
|
|
{
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_FARAWAY_ISLAND;
|
|
selectionCount++;
|
|
}
|
|
|
|
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_SHOWN_OLD_SEA_MAP) == FALSE)
|
|
{
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_FARAWAY_ISLAND;
|
|
selectionCount++;
|
|
FlagSet(FLAG_SHOWN_OLD_SEA_MAP);
|
|
}
|
|
}
|
|
|
|
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_EXIT;
|
|
selectionCount++;
|
|
|
|
if (gSpecialVar_0x8004 == 0 && FlagGet(FLAG_MET_SCOTT_ON_SS_TIDAL) == TRUE)
|
|
{
|
|
count = selectionCount;
|
|
}
|
|
|
|
count = selectionCount;
|
|
if (count == SSTIDAL_SELECTION_COUNT)
|
|
{
|
|
gSpecialVar_0x8004 = SCROLL_MULTI_SS_TIDAL_DESTINATION;
|
|
ShowScrollableMultichoice();
|
|
}
|
|
else
|
|
{
|
|
pixelWidth = 0;
|
|
|
|
for (j = 0; j < SSTIDAL_SELECTION_COUNT; j++)
|
|
{
|
|
u8 selection = sLilycoveSSTidalSelections[j];
|
|
if (selection != 0xFF)
|
|
{
|
|
pixelWidth = DisplayTextAndGetWidth(sLilycoveSSTidalDestinations[selection], pixelWidth);
|
|
}
|
|
}
|
|
|
|
width = ConvertPixelWidthToTileWidth(pixelWidth);
|
|
windowId = CreateWindowFromRect(MAX_MULTICHOICE_WIDTH - width, (6 - count) * 2, width, count * 2);
|
|
SetStandardWindowBorderStyle(windowId, 0);
|
|
|
|
for (selectionCount = 0, i = 0; i < SSTIDAL_SELECTION_COUNT; i++)
|
|
{
|
|
if (sLilycoveSSTidalSelections[i] != 0xFF)
|
|
{
|
|
AddTextPrinterParameterized(windowId, 1, sLilycoveSSTidalDestinations[sLilycoveSSTidalSelections[i]], 8, selectionCount * 16 + 1, TEXT_SPEED_FF, NULL);
|
|
selectionCount++;
|
|
}
|
|
}
|
|
|
|
InitMenuInUpperLeftCornerPlaySoundWhenAPressed(windowId, count, count - 1);
|
|
CopyWindowToVram(windowId, 3);
|
|
InitMultichoiceCheckWrap(FALSE, count, windowId, MULTI_SSTIDAL_LILYCOVE);
|
|
}
|
|
}
|
|
|
|
void GetLilycoveSSTidalSelection(void)
|
|
{
|
|
if (gSpecialVar_Result != MULTI_B_PRESSED)
|
|
{
|
|
gSpecialVar_Result = sLilycoveSSTidalSelections[gSpecialVar_Result];
|
|
}
|
|
}
|
|
|
|
#define tState data[0]
|
|
#define tMonSpecies data[1]
|
|
#define tMonSpriteId data[2]
|
|
#define tWindowX data[3]
|
|
#define tWindowY data[4]
|
|
#define tWindowId data[5]
|
|
|
|
static void Task_PokemonPicWindow(u8 taskId)
|
|
{
|
|
struct Task *task = &gTasks[taskId];
|
|
|
|
switch (task->tState)
|
|
{
|
|
case 0:
|
|
task->tState++;
|
|
break;
|
|
case 1:
|
|
break;
|
|
case 2:
|
|
FreeResourcesAndDestroySprite(&gSprites[task->tMonSpriteId], task->tMonSpriteId);
|
|
task->tState++;
|
|
break;
|
|
case 3:
|
|
ClearToTransparentAndRemoveWindow(task->tWindowId);
|
|
DestroyTask(taskId);
|
|
break;
|
|
}
|
|
}
|
|
|
|
bool8 ScriptMenu_ShowPokemonPic(u16 species, u8 x, u8 y)
|
|
{
|
|
u8 taskId;
|
|
u8 spriteId;
|
|
|
|
if (FindTaskIdByFunc(Task_PokemonPicWindow) != 0xFF)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
spriteId = CreateMonSprite_PicBox(species, x * 8 + 40, y * 8 + 40, 0);
|
|
taskId = CreateTask(Task_PokemonPicWindow, 0x50);
|
|
gTasks[taskId].tWindowId = CreateWindowFromRect(x, y, 8, 8);
|
|
gTasks[taskId].tState = 0;
|
|
gTasks[taskId].tMonSpecies = species;
|
|
gTasks[taskId].tMonSpriteId = spriteId;
|
|
gSprites[spriteId].callback = SpriteCallbackDummy;
|
|
gSprites[spriteId].oam.priority = 0;
|
|
SetStandardWindowBorderStyle(gTasks[taskId].tWindowId, 1);
|
|
schedule_bg_copy_tilemap_to_vram(0);
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
bool8 (*ScriptMenu_GetPicboxWaitFunc(void))(void)
|
|
{
|
|
u8 taskId = FindTaskIdByFunc(Task_PokemonPicWindow);
|
|
|
|
if (taskId == 0xFF)
|
|
return NULL;
|
|
gTasks[taskId].tState++;
|
|
return IsPicboxClosed;
|
|
}
|
|
|
|
static bool8 IsPicboxClosed(void)
|
|
{
|
|
if (FindTaskIdByFunc(Task_PokemonPicWindow) == 0xFF)
|
|
return TRUE;
|
|
else
|
|
return FALSE;
|
|
}
|
|
|
|
#undef tState
|
|
#undef tMonSpecies
|
|
#undef tMonSpriteId
|
|
#undef tWindowX
|
|
#undef tWindowY
|
|
#undef tWindowId
|
|
|
|
u8 CreateWindowFromRect(u8 x, u8 y, u8 width, u8 height)
|
|
{
|
|
struct WindowTemplate template = CreateWindowTemplate(0, x + 1, y + 1, width, height, 15, 100);
|
|
u8 windowId = AddWindow(&template);
|
|
PutWindowTilemap(windowId);
|
|
return windowId;
|
|
}
|
|
|
|
void ClearToTransparentAndRemoveWindow(u8 windowId)
|
|
{
|
|
ClearStdWindowAndFrameToTransparent(windowId, TRUE);
|
|
RemoveWindow(windowId);
|
|
}
|
|
|
|
static void DrawLinkServicesMultichoiceMenu(u8 multichoiceId)
|
|
{
|
|
switch (multichoiceId)
|
|
{
|
|
case MULTI_WIRELESS_NO_BERRY:
|
|
FillWindowPixelBuffer(0, PIXEL_FILL(1));
|
|
AddTextPrinterParameterized2(0, 1, sWirelessOptionsNoBerryCrush[Menu_GetCursorPos()], 0, NULL, 2, 1, 3);
|
|
break;
|
|
case MULTI_CABLE_CLUB_WITH_RECORD_MIX:
|
|
FillWindowPixelBuffer(0, PIXEL_FILL(1));
|
|
AddTextPrinterParameterized2(0, 1, sCableClubOptions_WithRecordMix[Menu_GetCursorPos()], 0, NULL, 2, 1, 3);
|
|
break;
|
|
case MULTI_WIRELESS_NO_RECORD:
|
|
FillWindowPixelBuffer(0, PIXEL_FILL(1));
|
|
AddTextPrinterParameterized2(0, 1, sWirelessOptions_NoRecordMix[Menu_GetCursorPos()], 0, NULL, 2, 1, 3);
|
|
break;
|
|
case MULTI_WIRELESS_ALL_SERVICES:
|
|
FillWindowPixelBuffer(0, PIXEL_FILL(1));
|
|
AddTextPrinterParameterized2(0, 1, sWirelessOptions_AllServices[Menu_GetCursorPos()], 0, NULL, 2, 1, 3);
|
|
break;
|
|
case MULTI_WIRELESS_NO_RECORD_BERRY:
|
|
FillWindowPixelBuffer(0, PIXEL_FILL(1));
|
|
AddTextPrinterParameterized2(0, 1, sWirelessOptions_NoRecordMixBerryCrush[Menu_GetCursorPos()], 0, NULL, 2, 1, 3);
|
|
break;
|
|
case MULTI_CABLE_CLUB_NO_RECORD_MIX:
|
|
FillWindowPixelBuffer(0, PIXEL_FILL(1));
|
|
AddTextPrinterParameterized2(0, 1, sCableClubOptions_NoRecordMix[Menu_GetCursorPos()], 0, NULL, 2, 1, 3);
|
|
break;
|
|
}
|
|
}
|
|
|
|
bool16 ScriptMenu_CreateStartMenuForPokenavTutorial(void)
|
|
{
|
|
if (FuncIsActiveTask(Task_HandleMultichoiceInput) == TRUE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
gSpecialVar_Result = 0xFF;
|
|
CreateStartMenuForPokenavTutorial();
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
static void CreateStartMenuForPokenavTutorial(void)
|
|
{
|
|
u8 windowId = CreateWindowFromRect(21, 0, 7, 18);
|
|
SetStandardWindowBorderStyle(windowId, 0);
|
|
AddTextPrinterParameterized(windowId, 1, gText_MenuOptionPokedex, 8, 9, TEXT_SPEED_FF, NULL);
|
|
AddTextPrinterParameterized(windowId, 1, gText_MenuOptionPokemon, 8, 25, TEXT_SPEED_FF, NULL);
|
|
AddTextPrinterParameterized(windowId, 1, gText_MenuOptionBag, 8, 41, TEXT_SPEED_FF, NULL);
|
|
AddTextPrinterParameterized(windowId, 1, gText_MenuOptionPokenav, 8, 57, TEXT_SPEED_FF, NULL);
|
|
AddTextPrinterParameterized(windowId, 1, gSaveBlock2Ptr->playerName, 8, 73, TEXT_SPEED_FF, NULL);
|
|
AddTextPrinterParameterized(windowId, 1, gText_MenuOptionSave, 8, 89, TEXT_SPEED_FF, NULL);
|
|
AddTextPrinterParameterized(windowId, 1, gText_MenuOptionOption, 8, 105, TEXT_SPEED_FF, NULL);
|
|
AddTextPrinterParameterized(windowId, 1, gText_MenuOptionExit, 8, 121, TEXT_SPEED_FF, NULL);
|
|
sub_81983AC(windowId, 1, 0, 9, 16, ARRAY_COUNT(MultichoiceList_ForcedStartMenu), 0);
|
|
InitMultichoiceNoWrap(FALSE, ARRAY_COUNT(MultichoiceList_ForcedStartMenu), windowId, MULTI_FORCED_START_MENU);
|
|
CopyWindowToVram(windowId, 3);
|
|
}
|
|
|
|
#define tWindowId data[6]
|
|
|
|
static void InitMultichoiceNoWrap(bool8 ignoreBPress, u8 unusedCount, u8 windowId, u8 multichoiceId)
|
|
{
|
|
u8 taskId;
|
|
sProcessInputDelay = 2;
|
|
taskId = CreateTask(Task_HandleMultichoiceInput, 80);
|
|
gTasks[taskId].tIgnoreBPress = ignoreBPress;
|
|
gTasks[taskId].tDoWrap = 0;
|
|
gTasks[taskId].tWindowId = windowId;
|
|
gTasks[taskId].tMultichoiceId = multichoiceId;
|
|
}
|
|
|
|
#undef tLeft
|
|
#undef tTop
|
|
#undef tRight
|
|
#undef tBottom
|
|
#undef tIgnoreBPress
|
|
#undef tDoWrap
|
|
#undef tWindowId
|
|
#undef tMultichoiceId
|
|
|
|
static int DisplayTextAndGetWidthInternal(const u8 *str)
|
|
{
|
|
u8 temp[64];
|
|
StringExpandPlaceholders(temp, str);
|
|
return GetStringWidth(1, temp, 0);
|
|
}
|
|
|
|
int DisplayTextAndGetWidth(const u8 *str, int prevWidth)
|
|
{
|
|
int width = DisplayTextAndGetWidthInternal(str);
|
|
if (width < prevWidth)
|
|
{
|
|
width = prevWidth;
|
|
}
|
|
return width;
|
|
}
|
|
|
|
int ConvertPixelWidthToTileWidth(int width)
|
|
{
|
|
return (((width + 9) / 8) + 1) > MAX_MULTICHOICE_WIDTH ? MAX_MULTICHOICE_WIDTH : (((width + 9) / 8) + 1);
|
|
}
|
|
|
|
int ScriptMenu_AdjustLeftCoordFromWidth(int left, int width)
|
|
{
|
|
int adjustedLeft = left;
|
|
|
|
if (left + width > MAX_MULTICHOICE_WIDTH)
|
|
{
|
|
if (MAX_MULTICHOICE_WIDTH - width < 0)
|
|
{
|
|
adjustedLeft = 0;
|
|
}
|
|
else
|
|
{
|
|
adjustedLeft = MAX_MULTICHOICE_WIDTH - width;
|
|
}
|
|
}
|
|
|
|
return adjustedLeft;
|
|
}
|