2021-11-01 17:01:03 +00:00
|
|
|
// Fills the text layer with spaces.
|
2022-08-12 00:35:50 +00:00
|
|
|
// ZUN bloat: The slowest imaginable version of this operation.
|
|
|
|
#define text_fill_space(esc_move_topleft, tmp_x, tmp_y) { \
|
2021-11-01 17:01:03 +00:00
|
|
|
printf(esc_move_topleft); \
|
|
|
|
for(tmp_y = 0; tmp_y < (RES_Y / GLYPH_H); tmp_y++) { \
|
|
|
|
for(tmp_x = 0; tmp_x < (RES_X / GLYPH_HALF_W); tmp_x++) { \
|
2022-08-12 00:35:50 +00:00
|
|
|
printf(" "); \
|
2021-11-01 17:01:03 +00:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fills the text layer with opaque black.
|
|
|
|
// MODDERS: This should maybe reset the current text mode color.
|
2022-08-12 00:35:50 +00:00
|
|
|
#define text_fill_black(tmp_x, tmp_y) { \
|
|
|
|
printf("\x1B[16;40m"); \
|
|
|
|
text_fill_space("\x1B[0;0H", tmp_x, tmp_y); \
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void text_color_reset(void) {
|
|
|
|
printf("\x1B[0m");
|
2021-11-01 17:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fills the text layer with transparent spaces. Yes, this overwrites the
|
|
|
|
// perfectly suitable master.lib function with the same name.
|
|
|
|
#define text_clear_sloppy(tmp_x, tmp_y) { \
|
2022-08-12 00:35:50 +00:00
|
|
|
text_color_reset(); \
|
2021-11-01 17:01:03 +00:00
|
|
|
/* (yes, this escape sequence is actually 1-based) */ \
|
2022-08-12 00:35:50 +00:00
|
|
|
text_fill_space("\x1B[1;1H", tmp_x, tmp_y); \
|
2021-11-01 17:01:03 +00:00
|
|
|
}
|