diff options
author | Ian Moffett <ian@osmora.org> | 2025-08-05 00:30:30 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-08-05 00:33:31 -0400 |
commit | 21a03190ec1dd295b2020667ff80aaf8504ce177 (patch) | |
tree | 3438b8150b09a036cb402f89b38374e0f67654b0 | |
parent | 1d7061dcb3b49b7a334881deccd9c7bb0695adbf (diff) |
lib: libgfx: Add SHAPE_SQUARE_BORDERexpt
Introduce new SHAPE_SQUARE_BORDER shape type to draw unfilled (bordered)
squares.
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | lib/libgfx/include/libgfx/draw.h | 3 | ||||
-rw-r--r-- | lib/libgfx/src/draw.c | 57 |
2 files changed, 59 insertions, 1 deletions
diff --git a/lib/libgfx/include/libgfx/draw.h b/lib/libgfx/include/libgfx/draw.h index 8efd986..4140593 100644 --- a/lib/libgfx/include/libgfx/draw.h +++ b/lib/libgfx/include/libgfx/draw.h @@ -34,7 +34,8 @@ #include <libgfx/gfx.h> /* Shape types */ -#define SHAPE_SQUARE 0x00000000 +#define SHAPE_SQUARE 0x00000000 +#define SHAPE_SQUARE_BORDER 0x00000001 /* Basic color defines */ #define GFX_BLACK 0x000000 diff --git a/lib/libgfx/src/draw.c b/lib/libgfx/src/draw.c index 870b543..4df64a8 100644 --- a/lib/libgfx/src/draw.c +++ b/lib/libgfx/src/draw.c @@ -95,6 +95,61 @@ gfx_draw_square(struct gfx_ctx *ctx, const struct gfx_shape *shape) } /* + * Draw a bordered square onto the screen. + * + * @ctx: Graphics context pointer + * @shape: Bordered square to draw + */ +static int +gfx_draw_bsquare(struct gfx_ctx *ctx, const struct gfx_shape *shape) +{ + struct gfx_point p; + scrpos_t x_i, y_i; + scrpos_t x_f, y_f; + scrpos_t x, y; + + if (ctx == NULL || shape == NULL) { + return -EINVAL; + } + + x_i = shape->x; + y_i = shape->y; + x_f = shape->x + shape->width; + y_f = shape->y + shape->height; + + /* + * Draw an unfilled square. + * + * If we are at the `y_i' or `y_f' position, draw + * pixels from 'x_i' to 'x_f'. If we are away + * from the `y_i' position, draw two pixels, + * one at `x_i' and the other at `x_f' for that + * current 'y' value. + */ + for (y = y_i; y < y_f; ++y) { + for (x = x_i; x < x_f; ++x) { + p.x = x; + p.y = y; + p.rgb = shape->color; + + /* Origin y, draw entire width */ + if (y == y_i || y == y_f - 1) { + gfx_plot_point(ctx, &p); + continue; + } + + p.x = x_i; + gfx_plot_point(ctx, &p); + + p.x = x_f - 1; + gfx_plot_point(ctx, &p); + } + } + + return 0; +} + +/* * Plot a single pixel (aka point) onto * the screen. * @@ -177,6 +232,8 @@ gfx_draw_shape(struct gfx_ctx *ctx, const struct gfx_shape *shape) switch (shape->type) { case SHAPE_SQUARE: return gfx_draw_square(ctx, shape); + case SHAPE_SQUARE_BORDER: + return gfx_draw_bsquare(ctx, shape); } return -1; |