17#define GRAPHICS_ERROR_NOT_FOUND -1
19#define GRAPHICS_INSTANCE_NONE -1
20#define GRAPHICS_INSTANCE_WINDOW -2
21#define GRAPHICS_INSTANCE_TILEMAP -3
34#define GRAPHICS_STRING_FLAG_1X 0x01
37#define GRAPHICS_STRING_FLAG_ALL_CAPS 0x10
40#define GRAPHICS_STRING_FLAG_FONT_SCRIPT 0x20
43#define GRAPHICS_STRING_FLAG_OUTLINE 0x80
47#define GRAPHICS_FLAG_SHAKING_MASK 0x03
48#define GRAPHICS_FLAG_ZOOM_MASK 0x0c
52#define GRAPHICS_TXP_R 0xff
57#define GRAPHICS_TXP_G 0x55
62#define GRAPHICS_TXP_B 0xff
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)
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 ); }
69#define graphics_set_screen_shake( shake ) g_screen_flags &= ~GRAPHICS_FLAG_SHAKING_MASK; g_screen_flags |= (GRAPHICS_FLAG_SHAKING_MASK & shake);
71#define graphics_set_screen_zoom( zoom ) g_screen_flags &= ~GRAPHICS_FLAG_ZOOM_MASK; g_screen_flags |= (((zoom) << 2) & GRAPHICS_FLAG_ZOOM_MASK)
73#ifndef graphics_clear_screen
74#define graphics_clear_screen() \
75 graphics_draw_block( 0, 0, SCREEN_W, SCREEN_H, GRAPHICS_COLOR_BLACK );
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 );
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
144int16_t graphics_init() SECTION_SETUP;
146void graphics_shutdown() SECTION_SETUP;
202 uint16_t x_orig, uint16_t y_orig, uint16_t w, uint16_t h,
219 uint16_t x_orig, uint16_t y_orig, uint16_t w, uint16_t h,
236 uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t thickness,
263 const
char* str, uint16_t str_sz, uint16_t x_orig, uint16_t y_orig,
274 const
char* str, uint16_t str_sz, uint8_t flags, struct
GRAPHICS_RECT* sz_out
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 );
309int16_t graphics_cache_load_bitmap(
RESOURCE_ID id, uint8_t type_flag );
321void graphics_on_resize( int16_t new_w, int16_t new_h );
323#if defined( GRAPHICS_C ) || defined( GRAPHICS_PLATFORM_C )
336int16_t graphics_platform_load_bitmap(
346int16_t graphics_platform_unload_bitmap(
353int16_t graphics_platform_blit_partial_at(
355 uint16_t, uint16_t, uint16_t, uint16_t, uint16_t, uint16_t );
357int16_t graphics_platform_init() SECTION_SETUP;
358void graphics_platform_shutdown() SECTION_SETUP;
364uint16_t g_screen_real_w = 0;
365uint16_t g_screen_real_h = 0;
366uint8_t g_screen_flags = 0;
370extern uint16_t g_screen_real_w;
371extern uint16_t g_screen_real_h;
372extern uint8_t g_screen_flags;
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