summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2019-08-05 13:47:04 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2019-08-05 13:47:04 -0400
commite2e667d4b5ef8df1b707fd8c654ea64b4ea51727 (patch)
tree364928616a2c78382bd96a27ccffdcc8311c579c /src
parent330fc46df8ff235f5c32eac212b7fde7475a0ecd (diff)
Finish pokenav_unk_8
Diffstat (limited to 'src')
-rw-r--r--src/pokenav_match_call_ui.c10
-rwxr-xr-xsrc/pokenav_unk_3.c71
-rwxr-xr-xsrc/pokenav_unk_4.c2
-rw-r--r--src/pokenav_unk_8.c360
4 files changed, 380 insertions, 63 deletions
diff --git a/src/pokenav_match_call_ui.c b/src/pokenav_match_call_ui.c
index 5204f0ed7..275a4063e 100644
--- a/src/pokenav_match_call_ui.c
+++ b/src/pokenav_match_call_ui.c
@@ -31,7 +31,7 @@ struct MatchCallWindowState {
u16 visibleEntries;
u16 unkA;
u32 unkC;
- u32 unk10;
+ void * unk10;
};
struct PokenavSub17Substruct
@@ -40,13 +40,13 @@ struct PokenavSub17Substruct
u32 unk10;
u32 unk14;
u32 unk18;
- u32 unk1C;
+ void * unk1C;
s32 unk20;
s32 unk24;
u32 unk28;
s32 unk2C;
u32 unk30;
- void (*unk34)(u32, u8*);
+ void (*unk34)(struct PokenavMonList *, u8*);
void (*unk38)(u16, u32, u32);
struct Sprite *rightArrow;
struct Sprite *upArrow;
@@ -82,7 +82,7 @@ void sub_81C8D4C(struct MatchCallWindowState *a0, struct PokenavSub17Substruct *
void sub_81C8CB4(struct MatchCallWindowState *a0, struct PokenavSub17Substruct *a1);
void sub_81C8B70(struct UnknownSubSubStruct_0203CF40 *a0, s32 a1, s32 a2);
void sub_81C8568(s32 a0, struct PokenavSub17Substruct *a1);
-void sub_81C83AC(u32 a0, u32 a1, u32 a2, u32 a3, u32 a4, struct PokenavSub17Substruct *a5);
+void sub_81C83AC(void * a0, u32 a1, u32 a2, u32 a3, u32 a4, struct PokenavSub17Substruct *a5);
void sub_81C837C(struct MatchCallWindowState *a0, struct PokenavSub17Substruct *a1);
void sub_81C835C(struct UnknownSubSubStruct_0203CF40 *a0);
u32 LoopedTask_sub_81C8254(s32 state);
@@ -194,7 +194,7 @@ void sub_81C837C(struct MatchCallWindowState *a0, struct PokenavSub17Substruct *
sub_81C83AC(a0->unk10, a0->windowTopIndex, arg2, a0->unkC, 0, a1);
}
-void sub_81C83AC(u32 a0, u32 a1, u32 a2, u32 a3, u32 a4, struct PokenavSub17Substruct *a5)
+void sub_81C83AC(void * a0, u32 a1, u32 a2, u32 a3, u32 a4, struct PokenavSub17Substruct *a5)
{
if (a2 == 0)
return;
diff --git a/src/pokenav_unk_3.c b/src/pokenav_unk_3.c
index 9b62bea78..e44a6563a 100755
--- a/src/pokenav_unk_3.c
+++ b/src/pokenav_unk_3.c
@@ -26,7 +26,7 @@ struct Pokenav3Struct
u32 unk10;
u32 unk14;
u32 (*callback)(struct Pokenav3Struct*);
- struct Pokenav3Struct_Unk1C unk1C[99];
+ struct PokenavMonList unk1C[99];
};
static u32 sub_81CAB44(struct Pokenav3Struct *);
@@ -84,7 +84,7 @@ static u32 sub_81CAB44(struct Pokenav3Struct *state)
state->callback = sub_81CAC04;
state->unk0 = 0;
selectedMatchCall = GetSelectedMatchCall();
- if (!state->unk1C[selectedMatchCall].unk0 || sub_81D17E8(state->unk1C[selectedMatchCall].unk2))
+ if (!state->unk1C[selectedMatchCall].boxId || sub_81D17E8(state->unk1C[selectedMatchCall].unk6))
{
state->unk4 = gUnknown_0862250A;
state->unk2 = 2;
@@ -206,9 +206,9 @@ static u32 sub_81CAD20(s32 taskState)
{
if (MatchCallFlagGetByIndex(j))
{
- state->unk1C[state->unkA].unk2 = j;
- state->unk1C[state->unkA].unk0 = 1;
- state->unk1C[state->unkA].unk1 = MatchCallMapSecGetByIndex(j);
+ state->unk1C[state->unkA].unk6 = j;
+ state->unk1C[state->unkA].boxId = 1;
+ state->unk1C[state->unkA].monId = MatchCallMapSecGetByIndex(j);
state->unkA++;
}
@@ -226,9 +226,9 @@ static u32 sub_81CAD20(s32 taskState)
{
if (!sub_81D1BF8(state->unk8) && sub_81CAE08(state->unk8))
{
- state->unk1C[state->unkA].unk2 = state->unk8;
- state->unk1C[state->unkA].unk0 = 0;
- state->unk1C[state->unkA].unk1 = sub_81CB0C8(j);
+ state->unk1C[state->unkA].unk6 = state->unk8;
+ state->unk1C[state->unkA].boxId = 0;
+ state->unk1C[state->unkA].monId = sub_81CB0C8(j);
state->unkA++;
}
@@ -284,10 +284,10 @@ int unref_sub_81CAE6C(int arg0)
if (arg0 >= state->unkA)
return REMATCH_TABLE_ENTRIES;
- return state->unk1C[arg0].unk2;
+ return state->unk1C[arg0].unk6;
}
-struct Pokenav3Struct_Unk1C *sub_81CAE94(void)
+struct PokenavMonList *sub_81CAE94(void)
{
struct Pokenav3Struct *state = GetSubstructPtr(5);
return state->unk1C;
@@ -296,16 +296,16 @@ struct Pokenav3Struct_Unk1C *sub_81CAE94(void)
u16 sub_81CAEA4(int index)
{
struct Pokenav3Struct *state = GetSubstructPtr(5);
- return state->unk1C[index].unk1;
+ return state->unk1C[index].monId;
}
bool32 sub_81CAEBC(int index)
{
struct Pokenav3Struct *state = GetSubstructPtr(5);
- if (!state->unk1C[index].unk0)
- index = state->unk1C[index].unk2;
+ if (!state->unk1C[index].boxId)
+ index = state->unk1C[index].unk6;
else
- index = MatchCall_GetRematchTableIdx(state->unk1C[index].unk2);
+ index = MatchCall_GetRematchTableIdx(state->unk1C[index].unk6);
if (index == REMATCH_TABLE_ENTRIES)
return FALSE;
@@ -317,13 +317,13 @@ int sub_81CAF04(int index)
{
int var0;
struct Pokenav3Struct *state = GetSubstructPtr(5);
- if (!state->unk1C[index].unk0)
+ if (!state->unk1C[index].boxId)
{
- index = GetTrainerIdxByRematchIdx(state->unk1C[index].unk2);
+ index = GetTrainerIdxByRematchIdx(state->unk1C[index].unk6);
return gTrainers[index].trainerPic;
}
- var0 = state->unk1C[index].unk2;
+ var0 = state->unk1C[index].unk6;
index = MatchCall_GetRematchTableIdx(var0);
if (index != REMATCH_TABLE_ENTRIES)
{
@@ -342,10 +342,10 @@ const u8 *sub_81CAF78(int index, u8 *arg1)
if (!Overworld_MapTypeAllowsTeleportAndFly(gMapHeader.mapType))
return gText_CallCantBeMadeHere;
- if (!state->unk1C[index].unk0)
- *arg1 = SelectMatchCallMessage(GetTrainerIdxByRematchIdx(state->unk1C[index].unk2), gStringVar4);
+ if (!state->unk1C[index].boxId)
+ *arg1 = SelectMatchCallMessage(GetTrainerIdxByRematchIdx(state->unk1C[index].unk6), gStringVar4);
else
- MatchCall_GetMessage(state->unk1C[index].unk2, gStringVar4);
+ MatchCall_GetMessage(state->unk1C[index].unk6, gStringVar4);
return gStringVar4;
}
@@ -354,15 +354,15 @@ const u8 *sub_81CAFD8(int index, int textType)
{
int var0;
struct Pokenav3Struct *state = GetSubstructPtr(5);
- if (state->unk1C[index].unk0)
+ if (state->unk1C[index].boxId)
{
- var0 = MatchCall_GetRematchTableIdx(state->unk1C[index].unk2);
+ var0 = MatchCall_GetRematchTableIdx(state->unk1C[index].unk6);
if (var0 == REMATCH_TABLE_ENTRIES)
- return sub_81D1B40(state->unk1C[index].unk2, textType);
+ return sub_81D1B40(state->unk1C[index].unk6, textType);
}
else
{
- var0 = state->unk1C[index].unk2;
+ var0 = state->unk1C[index].unk6;
}
return gMatchCallMessages[var0][textType];
@@ -383,14 +383,13 @@ u16 sub_81CB02C(int arg0)
return state->unk4[arg0];
}
-void sub_81CB050(u32 arg0, u8 *str)
+void sub_81CB050(struct PokenavMonList * arg0, u8 *str)
{
- struct Pokenav3Struct_Unk1C *var0 = (struct Pokenav3Struct_Unk1C *)arg0;
const u8 *trainerName;
const u8 *className;
- if (!var0->unk0)
+ if (!arg0->boxId)
{
- int index = GetTrainerIdxByRematchIdx(var0->unk2);
+ int index = GetTrainerIdxByRematchIdx(arg0->unk6);
const struct Trainer *trainer = &gTrainers[index];
int class = trainer->trainerClass;
className = gTrainerClassNames[class];
@@ -398,7 +397,7 @@ void sub_81CB050(u32 arg0, u8 *str)
}
else
{
- sub_81D1A78(var0->unk2, &className, &trainerName);
+ sub_81D1A78(arg0->unk6, &className, &trainerName);
}
if (className && trainerName)
@@ -425,9 +424,9 @@ int sub_81CB0E4(int index)
int count = 1;
while (++index < state->unkA)
{
- if (!state->unk1C[index].unk0)
+ if (!state->unk1C[index].boxId)
return count;
- if (sub_81D17E8(state->unk1C[index].unk2))
+ if (sub_81D17E8(state->unk1C[index].unk6))
return count;
count++;
@@ -442,9 +441,9 @@ int sub_81CB128(int index)
int count = -1;
while (--index >= 0)
{
- if (!state->unk1C[index].unk0)
+ if (!state->unk1C[index].boxId)
return count;
- if (sub_81D17E8(state->unk1C[index].unk2))
+ if (sub_81D17E8(state->unk1C[index].unk6))
return count;
count--;
@@ -480,17 +479,17 @@ static bool32 sub_81CB1D0(void)
{
struct Pokenav3Struct *state = GetSubstructPtr(5);
int index = GetSelectedMatchCall();
- if (!state->unk1C[index].unk0)
+ if (!state->unk1C[index].boxId)
{
if (sub_81CAEA4(index) == gMapHeader.regionMapSectionId)
{
- if (!gSaveBlock1Ptr->trainerRematches[state->unk1C[index].unk2])
+ if (!gSaveBlock1Ptr->trainerRematches[state->unk1C[index].unk6])
return TRUE;
}
}
else
{
- if (state->unk1C[index].unk2 == 11)
+ if (state->unk1C[index].unk6 == 11)
{
if (sub_81CAEA4(index) == gMapHeader.regionMapSectionId
&& FlagGet(FLAG_BADGE05_GET) == TRUE)
diff --git a/src/pokenav_unk_4.c b/src/pokenav_unk_4.c
index 93dab4491..f436cc3ca 100755
--- a/src/pokenav_unk_4.c
+++ b/src/pokenav_unk_4.c
@@ -870,7 +870,7 @@ u32 sub_81CBB74(s32 taskState)
static void sub_81CBBB8(void)
{
struct MatchCallListTemplate template;
- template.unk0 = (u32)sub_81CAE94();
+ template.unk0 = sub_81CAE94();
template.unk4 = sub_81CAE38();
template.unk8 = 4;
template.unk6 = 0;
diff --git a/src/pokenav_unk_8.c b/src/pokenav_unk_8.c
index 3f8eb5324..1750a24ba 100644
--- a/src/pokenav_unk_8.c
+++ b/src/pokenav_unk_8.c
@@ -1,7 +1,14 @@
#include "global.h"
#include "pokenav.h"
#include "bg.h"
+#include "menu.h"
#include "window.h"
+#include "sound.h"
+#include "dynamic_placeholder_text_util.h"
+#include "strings.h"
+#include "string_util.h"
+#include "international_string_util.h"
+#include "constants/songs.h"
struct PokenavSub7
{
@@ -48,26 +55,25 @@ const u32 gUnknown_086233E4[] = INCBIN_U32("graphics/pokenav/condition_search2.4
const u32 gUnknown_086234AC[] = INCBIN_U32("graphics/pokenav/condition_search2.bin.lz");
const u16 gUnknown_08623570[] = INCBIN_U16("graphics/pokenav/8623570.gbapal");
-const struct BgTemplate gUnknown_08623590 =
+const struct BgTemplate gUnknown_08623590[] =
{
- .bg = 1,
- .charBaseIndex = 1,
- .mapBaseIndex = 0x06,
- .screenSize = 0,
- .paletteMode = 0,
- .priority = 2,
- .baseTile = 0
-};
-
-const struct BgTemplate gUnknown_08623594 =
-{
- .bg = 2,
- .charBaseIndex = 2,
- .mapBaseIndex = 0x07,
- .screenSize = 0,
- .paletteMode = 0,
- .priority = 3,
- .baseTile = 0
+ {
+ .bg = 1,
+ .charBaseIndex = 1,
+ .mapBaseIndex = 0x06,
+ .screenSize = 0,
+ .paletteMode = 0,
+ .priority = 2,
+ .baseTile = 0
+ }, {
+ .bg = 2,
+ .charBaseIndex = 2,
+ .mapBaseIndex = 0x07,
+ .screenSize = 0,
+ .paletteMode = 0,
+ .priority = 3,
+ .baseTile = 0
+ }
};
const LoopedTask gUnknown_08623598[] =
@@ -202,7 +208,7 @@ u16 sub_81CF0E0(void)
return ptr->unkPtr->unk0;
}
-u16 sub_81CF0F0(void)
+s32 sub_81CF0F0(void)
{
struct PokenavSub7 * ptr = (struct PokenavSub7 *)GetSubstructPtr(7);
s32 i = GetSelectedMatchCall();
@@ -337,13 +343,17 @@ struct PokenavSub8
{
bool32 (*callback)(void);
u32 ltid;
- u8 winid;
+ u16 winid;
bool32 unkC;
u16 buff[0x400];
}; // size: 0x810
bool32 sub_81CF3E4(void);
u32 sub_81CF418(s32 state);
+void sub_81CF7C8(struct PokenavSub8 *);
+void sub_81CF7F4(struct PokenavSub8 *);
+void sub_81CF88C(void);
+void sub_81CF8E4(struct PokenavMonList *, u8 *);
bool32 sub_81CF330(void)
{
@@ -393,3 +403,311 @@ void sub_81CF3F8(void)
RemoveWindow(unk->winid);
FreePokenavSubstruct(8);
}
+
+u32 sub_81CF418(s32 state)
+{
+ struct PokenavSub8 * unk = (struct PokenavSub8 *)GetSubstructPtr(8);
+ switch (state)
+ {
+ case 0:
+ InitBgTemplates(gUnknown_08623590, NELEMS(gUnknown_08623590));
+ decompress_and_copy_tile_data_to_vram(1, gUnknown_086233E4, 0, 0, 0);
+ SetBgTilemapBuffer(1, unk->buff);
+ CopyToBgTilemapBuffer(1, gUnknown_086234AC, 0, 0);
+ CopyBgTilemapBufferToVram(1);
+ CopyPaletteIntoBufferUnfaded(gUnknown_086233C4, 0x10, 0x20);
+ CopyBgTilemapBufferToVram(1);
+ return LT_INC_AND_PAUSE;
+ case 1:
+ if (free_temp_tile_data_buffers_if_possible())
+ return LT_PAUSE;
+ if (!sub_81CF0C0())
+ return LT_PAUSE;
+ return LT_INC_AND_PAUSE;
+ case 2:
+ if (free_temp_tile_data_buffers_if_possible())
+ return LT_PAUSE;
+ CopyPaletteIntoBufferUnfaded(gUnknown_08623570, 0x20, 0x20);
+ sub_81CF88C();
+ return LT_INC_AND_PAUSE;
+ case 3:
+ if (sub_81C8224())
+ return LT_PAUSE;
+ sub_81CF7C8(unk);
+ sub_81C7BA4(3);
+ return LT_INC_AND_PAUSE;
+ case 4:
+ if (free_temp_tile_data_buffers_if_possible())
+ return LT_PAUSE;
+ ChangeBgX(1, 0, 0);
+ ChangeBgY(1, 0, 0);
+ ShowBg(1);
+ ShowBg(2);
+ HideBg(3);
+ if (!unk->unkC)
+ {
+ u8 r4 = sub_81C76AC() + 8;
+ LoadLeftHeaderGfxForIndex(r4);
+ sub_81C7FA0(r4, 1, 0);
+ sub_81C7FA0(1, 1, 0);
+ }
+ sub_81C7AC0(1);
+ return LT_INC_AND_PAUSE;
+ case 5:
+ if (IsPaletteFadeActive())
+ return LT_PAUSE;
+ if (sub_81C8010())
+ return LT_PAUSE;
+ break;
+ }
+ return LT_FINISH;
+}
+
+u32 sub_81CF578(s32 state)
+{
+ struct PokenavSub8 * unk = (struct PokenavSub8 *)GetSubstructPtr(8);
+ switch (state)
+ {
+ case 0:
+ switch (MatchCall_MoveCursorUp())
+ {
+ case 0:
+ return LT_FINISH;
+ case 1:
+ PlaySE(SE_SELECT);
+ return LT_SET_STATE(2);
+ case 2:
+ PlaySE(SE_SELECT);
+ break;
+ }
+ return LT_INC_AND_PAUSE;
+ case 1:
+ if (sub_81C8630())
+ return LT_PAUSE;
+ // fallthrough
+ case 2:
+ sub_81CF7F4(unk);
+ return LT_INC_AND_PAUSE;
+ case 3:
+ if (IsDma3ManagerBusyWithBgCopy())
+ return LT_PAUSE;
+ break;
+ }
+ return LT_FINISH;
+}
+
+u32 sub_81CF5F0(s32 state)
+{
+ struct PokenavSub8 * unk = (struct PokenavSub8 *)GetSubstructPtr(8);
+ switch (state)
+ {
+ case 0:
+ switch (MatchCall_MoveCursorDown())
+ {
+ case 0:
+ return LT_FINISH;
+ case 1:
+ PlaySE(SE_SELECT);
+ return LT_SET_STATE(2);
+ case 2:
+ PlaySE(SE_SELECT);
+ break;
+ }
+ return LT_INC_AND_PAUSE;
+ case 1:
+ if (sub_81C8630())
+ return LT_PAUSE;
+ // fallthrough
+ case 2:
+ sub_81CF7F4(unk);
+ return LT_INC_AND_PAUSE;
+ case 3:
+ if (IsDma3ManagerBusyWithBgCopy())
+ return LT_PAUSE;
+ break;
+ }
+ return LT_FINISH;
+}
+
+u32 sub_81CF668(s32 state)
+{
+ struct PokenavSub8 * unk = (struct PokenavSub8 *)GetSubstructPtr(8);
+ switch (state)
+ {
+ case 0:
+ switch (MatchCall_PageUp())
+ {
+ case 0:
+ return LT_FINISH;
+ case 1:
+ PlaySE(SE_SELECT);
+ return LT_SET_STATE(2);
+ case 2:
+ PlaySE(SE_SELECT);
+ break;
+ }
+ return LT_INC_AND_PAUSE;
+ case 1:
+ if (sub_81C8630())
+ return LT_PAUSE;
+ // fallthrough
+ case 2:
+ sub_81CF7F4(unk);
+ return LT_INC_AND_PAUSE;
+ case 3:
+ if (IsDma3ManagerBusyWithBgCopy())
+ return LT_PAUSE;
+ break;
+ }
+ return LT_FINISH;
+}
+
+u32 sub_81CF6E0(s32 state)
+{
+ struct PokenavSub8 * unk = (struct PokenavSub8 *)GetSubstructPtr(8);
+ switch (state)
+ {
+ case 0:
+ switch (MatchCall_PageDown())
+ {
+ case 0:
+ return LT_FINISH;
+ case 1:
+ PlaySE(SE_SELECT);
+ return LT_SET_STATE(2);
+ case 2:
+ PlaySE(SE_SELECT);
+ break;
+ }
+ return LT_INC_AND_PAUSE;
+ case 1:
+ if (sub_81C8630())
+ return LT_PAUSE;
+ // fallthrough
+ case 2:
+ sub_81CF7F4(unk);
+ return LT_INC_AND_PAUSE;
+ case 3:
+ if (IsDma3ManagerBusyWithBgCopy())
+ return LT_PAUSE;
+ break;
+ }
+ return LT_FINISH;
+}
+
+u32 sub_81CF758(s32 state)
+{
+ switch (state)
+ {
+ case 0:
+ PlaySE(SE_SELECT);
+ sub_81C7AC0(0);
+ sub_81C78A0();
+ return LT_INC_AND_PAUSE;
+ case 1:
+ if (IsPaletteFadeActive())
+ return LT_PAUSE;
+ if (MainMenuLoopedTaskIsBusy())
+ return LT_PAUSE;
+ sub_81C7FDC();
+ break;
+ }
+ return LT_FINISH;
+}
+
+u32 sub_81CF798(s32 state)
+{
+ switch (state)
+ {
+ case 0:
+ PlaySE(SE_SELECT);
+ sub_81C7AC0(0);
+ return LT_INC_AND_PAUSE;
+ case 1:
+ if (IsPaletteFadeActive())
+ return LT_PAUSE;
+ break;
+ }
+ return LT_FINISH;
+}
+
+void sub_81CF7C8(struct PokenavSub8 * ptr)
+{
+ ptr->winid = AddWindow(&gUnknown_086235B4);
+ PutWindowTilemap(ptr->winid);
+ CopyWindowToVram(ptr->winid, 1);
+ sub_81CF7F4(ptr);
+}
+
+void sub_81CF7F4(struct PokenavSub8 * ptr)
+{
+ s32 r7 = sub_81CF0F0();
+ DynamicPlaceholderTextUtil_Reset();
+ DynamicPlaceholderTextUtil_SetPlaceholderPtr(0, gStringVar1);
+ *gStringVar1 = EOS;
+ DynamicPlaceholderTextUtil_ExpandPlaceholders(gStringVar2, gText_NumberF700);
+ AddTextPrinterParameterized(ptr->winid, 1, gStringVar2, 4, 1, 0xFF, NULL);
+ ConvertIntToDecimalStringN(gStringVar1, r7, STR_CONV_MODE_RIGHT_ALIGN, 3);
+ AddTextPrinterParameterized(ptr->winid, 1, gStringVar1, 34, 1, 0xFF, NULL);
+ CopyWindowToVram(ptr->winid, 2);
+}
+
+void sub_81CF88C(void)
+{
+ struct MatchCallListTemplate template;
+ template.unk0 = sub_81CF0D0();
+ template.unk4 = sub_81CF0E0();
+ template.unk8 = 4;
+ template.unk6 = sub_81CF10C();
+ template.unk9 = 13;
+ template.unkA = 17;
+ template.unkB = 1;
+ template.unkC = 8;
+ template.unkD = 2;
+ template.unkE = 1;
+ template.unk10 = sub_81CF8E4;
+ template.unk14 = NULL;
+ sub_81C81D4(&gUnknown_08623590[1], &template, 0);
+}
+
+void sub_81CF8E4(struct PokenavMonList * item, u8 * dest)
+{
+ u8 gender;
+ u8 level;
+ u8 * s;
+ const u8 * genderStr;
+ if (item->boxId == 14)
+ {
+ struct Pokemon * mon = &gPlayerParty[item->monId];
+ gender = GetMonGender(mon);
+ level = GetLevelFromMonExp(mon);
+ GetMonData(mon, MON_DATA_NICKNAME, gStringVar3);
+ }
+ else
+ {
+ struct BoxPokemon * mon = GetBoxedMonPtr(item->boxId, item->monId);
+ gender = GetBoxMonGender(mon);
+ level = GetLevelFromBoxMonExp(mon);
+ GetBoxMonData(mon, MON_DATA_NICKNAME, gStringVar3);
+ }
+ StringGetEnd10(gStringVar3);
+ dest = sub_81DB494(dest, 1, gStringVar3, 60);
+ switch (gender)
+ {
+ default:
+ genderStr = gUnknown_086235D4;
+ break;
+ case MON_MALE:
+ genderStr = gUnknown_086235BC;
+ break;
+ case MON_FEMALE:
+ genderStr = gUnknown_086235C8;
+ break;
+ }
+ s = StringCopy(gStringVar1, genderStr);
+ *s++ = CHAR_SLASH;
+ *s++ = CHAR_SPECIAL_F9;
+ *s++ = 5; // LV
+ ConvertIntToDecimalStringN(s, level, STR_CONV_MODE_LEFT_ALIGN, 3);
+ sub_81DB494(dest, 1, gStringVar1, 40);
+}