dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
animate.h
Go to the documentation of this file.
1
2#ifndef ANIMATE_H
3#define ANIMATE_H
4
41#define ANIMATE_CB_TABLE( f ) f( 0, CIRCLE ) f( 1, RECTANGLE ) f( 2, FIRE ) f( 3, SNOW ) f( 4, CLOUDS ) f( 5, STRING ) f( 6, FRAMES )
42
44#define ANIMATE_ERROR -1
45
46#define ANIMATE_COLOR_BLACK 0
47#define ANIMATE_COLOR_CYAN 1
48#define ANIMATE_COLOR_MAGENTA 2
49#define ANIMATE_COLOR_WHITE 3
50
51#ifdef DEPTH_VGA
52
53#define ANIMATE_COLOR_DARKBLUE 4
54#define ANIMATE_COLOR_DARKGREEN 5
55#define ANIMATE_COLOR_TEAL 6
56#define ANIMATE_COLOR_DARKRED 7
57#define ANIMATE_COLOR_VIOLET 8
58#define ANIMATE_COLOR_BROWN 9
59#define ANIMATE_COLOR_GRAY 10
60#define ANIMATE_COLOR_DARKGRAY 11
61#define ANIMATE_COLOR_BLUE 12
62#define ANIMATE_COLOR_GREEN 13
63#define ANIMATE_COLOR_RED 15
64#define ANIMATE_COLOR_YELLOW 16
65
66#endif /* DEPTH_VGA */
67
68#ifdef DEPTH_VGA
69
70#define ANIMATE_TEMP_LOW() GRAPHICS_COLOR_RED
71#define ANIMATE_TEMP_MED() GRAPHICS_COLOR_YELLOW
72#define ANIMATE_TEMP_HIGH() GRAPHICS_COLOR_WHITE
73
74#else
75
76#define ANIMATE_TEMP_LOW() GRAPHICS_COLOR_MAGENTA
77#define ANIMATE_TEMP_MED() GRAPHICS_COLOR_CYAN
78#define ANIMATE_TEMP_HIGH() GRAPHICS_COLOR_WHITE
79
80#endif /* DEPTH_VGA */
81
93#define ANIMATE_FLAG_ACTIVE 0x0001
98#define ANIMATE_FLAG_INIT 0x0002
104#define ANIMATE_FLAG_CLEANUP 0x0004
110#define ANIMATE_FLAG_PAUSED 0x0008
111
112#define ANIMATE_FLAG_CLOUDS_ROTATE 0x0010
113
116#define ANIMATE_TILE_W 16
117#define ANIMATE_TILE_H 16
118#define ANIMATE_TILE_SZ (ANIMATE_TILE_W * ANIMATE_TILE_H)
119
120#define ANIMATE_FIRE_COOLING_MAX 10
121#define ANIMATE_FIRE_COOLING_MIN 5
122#define ANIMATE_FIRE_WIND 1
123
124#define ANIMATE_TEXT_HEADER_Y_OFFSET 0
125#define ANIMATE_TEXT_HEADER_Y_COUNT 1
126#define ANIMATE_TEXT_HEADER_STR_SZ 2
127#define ANIMATE_TEXT_HEADER_COLOR_IDX 3
128#define ANIMATE_TEXT_HEADER_STR 4
129#define ANIMATE_TEXT_MAX_SZ (ANIMATE_TILE_SZ - ANIMATE_TEXT_HEADER_STR)
130
131#define ANIMATE_CLOUD_WISP_LEN 8
132
133#if 0
136/* TODO: Implementation. */
137struct ANIMATION_FRAME {
138 RESOURCE_ID frame;
139 MEMORY_HANDLE next;
140};
141#endif
142
143#ifdef NO_ANIMATE
144
145#define animate_draw_RECTANGLE( a )
146#define animate_draw_CIRCLE( a )
147#define animate_draw_FIRE( a )
148#define animate_draw_SNOW( a )
149#define animate_draw_CLOUDS( a )
150#define animate_draw_STRING( a )
151#define animate_draw_FRAMES( a )
152#define animate_create( type, flags, x, y, w, h )
153#define animate_frame( flags )
154#define animate_stop( idx )
155#define animate_stop_all()
156#define animate_pause( flags )
157#define animate_resume( flags )
158
159#else
160
164struct ANIMATION {
166 uint8_t type;
168 int16_t x;
170 int16_t y;
172 int16_t w;
174 int16_t h;
181 uint16_t flags;
183 int8_t tile[ANIMATE_TILE_SZ];
184};
185
187typedef void (*ANIMATE_CB)( struct ANIMATION* a );
188
193 int8_t a_idx, char* str_in, uint8_t str_sz_in, uint8_t color_idx_in );
194
205 uint8_t type, uint16_t flags, int16_t x, int16_t y, int16_t w, int16_t h );
206
210void animate_tesselate( struct ANIMATION* a, int16_t y_orig );
211
216void animate_frame( uint16_t flags );
217
222void animate_pause( uint16_t flags );
223
229void animate_resume( uint16_t flags );
230
235void animate_stop( int8_t idx );
236
241
242#define ANIMATE_CB_TABLE_DRAW_PROTOTYPES( idx, name ) void animate_draw_ ## name( struct ANIMATION* );
243
244ANIMATE_CB_TABLE( ANIMATE_CB_TABLE_DRAW_PROTOTYPES )
245
246#ifdef ANIMATE_C
247
248#define ANIMATE_CB_TABLE_LIST( idx, name ) animate_draw_ ## name,
249
250const ANIMATE_CB gc_animate_draw[] = {
251 ANIMATE_CB_TABLE( ANIMATE_CB_TABLE_LIST )
252};
253
254#define ANIMATE_CB_TABLE_TYPES( idx, name ) const uint8_t ANIMATE_TYPE_ ## name = idx;
255
256ANIMATE_CB_TABLE( ANIMATE_CB_TABLE_TYPES );
257
258struct ANIMATION g_animations[ANIMATE_ANIMATIONS_MAX];
259
260static const GRAPHICS_COLOR gc_animation_colors[] = {
265#ifdef DEPTH_VGA
266 GRAPHICS_COLOR_DARKBLUE,
267 GRAPHICS_COLOR_DARKGREEN,
268 GRAPHICS_COLOR_TEAL,
269 GRAPHICS_COLOR_DARKRED,
270 GRAPHICS_COLOR_VIOLET,
271 GRAPHICS_COLOR_BROWN,
272 GRAPHICS_COLOR_GRAY,
273 GRAPHICS_COLOR_DARKGRAY,
274 GRAPHICS_COLOR_BLUE,
275 GRAPHICS_COLOR_GREEN,
276 GRAPHICS_COLOR_RED,
277 GRAPHICS_COLOR_YELLOW
278#endif /* DEPTH_VGA */
279};
280
281#else
282
284extern const ANIMATE_CB gc_animate_draw[];
286extern struct ANIMATION g_animations[ANIMATE_ANIMATIONS_MAX];
287
288#define ANIMATE_CB_TABLE_TYPES( idx, name ) extern const uint8_t ANIMATE_TYPE_ ## name;
289
290ANIMATE_CB_TABLE( ANIMATE_CB_TABLE_TYPES )
291
292#endif /* ANIMATE_C */
293
296#endif /* NO_ANIMATE */
297
298#endif /* !ANIMATE_H */
299
void animate_set_string(int8_t a_idx, char *str_in, uint8_t str_sz_in, uint8_t color_idx_in)
Setup string animation.
struct ANIMATION g_animations[ANIMATE_ANIMATIONS_MAX]
Internal running animation list.
const ANIMATE_CB gc_animate_draw[]
Internal animation callback table.
void animate_frame(uint16_t flags)
Should be called during every frame to overlay animations on screen.
void animate_resume(uint16_t flags)
Resume all animations with the given flags that have been paused with animate_pause().
void animate_tesselate(struct ANIMATION *a, int16_t y_orig)
Draw the animation tile to the screen, tiled to fill its area.
int8_t animate_create(uint8_t type, uint16_t flags, int16_t x, int16_t y, int16_t w, int16_t h)
Create a new animation in the global animations list.
void(* ANIMATE_CB)(struct ANIMATION *a)
Callback to call on active animations for every frame.
Definition: animate.h:187
void animate_stop(int8_t idx)
Stop the animation with the given internal index.
void animate_stop_all()
Stop all currently running animations on screen.
void animate_pause(uint16_t flags)
Pause all animations with the given flags without deleting them.
#define GRAPHICS_COLOR_BLACK
GRAPHICS_COLOR value for black on the current platform.
Definition: nullg.h:65
#define GRAPHICS_COLOR_CYAN
GRAPHICS_COLOR value for cyan on the current platform.
Definition: nullg.h:67
#define GRAPHICS_COLOR_MAGENTA
GRAPHICS_COLOR value for magenta on the current platform.
Definition: nullg.h:69
#define GRAPHICS_COLOR_WHITE
GRAPHICS_COLOR value for white on the current platform.
Definition: nullg.h:71
int GRAPHICS_COLOR
Representation for specific colors on the current platform.
Definition: nullg.h:16
uint32_t RESOURCE_ID
String or numerical identifier specifying an asset on disk.
Definition: nullr.h:16
Internal representation of an animation. Do not call directly; use animate_create() instead.
Definition: animate.h:164
int8_t tile[ANIMATE_TILE_SZ]
Data specific to particular animation playing.
Definition: animate.h:183
int16_t x
Left origin of animation on screen in pixels.
Definition: animate.h:168
int16_t w
Width of animation on screen in pixels.
Definition: animate.h:172
uint16_t flags
Bitfield indicating animation's Unilayer Animation Flags.
Definition: animate.h:181
int16_t y
Top origin of animation on screen in pixels.
Definition: animate.h:170
uint8_t type
Type of animation this is (See ANIMATE_CB_TABLE).
Definition: animate.h:166
int16_t h
Height of animation on screen in pixels.
Definition: animate.h:174
An emulated memory handle for modern systems. Overridden on most platforms.
Definition: memory.h:20