diff options
Diffstat (limited to 'src/menu_helpers.c')
-rw-r--r-- | src/menu_helpers.c | 251 |
1 files changed, 251 insertions, 0 deletions
diff --git a/src/menu_helpers.c b/src/menu_helpers.c new file mode 100644 index 000000000..12837c099 --- /dev/null +++ b/src/menu_helpers.c @@ -0,0 +1,251 @@ +#include "global.h" +#include "task.h" +#include "bg.h" +#include "gpu_regs.h" +#include "window.h" +#include "menu.h" +#include "menu_helpers.h" +#include "new_menu_helpers.h" +#include "string_util.h" +#include "text.h" +#include "sound.h" +#include "link.h" +#include "overworld.h" +#include "mail_data.h" +#include "field_specials.h" +#include "constants/songs.h" +#include "constants/items.h" + +static EWRAM_DATA const struct YesNoFuncTable *gUnknown_20399C8 = NULL; +static EWRAM_DATA TaskFunc gUnknown_20399CC = NULL; +static EWRAM_DATA u8 gUnknown_20399D0 = {0}; + +static void Task_ContinueTaskAfterMessagePrints(u8 taskId); + +void DisplayMessageAndContinueTask(u8 taskId, u8 windowId, u16 arg2, u8 arg3, u8 fontId, u8 textSpeed, const u8 *string, void *taskFunc) +{ + gUnknown_20399D0 = windowId; + DrawDialogFrameWithCustomTileAndPalette(windowId, TRUE, arg2, arg3); + + if (string != gStringVar4) + StringExpandPlaceholders(gStringVar4, string); + + gTextFlags.canABSpeedUpPrint = 1; + AddTextPrinterParameterized2(windowId, fontId, gStringVar4, textSpeed, NULL, 2, 1, 3); + gUnknown_20399CC = taskFunc; + gTasks[taskId].func = Task_ContinueTaskAfterMessagePrints; +} + +bool16 RunTextPrinters_CheckActive(u8 textPrinterId) +{ + RunTextPrinters(); + return IsTextPrinterActive(textPrinterId); +} + +static void Task_ContinueTaskAfterMessagePrints(u8 taskId) +{ + if (!RunTextPrinters_CheckActive(gUnknown_20399D0)) + gUnknown_20399CC(taskId); +} + +static void Task_CallYesOrNoCallback(u8 taskId) +{ + switch (Menu_ProcessInputNoWrapClearOnChoose()) + { + case 0: + PlaySE(SE_SELECT); + gTasks[taskId].func = gUnknown_20399C8->yesFunc; + break; + case 1: + case MENU_B_PRESSED: + PlaySE(SE_SELECT); + gTasks[taskId].func = gUnknown_20399C8->noFunc; + break; + } +} + +void CreateYesNoMenuWithCallbacks(u8 taskId, const struct WindowTemplate *template, u8 arg2, u8 arg3, u8 arg4, u16 tileStart, u8 palette, const struct YesNoFuncTable *yesNo) +{ + CreateYesNoMenu(template, arg2, arg3, arg4, tileStart, palette, 0); + gUnknown_20399C8 = yesNo; + gTasks[taskId].func = Task_CallYesOrNoCallback; +} + +u8 GetLRKeysState(void) +{ + if (gSaveBlock2Ptr->optionsButtonMode == OPTIONS_BUTTON_MODE_LR) + { + if (JOY_NEW(L_BUTTON)) + return 1; + if (JOY_NEW(R_BUTTON)) + return 2; + } + return 0; +} + +u8 sub_80BF66C(void) +{ + if (gSaveBlock2Ptr->optionsButtonMode == OPTIONS_BUTTON_MODE_LR) + { + if (JOY_REPT(L_BUTTON)) + return 1; + if (JOY_REPT(R_BUTTON)) + return 2; + } + return 0; +} + +bool8 sub_80BF6A8(u16 itemId) +{ + if (itemId != ITEM_ENIGMA_BERRY) + return TRUE; + else if (!gSaveBlock1Ptr->location.mapGroup && gSaveBlock1Ptr->location.mapNum == 1) + return FALSE; + else if (InUnionRoom() != TRUE) + return TRUE; + else + return FALSE; +} + +bool8 itemid_80BF6D8_mail_related(u16 itemId) +{ + if (IsUpdateLinkStateCBActive() != TRUE && InUnionRoom() != TRUE) + return TRUE; + else if (ItemIsMail(itemId) != TRUE) + return TRUE; + else + return FALSE; +} + +bool8 MenuHelpers_LinkSomething(void) +{ + if (IsUpdateLinkStateCBActive() == TRUE || gReceivedRemoteLinkPlayers == 1) + return TRUE; + else + return FALSE; +} + +bool8 sub_80BF72C(void) +{ + if (!MenuHelpers_LinkSomething()) + return FALSE; + else + return sub_8058244(); +} + +bool8 sub_80BF748(void) +{ + if (sub_80BF72C() == TRUE) + return TRUE; + else if (sub_800B270() != TRUE) + return FALSE; + else + return TRUE; +} + +void SetVBlankHBlankCallbacksToNull(void) +{ + SetVBlankCallback(NULL); + SetHBlankCallback(NULL); +} + +void ClearVramOamPltt(void) +{ + ResetAllBgsCoordinatesAndBgCntRegs(); + CpuFill16(0, (void*) VRAM, VRAM_SIZE); + CpuFill32(0, (void*) OAM, OAM_SIZE); + CpuFill16(0, (void*) PLTT, PLTT_SIZE); +} + +void ResetAllBgsCoordinatesAndBgCntRegs(void) +{ + SetGpuReg(REG_OFFSET_DISPCNT, 0); + SetGpuReg(REG_OFFSET_BG3CNT, 0); + SetGpuReg(REG_OFFSET_BG2CNT, 0); + SetGpuReg(REG_OFFSET_BG1CNT, 0); + SetGpuReg(REG_OFFSET_BG0CNT, 0); + ChangeBgX(0, 0, 0); + ChangeBgY(0, 0, 0); + ChangeBgX(1, 0, 0); + ChangeBgY(1, 0, 0); + ChangeBgX(2, 0, 0); + ChangeBgY(2, 0, 0); + ChangeBgX(3, 0, 0); + ChangeBgY(3, 0, 0); +} + +bool8 AdjustQuantityAccordingToDPadInput(s16 *arg0, u16 arg1) +{ + s16 valBefore = (*arg0); + + if (JOY_REPT(DPAD_ANY) == DPAD_UP) + { + (*arg0)++; + if ((*arg0) > arg1) + (*arg0) = 1; + + if ((*arg0) == valBefore) + { + return FALSE; + } + else + { + PlaySE(SE_SELECT); + return TRUE; + } + } + else if (JOY_REPT(DPAD_ANY) == DPAD_DOWN) + { + (*arg0)--; + if ((*arg0) <= 0) + (*arg0) = arg1; + if ((*arg0) == valBefore) + { + return FALSE; + } + else + { + PlaySE(SE_SELECT); + return TRUE; + } + } + else if (JOY_REPT(DPAD_ANY) == DPAD_RIGHT) + { + (*arg0) += 10; + if ((*arg0) > arg1) + (*arg0) = arg1; + if ((*arg0) == valBefore) + { + return FALSE; + } + else + { + PlaySE(SE_SELECT); + return TRUE; + } + } + else if (JOY_REPT(DPAD_ANY) == DPAD_LEFT) + { + (*arg0) -= 10; + if ((*arg0) <= 0) + (*arg0) = 1; + if ((*arg0) == valBefore) + { + return FALSE; + } + else + { + PlaySE(SE_SELECT); + return TRUE; + } + } + return FALSE; +} + +u8 sub_80BF8E4(void) +{ + if (!ContextNpcGetTextColor()) + return 4; + else + return 5; +} |