KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
vmu_fb.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2
3 dc/vmu_fb.h
4 Copyright (C) 2023 Paul Cercueil
5
6*/
7
8#ifndef __DC_VMU_FB_H
9#define __DC_VMU_FB_H
10
11/** \file dc/vmu_fb.h
12 \brief VMU framebuffer.
13 \ingroup vmu_fb
14
15 This file provides an API that can be used to compose a 48x32 image that can
16 then be displayed on the VMUs connected to the system.
17
18 \author Paul Cercueil
19*/
20
21#include <sys/cdefs.h>
22__BEGIN_DECLS
23
24#include <dc/maple.h>
25#include <dc/maple/vmu.h>
26#include <stdint.h>
27#include <stdarg.h>
28
29/** \defgroup vmu_fb Framebuffer
30 * \ingroup vmu
31 *
32 * This API provides a virtual framebuffer abstraction for the VMU with a
33 * series of convenient methods for drawing complex and dynamic content.
34 *
35 * @{
36*/
37
38/** \brief Virtual framebuffer for the VMU
39
40 This object contains a 48x32 monochrome framebuffer. It can be painted to,
41 or displayed on one the VMUs connected to the system, using the API below.
42 */
43typedef struct vmufb {
44 uint32_t data[VMU_SCREEN_WIDTH]; /**< Private framebuffer pixel data */
45} vmufb_t;
46
47/** \brief VMU framebuffer font meta-data.
48
49 This structure describes a font, including character sizes,
50 layout, and a pointer to the raw font data.
51 */
52typedef struct vmufb_font {
53 unsigned int id; /**< Font id */
54 unsigned int w; /**< Character width in pixels */
55 unsigned int h; /**< Character height in pixels */
56 size_t stride; /**< Size of one character in bytes */
57 const char *fontdata; /**< Pointer to the font data */
59
60/** \brief Render into the VMU framebuffer
61
62 This function will paint the provided pixel data into the VMU framebuffer,
63 into the rectangle provided by the x, y, w and h values.
64
65 \param fb A pointer to the vmufb_t to paint to.
66 \param x The horizontal position of the top-left corner of
67 the drawing area, in pixels
68 \param y The vertical position of the top-left corner of the
69 drawing area, in pixels
70 \param w The width of the drawing area, in pixels
71 \param h The height of the drawing area, in pixels
72 \param data A pointer to the pixel data that will be painted
73 into the drawing area.
74 */
76 unsigned int x, unsigned int y,
77 unsigned int w, unsigned int h,
78 const char *data);
79
80/** \brief Clear a specific area of the VMU framebuffer
81
82 This function clears the area of the VMU framebuffer designated by the
83 x, y, w and h values.
84
85 \param fb A pointer to the vmufb_t to paint to.
86 \param x The horizontal position of the top-left corner of
87 the drawing area, in pixels
88 \param y The vertical position of the top-left corner of the
89 drawing area, in pixels
90 \param w The width of the drawing area, in pixels
91 \param h The height of the drawing area, in pixels
92 */
94 unsigned int x, unsigned int y,
95 unsigned int w, unsigned int h);
96
97/** \brief Clear the VMU framebuffer
98
99 This function clears the whole VMU framebuffer.
100
101 \param fb A pointer to the vmufb_t to paint to.
102 */
104
105/** \brief Render a XBM image into the VMU framebuffer
106
107 This function will paint the provided XBM data into the VMU framebuffer,
108 into the rectangle provided by the x, y, w and h values.
109
110 \param fb A pointer to the vmufb_t to paint to.
111 \param x The horizontal position of the top-left corner of
112 the drawing area, in pixels
113 \param y The vertical position of the top-left corner of the
114 drawing area, in pixels
115 \param w The width of the drawing area, in pixels. It must
116 correspond to the width of the XBM image.
117 \param h The height of the drawing area, in pixels. It must
118 correspond to the height of the XBM image.
119 \param xbm_data A pointer to the pixel data in XBM format that will
120 be painted
121 */
123 unsigned int x, unsigned int y,
124 unsigned int w, unsigned int h,
125 const uint8_t *xbm_data);
126
127/** \brief Present the VMU framebuffer to a VMU
128
129 This function presents the previously rendered VMU framebuffer to the
130 VMU identified by the dev argument.
131
132 \param fb A pointer to the vmufb_t to paint to.
133 \param dev The maple device of the VMU to present to
134 */
136
137/** \brief Render a string into the VMU framebuffer
138
139 This function uses the provided font to render text into the VMU
140 framebuffer.
141
142 \param fb A pointer to the vmufb_t to paint to.
143 \param font A pointer to the vmufb_font_t that will be used for
144 painting the text (or NULL to use the default)
145 \param x The horizontal position of the top-left corner of
146 the drawing area, in pixels
147 \param y The vertical position of the top-left corner of the
148 drawing area, in pixels
149 \param w The width of the drawing area, in pixels
150 \param h The height of the drawing area, in pixels
151 \param line_spacing Specify the number of empty lines that should
152 separate two lines of text
153 \param str The text to render
154 */
156 const vmufb_font_t *font,
157 unsigned int x, unsigned int y,
158 unsigned int w, unsigned int h,
159 unsigned int line_spacing,
160 const char *str);
161
162/** \brief Render a string into the VMU framebuffer
163
164 Simplified version of vmufb_print_string_into(). This is the same as calling
165 vmufb_print_string_into with x=0, y=0, w=48, h=32, line_spacing=0.
166
167 \param fb A pointer to the vmufb_t to paint to.
168 \param font A pointer to the vmufb_font_t that will be used for
169 painting the text (or NULL to use the default)
170 \param str The text to render
171 */
172static __inline__
174 const char *str) {
175 vmufb_print_string_into(fb, font, 0, 0,
177}
178
179/** \brief Render a string to attached VMUs using the built-in font
180
181 Uses the built-in VMU font to render a string to all VMUs connected to the
182 system.
183
184 \note
185 The font currently set as the default font will be used.
186
187 \param fmt The format string, optionally followed by extra
188 arguments.
189
190 \sa vmu_set_font()
191 */
192void vmu_printf(const char *fmt, ...) __printflike(1, 2);
193
194/** \brief Sets the default font for drawing text to the VMU.
195
196 This function allows you to set a custom font for drawing text
197 to the VMU screen. If the \p font parameter is set to `NULL`,
198 the built-in VMU font will be used as the default.
199
200 \warning
201 The API does not take ownership of or copy \p font, so
202 the given pointer must remain valid as long as it is set
203 as the default!
204
205 \param font Pointer to the font to set as default
206 \returns Pointer to the previous default font
207
208 \sa vmu_get_font()
209 */
211
212/** \brief Returns the default font used to draw text to the VMU.
213
214 \returns Pointer to the font currently set as the default
215
216 \sa vmu_set_font()
217 */
219
220/** @} */
221
222__END_DECLS
223
224#endif /* __DC_VMU_FB_H */
#define VMU_SCREEN_WIDTH
Pixel width of a standard VMU screen.
Definition vmu.h:238
#define VMU_SCREEN_HEIGHT
Pixel height of a standard VMU screen.
Definition vmu.h:244
#define __printflike(fmtarg, firstvararg)
Identify a function as accepting formatting like printf().
Definition cdefs.h:132
void vmufb_present(const vmufb_t *fb, maple_device_t *dev)
Present the VMU framebuffer to a VMU.
void vmufb_print_string_into(vmufb_t *fb, const vmufb_font_t *font, unsigned int x, unsigned int y, unsigned int w, unsigned int h, unsigned int line_spacing, const char *str)
Render a string into the VMU framebuffer.
void vmufb_clear_area(vmufb_t *fb, unsigned int x, unsigned int y, unsigned int w, unsigned int h)
Clear a specific area of the VMU framebuffer.
void vmufb_paint_area(vmufb_t *fb, unsigned int x, unsigned int y, unsigned int w, unsigned int h, const char *data)
Render into the VMU framebuffer.
void vmufb_paint_xbm(vmufb_t *fb, unsigned int x, unsigned int y, unsigned int w, unsigned int h, const uint8_t *xbm_data)
Render a XBM image into the VMU framebuffer.
static __inline__ void vmufb_print_string(vmufb_t *fb, const vmufb_font_t *font, const char *str)
Render a string into the VMU framebuffer.
Definition vmu_fb.h:173
void vmu_printf(const char *fmt,...) __printflike(1
Render a string to attached VMUs using the built-in font.
void vmufb_clear(vmufb_t *fb)
Clear the VMU framebuffer.
void const vmufb_font_t * vmu_set_font(const vmufb_font_t *font)
Sets the default font for drawing text to the VMU.
const vmufb_font_t * vmu_get_font(void)
Returns the default font used to draw text to the VMU.
Maple Bus driver interface.
One maple device.
Definition maple.h:271
VMU framebuffer font meta-data.
Definition vmu_fb.h:52
unsigned int h
Character height in pixels.
Definition vmu_fb.h:55
unsigned int id
Font id.
Definition vmu_fb.h:53
const char * fontdata
Pointer to the font data.
Definition vmu_fb.h:57
size_t stride
Size of one character in bytes.
Definition vmu_fb.h:56
unsigned int w
Character width in pixels.
Definition vmu_fb.h:54
Virtual framebuffer for the VMU.
Definition vmu_fb.h:43
Definitions for using the VMU device.