summaryrefslogtreecommitdiff
path: root/src/pokemon
diff options
context:
space:
mode:
authorcamthesaxman <cameronghall@cox.net>2018-01-08 23:16:13 -0600
committercamthesaxman <cameronghall@cox.net>2018-01-08 23:16:13 -0600
commit6d16dba22e9ea2b40bf684f7549b73a583d143f6 (patch)
tree6502fb0b748b810ac586a999b7961c2355d8355a /src/pokemon
parentc4c885504729b56c00aa245aea6e284a1b6a1719 (diff)
re-label some window and text code
Diffstat (limited to 'src/pokemon')
-rw-r--r--src/pokemon/learn_move.c62
-rw-r--r--src/pokemon/mail.c6
-rw-r--r--src/pokemon/mon_markings.c2
-rw-r--r--src/pokemon/pokeblock_feed.c4
-rw-r--r--src/pokemon/pokedex.c56
-rw-r--r--src/pokemon/pokemon_menu.c44
-rw-r--r--src/pokemon/pokemon_storage_system.c4
-rw-r--r--src/pokemon/pokemon_summary_screen.c142
8 files changed, 160 insertions, 160 deletions
diff --git a/src/pokemon/learn_move.c b/src/pokemon/learn_move.c
index ef1d66349..83953186b 100644
--- a/src/pokemon/learn_move.c
+++ b/src/pokemon/learn_move.c
@@ -25,8 +25,8 @@ extern u16 gSpecialVar_0x8004;
extern u16 gSpecialVar_0x8005;
extern u8 gTileBuffer[];
-extern const struct WindowConfig gWindowConfig_81E6CE4;
-extern const struct WindowConfig gWindowConfig_81E7240;
+extern const struct WindowTemplate gWindowConfig_81E6CE4;
+extern const struct WindowTemplate gWindowConfig_81E7240;
extern const u8 *const gContestEffectStrings[];
extern const u8 *const gMoveDescriptions[];
extern const u8 gTypeNames[][7];
@@ -270,11 +270,11 @@ void CB2_InitLearnMove(void)
SetUpWindowConfig(&gWindowConfig_81E7240);
InitMenuWindow(&gWindowConfig_81E7240);
- MenuZeroFillScreen();
+ Menu_EraseScreen();
SetUpWindowConfig(&gWindowConfig_81E6CE4);
InitMenuWindow(&gWindowConfig_81E6CE4);
- MenuZeroFillScreen();
+ Menu_EraseScreen();
REG_BG0VOFS = 0;
REG_BG0VOFS = 0; // huh?
@@ -304,11 +304,11 @@ void sub_81327A4(void)
SetUpWindowConfig(&gWindowConfig_81E7240);
InitMenuWindow(&gWindowConfig_81E7240);
- MenuZeroFillScreen();
+ Menu_EraseScreen();
SetUpWindowConfig(&gWindowConfig_81E6CE4);
InitMenuWindow(&gWindowConfig_81E6CE4);
- MenuZeroFillScreen();
+ Menu_EraseScreen();
REG_DISPCNT = 0x1340;
REG_BG0VOFS = 0;
@@ -401,7 +401,7 @@ void LearnMoveMain(void)
sub_813362C();
break;
case 8:
- if (MenuUpdateWindowText())
+ if (Menu_UpdateWindowText())
{
DisplayYesNoMenu(21, 7, 1);
sLearnMoveStruct->state++;
@@ -436,7 +436,7 @@ void LearnMoveMain(void)
}
break;
case 12:
- if (MenuUpdateWindowText())
+ if (Menu_UpdateWindowText())
{
DisplayYesNoMenu(21, 7, 1);
sLearnMoveStruct->state++;
@@ -467,7 +467,7 @@ void LearnMoveMain(void)
sLearnMoveStruct->state++;
break;
case 17:
- if (MenuUpdateWindowText())
+ if (Menu_UpdateWindowText())
{
DisplayYesNoMenu(21, 7, 1);
sLearnMoveStruct->state = 18;
@@ -495,7 +495,7 @@ void LearnMoveMain(void)
sLearnMoveStruct->state++;
break;
case 25:
- if (MenuUpdateWindowText())
+ if (Menu_UpdateWindowText())
{
sLearnMoveStruct->state = 26;
DisplayYesNoMenu(21, 7, 1);
@@ -524,7 +524,7 @@ void LearnMoveMain(void)
}
break;
case 27:
- if (MenuUpdateWindowText())
+ if (Menu_UpdateWindowText())
{
if (sLearnMoveStruct->showContestInfo == FALSE)
sLearnMoveStruct->state = 3;
@@ -533,7 +533,7 @@ void LearnMoveMain(void)
}
break;
case 19:
- if (MenuUpdateWindowText())
+ if (Menu_UpdateWindowText())
{
sLearnMoveStruct->state = 20;
BeginNormalPaletteFade(0xFFFFFFFF, 0, 0, 16, 0);
@@ -547,7 +547,7 @@ void LearnMoveMain(void)
}
break;
case 21:
- if (MenuUpdateWindowText())
+ if (Menu_UpdateWindowText())
sLearnMoveStruct->state = 14;
break;
case 22:
@@ -597,7 +597,7 @@ void LearnMoveMain(void)
}
break;
case 30:
- if (MenuUpdateWindowText())
+ if (Menu_UpdateWindowText())
{
#ifdef ENGLISH
sub_81328E8(gOtherText_ForgotOrDidNotLearnMove);
@@ -609,7 +609,7 @@ void LearnMoveMain(void)
}
break;
case 31:
- if (MenuUpdateWindowText())
+ if (Menu_UpdateWindowText())
{
PlayFanfare(BGM_FANFA1);
sLearnMoveStruct->state = 32;
@@ -636,7 +636,7 @@ void DrawLearnMoveMenuWindow(void)
BasicInitMenuWindow(&gWindowConfig_81E7240);
for (i = 0; i < 4; i++)
{
- MenuDrawTextWindow(
+ Menu_DrawStdWindowFrame(
gUnknown_08402CF8[i][0],
gUnknown_08402CF8[i][1],
gUnknown_08402CF8[i][2],
@@ -658,7 +658,7 @@ void sub_8133030(bool8 a)
for (i = 0; gUnknown_08402D08[0][i].unk0 != NULL; i++)
{
sub_8072C74(gTileBuffer, gUnknown_08402D08[0][i].unk0, 64, 2);
- MenuPrint(gTileBuffer, gUnknown_08402D08[0][i].unk4, gUnknown_08402D08[0][i].unk5);
+ Menu_PrintText(gTileBuffer, gUnknown_08402D08[0][i].unk4, gUnknown_08402D08[0][i].unk5);
}
if (!a)
@@ -696,10 +696,10 @@ void sub_8133140(bool8 a)
for (i = 0; gUnknown_08402D08[0][i].unk0 != NULL; i++)
{
sub_8072C74(gTileBuffer, gUnknown_08402D08[1][i].unk0, 64, 2);
- MenuPrint(gTileBuffer, gUnknown_08402D08[1][i].unk4, gUnknown_08402D08[1][i].unk5);
+ Menu_PrintText(gTileBuffer, gUnknown_08402D08[1][i].unk4, gUnknown_08402D08[1][i].unk5);
if (i != 0)
{
- MenuZeroFillWindowRect(
+ Menu_EraseWindowRect(
gUnknown_08402D08[1][i].unk4,
gUnknown_08402D08[1][i].unk5 + 2,
gUnknown_08402D08[1][i].unk4 + 7,
@@ -938,7 +938,7 @@ void sub_8133800(void)
r6++;
}
*str = EOS;
- MenuPrint(gTileBuffer, 11, 1);
+ Menu_PrintText(gTileBuffer, 11, 1);
sub_813360C(0);
}
@@ -972,17 +972,17 @@ void PrintMoveInfo(u16 moveId, const u8 *b)
sub_8072C74(str, gOtherText_ThreeDashes2, 32, 2);
else
sub_8072C14(str, gBattleMoves[moveId].power, 32, 2);
- MenuPrint(str, b[0], b[1]);
+ Menu_PrintText(str, b[0], b[1]);
break;
case 4:
if (gBattleMoves[moveId].accuracy == 0)
sub_8072C74(str, gOtherText_ThreeDashes2, 32, 2);
else
sub_8072C14(str, gBattleMoves[moveId].accuracy, 32, 2);
- MenuPrint(str, b[0], b[1]);
+ Menu_PrintText(str, b[0], b[1]);
break;
case 6:
- MenuZeroFillWindowRect(b[0], b[1], b[0], b[1] + 1);
+ Menu_EraseWindowRect(b[0], b[1], b[0], b[1] + 1);
numHearts = gContestEffects[gContestMoves[moveId].effect].appeal / 10;
if (numHearts == 255)
numHearts = 0;
@@ -995,7 +995,7 @@ void PrintMoveInfo(u16 moveId, const u8 *b)
}
break;
case 7:
- MenuZeroFillWindowRect(b[0], b[1], b[0], b[1] + 1);
+ Menu_EraseWindowRect(b[0], b[1], b[0], b[1] + 1);
numHearts = gContestEffects[gContestMoves[moveId].effect].jam / 10;
if (numHearts == 255)
numHearts = 0;
@@ -1037,7 +1037,7 @@ void sub_8133AEC(bool8 contestInfo, int unused)
{
u8 r1 = var * 2 + 9;
- MenuFillWindowRectWithBlankTile(11, r1, 28, 12);
+ Menu_BlankWindowRect(11, r1, 28, 12);
}
}
}
@@ -1045,22 +1045,22 @@ void sub_8133AEC(bool8 contestInfo, int unused)
{
if (contestInfo)
{
- MenuZeroFillWindowRect(gUnknown_08402E24[5][0], gUnknown_08402E24[5][1], gUnknown_08402E24[5][0], gUnknown_08402E24[5][1] + 1);
- MenuZeroFillWindowRect(gUnknown_08402E24[6][0], gUnknown_08402E24[6][1], gUnknown_08402E24[6][0], gUnknown_08402E24[6][1] + 1);
+ Menu_EraseWindowRect(gUnknown_08402E24[5][0], gUnknown_08402E24[5][1], gUnknown_08402E24[5][0], gUnknown_08402E24[5][1] + 1);
+ Menu_EraseWindowRect(gUnknown_08402E24[6][0], gUnknown_08402E24[6][1], gUnknown_08402E24[6][0], gUnknown_08402E24[6][1] + 1);
for (i = 0; i < 16; i++)
gSprites[sLearnMoveStruct->spriteIDs[i + 4]].invisible = TRUE;
}
else
{
- MenuZeroFillWindowRect(gUnknown_08402E24[1][0], gUnknown_08402E24[1][1], gUnknown_08402E24[1][0] + 3, gUnknown_08402E24[1][1] + 1);
- MenuZeroFillWindowRect(gUnknown_08402E24[3][0], gUnknown_08402E24[3][1], gUnknown_08402E24[3][0] + 3, gUnknown_08402E24[3][1] + 1);
+ Menu_EraseWindowRect(gUnknown_08402E24[1][0], gUnknown_08402E24[1][1], gUnknown_08402E24[1][0] + 3, gUnknown_08402E24[1][1] + 1);
+ Menu_EraseWindowRect(gUnknown_08402E24[3][0], gUnknown_08402E24[3][1], gUnknown_08402E24[3][0] + 3, gUnknown_08402E24[3][1] + 1);
}
- MenuZeroFillWindowRect(11, 9, 28, 12);
+ Menu_EraseWindowRect(11, 9, 28, 12);
}
}
void sub_8133CA4(void)
{
- MenuZeroFillWindowRect(21, 7, 27, 12);
+ Menu_EraseWindowRect(21, 7, 27, 12);
sub_8133AEC(sLearnMoveStruct->showContestInfo, 0);
}
diff --git a/src/pokemon/mail.c b/src/pokemon/mail.c
index 2ab05ca2b..c49c6d350 100644
--- a/src/pokemon/mail.c
+++ b/src/pokemon/mail.c
@@ -369,7 +369,7 @@ static u8 sub_80F8A28(void)
RETURN_UP_STATE;
case 9:
- MenuZeroFillScreen();
+ Menu_EraseScreen();
RETURN_UP_STATE;
case 10: CpuFill16(1, (void *)(VRAM + 0x4800), 0x800);
@@ -528,11 +528,11 @@ static void sub_80F8E80(void)
x = ewram0_4.var10C->var4[pos].unk_0_4;
y += ewram0_4.var10C->var4[pos].unk_0_0;
- MenuPrint(ewram0_4.words[pos], ewram0_4.var10C->var3_4 + x, ewram0_4.var10C->var3_0 + y);
+ Menu_PrintText(ewram0_4.words[pos], ewram0_4.var10C->var3_4 + x, ewram0_4.var10C->var3_0 + y);
y += 2;
}
- MenuPrint(ewram0_4.varD8, ewram0_4.varF9, ewram0_4.var10C->var1);
+ Menu_PrintText(ewram0_4.varD8, ewram0_4.varF9, ewram0_4.var10C->var1);
}
static void sub_80F8F18(void)
diff --git a/src/pokemon/mon_markings.c b/src/pokemon/mon_markings.c
index b4144ea34..eeefa8431 100644
--- a/src/pokemon/mon_markings.c
+++ b/src/pokemon/mon_markings.c
@@ -312,7 +312,7 @@ void sub_80F727C(struct PokemonMarkMenu *ptr)
void sub_80F728C(void)
{
- const struct FrameGraphics *frame = GetTextWindowFrameGraphics(gSaveBlock2.optionsWindowFrameType);
+ const struct FrameGraphics *frame = TextWindow_GetFrameGraphics(gSaveBlock2.optionsWindowFrameType);
sMenu->frameTiles = frame->tiles;
sMenu->framePalette = frame->palette;
sMenu->tileLoadState = 0;
diff --git a/src/pokemon/pokeblock_feed.c b/src/pokemon/pokeblock_feed.c
index 8e3adda12..028ae71a0 100644
--- a/src/pokemon/pokeblock_feed.c
+++ b/src/pokemon/pokeblock_feed.c
@@ -559,7 +559,7 @@ static bool8 TransitionToPokeblockFeedScene(void)
gMain.state++;
break;
case 10:
- MenuDrawTextWindow(0, 14, 29, 19);
+ Menu_DrawStdWindowFrame(0, 14, 29, 19);
gMain.state++;
break;
case 11:
@@ -715,7 +715,7 @@ static void LaunchPokeblockFeedTask(u8 a0)
static void Task_WaitForAtePokeblockText(u8 taskID)
{
- if (MenuUpdateWindowText() == 1)
+ if (Menu_UpdateWindowText() == 1)
gTasks[taskID].func = Task_PaletteFadeToReturn;
}
diff --git a/src/pokemon/pokedex.c b/src/pokemon/pokedex.c
index 1c1c71454..83820f4cc 100644
--- a/src/pokemon/pokedex.c
+++ b/src/pokemon/pokedex.c
@@ -2241,7 +2241,7 @@ static void sub_808DEB0(u16 a, u8 b, u8 c, u16 d)
text[3] = EOS;
*(u16 *)(VRAM + d * 0x800 + c * 0x40 + b * 2) = unk[0];
*(u16 *)(VRAM + d * 0x800 + (c + 1) * 0x40 + b * 2) = unk[1];
- MenuPrint(text, b - 15, c);
+ Menu_PrintText(text, b - 15, c);
}
static void sub_808DF88(u16 a, u8 b, u8 c, u16 d)
@@ -2961,20 +2961,20 @@ static void Task_InitPageScreenMultistep(u8 taskId)
else
sub_8091154(gUnknown_0202FFBC->dexNum, 0xD, 3);
sub_80911C8(gUnknown_0202FFBC->dexNum, 0x10, 3);
- MenuPrint(gDexText_UnknownPoke, CATEGORY_LEFT, 5);
- MenuPrint(gDexText_UnknownHeight, 16, 7);
- MenuPrint(gDexText_UnknownWeight, 16, 9);
+ Menu_PrintText(gDexText_UnknownPoke, CATEGORY_LEFT, 5);
+ Menu_PrintText(gDexText_UnknownHeight, 16, 7);
+ Menu_PrintText(gDexText_UnknownWeight, 16, 9);
if (gUnknown_0202FFBC->owned)
{
sub_8091304(gPokedexEntries[gUnknown_0202FFBC->dexNum].categoryName, CATEGORY_LEFT, 5);
sub_8091458(gPokedexEntries[gUnknown_0202FFBC->dexNum].height, 16, 7);
sub_8091564(gPokedexEntries[gUnknown_0202FFBC->dexNum].weight, 16, 9);
- MenuPrint(gPokedexEntries[gUnknown_0202FFBC->dexNum].descriptionPage1, 2, 13);
+ Menu_PrintText(gPokedexEntries[gUnknown_0202FFBC->dexNum].descriptionPage1, 2, 13);
sub_80917CC(14, 0x3FC);
}
else
{
- MenuPrint(gUnknown_083A05F8, 2, 13);
+ Menu_PrintText(gUnknown_083A05F8, 2, 13);
LoadPalette(gPlttBufferUnfaded + 1, 0x31, 0x1E);
}
gMain.state++;
@@ -3211,7 +3211,7 @@ static void Task_InitCryScreenMultistep(u8 taskId)
gMain.state++;
break;
case 4:
- MenuPrint(gDexText_CryOf, 10, 4);
+ Menu_PrintText(gDexText_CryOf, 10, 4);
sub_8091260(gUnknown_0202FFBC->dexNum, 10, 6, 2);
gMain.state++;
break;
@@ -3853,13 +3853,13 @@ static void sub_8090750(u8 taskId)
else
sub_8091154(dexNum, 13, 3);
sub_80911C8(dexNum, 16, 3);
- MenuPrint(gDexText_UnknownPoke, CATEGORY_LEFT, 5);
- MenuPrint(gDexText_UnknownHeight, 16, 7);
- MenuPrint(gDexText_UnknownWeight, 16, 9);
+ Menu_PrintText(gDexText_UnknownPoke, CATEGORY_LEFT, 5);
+ Menu_PrintText(gDexText_UnknownHeight, 16, 7);
+ Menu_PrintText(gDexText_UnknownWeight, 16, 9);
sub_8091304(gPokedexEntries[dexNum].categoryName, CATEGORY_LEFT, 5);
sub_8091458(gPokedexEntries[dexNum].height, 16, 7);
sub_8091564(gPokedexEntries[dexNum].weight, 16, 9);
- MenuPrint(gPokedexEntries[dexNum].descriptionPage1, 2, 13);
+ Menu_PrintText(gPokedexEntries[dexNum].descriptionPage1, 2, 13);
sub_80917CC(14, 0x3FC);
gTasks[taskId].data[0]++;
break;
@@ -3906,8 +3906,8 @@ static void sub_8090A3C(u8 taskId)
{
u16 r4 = gTasks[taskId].data[1];
- MenuZeroFillWindowRect(2, 13, 27, 19);
- MenuPrint(gPokedexEntries[r4].descriptionPage2, 2, 13);
+ Menu_EraseWindowRect(2, 13, 27, 19);
+ Menu_PrintText(gPokedexEntries[r4].descriptionPage2, 2, 13);
(*(u16 *)(VRAM + 0x7ACA))++;
(*(u16 *)(VRAM + 0x7B0A))++;
gTasks[taskId].data[4] = 1;
@@ -3970,8 +3970,8 @@ static void sub_8090C68(void)
{
if (gPokedexView->descriptionPageNum == 0)
{
- MenuZeroFillWindowRect(2, 13, 27, 19);
- MenuPrint(gPokedexEntries[gUnknown_0202FFBC->dexNum].descriptionPage2, 2, 13);
+ Menu_EraseWindowRect(2, 13, 27, 19);
+ Menu_PrintText(gPokedexEntries[gUnknown_0202FFBC->dexNum].descriptionPage2, 2, 13);
gPokedexView->descriptionPageNum = 1;
(*(u16 *)(VRAM + 0x7ACA))++;
(*(u16 *)(VRAM + 0x7B0A))++;
@@ -3979,8 +3979,8 @@ static void sub_8090C68(void)
}
else
{
- MenuZeroFillWindowRect(2, 13, 27, 19);
- MenuPrint(gPokedexEntries[gUnknown_0202FFBC->dexNum].descriptionPage1, 2, 13);
+ Menu_EraseWindowRect(2, 13, 27, 19);
+ Menu_PrintText(gPokedexEntries[gUnknown_0202FFBC->dexNum].descriptionPage1, 2, 13);
gPokedexView->descriptionPageNum = 0;
(*(u16 *)(VRAM + 0x7ACA))--;
(*(u16 *)(VRAM + 0x7B0A))--;
@@ -4190,7 +4190,7 @@ static void sub_8091154(u16 order, u8 b, u8 c)
str[1] = CHAR_0 + (order % 100) / 10;
str[2] = CHAR_0 + (order % 100) % 10;
str[3] = EOS;
- MenuPrint(str, b, c);
+ Menu_PrintText(str, b, c);
}
static u8 sub_80911C8(u16 num, u8 b, u8 c)
@@ -4212,7 +4212,7 @@ static u8 sub_80911C8(u16 num, u8 b, u8 c)
str[i] = 0xAE;
break;
}
- MenuPrint(str, b, c);
+ Menu_PrintText(str, b, c);
return i;
}
@@ -4237,7 +4237,7 @@ static u8 sub_8091260(u16 num, u8 b, u8 c, u8 d)
break;
}
end[i] = EOS;
- MenuPrint(str, b, c);
+ Menu_PrintText(str, b, c);
return i;
}
@@ -4297,7 +4297,7 @@ void unref_sub_80913A4(u16 a, u8 left, u8 top)
str[3] = CHAR_PERIOD;
str[4] = CHAR_0 + ((a % 1000) % 100) % 10;
str[5] = EOS;
- MenuPrint(str, left, top);
+ Menu_PrintText(str, left, top);
}
#elif GERMAN
void unref_sub_80913A4(u16 arg0, u8 left, u8 top) {
@@ -4341,7 +4341,7 @@ void unref_sub_80913A4(u16 arg0, u8 left, u8 top) {
buffer[r6++] = EOS;
buffer[2] = offset;
- MenuPrint(buffer, left, top);
+ Menu_PrintText(buffer, left, top);
}
#endif
@@ -4378,7 +4378,7 @@ static void sub_8091458(u16 height, u8 left, u8 top)
buffer[i++] = (inches % 10) + CHAR_0;
buffer[i++] = CHAR_DOUBLE_PRIME;
buffer[i++] = EOS;
- MenuPrint(buffer, left, top);
+ Menu_PrintText(buffer, left, top);
}
#else
static void sub_8091458(u16 height, u8 left, u8 top)
@@ -4448,7 +4448,7 @@ static void sub_8091564(u16 weight, u8 left, u8 top)
buffer[i++] = CHAR_s;
buffer[i++] = CHAR_PERIOD;
buffer[i++] = EOS;
- MenuPrint(buffer, left, top);
+ Menu_PrintText(buffer, left, top);
}
#else
static void sub_8091564(u16 arg0, u8 left, u8 top)
@@ -5036,7 +5036,7 @@ static void sub_8092644(u8 taskId)
{
sub_814ADC8();
PlaySE(SE_PIN);
- MenuZeroFillWindowRect(18, 1, 28, 12);
+ Menu_EraseWindowRect(18, 1, 28, 12);
sub_8092C8C(1);
gTasks[taskId].func = sub_809217C;
return;
@@ -5045,7 +5045,7 @@ static void sub_8092644(u8 taskId)
{
sub_814ADC8();
PlaySE(SE_BOWA);
- MenuZeroFillWindowRect(18, 1, 28, 12);
+ Menu_EraseWindowRect(18, 1, 28, 12);
sub_8092C8C(1);
*p1 = gTasks[taskId].data[14];
*p2 = gTasks[taskId].data[15];
@@ -5374,13 +5374,13 @@ static void sub_8092D78(u8 taskId)
u16 i;
u16 j;
- MenuZeroFillWindowRect(18, 1, 28, 12);
+ Menu_EraseWindowRect(18, 1, 28, 12);
for (i = 0, j = *r7; i < 6 && r6[j].text2 != NULL; i++, j++)
{
#ifndef NONMATCHING
j += 0; // Useless statement needed to match
#endif
- MenuPrint(r6[j].text2, 18, i * 2 + 1);
+ Menu_PrintText(r6[j].text2, 18, i * 2 + 1);
}
sub_8091E20(r6[*r8 + *r7].text1);
}
diff --git a/src/pokemon/pokemon_menu.c b/src/pokemon/pokemon_menu.c
index 6c3c6c2b8..da9a18148 100644
--- a/src/pokemon/pokemon_menu.c
+++ b/src/pokemon/pokemon_menu.c
@@ -229,7 +229,7 @@ static void sub_8089A8C(void)
static void sub_8089BDC(u8 arg0, u8 arg1, u8 arg2, u8 noOfOptions, const struct MenuAction2 *menuActions, const u8 *order, u8 arg6)
{
PrintPartyMenuPromptText(5, arg6);
- MenuDrawTextWindow(arg0, arg1, arg0 + arg2, (noOfOptions * 2) + arg1 + 1);
+ Menu_DrawStdWindowFrame(arg0, arg1, arg0 + arg2, (noOfOptions * 2) + arg1 + 1);
PrintMenuItemsReordered(arg0 + 1, arg1 + 1, noOfOptions, menuActions, order);
}
@@ -279,13 +279,13 @@ static void sub_8089D94(u8 taskID)
if ((gMain.newAndRepeatedKeys & DPAD_ANY) == DPAD_UP)
{
PlaySE(SE_SELECT);
- sPokeMenuCursorPos = MoveMenuCursor(-1);
+ sPokeMenuCursorPos = Menu_MoveCursor(-1);
sub_808B5B4(taskID);
}
else if ((gMain.newAndRepeatedKeys & DPAD_ANY) == DPAD_DOWN)
{
PlaySE(SE_SELECT);
- sPokeMenuCursorPos = MoveMenuCursor(1);
+ sPokeMenuCursorPos = Menu_MoveCursor(1);
sub_808B5B4(taskID);
}
else if (gMain.newKeys & A_BUTTON)
@@ -363,7 +363,7 @@ static void PokemonMenu_Summary(u8 taskID)
void DoPokemonMenu_Switch(u8 taskID)
{
SetTaskFuncWithFollowupFunc(taskID, SetupDefaultPartyMenuSwitchPokemon, HandleDefaultPartyMenu);
- MenuZeroFillWindowRect(19, 0, 29, 19);
+ Menu_EraseWindowRect(19, 0, 29, 19);
}
static void PokemonMenu_Switch(u8 taskID)
@@ -378,12 +378,12 @@ static void sub_808A060(u8 taskID)
{
if (gMain.newKeys == DPAD_UP && sPokeMenuCursorPos != 0)
{
- sPokeMenuCursorPos = MoveMenuCursor(-1);
+ sPokeMenuCursorPos = Menu_MoveCursor(-1);
PlaySE(SE_SELECT);
}
if (gMain.newKeys == DPAD_DOWN && sPokeMenuCursorPos != 2)
{
- sPokeMenuCursorPos = MoveMenuCursor(1);
+ sPokeMenuCursorPos = Menu_MoveCursor(1);
PlaySE(SE_SELECT);
}
if (gMain.newKeys & A_BUTTON)
@@ -409,7 +409,7 @@ static void PokemonMenu_Item(u8 taskID)
{
HandleDestroyMenuCursors();
sPokeMenuCursorPos = 0;
- MenuZeroFillWindowRect(19, 0, 29, 19);
+ Menu_EraseWindowRect(19, 0, 29, 19);
gTasks[taskID].func = sub_808A100;
}
@@ -442,7 +442,7 @@ static void sub_808A228(u8 taskID)
}
else
{
- MenuZeroFillWindowRect(0, 0, 29, 19);
+ Menu_EraseWindowRect(0, 0, 29, 19);
PrintPartyMenuPromptText(0, 0);
gTasks[taskID].func = HandleDefaultPartyMenu;
}
@@ -601,7 +601,7 @@ static void sub_808A678(u8 taskID)
static void PokemonMenu_TakeItem(u8 taskID)
{
HandleDestroyMenuCursors();
- MenuZeroFillWindowRect(19, 0, 29, 19);
+ Menu_EraseWindowRect(19, 0, 29, 19);
sub_806D5A4();
PartyMenuTryGiveMonHeldItem_806ECE8(taskID, sub_808A678);
}
@@ -609,7 +609,7 @@ static void PokemonMenu_TakeItem(u8 taskID)
static void PokemonMenu_TakeMail(u8 taskID)
{
HandleDestroyMenuCursors();
- MenuZeroFillWindowRect(19, 0, 29, 19);
+ Menu_EraseWindowRect(19, 0, 29, 19);
sub_806D5A4();
DoTakeMail(taskID, sub_808A678);
}
@@ -618,7 +618,7 @@ static void PokemonMenu_Mail(u8 taskID)
{
HandleDestroyMenuCursors();
sPokeMenuCursorPos = 0;
- MenuZeroFillWindowRect(19, 0, 29, 19);
+ Menu_EraseWindowRect(19, 0, 29, 19);
ShowPartyPopupMenu(0, &sUnknown_0839F584, (void*) sPokemonMenuActions, 0);
gTasks[taskID].func = sub_808A73C;
}
@@ -629,17 +629,17 @@ static void sub_808A73C(u8 taskID)
{
PlaySE(SE_SELECT);
if (sPokeMenuCursorPos == 0)
- sPokeMenuCursorPos = MoveMenuCursor(sUnknown_0839F584.numChoices - 1);
+ sPokeMenuCursorPos = Menu_MoveCursor(sUnknown_0839F584.numChoices - 1);
else
- sPokeMenuCursorPos = MoveMenuCursor(-1);
+ sPokeMenuCursorPos = Menu_MoveCursor(-1);
}
if (gMain.newAndRepeatedKeys == DPAD_DOWN)
{
PlaySE(SE_SELECT);
if (sPokeMenuCursorPos == sUnknown_0839F584.numChoices - 1)
- sPokeMenuCursorPos = MoveMenuCursor(1 - sUnknown_0839F584.numChoices);
+ sPokeMenuCursorPos = Menu_MoveCursor(1 - sUnknown_0839F584.numChoices);
else
- sPokeMenuCursorPos = MoveMenuCursor(1);
+ sPokeMenuCursorPos = Menu_MoveCursor(1);
}
if (gMain.newKeys & A_BUTTON)
{
@@ -679,7 +679,7 @@ static void sub_808A8A8(void)
static void sub_808A8D4(u8 taskID)
{
sPokeMenuCursorPos = 0;
- MenuZeroFillWindowRect(19, 0, 29, 19);
+ Menu_EraseWindowRect(19, 0, 29, 19);
PrintPartyMenuPromptText(0, 0);
gTasks[taskID].func = HandleDefaultPartyMenu;
}
@@ -695,7 +695,7 @@ static void PokemonMenu_CancelSubmenu(u8 taskID)
{
HandleDestroyMenuCursors();
PlaySE(SE_SELECT);
- MenuZeroFillWindowRect(19, 0, 29, 19);
+ Menu_EraseWindowRect(19, 0, 29, 19);
sub_806D5A4();
sub_8089C7C(sPokeMenuCursorPos);
gTasks[taskID].func = sub_8089D94;
@@ -715,7 +715,7 @@ static void PokemonMenu_FieldMove(u8 taskID)
tFieldMoveId = sPokeMenuOptionsOrder[sPokeMenuCursorPos] - POKEMENU_FIRST_FIELD_MOVE_ID;
if (sub_80F9344() == TRUE)
{
- MenuZeroFillWindowRect(19, 0, 29, 19);
+ Menu_EraseWindowRect(19, 0, 29, 19);
if (IS_SOFTBOILED_MILKDRINK(tFieldMoveId))
PrintPartyMenuPromptText(9, 0);
else
@@ -725,7 +725,7 @@ static void PokemonMenu_FieldMove(u8 taskID)
else if (tFieldMoveId <= 7 && FlagGet(FLAG_BADGE01_GET + tFieldMoveId) != TRUE)
{
// can't use a field HM move without a proper badge
- MenuZeroFillWindowRect(19, 0, 29, 19);
+ Menu_EraseWindowRect(19, 0, 29, 19);
sub_806D5A4();
sub_806E834(gOtherText_CantBeUsedBadge, 1);
gTasks[taskID].func = sub_808AAF0;
@@ -745,7 +745,7 @@ static void PokemonMenu_FieldMove(u8 taskID)
}
else
{
- MenuZeroFillWindowRect(19, 0, 29, 19);
+ Menu_EraseWindowRect(19, 0, 29, 19);
if (IS_SURF(tFieldMoveId) && TestPlayerAvatarFlags(8))
PrintPartyMenuPromptText(8, 0);
else
@@ -759,7 +759,7 @@ static void sub_808AAF0(u8 taskID)
{
if (gUnknown_0202E8F6 != 1 && (gMain.newKeys & A_BUTTON || gMain.newKeys & B_BUTTON))
{
- MenuZeroFillWindowRect(0, 14, 29, 19);
+ Menu_EraseWindowRect(0, 14, 29, 19);
PokemonMenu_Cancel(taskID);
}
}
@@ -798,7 +798,7 @@ static void sub_808ABF4(u8 taskID)
{
if (gMain.newKeys & A_BUTTON || gMain.newKeys & B_BUTTON)
{
- MenuZeroFillWindowRect(1, 17, 28, 18);
+ Menu_EraseWindowRect(1, 17, 28, 18);
PokemonMenu_Cancel(taskID);
}
}
diff --git a/src/pokemon/pokemon_storage_system.c b/src/pokemon/pokemon_storage_system.c
index 4a68b846a..001cebe45 100644
--- a/src/pokemon/pokemon_storage_system.c
+++ b/src/pokemon/pokemon_storage_system.c
@@ -16,7 +16,7 @@ EWRAM_DATA struct PokemonStorage gPokemonStorage = {0};
void sub_8098898(u8 index) {
u8 *ptr;
- MenuDrawTextWindow(10, 16, 29, 19);
+ Menu_DrawStdWindowFrame(10, 16, 29, 19);
switch (gUnknown_083B6DF4[index].format)
{
@@ -89,5 +89,5 @@ void sub_8098898(u8 index) {
}
ptr[0] = EOS;
- MenuPrint(gUnk2002694, 11, 17);
+ Menu_PrintText(gUnk2002694, 11, 17);
}
diff --git a/src/pokemon/pokemon_summary_screen.c b/src/pokemon/pokemon_summary_screen.c
index 9563bc08f..0887c6648 100644
--- a/src/pokemon/pokemon_summary_screen.c
+++ b/src/pokemon/pokemon_summary_screen.c
@@ -1037,7 +1037,7 @@ static void sub_809E260(u8 taskId)
{
if (pssData.page == PSS_PAGE_CONTEST_MOVES && (pssData.selectedMoveIndex != 4 || pssData.moveToLearn != 0))
{
- MenuZeroFillWindowRect(0, 14, 9, 18);
+ Menu_EraseWindowRect(0, 14, 9, 18);
}
SummaryScreenHandleLeftRightInput(taskId, -1);
@@ -1048,7 +1048,7 @@ static void sub_809E260(u8 taskId)
{
if (pssData.page == PSS_PAGE_BATTLE_MOVES && (pssData.selectedMoveIndex != 4 || pssData.moveToLearn != 0))
{
- MenuZeroFillWindowRect(0, 14, 9, 18);
+ Menu_EraseWindowRect(0, 14, 9, 18);
}
SummaryScreenHandleLeftRightInput(taskId, 1);
@@ -1482,8 +1482,8 @@ static void sub_809EAC8(u8 taskId)
sub_80A1B1C(9);
sub_80A16CC(1);
- MenuZeroFillWindowRect(15, 12, 28, 13);
- MenuZeroFillWindowRect(11, 15, 28, 18);
+ Menu_EraseWindowRect(15, 12, 28, 13);
+ Menu_EraseWindowRect(11, 15, 28, 18);
pssData.headerActionTextId = 6;
PrintSummaryWindowHeaderText();
@@ -2371,7 +2371,7 @@ void sub_809F814(u8 taskId)
{
if (pssData.page == PSS_PAGE_CONTEST_MOVES && (pssData.selectedMoveIndex != 4 || pssData.moveToLearn != 0))
{
- MenuZeroFillWindowRect(0, 14, 9, 18);
+ Menu_EraseWindowRect(0, 14, 9, 18);
}
gTasks[taskId].func = sub_809E260;
@@ -2387,7 +2387,7 @@ void sub_809F814(u8 taskId)
{
if (pssData.page == PSS_PAGE_BATTLE_MOVES && (pssData.selectedMoveIndex != 4 || pssData.moveToLearn != 0))
{
- MenuZeroFillWindowRect(0, 14, 9, 18);
+ Menu_EraseWindowRect(0, 14, 9, 18);
}
gTasks[taskId].func = sub_809E260;
@@ -2414,8 +2414,8 @@ static void sub_809F9D0(u8 taskId, u8 b)
sub_80A1488(-2, 4);
sub_80A1654(-2, 4);
- MenuZeroFillWindowRect(11, 15, 28, 18);
- MenuPrint(gOtherText_CantForgetHMs, 11, 15);
+ Menu_EraseWindowRect(11, 15, 28, 18);
+ Menu_PrintText(gOtherText_CantForgetHMs, 11, 15);
gTasks[taskId].func = sub_809F814;
}
@@ -2494,9 +2494,9 @@ static void sub_809FAC8(struct Pokemon *mon)
if (GetMonData(mon, MON_DATA_IS_EGG))
{
- MenuZeroFillWindowRect(1, 2, 4, 3);
- MenuZeroFillWindowRect(3, 16, 9, 17);
- MenuZeroFillWindowRect(0, 12, 11, 15);
+ Menu_EraseWindowRect(1, 2, 4, 3);
+ Menu_EraseWindowRect(3, 16, 9, 17);
+ Menu_EraseWindowRect(0, 12, 11, 15);
GetMonNickname(mon, gStringVar1);
sub_80A1FF8(gStringVar1, 13, 3, 16);
LoadPalette(sUnknown_083C157C, 4, 2);
@@ -2520,7 +2520,7 @@ static void sub_809FAC8(struct Pokemon *mon)
}
else
{
- MenuZeroFillWindowRect(1, 2, 4, 3);
+ Menu_EraseWindowRect(1, 2, 4, 3);
}
buffer = gStringVar1;
@@ -2530,7 +2530,7 @@ static void sub_809FAC8(struct Pokemon *mon)
buffer[1] = 0x13;
buffer[2] = 0x3C;
buffer[3] = EOS;
- MenuPrint(gStringVar1, 1, 12);
+ Menu_PrintText(gStringVar1, 1, 12);
sub_80A0958(mon);
}
@@ -2545,12 +2545,12 @@ static void sub_809FBE4(void)
sub_80A1918(i, 1);
}
- MenuZeroFillWindowRect(11, 4, 29, 18);
+ Menu_EraseWindowRect(11, 4, 29, 18);
}
static void sub_809FC0C(void)
{
- MenuPrint(gOtherText_Type2, 11, 6);
+ Menu_PrintText(gOtherText_Type2, 11, 6);
GetStringCenterAlignXOffset(0, 22, 4);
GetStringCenterAlignXOffset(2, 23, 4);
}
@@ -2569,7 +2569,7 @@ static void sub_809FC34(struct Pokemon *mon)
sub_80A1918(i, 1);
}
- MenuZeroFillWindowRect(11, 9, 28, 12);
+ Menu_EraseWindowRect(11, 9, 28, 12);
if (GetMonData(mon, MON_DATA_IS_EGG))
{
buffer = gStringVar1;
@@ -2580,7 +2580,7 @@ static void sub_809FC34(struct Pokemon *mon)
buffer[1] = 0x13;
buffer[2] = 0x4E;
buffer[3] = EOS;
- MenuPrint(gStringVar1, 11, 4);
+ Menu_PrintText(gStringVar1, 11, 4);
sub_80A1EF8(gOtherText_FiveQuestionsAndSlash, 13, 193, 32, 1);
sub_80A198C(9, 120, 48, 0);
@@ -2588,19 +2588,19 @@ static void sub_809FC34(struct Pokemon *mon)
friendship = GetMonData(mon, MON_DATA_FRIENDSHIP);
if (friendship < 6)
{
- MenuPrint(gOtherText_EggAbout, 11, 9);
+ Menu_PrintText(gOtherText_EggAbout, 11, 9);
}
else if (friendship < 11)
{
- MenuPrint(gOtherText_EggSoon, 11, 9);
+ Menu_PrintText(gOtherText_EggSoon, 11, 9);
}
else if (friendship < 41)
{
- MenuPrint(gOtherText_EggSomeTime, 11, 9);
+ Menu_PrintText(gOtherText_EggSomeTime, 11, 9);
}
else
{
- MenuPrint(gOtherText_EggLongTime, 11, 9);
+ Menu_PrintText(gOtherText_EggLongTime, 11, 9);
}
PokemonSummaryScreen_PrintEggTrainerMemo(mon, 11, 14);
@@ -2629,7 +2629,7 @@ static void sub_809FC34(struct Pokemon *mon)
buffer[1] = 0x13;
buffer[2] = 0x4E;
buffer[3] = EOS;
- MenuPrint(gStringVar1, 11, 4);
+ Menu_PrintText(gStringVar1, 11, 4);
sub_80A1F98(GetMonData(mon, MON_DATA_OT_ID) & 0xFFFF, 13, 5, 2, 193, 32, 1);
@@ -2642,7 +2642,7 @@ static void sub_809FC34(struct Pokemon *mon)
ability = GetAbilityBySpecies(GetMonData(mon, MON_DATA_SPECIES), GetMonData(mon, MON_DATA_ALT_ABILITY));
sub_80A1FF8(gAbilityNames[ability], 13, 11, 9);
- MenuPrint(gAbilityDescriptions[ability], 11, 11);
+ Menu_PrintText(gAbilityDescriptions[ability], 11, 11);
PokemonSummaryScreen_PrintTrainerMemo(mon, 11, 14);
}
@@ -2656,17 +2656,17 @@ static void sub_809FE6C(struct Pokemon *mon)
static void sub_809FE80(void)
{
- MenuZeroFillWindowRect(14, 4, 18, 5);
- MenuZeroFillWindowRect(25, 4, 30, 5);
- MenuZeroFillWindowRect(11, 9, 28, 12);
- MenuZeroFillWindowRect(11, 14, 28, 17);
+ Menu_EraseWindowRect(14, 4, 18, 5);
+ Menu_EraseWindowRect(25, 4, 30, 5);
+ Menu_EraseWindowRect(11, 9, 28, 12);
+ Menu_EraseWindowRect(11, 14, 28, 17);
}
static void sub_809FEB8(void)
{
sub_80A1FF8(gOtherText_ExpPoints, 13, 11, 14);
sub_80A1FF8(gOtherText_NextLv, 13, 11, 16);
- MenuPrint(gOtherText_Terminator18, 21, 16);
+ Menu_PrintText(gOtherText_Terminator18, 21, 16);
sub_80A1F48(gOtherText_HP, 13, 11, 7, 42);
sub_80A1F48(gOtherText_Attack, 13, 11, 9, 42);
@@ -2727,12 +2727,12 @@ static void sub_80A0090(struct Pokemon *mon)
static void sub_80A00A4(void)
{
- MenuZeroFillWindowRect(11, 4, 19, 5);
- MenuZeroFillWindowRect(16, 7, 21, 8);
- MenuZeroFillWindowRect(17, 9, 21, 12);
- MenuZeroFillWindowRect(27, 7, 29, 12);
- MenuZeroFillWindowRect(22, 14, 28, 15);
- MenuZeroFillWindowRect(23, 16, 28, 17);
+ Menu_EraseWindowRect(11, 4, 19, 5);
+ Menu_EraseWindowRect(16, 7, 21, 8);
+ Menu_EraseWindowRect(17, 9, 21, 12);
+ Menu_EraseWindowRect(27, 7, 29, 12);
+ Menu_EraseWindowRect(22, 14, 28, 15);
+ Menu_EraseWindowRect(23, 16, 28, 17);
}
static void sub_80A00F4(u8 a)
@@ -2770,7 +2770,7 @@ static void sub_80A015C(struct Pokemon *mon)
{
sub_80A1918(i, 1);
sub_80A1FF8(gOtherText_OneDash, 13, 15, (2 * i) + 4);
- MenuPrint(gOtherText_TwoDashes, 26, (2 * i) + 4);
+ Menu_PrintText(gOtherText_TwoDashes, 26, (2 * i) + 4);
}
else
{
@@ -2793,7 +2793,7 @@ static void sub_80A015C(struct Pokemon *mon)
buffer = sub_8072C14(buffer, curPP, 14, 1);
*buffer++ = CHAR_SLASH;
sub_8072C14(buffer, maxPP, 32, 1);
- MenuPrint(gStringVar1, 25, (2 * i) + 4);
+ Menu_PrintText(gStringVar1, 25, (2 * i) + 4);
}
}
}
@@ -2829,7 +2829,7 @@ static void sub_80A029C(struct Pokemon *mon)
buffer = sub_8072C14(buffer, pp, 14, 1);
*buffer++ = CHAR_SLASH;
buffer = sub_8072C14(buffer, pp, 32, 1);
- MenuPrint(gStringVar1, 25, 12);
+ Menu_PrintText(gStringVar1, 25, 12);
}
static void sub_80A0390(void)
@@ -2838,7 +2838,7 @@ static void sub_80A0390(void)
for (i = 0; i < MAX_MON_MOVES; i++)
{
- MenuZeroFillWindowRect(15, (i * 2) + 4, 28, (i * 2) + 5);
+ Menu_EraseWindowRect(15, (i * 2) + 4, 28, (i * 2) + 5);
}
}
@@ -2883,7 +2883,7 @@ void sub_80A03F0(struct Pokemon *mon, u8 *selectedMoveIndex)
static void sub_80A0428(struct Pokemon *mon, u8 *selectedMoveIndex)
{
u16 move = sub_80A03BC(mon, *selectedMoveIndex);
- MenuZeroFillWindowRect(11, 15, 28, 18);
+ Menu_EraseWindowRect(11, 15, 28, 18);
if (pssData.page == PSS_PAGE_BATTLE_MOVES)
{
@@ -2901,14 +2901,14 @@ static void sub_80A046C(u16 move)
{
if (move == 0xFFFF) return;
- MenuPrint(gMoveDescriptions[move - 1], 11, 15);
+ Menu_PrintText(gMoveDescriptions[move - 1], 11, 15);
}
static void sub_80A0498(u16 move)
{
if (move == 0xFFFF) return;
- MenuPrint(gContestEffectStrings[gContestMoves[move].effect], 11, 15);
+ Menu_PrintText(gContestEffectStrings[gContestMoves[move].effect], 11, 15);
}
static void sub_80A04CC(u16 move)
@@ -2921,26 +2921,26 @@ static void sub_80A04CC(u16 move)
{
buffer = gStringVar1;
buffer = sub_8072C74(buffer, gOtherText_ThreeDashes2, 21, 1);
- MenuPrint(gStringVar1, 7, 15);
+ Menu_PrintText(gStringVar1, 7, 15);
}
else
{
buffer = gStringVar1;
buffer = sub_8072C14(buffer, gBattleMoves[move].power, 21, 1);
- MenuPrint(gStringVar1, 7, 15);
+ Menu_PrintText(gStringVar1, 7, 15);
}
if (gBattleMoves[move].accuracy == 0)
{
buffer = gStringVar1;
buffer = sub_8072C74(buffer, gOtherText_ThreeDashes2, 21, 1);
- MenuPrint(gStringVar1, 7, 17);
+ Menu_PrintText(gStringVar1, 7, 17);
}
else
{
buffer = gStringVar1;
buffer = sub_8072C14(buffer, gBattleMoves[move].accuracy, 21, 1);
- MenuPrint(gStringVar1, 7, 17);
+ Menu_PrintText(gStringVar1, 7, 17);
}
}
@@ -3153,7 +3153,7 @@ static void PokemonSummaryScreen_PrintEggTrainerMemo(struct Pokemon *mon, u8 lef
if (!(gameMet == VERSION_RUBY || gameMet == VERSION_SAPPHIRE || gameMet == VERSION_EMERALD))
{
- MenuPrint(gOtherText_EggObtainedInTrade, left, top);
+ Menu_PrintText(gOtherText_EggObtainedInTrade, left, top);
return;
}
@@ -3162,13 +3162,13 @@ static void PokemonSummaryScreen_PrintEggTrainerMemo(struct Pokemon *mon, u8 lef
if (locationMet == 255)
{
// Eggs received from Pokemon Box.
- MenuPrint(gOtherText_EggNicePlace, left, top);
+ Menu_PrintText(gOtherText_EggNicePlace, left, top);
return;
}
if (!PokemonSummaryScreen_CheckOT(mon))
{
- MenuPrint(gOtherText_EggObtainedInTrade, left, top);
+ Menu_PrintText(gOtherText_EggObtainedInTrade, left, top);
return;
}
@@ -3176,11 +3176,11 @@ static void PokemonSummaryScreen_PrintEggTrainerMemo(struct Pokemon *mon, u8 lef
if (locationMet == 253)
{
- MenuPrint(gOtherText_EggHotSprings, left, top);
+ Menu_PrintText(gOtherText_EggHotSprings, left, top);
return;
}
- MenuPrint(gOtherText_EggDayCare, left, top);
+ Menu_PrintText(gOtherText_EggDayCare, left, top);
}
static void PokemonSummaryScreen_PrintTrainerMemo(struct Pokemon *mon, u8 left, u8 top)
@@ -3285,7 +3285,7 @@ static void PokemonSummaryScreen_PrintTrainerMemo(struct Pokemon *mon, u8 left,
}
}
- MenuPrint(gStringVar4, left++, top++);
+ Menu_PrintText(gStringVar4, left++, top++);
}
static void sub_80A0958(struct Pokemon *mon)
@@ -3310,8 +3310,8 @@ static void sub_80A0958(struct Pokemon *mon)
buffer[2] = 0x50;
buffer[3] = EOS;
- MenuPrint(gStringVar1, 0, 14);
- MenuZeroFillWindowRect(3, 16, 9, 17);
+ Menu_PrintText(gStringVar1, 0, 14);
+ Menu_EraseWindowRect(3, 16, 9, 17);
level = GetMonData(mon, MON_DATA_LEVEL);
@@ -3325,7 +3325,7 @@ static void sub_80A0958(struct Pokemon *mon)
buffer[2] = 0x20;
buffer[3] = EOS;
- MenuPrint(gStringVar1, 3, 16);
+ Menu_PrintText(gStringVar1, 3, 16);
sub_80A0A2C(mon, 7, 16);
}
@@ -3343,7 +3343,7 @@ static void sub_80A0A2C(struct Pokemon *mon, u8 left, u8 top)
{
default:
bottom = top + 1;
- MenuZeroFillWindowRect(left, top, left, bottom);
+ Menu_EraseWindowRect(left, top, left, bottom);
return;
case MON_MALE:
genderSymbol = gOtherText_MaleSymbol2;
@@ -3406,7 +3406,7 @@ static void PrintNumRibbons(struct Pokemon *mon)
ConvertIntToDecimalStringN(&text[3], numRibbons, 1, 2);
}
- MenuPrint(sUnknown_083C15AE, 21, 4);
+ Menu_PrintText(sUnknown_083C15AE, 21, 4);
}
static void PrintHeldItemName(u16 itemId, u8 left, u8 top)
@@ -3427,7 +3427,7 @@ static void PrintHeldItemName(u16 itemId, u8 left, u8 top)
CopyItemName(itemId, gStringVar1);
}
- MenuPrint(sUnknown_083C15B4, left, top);
+ Menu_PrintText(sUnknown_083C15B4, left, top);
}
static void DrawExperienceProgressBar(struct Pokemon *mon, u8 left, u8 top)
@@ -3518,7 +3518,7 @@ static void PrintSummaryWindowHeaderText(void)
buffer[2] = 0x58;
buffer[3] = EOS;
- MenuPrint(gStringVar1, 0, 0);
+ Menu_PrintText(gStringVar1, 0, 0);
if (pssData.headerActionTextId != 0)
{
@@ -3527,7 +3527,7 @@ static void PrintSummaryWindowHeaderText(void)
}
else
{
- MenuZeroFillWindowRect(23, 0, 24, 1);
+ Menu_EraseWindowRect(23, 0, 24, 1);
}
buffer = gStringVar1;
@@ -3539,7 +3539,7 @@ static void PrintSummaryWindowHeaderText(void)
buffer[2] = 0x28;
buffer[3] = EOS;
- MenuPrint(gStringVar1, 25, 0);
+ Menu_PrintText(gStringVar1, 25, 0);
}
// If the given pokemon previously had the pokerus virus, a small
@@ -4138,7 +4138,7 @@ static void sub_80A12D0(s8 a)
{
u8 newTaskId;
- MenuZeroFillWindowRect(1, 18, 5, 19);
+ Menu_EraseWindowRect(1, 18, 5, 19);
sub_80A18E4(29);
newTaskId = CreateTask(sub_80A1048, 0);
@@ -4194,14 +4194,14 @@ static void sub_80A12D0(s8 a)
// }
// else
// {
-// MenuZeroFillWindowRect(0, 19, 9, 19);
+// Menu_EraseWindowRect(0, 19, 9, 19);
// }
// if (gTasks[taskId].data[0] == 0 || gTasks[taskId].data[1] < 0)
// {
// if (pssData.page == PSS_PAGE_BATTLE_MOVES)
// {
-// MenuZeroFillWindowRect(0, 14, 9, 18);
+// Menu_EraseWindowRect(0, 14, 9, 18);
// sub_80A0958(pssData.loadedMon);
// if (GetMonStatusAndPokerus(pssData.loadedMon))
@@ -4327,7 +4327,7 @@ _080A13F4:\n\
movs r1, 0x13\n\
movs r2, 0x9\n\
movs r3, 0x13\n\
- bl MenuZeroFillWindowRect\n\
+ bl Menu_EraseWindowRect\n\
_080A1400:\n\
movs r1, 0\n\
ldrsh r0, [r7, r1]\n\
@@ -4346,7 +4346,7 @@ _080A1410:\n\
movs r1, 0xE\n\
movs r2, 0x9\n\
movs r3, 0x12\n\
- bl MenuZeroFillWindowRect\n\
+ bl Menu_EraseWindowRect\n\
adds r4, 0x10\n\
adds r0, r4, 0\n\
bl sub_80A0958\n\
@@ -4404,7 +4404,7 @@ static void sub_80A1488(s8 a, u8 b)
if (pssData.page == PSS_PAGE_BATTLE_MOVES)
{
- MenuZeroFillWindowRect(0, 14, 9, 19);
+ Menu_EraseWindowRect(0, 14, 9, 19);
}
taskId = FindTaskIdByFunc(sub_80A1334);
@@ -4531,7 +4531,7 @@ _080A15C0:\n\
movs r1, 0x13\n\
movs r2, 0x9\n\
movs r3, 0x13\n\
- bl MenuZeroFillWindowRect\n\
+ bl Menu_EraseWindowRect\n\
_080A15CC:\n\
movs r1, 0\n\
ldrsh r0, [r7, r1]\n\
@@ -4550,7 +4550,7 @@ _080A15DC:\n\
movs r1, 0xE\n\
movs r2, 0x9\n\
movs r3, 0x12\n\
- bl MenuZeroFillWindowRect\n\
+ bl Menu_EraseWindowRect\n\
adds r4, 0x10\n\
adds r0, r4, 0\n\
bl sub_80A0958\n\
@@ -4606,7 +4606,7 @@ static void sub_80A1654(s8 a, u8 b)
if (pssData.page == PSS_PAGE_CONTEST_MOVES)
{
- MenuZeroFillWindowRect(0, 14, 9, 19);
+ Menu_EraseWindowRect(0, 14, 9, 19);
}
taskId = FindTaskIdByFunc(sub_80A1500);
@@ -5272,7 +5272,7 @@ u8 *sub_80A1E9C(u8 *dest, const u8 *src, u8 id)
{
u8 arr[3];
- sub_8072CD4(&arr[0], &arr[1], &arr[2]);
+ Menu_GetTextColors(&arr[0], &arr[1], &arr[2]);
dest = sub_80A1E58(dest, id);
dest = StringCopy(dest, src);
@@ -5313,7 +5313,7 @@ static void sub_80A1F98(s32 value, u8 id, u8 n, u8 mode, u8 left, u16 top, s32 e
static void sub_80A1FF8(const u8 *text, u8 id, u8 left, u8 top)
{
sub_80A1E9C(gStringVar4, text, id);
- MenuPrint(gStringVar4, left, top);
+ Menu_PrintText(gStringVar4, left, top);
}
u8 *PokemonSummaryScreen_CopyPokemonLevel(u8 *dest, u8 level)