2020-08-03 18:45:14 +00:00
|
|
|
|
// Blits the hardcoded diamond, star, or snowflake sprites in the given [col]
|
|
|
|
|
// to the given position.
|
2020-08-20 19:59:45 +00:00
|
|
|
|
void shape8x8_diamond_put(screen_x_t left, vram_y_t top, int col);
|
|
|
|
|
void shape8x8_star_put(screen_x_t left, vram_y_t top, int col);
|
|
|
|
|
void shape8x8_flake_put(screen_x_t left, vram_y_t top, int col);
|
2020-09-25 16:24:33 +00:00
|
|
|
|
|
2021-08-15 16:31:15 +00:00
|
|
|
|
// Blits the given [cel] of the hardcoded invincibility sprites to the given
|
|
|
|
|
// position.
|
|
|
|
|
void shape8x8_invincibility_put(screen_x_t left, vram_y_t top, int cel);
|
|
|
|
|
|
2020-09-25 16:24:33 +00:00
|
|
|
|
void shape_ellipse_arc_put(
|
|
|
|
|
screen_x_t center_x,
|
|
|
|
|
vram_y_t center_y,
|
|
|
|
|
pixel_t radius_x,
|
|
|
|
|
pixel_t radius_y,
|
|
|
|
|
int col,
|
|
|
|
|
unsigned char angle_step,
|
|
|
|
|
unsigned char angle_start,
|
|
|
|
|
unsigned char angle_end
|
|
|
|
|
);
|
2020-09-25 17:08:22 +00:00
|
|
|
|
|
|
|
|
|
// Makes a sloppy attempt at restoring the pixels along the given ellipse arc
|
|
|
|
|
// from VRAM page 1, but ends up restoring horizontal 16×1 lines along that
|
|
|
|
|
// arc.
|
|
|
|
|
void shape_ellipse_arc_sloppy_unput(
|
|
|
|
|
screen_x_t center_x,
|
|
|
|
|
vram_y_t center_y,
|
|
|
|
|
pixel_t radius_x,
|
|
|
|
|
pixel_t radius_y,
|
|
|
|
|
unsigned char angle_step,
|
|
|
|
|
unsigned char angle_start,
|
|
|
|
|
unsigned char angle_end
|
|
|
|
|
);
|