dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
graphics.h
Go to the documentation of this file.
1
2#ifndef GRAPHICS_H
3#define GRAPHICS_H
4
17#define GRAPHICS_ERROR_NOT_FOUND -1
18
19#define GRAPHICS_INSTANCE_NONE -1
20#define GRAPHICS_INSTANCE_WINDOW -2
21#define GRAPHICS_INSTANCE_TILEMAP -3
22
34#define GRAPHICS_STRING_FLAG_1X 0x01
35
37#define GRAPHICS_STRING_FLAG_ALL_CAPS 0x10
38
40#define GRAPHICS_STRING_FLAG_FONT_SCRIPT 0x20
41
43#define GRAPHICS_STRING_FLAG_OUTLINE 0x80
44
47#define GRAPHICS_FLAG_SHAKING_MASK 0x03
48#define GRAPHICS_FLAG_ZOOM_MASK 0x0c
49
50#ifndef GRAPHICS_TXP_R
52#define GRAPHICS_TXP_R 0xff
53#endif /* !GRAPHICS_TXP_R */
54
55#ifndef GRAPHICS_TXP_G
57#define GRAPHICS_TXP_G 0x55
58#endif /* !GRAPHICS_TXP_G */
59
60#ifndef GRAPHICS_TXP_B
62#define GRAPHICS_TXP_B 0xff
63#endif /* !GRAPHICS_TXP_B */
64
65#define graphics_char_is_printable( c ) (('a' <= c && 'z' >= c) || ('A' <= c && 'Z' >= c) || ('0' <= c && '9' >= c) || '.' == c || ',' == c || ':' == c || ';' == c || '!' == c || '/' == c || ' ' == c)
66
67#define graphics_draw_char_outline( x, y, flags ) if( GRAPHICS_STRING_FLAG_OUTLINE == (GRAPHICS_STRING_FLAG_OUTLINE & flags) ) { graphics_draw_px( x, y, GRAPHICS_COLOR_BLACK ); }
68
69#define graphics_set_screen_shake( shake ) g_screen_flags &= ~GRAPHICS_FLAG_SHAKING_MASK; g_screen_flags |= (GRAPHICS_FLAG_SHAKING_MASK & shake);
70
71#define graphics_set_screen_zoom( zoom ) g_screen_flags &= ~GRAPHICS_FLAG_ZOOM_MASK; g_screen_flags |= (((zoom) << 2) & GRAPHICS_FLAG_ZOOM_MASK)
72
73#ifndef graphics_clear_screen
74#define graphics_clear_screen() \
75 graphics_draw_block( 0, 0, SCREEN_W, SCREEN_H, GRAPHICS_COLOR_BLACK );
76#endif /* !graphics_clear_screen */
77
86#ifndef graphics_clear_block
87#define graphics_clear_block( x, y, w, h ) \
88 graphics_draw_block( x, y, w, h, GRAPHICS_COLOR_BLACK );
89#endif /* !graphics_clear_screen */
90
96 int16_t x;
98 int16_t y;
100 int16_t w;
102 int16_t h;
103};
104
110#define GRAPHICS_BMP_FLAG_TYPE_TILE 0x0004
111#define GRAPHICS_BMP_FLAG_TYPE_SPRITE 0x0002
112#define GRAPHICS_BMP_FLAG_TYPE_MASK 0x0006
113#define GRAPHICS_BMP_FLAG_INIT 0x0001
114 /* unilayer_graphics_bmp_flags */
116
126 uint16_t flags;
128 uint16_t ref_count;
129
135 uint32_t res1;
137 uint32_t res2;
139 uint8_t res3;
141 uint8_t res4;
142};
143
144int16_t graphics_init() SECTION_SETUP;
145
146void graphics_shutdown() SECTION_SETUP;
147
148void graphics_lock();
149
154
160
168
176
188void graphics_draw_px( uint16_t x, uint16_t y, const GRAPHICS_COLOR color );
189
202 uint16_t x_orig, uint16_t y_orig, uint16_t w, uint16_t h,
203 const GRAPHICS_COLOR color );
204
219 uint16_t x_orig, uint16_t y_orig, uint16_t w, uint16_t h,
220 uint16_t thickness, const GRAPHICS_COLOR color );
221
236 uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t thickness,
237 const GRAPHICS_COLOR color );
238
249 char c, uint16_t x_orig, uint16_t y_orig, GRAPHICS_COLOR color,
250 uint8_t flags );
251
263 const char* str, uint16_t str_sz, uint16_t x_orig, uint16_t y_orig,
264 GRAPHICS_COLOR color, uint8_t flags );
265
274 const char* str, uint16_t str_sz, uint8_t flags, struct GRAPHICS_RECT* sz_out
275);
276
299 uint16_t bitmap_idx, int16_t instance_id,
300 uint16_t s_x, uint16_t s_y, uint16_t d_x, uint16_t d_y,
301 uint16_t w, uint16_t h );
302
307void graphics_clear_cache() SECTION_SETUP;
308
309int16_t graphics_cache_load_bitmap( RESOURCE_ID id, uint8_t type_flag );
310 /* unilayer_graphics_cache */
312
319int16_t graphics_get_random( int16_t start, int16_t range );
320
321void graphics_on_resize( int16_t new_w, int16_t new_h );
322
323#if defined( GRAPHICS_C ) || defined( GRAPHICS_PLATFORM_C )
324
325/* Internal prototypes for abstract routines to access platform-specific
326 * implementation features.
327 */
328
336int16_t graphics_platform_load_bitmap(
337 RESOURCE_HANDLE res_handle, struct GRAPHICS_BITMAP* b ) SECTION_SETUP;
338
346int16_t graphics_platform_unload_bitmap(
347 struct GRAPHICS_BITMAP* b ) SECTION_SETUP;
348
353int16_t graphics_platform_blit_partial_at(
354 const struct GRAPHICS_BITMAP*, int16_t,
355 uint16_t, uint16_t, uint16_t, uint16_t, uint16_t, uint16_t );
356
357int16_t graphics_platform_init() SECTION_SETUP;
358void graphics_platform_shutdown() SECTION_SETUP;
359
360#endif /* GRAPHICS_C || GRAPHICS_PLATFORM_C */
361
362#ifdef GRAPHICS_C
363
364uint16_t g_screen_real_w = 0;
365uint16_t g_screen_real_h = 0;
366uint8_t g_screen_flags = 0;
367
368#else
369
370extern uint16_t g_screen_real_w;
371extern uint16_t g_screen_real_h;
372extern uint8_t g_screen_flags;
373
374#endif /* GRAPHICS_C */
375
378#endif /* GRAPHICS_H */
379
void graphics_clear_cache() SECTION_SETUP
Free up graphics and resources used by loaded assets. Should only be called as part of cleanup (i....
int16_t graphics_cache_blit_at(uint16_t bitmap_idx, int16_t instance_id, uint16_t s_x, uint16_t s_y, uint16_t d_x, uint16_t d_y, uint16_t w, uint16_t h)
Copy part or all of a GRAPHICS_BITMAP image to the screen.
void graphics_draw_line(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t thickness, const GRAPHICS_COLOR color)
Draw a line on screen.
void graphics_char_at(char c, uint16_t x_orig, uint16_t y_orig, GRAPHICS_COLOR color, uint8_t flags)
Draw a text character at the specified coordinates.
int GRAPHICS_COLOR
Representation for specific colors on the current platform.
Definition: nullg.h:16
void graphics_draw_px(uint16_t x, uint16_t y, const GRAPHICS_COLOR color)
Plot a discrete point on screen.
uint32_t graphics_get_ms()
Get the number of ticks since the program started.
void graphics_string_sz(const char *str, uint16_t str_sz, uint8_t flags, struct GRAPHICS_RECT *sz_out)
Get width and height of a text string in pixels if drawn on screen.
void graphics_draw_block(uint16_t x_orig, uint16_t y_orig, uint16_t w, uint16_t h, const GRAPHICS_COLOR color)
Draw a filled rectangle on screen.
void graphics_draw_rect(uint16_t x_orig, uint16_t y_orig, uint16_t w, uint16_t h, uint16_t thickness, const GRAPHICS_COLOR color)
Draw a hollowed rectangle on screen.
void graphics_string_at(const char *str, uint16_t str_sz, uint16_t x_orig, uint16_t y_orig, GRAPHICS_COLOR color, uint8_t flags)
Draw a text string on screen.
void graphics_loop_end()
Mark the end of rendering the current graphical frame.
void graphics_release()
Draw the current graphics buffer on-screen.
void graphics_loop_start()
Mark the beginning of rendering the current graphical frame.
int16_t graphics_get_random(int16_t start, int16_t range)
Get a random integer.
void * MEMORY_PTR
A C-style memory pointer that can be safely dereferenced.
Definition: fakem.h:42
uint32_t RESOURCE_ID
String or numerical identifier specifying an asset on disk.
Definition: nullr.h:16
Struct representing a bitmap. Should be overridden by platform.
Definition: graphics.h:123
uint32_t res2
Platform-specific uint32_t, should be overridden.
Definition: graphics.h:137
uint8_t res4
Platform-specific byte, should be overridden.
Definition: graphics.h:141
RESOURCE_ID id
Identifier for asset this bitmap represents/should load.
Definition: graphics.h:125
uint16_t ref_count
Flags indicating.
Definition: graphics.h:128
uint8_t res3
Platform-specific byte, should be overridden.
Definition: graphics.h:139
MEMORY_PTR ptr2
Platform-specific graphics structure; should be overridden.
Definition: graphics.h:133
MEMORY_PTR ptr1
Platform-specific graphics structure; should be overridden.
Definition: graphics.h:131
uint32_t res1
Platform-specific uint32_t, should be overridden.
Definition: graphics.h:135
Struct representing a bitmap on the current platform.
Definition: nullg.h:24
Struct representing a graphical rectangle.
Definition: graphics.h:94
int16_t h
Rectangle height in pixels.
Definition: graphics.h:102
int16_t w
Rectangle width in pixels.
Definition: graphics.h:100
int16_t x
Rectangle left-horizontal offset in pixels.
Definition: graphics.h:96
int16_t y
Rectangle top-vertical offset in pixels.
Definition: graphics.h:98