pokeemerald/include/text_window.h

28 lines
907 B
C
Raw Normal View History

2017-09-01 19:43:26 +02:00
#ifndef GUARD_TEXT_WINDOW_H
#define GUARD_TEXT_WINDOW_H
2018-01-21 13:32:11 +01:00
#define WINDOW_FRAMES_COUNT 20
2017-09-01 19:43:26 +02:00
struct TilesPal
{
2018-04-17 10:54:39 +02:00
const u8 *tiles;
2018-01-21 13:32:11 +01:00
const u16 *pal;
2017-09-01 19:43:26 +02:00
};
2018-04-17 10:54:39 +02:00
extern const u8 gTextWindowFrame1_Gfx[];
2018-01-21 13:32:11 +01:00
extern const u16 gTextWindowFrame1_Pal[];
2018-01-16 18:59:06 +01:00
const struct TilesPal* GetWindowFrameTilesPal(u8 id);
2017-09-01 19:43:26 +02:00
void copy_textbox_border_tile_patterns_to_vram(u8 windowId, u16 destOffset, u8 palOffset);
void sub_809882C(u8 windowId, u16 destOffset, u8 palOffset);
void sub_80987D4(u8 windowId, u8 frameId, u16 destOffset, u8 palOffset);
void box_border_load_tiles_and_pal(u8 windowId, u16 destOffset, u8 palOffset);
void sub_8098858(u8 windowId, u16 tileNum, u8 palNum);
void sub_80989E0(u8 windowId, u16 tileNum, u8 palNum);
void rbox_fill_rectangle(u8 windowId);
2018-01-21 13:32:11 +01:00
const u16 *stdpal_get(u8 id);
const u16 *GetOverworldTextboxPalettePtr(void);
2017-09-01 19:43:26 +02:00
void sub_8098C6C(u8 bg, u16 destOffset, u8 palOffset);
#endif // GUARD_TEXT_WINDOW_H