mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-09 19:06:44 -05:00
72 lines
1.8 KiB
C
72 lines
1.8 KiB
C
#ifndef GUARD_TEXT_H
|
|
#define GUARD_TEXT_H
|
|
|
|
// size: 0x48
|
|
struct UnkTextStruct1
|
|
{
|
|
s16 unk0;
|
|
s16 unk2;
|
|
s16 unk4;
|
|
s16 unk6;
|
|
s16 unk8;
|
|
u32 unkC;
|
|
u32 unk10;
|
|
u32 unk14;
|
|
u8 *unk18;
|
|
u8 *unk1C;
|
|
s32 unk20;
|
|
s32 unk24;
|
|
void *unk28; // Somewhere in VRAM
|
|
s32 unk2C;
|
|
s32 unk30;
|
|
s32 unk34;
|
|
s32 unk38;
|
|
u8 fill3C[0x45 - 0x3C];
|
|
bool8 unk45;
|
|
u8 unk46;
|
|
};
|
|
|
|
// size: 0x4
|
|
struct UnkTextStruct2_sub
|
|
{
|
|
// I haven't found a func that reads these separately yet, but simply making an arr[2] will cause assignments to break.
|
|
// Some funcs only match with this union for some reason even though they don't access the variables separately...
|
|
// The first func to break is currently sub_801A5D8 in kecleon_bros.c
|
|
// The first func I matched that uses the array is sub_8006554 in text_1.c (using the separated fields doesn't match or get even close)
|
|
union {
|
|
struct {
|
|
s16 unk0;
|
|
s16 unk2;
|
|
} separate;
|
|
s16 arr[2];
|
|
} unk0;
|
|
};
|
|
|
|
// size: 0x18
|
|
struct UnkTextStruct2
|
|
{
|
|
u8 unk0;
|
|
u8 fill1[0x4 - 0x1];
|
|
s32 unk4;
|
|
struct UnkTextStruct2_sub unk8;
|
|
s16 unkC;
|
|
s16 unkE;
|
|
s16 unk10;
|
|
s16 unk12;
|
|
const u8 *unk14;
|
|
};
|
|
|
|
void LoadCharmaps(void);
|
|
void SelectCharmap(u32);
|
|
u32 xxx_update_some_bg_tiles(u32 a0);
|
|
void sub_800641C(struct UnkTextStruct2 *a0, u8 a1, u8 a2);
|
|
void sub_8006438(const struct UnkTextStruct2 *, u8, u8, struct UnkTextStruct2_sub *);
|
|
void sub_8006518(struct UnkTextStruct2 *);
|
|
void sub_8006554(struct UnkTextStruct1 *, void *, u8 *, u16 *, u32, const struct UnkTextStruct2 *, u8, u32, struct UnkTextStruct2_sub *, u8);
|
|
void sub_800898C(void);
|
|
void sub_80089AC(const struct UnkTextStruct2 *, struct UnkTextStruct2_sub *);
|
|
void sub_8009388(void);
|
|
|
|
extern void xxx_call_draw_string(s32 x, u32 y, const u8 *str, u32 , u32);
|
|
|
|
#endif |