1 // ============================================================================
2 // Artsoft Retro-Game Library
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
7 // http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
10 // ============================================================================
16 /* values for toon animation */
18 #define ANIM_CONTINUE 1
22 static struct ToonScreenInfo screen_info;
25 /* ========================================================================= */
26 /* generic animation frame calculation */
27 /* ========================================================================= */
29 int getAnimationFrame(int num_frames, int delay, int mode, int start_frame,
34 sync_frame += start_frame * delay;
36 if (mode & ANIM_LOOP) /* looping animation */
38 frame = (sync_frame % (delay * num_frames)) / delay;
40 else if (mode & ANIM_LINEAR) /* linear (non-looping) animation */
42 frame = sync_frame / delay;
44 if (frame > num_frames - 1)
45 frame = num_frames - 1;
47 else if (mode & ANIM_PINGPONG) /* oscillate (border frames once) */
49 int max_anim_frames = (num_frames > 1 ? 2 * num_frames - 2 : 1);
51 frame = (sync_frame % (delay * max_anim_frames)) / delay;
52 frame = (frame < num_frames ? frame : max_anim_frames - frame);
54 else if (mode & ANIM_PINGPONG2) /* oscillate (border frames twice) */
56 int max_anim_frames = 2 * num_frames;
58 frame = (sync_frame % (delay * max_anim_frames)) / delay;
59 frame = (frame < num_frames ? frame : max_anim_frames - frame - 1);
61 else if (mode & ANIM_RANDOM) /* play frames in random order */
63 /* note: expect different frames for the same delay cycle! */
65 if (gfx.anim_random_frame < 0)
66 frame = GetSimpleRandom(num_frames);
68 frame = gfx.anim_random_frame % num_frames;
70 else if (mode & (ANIM_CE_VALUE | ANIM_CE_SCORE | ANIM_CE_DELAY))
72 frame = sync_frame % num_frames;
75 if (mode & ANIM_REVERSE) /* use reverse animation direction */
76 frame = num_frames - frame - 1;
82 /* ========================================================================= */
83 /* toon animation functions */
84 /* ========================================================================= */
86 static int get_toon_direction(char *direction_string_raw)
88 char *direction_string = getStringToLower(direction_string_raw);
89 int direction = (strEqual(direction_string, "left") ? MV_LEFT :
90 strEqual(direction_string, "right") ? MV_RIGHT :
91 strEqual(direction_string, "up") ? MV_UP :
92 strEqual(direction_string, "down") ? MV_DOWN :
95 free(direction_string);
100 void InitToonScreen(Bitmap *save_buffer,
101 void (*update_function)(void),
102 void (*prepare_backbuffer_function)(void),
103 boolean (*redraw_needed_function)(void),
104 struct ToonInfo *toons, int num_toons,
105 int startx, int starty,
106 int width, int height,
107 int frame_delay_value)
109 screen_info.save_buffer = save_buffer;
110 screen_info.update_function = update_function;
111 screen_info.prepare_backbuffer_function = prepare_backbuffer_function;
112 screen_info.redraw_needed_function = redraw_needed_function;
113 screen_info.toons = toons;
114 screen_info.num_toons = num_toons;
115 screen_info.startx = startx;
116 screen_info.starty = starty;
117 screen_info.width = width;
118 screen_info.height = height;
119 screen_info.frame_delay_value = frame_delay_value;
122 void DrawAnim(Bitmap *toon_bitmap, int src_x, int src_y, int width, int height,
123 int dest_x, int dest_y, int pad_x, int pad_y)
125 int pad_dest_x = dest_x - pad_x;
126 int pad_dest_y = dest_y - pad_y;
127 int pad_width = width + 2 * pad_x;
128 int pad_height = height + 2 * pad_y;
132 /* correct values to avoid off-screen blitting (start position) */
133 if (pad_dest_x < screen_info.startx)
135 pad_width -= (screen_info.startx - pad_dest_x);
136 pad_dest_x = screen_info.startx;
138 if (pad_dest_y < screen_info.starty)
140 pad_height -= (screen_info.starty - pad_dest_y);
141 pad_dest_y = screen_info.starty;
144 /* correct values to avoid off-screen blitting (blit size) */
145 if (pad_width > screen_info.width)
146 pad_width = screen_info.width;
147 if (pad_height > screen_info.height)
148 pad_height = screen_info.height;
150 /* special method to avoid flickering interference with BackToFront() */
151 BlitBitmap(backbuffer, screen_info.save_buffer, pad_dest_x, pad_dest_y,
152 pad_width, pad_height, buffer_x, buffer_y);
153 BlitBitmapMasked(toon_bitmap, backbuffer, src_x, src_y, width, height,
155 BlitBitmap(backbuffer, window, pad_dest_x, pad_dest_y, pad_width, pad_height,
156 pad_dest_x, pad_dest_y);
158 screen_info.update_function();
160 BlitBitmap(screen_info.save_buffer, backbuffer, buffer_x, buffer_y,
161 pad_width, pad_height, pad_dest_x, pad_dest_y);
164 boolean AnimateToon(int toon_nr, boolean restart)
166 static unsigned int animation_frame_counter = 0;
167 static int pos_x = 0, pos_y = 0;
168 static int delta_x = 0, delta_y = 0;
169 static int frame = 0;
170 static boolean horiz_move, vert_move;
171 static unsigned int anim_delay = 0;
172 static unsigned int anim_delay_value = 0;
173 static int width,height;
174 static int pad_x,pad_y;
175 static int cut_x,cut_y;
176 static int src_x, src_y;
177 static int dest_x, dest_y;
178 struct ToonInfo *anim = &screen_info.toons[toon_nr];
179 Bitmap *anim_bitmap = screen_info.toons[toon_nr].bitmap;
180 int direction = get_toon_direction(anim->direction);
184 horiz_move = (direction & (MV_LEFT | MV_RIGHT));
185 vert_move = (direction & (MV_UP | MV_DOWN));
186 anim_delay_value = anim->step_delay * screen_info.frame_delay_value;
188 frame = getAnimationFrame(anim->anim_frames, anim->anim_delay,
189 anim->anim_mode, anim->anim_start_frame,
190 animation_frame_counter++);
194 int pos_bottom = screen_info.height - anim->height;
196 if (strEqual(anim->position, "top"))
198 else if (strEqual(anim->position, "bottom"))
200 else if (strEqual(anim->position, "upper"))
201 pos_y = GetSimpleRandom(pos_bottom / 2);
202 else if (strEqual(anim->position, "lower"))
203 pos_y = pos_bottom / 2 + GetSimpleRandom(pos_bottom / 2);
205 pos_y = GetSimpleRandom(pos_bottom);
207 if (direction == MV_RIGHT)
209 delta_x = anim->step_offset;
210 pos_x = -anim->width + delta_x;
214 delta_x = -anim->step_offset;
215 pos_x = screen_info.width + delta_x;
222 int pos_right = screen_info.width - anim->width;
224 if (strEqual(anim->position, "left"))
226 else if (strEqual(anim->position, "right"))
229 pos_x = GetSimpleRandom(pos_right);
231 if (direction == MV_DOWN)
233 delta_y = anim->step_offset;
234 pos_y = -anim->height + delta_y;
238 delta_y = -anim->step_offset;
239 pos_y = screen_info.height + delta_y;
246 if (pos_x <= -anim->width - anim->step_offset ||
247 pos_x >= screen_info.width + anim->step_offset ||
248 pos_y <= -anim->height - anim->step_offset ||
249 pos_y >= screen_info.height + anim->step_offset)
252 if (!DelayReached(&anim_delay, anim_delay_value))
254 if (screen_info.redraw_needed_function() && !restart)
255 DrawAnim(anim_bitmap,
256 src_x + cut_x, src_y + cut_y,
258 screen_info.startx + dest_x,
259 screen_info.starty + dest_y,
265 if (pos_x < -anim->width)
266 pos_x = -anim->width;
267 else if (pos_x > screen_info.width)
268 pos_x = screen_info.width;
269 if (pos_y < -anim->height)
270 pos_y = -anim->height;
271 else if (pos_y > screen_info.height)
272 pos_y = screen_info.height;
274 pad_x = (horiz_move ? anim->step_offset : 0);
275 pad_y = (vert_move ? anim->step_offset : 0);
276 src_x = anim->src_x + frame * anim->width;
282 height = anim->height;
290 else if (pos_x > screen_info.width - anim->width)
291 width -= (pos_x - (screen_info.width - anim->width));
299 else if (pos_y > screen_info.height - anim->height)
300 height -= (pos_y - (screen_info.height - anim->height));
302 DrawAnim(anim_bitmap,
303 src_x + cut_x, src_y + cut_y,
305 screen_info.startx + dest_x,
306 screen_info.starty + dest_y,
312 frame = getAnimationFrame(anim->anim_frames, anim->anim_delay,
313 anim->anim_mode, anim->anim_start_frame,
314 animation_frame_counter++);
319 void HandleAnimation(int mode)
321 static unsigned int animstart_delay = -1;
322 static unsigned int animstart_delay_value = 0;
323 static boolean anim_running = FALSE;
324 static boolean anim_restart = TRUE;
325 static boolean reset_delay = TRUE;
326 static int toon_nr = 0;
328 if (!setup.toons || screen_info.num_toons == 0)
331 /* this may happen after reloading graphics and redefining "num_toons" */
332 if (toon_nr >= screen_info.num_toons)
338 screen_info.prepare_backbuffer_function();
355 redraw_mask |= (REDRAW_FIELD | REDRAW_FROM_BACKBUFFER);
357 screen_info.update_function();
359 anim_running = FALSE;
370 animstart_delay = Counter();
371 animstart_delay_value = GetSimpleRandom(3000);
377 if (!DelayReached(&animstart_delay, animstart_delay_value))
380 toon_nr = GetSimpleRandom(screen_info.num_toons);
383 anim_restart = reset_delay = AnimateToon(toon_nr, anim_restart);
388 HandleAnimation(ANIM_START);
393 HandleAnimation(ANIM_STOP);
398 HandleAnimation(ANIM_CONTINUE);