1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
7 // https://www.artsoft.org/
8 // ----------------------------------------------------------------------------
10 // ============================================================================
12 #include "libgame/libgame.h"
22 #define DEBUG_ANIM_DELAY 0
23 #define DEBUG_ANIM_EVENTS 0
26 // values for global toon animation definition
27 #define NUM_GLOBAL_TOON_ANIMS 1
28 #define NUM_GLOBAL_TOON_PARTS MAX_NUM_TOONS
30 // values for global animation definition (including toons)
31 #define NUM_GLOBAL_ANIMS_AND_TOONS (NUM_GLOBAL_ANIMS + \
32 NUM_GLOBAL_TOON_ANIMS)
33 #define NUM_GLOBAL_ANIM_PARTS_AND_TOONS MAX(NUM_GLOBAL_ANIM_PARTS_ALL, \
34 NUM_GLOBAL_TOON_PARTS)
36 #define ANIM_CLASS_BIT_TITLE_INITIAL 0
37 #define ANIM_CLASS_BIT_TITLE 1
38 #define ANIM_CLASS_BIT_MAIN 2
39 #define ANIM_CLASS_BIT_NAMES 3
40 #define ANIM_CLASS_BIT_SCORES 4
41 #define ANIM_CLASS_BIT_SCORESONLY 5
42 #define ANIM_CLASS_BIT_SUBMENU 6
43 #define ANIM_CLASS_BIT_MENU 7
44 #define ANIM_CLASS_BIT_TOONS 8
45 #define ANIM_CLASS_BIT_NO_TITLE 9
47 #define NUM_ANIM_CLASSES 10
49 #define ANIM_CLASS_NONE 0
50 #define ANIM_CLASS_TITLE_INITIAL (1 << ANIM_CLASS_BIT_TITLE_INITIAL)
51 #define ANIM_CLASS_TITLE (1 << ANIM_CLASS_BIT_TITLE)
52 #define ANIM_CLASS_MAIN (1 << ANIM_CLASS_BIT_MAIN)
53 #define ANIM_CLASS_NAMES (1 << ANIM_CLASS_BIT_NAMES)
54 #define ANIM_CLASS_SCORES (1 << ANIM_CLASS_BIT_SCORES)
55 #define ANIM_CLASS_SCORESONLY (1 << ANIM_CLASS_BIT_SCORESONLY)
56 #define ANIM_CLASS_SUBMENU (1 << ANIM_CLASS_BIT_SUBMENU)
57 #define ANIM_CLASS_MENU (1 << ANIM_CLASS_BIT_MENU)
58 #define ANIM_CLASS_TOONS (1 << ANIM_CLASS_BIT_TOONS)
59 #define ANIM_CLASS_NO_TITLE (1 << ANIM_CLASS_BIT_NO_TITLE)
61 #define ANIM_CLASS_TOONS_SCORES (ANIM_CLASS_TOONS | \
65 #define ANIM_CLASS_TOONS_SCORESONLY (ANIM_CLASS_TOONS | \
67 ANIM_CLASS_SCORESONLY | \
70 #define ANIM_CLASS_TOONS_MENU_MAIN (ANIM_CLASS_TOONS | \
75 #define ANIM_CLASS_TOONS_MENU_SUBMENU (ANIM_CLASS_TOONS | \
77 ANIM_CLASS_SUBMENU | \
80 #define ANIM_CLASS_TOONS_MENU_SUBMENU_2 (ANIM_CLASS_TOONS | \
82 ANIM_CLASS_SUBMENU | \
86 // values for global animation states
87 #define ANIM_STATE_INACTIVE 0
88 #define ANIM_STATE_RESTART (1 << 0)
89 #define ANIM_STATE_WAITING (1 << 1)
90 #define ANIM_STATE_RUNNING (1 << 2)
92 // values for global animation control
93 #define ANIM_NO_ACTION 0
95 #define ANIM_CONTINUE 2
99 struct GlobalAnimPartControlInfo
101 int old_nr; // position before mapping animation parts linearly
102 int old_anim_nr; // position before mapping animations linearly
108 boolean is_base; // animation part is base/main/default animation part
114 struct GraphicInfo graphic_info;
115 struct GraphicInfo control_info;
123 int step_xoffset, step_yoffset;
125 unsigned int initial_anim_sync_frame;
126 unsigned int anim_random_frame;
128 DelayCounter step_delay;
130 int init_delay_counter;
131 int anim_delay_counter;
132 int post_delay_counter;
134 boolean init_event_state;
135 boolean anim_event_state;
144 int last_anim_status;
147 struct GlobalAnimMainControlInfo
149 struct GlobalAnimPartControlInfo base;
150 struct GlobalAnimPartControlInfo part[NUM_GLOBAL_ANIM_PARTS_AND_TOONS];
155 struct GraphicInfo control_info;
157 int num_parts; // number of animation parts, but without base part
158 int num_parts_all; // number of animation parts, including base part
162 boolean has_base; // animation has base/main/default animation part
166 int init_delay_counter;
170 int last_state, last_active_part_nr;
173 struct GlobalAnimControlInfo
175 struct GlobalAnimMainControlInfo anim[NUM_GLOBAL_ANIMS_AND_TOONS];
181 struct GameModeAnimClass
185 } game_mode_anim_classes_list[] =
187 { GAME_MODE_TITLE_INITIAL_1, ANIM_CLASS_TITLE_INITIAL },
188 { GAME_MODE_TITLE_INITIAL_2, ANIM_CLASS_TITLE_INITIAL },
189 { GAME_MODE_TITLE_INITIAL_3, ANIM_CLASS_TITLE_INITIAL },
190 { GAME_MODE_TITLE_INITIAL_4, ANIM_CLASS_TITLE_INITIAL },
191 { GAME_MODE_TITLE_INITIAL_5, ANIM_CLASS_TITLE_INITIAL },
192 { GAME_MODE_TITLE_1, ANIM_CLASS_TITLE },
193 { GAME_MODE_TITLE_2, ANIM_CLASS_TITLE },
194 { GAME_MODE_TITLE_3, ANIM_CLASS_TITLE },
195 { GAME_MODE_TITLE_4, ANIM_CLASS_TITLE },
196 { GAME_MODE_TITLE_5, ANIM_CLASS_TITLE },
197 { GAME_MODE_NAMES, ANIM_CLASS_TOONS_MENU_SUBMENU },
198 { GAME_MODE_LEVELS, ANIM_CLASS_TOONS_MENU_SUBMENU },
199 { GAME_MODE_LEVELNR, ANIM_CLASS_TOONS_MENU_SUBMENU },
200 { GAME_MODE_INFO, ANIM_CLASS_TOONS_MENU_SUBMENU },
201 { GAME_MODE_SETUP, ANIM_CLASS_TOONS_MENU_SUBMENU },
202 { GAME_MODE_PSEUDO_NAMESONLY, ANIM_CLASS_TOONS_MENU_SUBMENU_2 },
203 { GAME_MODE_PSEUDO_TYPENAMES, ANIM_CLASS_TOONS_MENU_SUBMENU_2 },
204 { GAME_MODE_PSEUDO_MAINONLY, ANIM_CLASS_TOONS_MENU_MAIN },
205 { GAME_MODE_PSEUDO_TYPENAME, ANIM_CLASS_TOONS_MENU_MAIN },
206 { GAME_MODE_PSEUDO_SCORESOLD, ANIM_CLASS_TOONS_SCORESONLY },
207 { GAME_MODE_PSEUDO_SCORESNEW, ANIM_CLASS_TOONS_SCORESONLY },
208 { GAME_MODE_SCOREINFO, ANIM_CLASS_TOONS_SCORES },
209 { GAME_MODE_EDITOR, ANIM_CLASS_NO_TITLE },
210 { GAME_MODE_PLAYING, ANIM_CLASS_NO_TITLE },
215 struct AnimClassGameMode
219 } anim_class_game_modes_list[] =
221 { ANIM_CLASS_BIT_TITLE_INITIAL, GAME_MODE_TITLE_INITIAL },
222 { ANIM_CLASS_BIT_TITLE, GAME_MODE_TITLE },
223 { ANIM_CLASS_BIT_MAIN, GAME_MODE_MAIN },
224 { ANIM_CLASS_BIT_NAMES, GAME_MODE_NAMES },
225 { ANIM_CLASS_BIT_SCORES, GAME_MODE_SCORES },
226 { ANIM_CLASS_BIT_SCORESONLY, GAME_MODE_PSEUDO_SCORESONLY },
227 { ANIM_CLASS_BIT_SUBMENU, GAME_MODE_PSEUDO_SUBMENU },
228 { ANIM_CLASS_BIT_MENU, GAME_MODE_PSEUDO_MENU },
229 { ANIM_CLASS_BIT_TOONS, GAME_MODE_PSEUDO_TOONS },
230 { ANIM_CLASS_BIT_NO_TITLE, GAME_MODE_PSEUDO_NO_TITLE },
235 // forward declaration for internal use
236 static void DoGlobalAnim_DelayAction(struct GlobalAnimPartControlInfo *, int);
237 static boolean DoGlobalAnim_EventAction(struct GlobalAnimPartControlInfo *);
238 static void HandleGlobalAnim(int, int);
239 static void DoAnimationExt(void);
240 static void ResetGlobalAnim_Clickable(void);
241 static void ResetGlobalAnim_Clicked(void);
243 static struct GlobalAnimControlInfo global_anim_ctrl[NUM_GAME_MODES];
245 static unsigned int anim_sync_frame = 0;
247 static int game_mode_anim_classes[NUM_GAME_MODES];
248 static int anim_class_game_modes[NUM_ANIM_CLASSES];
250 static int anim_status_last_before_fading = GAME_MODE_DEFAULT;
251 static int anim_status_last = GAME_MODE_DEFAULT;
252 static int anim_classes_last = ANIM_CLASS_NONE;
254 static boolean drawing_to_fading_buffer = FALSE;
256 static boolean handle_click = FALSE;
259 // ============================================================================
260 // generic animation frame calculation
261 // ============================================================================
263 int getAnimationFrame(int num_frames, int delay, int mode, int start_frame,
268 if (delay < 1) // delay must be at least 1
271 sync_frame += start_frame * delay;
273 if (mode & ANIM_LOOP) // looping animation
275 frame = (sync_frame % (delay * num_frames)) / delay;
277 else if (mode & ANIM_LINEAR) // linear (non-looping) animation
279 frame = sync_frame / delay;
281 if (frame > num_frames - 1)
282 frame = num_frames - 1;
284 else if (mode & ANIM_PINGPONG) // oscillate (border frames once)
286 int max_anim_frames = (num_frames > 1 ? 2 * num_frames - 2 : 1);
288 frame = (sync_frame % (delay * max_anim_frames)) / delay;
289 frame = (frame < num_frames ? frame : max_anim_frames - frame);
291 else if (mode & ANIM_PINGPONG2) // oscillate (border frames twice)
293 int max_anim_frames = 2 * num_frames;
295 frame = (sync_frame % (delay * max_anim_frames)) / delay;
296 frame = (frame < num_frames ? frame : max_anim_frames - frame - 1);
298 else if (mode & ANIM_RANDOM) // play frames in random order
300 // note: expect different frames for the same delay cycle!
302 if (gfx.anim_random_frame < 0)
303 frame = GetSimpleRandom(num_frames);
305 frame = gfx.anim_random_frame % num_frames;
307 else if (mode & (ANIM_CE_VALUE | ANIM_CE_SCORE | ANIM_CE_DELAY))
309 frame = sync_frame % num_frames;
312 if (mode & ANIM_REVERSE) // use reverse animation direction
313 frame = num_frames - frame - 1;
319 // ============================================================================
320 // global animation functions
321 // ============================================================================
323 static int getGlobalAnimationPart(struct GlobalAnimMainControlInfo *anim)
325 struct GraphicInfo *c = &anim->control_info;
326 int last_anim_random_frame = gfx.anim_random_frame;
329 gfx.anim_random_frame = -1; // (use simple, ad-hoc random numbers)
331 part_nr = getAnimationFrame(anim->num_parts, 1,
332 c->anim_mode, c->anim_start_frame,
335 gfx.anim_random_frame = last_anim_random_frame;
340 static int compareGlobalAnimPartControlInfo(const void *obj1, const void *obj2)
342 const struct GlobalAnimPartControlInfo *o1 =
343 (struct GlobalAnimPartControlInfo *)obj1;
344 const struct GlobalAnimPartControlInfo *o2 =
345 (struct GlobalAnimPartControlInfo *)obj2;
348 if (o1->control_info.draw_order != o2->control_info.draw_order)
349 compare_result = o1->control_info.draw_order - o2->control_info.draw_order;
351 compare_result = o1->nr - o2->nr;
353 return compare_result;
356 static int compareGlobalAnimMainControlInfo(const void *obj1, const void *obj2)
358 const struct GlobalAnimMainControlInfo *o1 =
359 (struct GlobalAnimMainControlInfo *)obj1;
360 const struct GlobalAnimMainControlInfo *o2 =
361 (struct GlobalAnimMainControlInfo *)obj2;
364 if (o1->control_info.draw_order != o2->control_info.draw_order)
365 compare_result = o1->control_info.draw_order - o2->control_info.draw_order;
367 compare_result = o1->nr - o2->nr;
369 return compare_result;
372 static void InitToonControls(void)
374 int mode_nr_toons = GAME_MODE_PSEUDO_TOONS;
375 struct GlobalAnimControlInfo *ctrl = &global_anim_ctrl[mode_nr_toons];
376 struct GlobalAnimMainControlInfo *anim = &ctrl->anim[ctrl->num_anims];
377 int mode_nr, anim_nr, part_nr;
378 int control = IMG_INTERNAL_GLOBAL_TOON_DEFAULT;
379 int num_toons = MAX_NUM_TOONS;
382 if (global.num_toons >= 0 && global.num_toons < MAX_NUM_TOONS)
383 num_toons = global.num_toons;
385 mode_nr = mode_nr_toons;
386 anim_nr = ctrl->num_anims;
389 anim->mode_nr = mode_nr;
390 anim->control_info = graphic_info[control];
393 anim->num_parts_all = 0;
394 anim->part_counter = 0;
395 anim->active_part_nr = 0;
397 anim->has_base = FALSE;
399 anim->last_x = POS_OFFSCREEN;
400 anim->last_y = POS_OFFSCREEN;
402 anim->init_delay_counter = 0;
404 anim->state = ANIM_STATE_INACTIVE;
408 for (i = 0; i < num_toons; i++)
410 struct GlobalAnimPartControlInfo *part = &anim->part[part_nr];
411 int sound = SND_UNDEFINED;
412 int music = MUS_UNDEFINED;
413 int graphic = IMG_TOON_1 + i;
418 part->anim_nr = anim_nr;
419 part->mode_nr = mode_nr;
421 part->is_base = FALSE;
425 part->graphic = graphic;
427 part->graphic_info = graphic_info[graphic];
428 part->control_info = graphic_info[control];
430 part->graphic_info.anim_delay *= part->graphic_info.step_delay;
432 part->control_info.init_delay_fixed = 0;
433 part->control_info.init_delay_random = 150;
435 part->control_info.x = ARG_UNDEFINED_VALUE;
436 part->control_info.y = ARG_UNDEFINED_VALUE;
438 part->initial_anim_sync_frame = 0;
439 part->anim_random_frame = -1;
441 part->step_delay.count = 0;
442 part->step_delay.value = graphic_info[control].step_delay;
444 part->state = ANIM_STATE_INACTIVE;
445 part->last_anim_status = -1;
448 anim->num_parts_all++;
456 static void InitGlobalAnimControls(void)
459 int mode_nr, anim_nr, part_nr;
460 int sound, music, graphic, control;
464 for (m = 0; m < NUM_GAME_MODES; m++)
468 struct GlobalAnimControlInfo *ctrl = &global_anim_ctrl[mode_nr];
475 for (a = 0; a < NUM_GLOBAL_ANIMS; a++)
477 struct GlobalAnimMainControlInfo *anim = &ctrl->anim[anim_nr];
478 int ctrl_id = GLOBAL_ANIM_ID_CONTROL_FIRST + a;
480 control = global_anim_info[ctrl_id].graphic[GLOBAL_ANIM_ID_PART_BASE][m];
482 // if no base animation parameters defined, use default values
483 if (control == IMG_UNDEFINED)
484 control = IMG_INTERNAL_GLOBAL_ANIM_DEFAULT;
487 anim->mode_nr = mode_nr;
488 anim->control_info = graphic_info[control];
491 anim->num_parts_all = 0;
492 anim->part_counter = 0;
493 anim->active_part_nr = 0;
495 anim->has_base = FALSE;
497 anim->last_x = POS_OFFSCREEN;
498 anim->last_y = POS_OFFSCREEN;
500 anim->init_delay_counter = 0;
502 anim->state = ANIM_STATE_INACTIVE;
506 for (p = 0; p < NUM_GLOBAL_ANIM_PARTS_ALL; p++)
508 struct GlobalAnimPartControlInfo *part = &anim->part[part_nr];
510 sound = global_anim_info[a].sound[p][m];
511 music = global_anim_info[a].music[p][m];
512 graphic = global_anim_info[a].graphic[p][m];
513 control = global_anim_info[ctrl_id].graphic[p][m];
515 if (graphic == IMG_UNDEFINED || graphic_info[graphic].bitmap == NULL ||
516 control == IMG_UNDEFINED)
520 Debug("anim:InitGlobalAnimControls",
521 "mode == %d, anim = %d, part = %d [%d, %d, %d] [%d]",
522 m, a, p, mode_nr, anim_nr, part_nr, control);
526 Debug("anim:InitGlobalAnimControls",
527 "mode == %d, anim = %d, part = %d [%d, %d, %d] [%d]",
528 m, a, p, mode_nr, anim_nr, part_nr, sound);
532 part->old_anim_nr = a;
535 part->anim_nr = anim_nr;
536 part->mode_nr = mode_nr;
540 part->graphic = graphic;
542 part->graphic_info = graphic_info[graphic];
543 part->control_info = graphic_info[control];
545 part->initial_anim_sync_frame = 0;
546 part->anim_random_frame = -1;
548 part->step_delay.count = 0;
549 part->step_delay.value = graphic_info[control].step_delay;
551 part->state = ANIM_STATE_INACTIVE;
552 part->last_anim_status = -1;
554 anim->num_parts_all++;
556 if (p < GLOBAL_ANIM_ID_PART_BASE)
558 part->is_base = FALSE;
565 part->is_base = TRUE;
568 anim->has_base = TRUE;
571 // apply special settings for pointer-style animations
572 if (part->control_info.class == get_hash_from_key("pointer"))
574 // force animation to be on top (must set anim and part control)
575 if (anim->control_info.draw_order == 0)
576 anim->control_info.draw_order = 1000000;
577 if (part->control_info.draw_order == 0)
578 part->control_info.draw_order = 1000000;
580 // force animation to pass-through clicks (must set part control)
581 if (part->control_info.style == STYLE_DEFAULT)
582 part->control_info.style |= STYLE_PASSTHROUGH;
586 if (anim->num_parts > 0 || anim->has_base)
596 // sort all animations according to draw_order and animation number
597 for (m = 0; m < NUM_GAME_MODES; m++)
599 struct GlobalAnimControlInfo *ctrl = &global_anim_ctrl[m];
601 // sort all main animations for this game mode
602 qsort(ctrl->anim, ctrl->num_anims,
603 sizeof(struct GlobalAnimMainControlInfo),
604 compareGlobalAnimMainControlInfo);
606 for (a = 0; a < ctrl->num_anims; a++)
608 struct GlobalAnimMainControlInfo *anim = &ctrl->anim[a];
610 // sort all animation parts for this main animation
611 qsort(anim->part, anim->num_parts,
612 sizeof(struct GlobalAnimPartControlInfo),
613 compareGlobalAnimPartControlInfo);
617 for (i = 0; i < NUM_GAME_MODES; i++)
618 game_mode_anim_classes[i] = ANIM_CLASS_NONE;
619 for (i = 0; game_mode_anim_classes_list[i].game_mode != -1; i++)
620 game_mode_anim_classes[game_mode_anim_classes_list[i].game_mode] =
621 game_mode_anim_classes_list[i].class;
623 for (i = 0; i < NUM_ANIM_CLASSES; i++)
624 anim_class_game_modes[i] = GAME_MODE_DEFAULT;
625 for (i = 0; anim_class_game_modes_list[i].game_mode != -1; i++)
626 anim_class_game_modes[anim_class_game_modes_list[i].class_bit] =
627 anim_class_game_modes_list[i].game_mode;
629 anim_status_last_before_fading = GAME_MODE_LOADING;
630 anim_status_last = GAME_MODE_LOADING;
631 anim_classes_last = ANIM_CLASS_NONE;
634 void InitGlobalAnimations(void)
636 InitGlobalAnimControls();
639 static void DrawGlobalAnimationsExt(int drawing_target, int drawing_stage)
641 Bitmap *fade_bitmap =
642 (drawing_target == DRAW_TO_FADE_SOURCE ? gfx.fade_bitmap_source :
643 drawing_target == DRAW_TO_FADE_TARGET ? gfx.fade_bitmap_target : NULL);
644 int game_mode_anim_action[NUM_GAME_MODES];
650 if (drawing_stage == DRAW_GLOBAL_ANIM_STAGE_1 &&
651 drawing_target == DRAW_TO_SCREEN)
654 // always start with reliable default values (no animation actions)
655 for (mode_nr = 0; mode_nr < NUM_GAME_MODES; mode_nr++)
656 game_mode_anim_action[mode_nr] = ANIM_NO_ACTION;
658 if (global.anim_status != anim_status_last)
660 boolean before_fading = (global.anim_status == GAME_MODE_PSEUDO_FADING);
661 boolean after_fading = (anim_status_last == GAME_MODE_PSEUDO_FADING);
662 int anim_classes_next = game_mode_anim_classes[global.anim_status_next];
665 if (drawing_target == DRAW_TO_FADE_TARGET)
668 // special case: changing from/to these screens is done without fading
669 if (global.anim_status == GAME_MODE_PSEUDO_TYPENAME ||
670 global.anim_status == GAME_MODE_PSEUDO_TYPENAMES ||
671 anim_status_last == GAME_MODE_PSEUDO_TYPENAME ||
672 anim_status_last == GAME_MODE_PSEUDO_TYPENAMES)
675 // ---------- part 1 ------------------------------------------------------
676 // start or stop global animations by change of game mode
677 // (special handling of animations for "current screen" and "all screens")
679 if (global.anim_status_next != anim_status_last_before_fading)
681 // stop animations for last screen before fading to new screen
682 game_mode_anim_action[anim_status_last] = ANIM_STOP;
684 // start animations for current screen after fading to new screen
685 game_mode_anim_action[global.anim_status] = ANIM_START;
688 // start animations for all screens after loading new artwork set
689 if (anim_status_last == GAME_MODE_LOADING)
690 game_mode_anim_action[GAME_MODE_DEFAULT] = ANIM_START;
692 // ---------- part 2 ------------------------------------------------------
693 // start or stop global animations by change of animation class
694 // (generic handling of animations for "class of screens")
696 for (i = 0; i < NUM_ANIM_CLASSES; i++)
698 int anim_class_check = (1 << i);
699 int anim_class_game_mode = anim_class_game_modes[i];
700 int anim_class_last = anim_classes_last & anim_class_check;
701 int anim_class_next = anim_classes_next & anim_class_check;
703 // stop animations for changed screen class before fading to new screen
704 if (before_fading && anim_class_last && !anim_class_next)
705 game_mode_anim_action[anim_class_game_mode] = ANIM_STOP;
707 // start animations for changed screen class after fading to new screen
708 if (after_fading && !anim_class_last && anim_class_next)
709 game_mode_anim_action[anim_class_game_mode] = ANIM_START;
712 if (drawing_target == DRAW_TO_SCREEN)
716 anim_classes_last = anim_classes_next;
717 anim_status_last_before_fading = global.anim_status;
720 anim_status_last = global.anim_status;
722 // start or stop animations determined to be started or stopped above
723 for (mode_nr = 0; mode_nr < NUM_GAME_MODES; mode_nr++)
724 if (game_mode_anim_action[mode_nr] != ANIM_NO_ACTION)
725 HandleGlobalAnim(game_mode_anim_action[mode_nr], mode_nr);
727 else if (drawing_target == DRAW_TO_FADE_TARGET)
729 drawing_to_fading_buffer = TRUE;
731 // start animations determined to be (temporary) started above
732 for (mode_nr = 0; mode_nr < NUM_GAME_MODES; mode_nr++)
733 if (game_mode_anim_action[mode_nr] == ANIM_START)
734 HandleGlobalAnim(ANIM_START, mode_nr);
738 if (global.anim_status == GAME_MODE_LOADING)
741 for (mode_nr = 0; mode_nr < NUM_GAME_MODES; mode_nr++)
743 struct GlobalAnimControlInfo *ctrl = &global_anim_ctrl[mode_nr];
746 // when preparing source fading buffer, only draw animations to be stopped
747 if (drawing_target == DRAW_TO_FADE_SOURCE &&
748 game_mode_anim_action[mode_nr] != ANIM_STOP)
751 // when preparing target fading buffer, only draw animations to be started
752 if (drawing_target == DRAW_TO_FADE_TARGET &&
753 game_mode_anim_action[mode_nr] != ANIM_START)
757 if (mode_nr != GFX_SPECIAL_ARG_DEFAULT &&
758 mode_nr != game_status)
762 for (anim_nr = 0; anim_nr < ctrl->num_anims; anim_nr++)
764 struct GlobalAnimMainControlInfo *anim = &ctrl->anim[anim_nr];
765 struct GraphicInfo *c = &anim->control_info;
766 int part_first, part_last;
769 if (!(anim->state & ANIM_STATE_RUNNING))
772 part_first = part_last = anim->active_part_nr;
774 if (c->anim_mode & ANIM_ALL || anim->num_parts == 0)
776 int num_parts = anim->num_parts + (anim->has_base ? 1 : 0);
779 part_last = num_parts - 1;
782 for (part_nr = part_first; part_nr <= part_last; part_nr++)
784 struct GlobalAnimPartControlInfo *part = &anim->part[part_nr];
785 struct GraphicInfo *g = &part->graphic_info;
788 int width = g->width;
789 int height = g->height;
796 void (*blit_bitmap)(Bitmap *, Bitmap *, int, int, int, int, int, int) =
797 (g->draw_masked ? BlitBitmapMasked : BlitBitmap);
798 void (*blit_screen)(Bitmap *, int, int, int, int, int, int) =
799 (g->draw_masked ? BlitToScreenMasked : BlitToScreen);
800 int last_anim_random_frame = gfx.anim_random_frame;
802 if (!(part->state & ANIM_STATE_RUNNING))
805 if (part->drawing_stage != drawing_stage)
814 else if (part->x > part->viewport_width - g->width)
815 width -= (part->x - (part->viewport_width - g->width));
823 else if (part->y > part->viewport_height - g->height)
824 height -= (part->y - (part->viewport_height - g->height));
826 if (width <= 0 || height <= 0)
829 dst_x += part->viewport_x;
830 dst_y += part->viewport_y;
832 sync_frame = anim_sync_frame - part->initial_anim_sync_frame;
834 // re-initialize random animation frame after animation delay
835 if (g->anim_mode == ANIM_RANDOM &&
836 sync_frame % g->anim_delay == 0 &&
838 part->anim_random_frame = GetSimpleRandom(g->anim_frames);
840 gfx.anim_random_frame = part->anim_random_frame;
842 frame = getAnimationFrame(g->anim_frames, g->anim_delay,
843 g->anim_mode, g->anim_start_frame,
846 gfx.anim_random_frame = last_anim_random_frame;
848 getGlobalAnimGraphicSource(part->graphic, frame, &src_bitmap,
854 if (drawing_target == DRAW_TO_SCREEN)
855 blit_screen(src_bitmap, src_x, src_y, width, height,
858 blit_bitmap(src_bitmap, fade_bitmap, src_x, src_y, width, height,
864 if (drawing_target == DRAW_TO_FADE_TARGET)
866 // stop animations determined to be (temporary) started above
867 for (mode_nr = 0; mode_nr < NUM_GAME_MODES; mode_nr++)
868 if (game_mode_anim_action[mode_nr] == ANIM_START)
869 HandleGlobalAnim(ANIM_STOP, mode_nr);
871 drawing_to_fading_buffer = FALSE;
875 void DrawGlobalAnimations(int drawing_target, int drawing_stage)
877 int last_cursor_mode_override = gfx.cursor_mode_override;
879 if (drawing_stage == DRAW_GLOBAL_ANIM_STAGE_1)
881 ResetGlobalAnim_Clickable();
883 gfx.cursor_mode_override = CURSOR_UNDEFINED;
886 DrawGlobalAnimationsExt(drawing_target, drawing_stage);
888 if (drawing_stage == DRAW_GLOBAL_ANIM_STAGE_2)
890 ResetGlobalAnim_Clicked();
893 DrawEnvelopeRequestToScreen(drawing_target, drawing_stage);
895 if (gfx.cursor_mode_override != last_cursor_mode_override)
896 SetMouseCursor(gfx.cursor_mode);
899 static boolean SetGlobalAnimPart_Viewport(struct GlobalAnimPartControlInfo *part)
905 boolean changed = FALSE;
907 if (part->last_anim_status == global.anim_status &&
908 part->control_info.class != get_hash_from_key("pointer"))
911 part->last_anim_status = global.anim_status;
913 part->drawing_stage = DRAW_GLOBAL_ANIM_STAGE_1;
915 if (part->control_info.class == get_hash_from_key("window") ||
916 part->control_info.class == get_hash_from_key("border"))
920 viewport_width = WIN_XSIZE;
921 viewport_height = WIN_YSIZE;
923 part->drawing_stage = DRAW_GLOBAL_ANIM_STAGE_2;
925 else if (part->control_info.class == get_hash_from_key("pointer"))
927 int mx = MIN(MAX(0, gfx.mouse_x), WIN_XSIZE - 1);
928 int my = MIN(MAX(0, gfx.mouse_y), WIN_YSIZE - 1);
930 // prevent displaying off-screen custom mouse cursor in upper left corner
931 if (gfx.mouse_x == POS_OFFSCREEN &&
932 gfx.mouse_y == POS_OFFSCREEN)
933 mx = my = POS_OFFSCREEN;
935 viewport_x = mx - part->control_info.x;
936 viewport_y = my - part->control_info.y;
937 viewport_width = part->graphic_info.width;
938 viewport_height = part->graphic_info.height;
940 part->drawing_stage = DRAW_GLOBAL_ANIM_STAGE_2;
942 // do not use global animation mouse pointer when reloading artwork
943 if (global.anim_status != GAME_MODE_LOADING)
944 gfx.cursor_mode_override = CURSOR_NONE;
946 else if (part->control_info.class == get_hash_from_key("door_1"))
950 viewport_width = DXSIZE;
951 viewport_height = DYSIZE;
953 else if (part->control_info.class == get_hash_from_key("door_2"))
955 if (part->mode_nr == GAME_MODE_EDITOR)
959 viewport_width = EXSIZE;
960 viewport_height = EYSIZE;
966 viewport_width = VXSIZE;
967 viewport_height = VYSIZE;
970 else // default: "playfield"
972 viewport_x = REAL_SX;
973 viewport_y = REAL_SY;
974 viewport_width = FULL_SXSIZE;
975 viewport_height = FULL_SYSIZE;
978 if (viewport_x != part->viewport_x ||
979 viewport_y != part->viewport_y ||
980 viewport_width != part->viewport_width ||
981 viewport_height != part->viewport_height)
983 part->viewport_x = viewport_x;
984 part->viewport_y = viewport_y;
985 part->viewport_width = viewport_width;
986 part->viewport_height = viewport_height;
988 if (part->control_info.class != get_hash_from_key("pointer"))
995 static void PlayGlobalAnimSound(struct GlobalAnimPartControlInfo *part)
997 int sound = part->sound;
999 if (sound == SND_UNDEFINED)
1002 if ((!setup.sound_simple && !IS_LOOP_SOUND(sound)) ||
1003 (!setup.sound_loops && IS_LOOP_SOUND(sound)))
1006 // !!! TODO: ADD STEREO POSITION FOR MOVING ANIMATIONS !!!
1007 if (IS_LOOP_SOUND(sound))
1008 PlaySoundLoop(sound);
1013 Debug("anim:PlayGlobalAnimSound", "PLAY SOUND %d.%d.%d: %d",
1014 part->anim_nr, part->nr, part->mode_nr, sound);
1018 static void StopGlobalAnimSound(struct GlobalAnimPartControlInfo *part)
1020 int sound = part->sound;
1022 if (sound == SND_UNDEFINED)
1028 Debug("anim:StopGlobalAnimSound", "STOP SOUND %d.%d.%d: %d",
1029 part->anim_nr, part->nr, part->mode_nr, sound);
1033 static void PlayGlobalAnimMusic(struct GlobalAnimPartControlInfo *part)
1035 int music = part->music;
1037 if (music == MUS_UNDEFINED)
1040 if (!setup.sound_music)
1043 if (IS_LOOP_MUSIC(music))
1044 PlayMusicLoop(music);
1049 Debug("anim:PlayGlobalAnimMusic", "PLAY MUSIC %d.%d.%d: %d",
1050 part->anim_nr, part->nr, part->mode_nr, music);
1054 static void StopGlobalAnimMusic(struct GlobalAnimPartControlInfo *part)
1056 int music = part->music;
1058 if (music == MUS_UNDEFINED)
1064 Debug("anim:StopGlobalAnimMusic", "STOP MUSIC %d.%d.%d: %d",
1065 part->anim_nr, part->nr, part->mode_nr, music);
1069 static void PlayGlobalAnimSoundAndMusic(struct GlobalAnimPartControlInfo *part)
1071 // when drawing animations to fading buffer, do not play sounds or music
1072 if (drawing_to_fading_buffer)
1075 PlayGlobalAnimSound(part);
1076 PlayGlobalAnimMusic(part);
1079 static void StopGlobalAnimSoundAndMusic(struct GlobalAnimPartControlInfo *part)
1081 StopGlobalAnimSound(part);
1082 StopGlobalAnimMusic(part);
1085 static void PlayGlobalAnimSoundIfLoop(struct GlobalAnimPartControlInfo *part)
1087 // when drawing animations to fading buffer, do not play sounds
1088 if (drawing_to_fading_buffer)
1091 // loop sounds only expire when playing
1092 if (game_status != GAME_MODE_PLAYING)
1095 // check if any sound is defined for this animation part
1096 if (part->sound == SND_UNDEFINED)
1099 // normal (non-loop) sounds do not expire when playing
1100 if (!IS_LOOP_SOUND(part->sound))
1103 // prevent expiring loop sounds when playing
1104 PlayGlobalAnimSound(part);
1107 static boolean checkGlobalAnimEvent(int anim_event, int mask)
1109 int mask_anim_only = mask & ~ANIM_EVENT_PART_MASK;
1111 if (mask & ANIM_EVENT_ANY)
1112 return (anim_event & ANIM_EVENT_ANY);
1113 else if (mask & ANIM_EVENT_SELF)
1114 return (anim_event & ANIM_EVENT_SELF);
1115 else if (mask & ANIM_EVENT_UNCLICK_ANY)
1116 return (anim_event & ANIM_EVENT_UNCLICK_ANY);
1118 return (anim_event == mask ||
1119 anim_event == mask_anim_only);
1122 static boolean isClickablePart(struct GlobalAnimPartControlInfo *part, int mask)
1124 struct GraphicInfo *c = &part->control_info;
1125 int num_init_events = GetGlobalAnimEventValueCount(c->init_event);
1126 int num_anim_events = GetGlobalAnimEventValueCount(c->anim_event);
1129 for (i = 0; i < num_init_events; i++)
1131 int init_event = GetGlobalAnimEventValue(c->init_event, i);
1133 if (checkGlobalAnimEvent(init_event, mask))
1137 for (i = 0; i < num_anim_events; i++)
1139 int anim_event = GetGlobalAnimEventValue(c->anim_event, i);
1141 if (checkGlobalAnimEvent(anim_event, mask))
1148 static boolean isClickedPart(struct GlobalAnimPartControlInfo *part,
1149 int mx, int my, boolean clicked)
1151 struct GraphicInfo *g = &part->graphic_info;
1152 int part_x = part->viewport_x + part->x;
1153 int part_y = part->viewport_y + part->y;
1154 int part_width = g->width;
1155 int part_height = g->height;
1157 // check if mouse click was detected at all
1161 // check if mouse click is inside the animation part's viewport
1162 if (mx < part->viewport_x ||
1163 mx >= part->viewport_x + part->viewport_width ||
1164 my < part->viewport_y ||
1165 my >= part->viewport_y + part->viewport_height)
1168 // check if mouse click is inside the animation part's graphic
1170 mx >= part_x + part_width ||
1172 my >= part_y + part_height)
1178 static boolean clickBlocked(struct GlobalAnimPartControlInfo *part)
1180 return ((part->control_info.style & STYLE_BLOCK) ? TRUE : FALSE);
1183 static boolean clickConsumed(struct GlobalAnimPartControlInfo *part)
1185 return ((part->control_info.style & STYLE_PASSTHROUGH) ? FALSE : TRUE);
1188 static void InitGlobalAnim_Triggered(struct GlobalAnimPartControlInfo *part,
1189 boolean *click_consumed,
1190 boolean *any_event_action,
1191 int event_value, char *info_text)
1193 struct GlobalAnimControlInfo *ctrl = &global_anim_ctrl[part->mode_nr];
1195 int gic_anim_nr = part->old_anim_nr + 1; // X as in "anim_X"
1196 int gic_part_nr = part->old_nr + 1; // Y as in "part_Y"
1197 int mask = event_value | (gic_anim_nr << ANIM_EVENT_ANIM_BIT);
1200 mask |= gic_part_nr << ANIM_EVENT_PART_BIT;
1204 for (anim2_nr = 0; anim2_nr < ctrl->num_anims; anim2_nr++)
1206 struct GlobalAnimMainControlInfo *anim2 = &ctrl->anim[anim2_nr];
1209 for (part2_nr = 0; part2_nr < anim2->num_parts_all; part2_nr++)
1211 struct GlobalAnimPartControlInfo *part2 = &anim2->part[part2_nr];
1213 if (!(part2->state & ANIM_STATE_RUNNING))
1216 if (isClickablePart(part2, mask))
1218 part2->triggered = TRUE;
1219 *click_consumed |= clickConsumed(part); // click was on "part"!
1221 #if DEBUG_ANIM_EVENTS
1222 Debug("anim:InitGlobalAnim_Triggered",
1223 "%d.%d TRIGGERED BY %s OF %d.%d",
1224 part2->old_anim_nr + 1, part2->old_nr + 1, info_text,
1225 part->old_anim_nr + 1, part->old_nr + 1);
1228 Debug("anim:InitGlobalAnim_Triggered",
1229 "%d.%d TRIGGER CLICKED [%d]", anim2_nr, part2_nr,
1230 part2->control_info.anim_event_action);
1233 // after executing event action, ignore any further actions
1234 if (!*any_event_action && DoGlobalAnim_EventAction(part2))
1235 *any_event_action = TRUE;
1239 struct GraphicInfo *c = &part2->control_info;
1241 if (isClickablePart(part2, mask))
1242 Debug("anim:InitGlobalAnim_Triggered",
1243 "%d.%d: 0x%08x, 0x%08x [0x%08x] <--- TRIGGERED BY %d.%d",
1244 anim2_nr, part2_nr, c->init_event, c->anim_event, mask,
1247 Debug("anim:InitGlobalAnim_Triggered",
1248 "%d.%d: 0x%08x, 0x%08x [0x%08x]",
1249 anim2_nr, part2_nr, c->init_event, c->anim_event, mask);
1255 static void HandleGlobalAnimDelay(struct GlobalAnimPartControlInfo *part,
1256 int delay_type, char *info_text)
1258 #if DEBUG_ANIM_DELAY
1259 Debug("anim:HandleGlobalAnimDelay", "%d.%d %s",
1260 part->old_anim_nr + 1, part->old_nr + 1, info_text);
1263 DoGlobalAnim_DelayAction(part, delay_type);
1266 static void HandleGlobalAnimEvent(struct GlobalAnimPartControlInfo *part,
1267 int event_value, char *info_text)
1269 #if DEBUG_ANIM_EVENTS
1270 Debug("anim:HandleGlobalAnimEvent", "%d.%d %s",
1271 part->old_anim_nr + 1, part->old_nr + 1, info_text);
1274 boolean click_consumed = FALSE;
1275 boolean any_event_action = FALSE;
1277 // check if this event is defined to trigger other animations
1278 InitGlobalAnim_Triggered(part, &click_consumed, &any_event_action,
1279 event_value, info_text);
1282 static int HandleGlobalAnim_Part(struct GlobalAnimPartControlInfo *part,
1285 if (handle_click && !part->clicked)
1288 struct GlobalAnimControlInfo *ctrl = &global_anim_ctrl[part->mode_nr];
1289 struct GlobalAnimMainControlInfo *anim = &ctrl->anim[part->anim_nr];
1290 struct GraphicInfo *g = &part->graphic_info;
1291 struct GraphicInfo *c = &part->control_info;
1292 boolean viewport_changed = SetGlobalAnimPart_Viewport(part);
1294 if (viewport_changed)
1295 state |= ANIM_STATE_RESTART;
1297 if (state & ANIM_STATE_RESTART)
1299 // when drawing animations to fading buffer, only start fixed animations
1300 if (drawing_to_fading_buffer && (c->x == ARG_UNDEFINED_VALUE ||
1301 c->y == ARG_UNDEFINED_VALUE))
1302 return ANIM_STATE_INACTIVE;
1304 ResetDelayCounterExt(&part->step_delay, anim_sync_frame);
1306 part->init_delay_counter =
1307 (c->init_delay_fixed + GetSimpleRandom(c->init_delay_random));
1309 part->anim_delay_counter =
1310 (c->anim_delay_fixed + GetSimpleRandom(c->anim_delay_random));
1312 part->post_delay_counter = 0;
1314 part->init_event_state = (c->init_event != ANIM_EVENT_UNDEFINED);
1315 part->anim_event_state = (c->anim_event != ANIM_EVENT_UNDEFINED);
1317 part->initial_anim_sync_frame =
1318 (g->anim_global_sync ? 0 : anim_sync_frame + part->init_delay_counter);
1320 // do not re-initialize random animation frame after fade-in
1321 if (part->anim_random_frame == -1)
1322 part->anim_random_frame = GetSimpleRandom(g->anim_frames);
1324 if (c->direction & MV_HORIZONTAL)
1326 int pos_bottom = part->viewport_height - g->height;
1328 if (c->position == POS_TOP)
1330 else if (c->position == POS_UPPER)
1331 part->y = GetSimpleRandom(pos_bottom / 2);
1332 else if (c->position == POS_MIDDLE)
1333 part->y = pos_bottom / 2;
1334 else if (c->position == POS_LOWER)
1335 part->y = pos_bottom / 2 + GetSimpleRandom(pos_bottom / 2);
1336 else if (c->position == POS_BOTTOM)
1337 part->y = pos_bottom;
1339 part->y = GetSimpleRandom(pos_bottom);
1341 if (c->direction == MV_RIGHT)
1343 part->step_xoffset = c->step_offset;
1344 part->x = -g->width + part->step_xoffset;
1348 part->step_xoffset = -c->step_offset;
1349 part->x = part->viewport_width + part->step_xoffset;
1352 part->step_yoffset = 0;
1354 else if (c->direction & MV_VERTICAL)
1356 int pos_right = part->viewport_width - g->width;
1358 if (c->position == POS_LEFT)
1360 else if (c->position == POS_RIGHT)
1361 part->x = pos_right;
1363 part->x = GetSimpleRandom(pos_right);
1365 if (c->direction == MV_DOWN)
1367 part->step_yoffset = c->step_offset;
1368 part->y = -g->height + part->step_yoffset;
1372 part->step_yoffset = -c->step_offset;
1373 part->y = part->viewport_height + part->step_yoffset;
1376 part->step_xoffset = 0;
1383 part->step_xoffset = 0;
1384 part->step_yoffset = 0;
1387 if (part->control_info.class != get_hash_from_key("pointer"))
1389 if (c->x != ARG_UNDEFINED_VALUE)
1391 if (c->y != ARG_UNDEFINED_VALUE)
1395 if (c->position == POS_LAST &&
1396 anim->last_x > -g->width && anim->last_x < part->viewport_width &&
1397 anim->last_y > -g->height && anim->last_y < part->viewport_height)
1399 part->x = anim->last_x;
1400 part->y = anim->last_y;
1403 if (c->step_xoffset != ARG_UNDEFINED_VALUE)
1404 part->step_xoffset = c->step_xoffset;
1405 if (c->step_yoffset != ARG_UNDEFINED_VALUE)
1406 part->step_yoffset = c->step_yoffset;
1408 if (part->init_delay_counter == 0 &&
1409 !part->init_event_state)
1411 PlayGlobalAnimSoundAndMusic(part);
1413 HandleGlobalAnimDelay(part, ANIM_DELAY_INIT, "START [INIT_DELAY]");
1414 HandleGlobalAnimEvent(part, ANIM_EVENT_START, "START [ANIM]");
1418 HandleGlobalAnimEvent(part, ANIM_EVENT_INIT, "START [INIT_DELAY/EVENT]");
1422 if (part->clicked &&
1423 part->init_event_state)
1425 if (part->initial_anim_sync_frame > 0)
1426 part->initial_anim_sync_frame -= part->init_delay_counter - 1;
1428 part->init_delay_counter = 1;
1429 part->init_event_state = FALSE;
1431 part->clicked = FALSE;
1434 if (part->clicked &&
1435 part->anim_event_state)
1437 part->anim_delay_counter = 1;
1438 part->anim_event_state = FALSE;
1440 part->clicked = FALSE;
1443 if (part->init_delay_counter > 0)
1445 part->init_delay_counter--;
1447 if (part->init_delay_counter == 0)
1449 part->init_event_state = FALSE;
1451 PlayGlobalAnimSoundAndMusic(part);
1453 HandleGlobalAnimDelay(part, ANIM_DELAY_INIT, "START [INIT_DELAY]");
1454 HandleGlobalAnimEvent(part, ANIM_EVENT_START, "START [ANIM]");
1457 return ANIM_STATE_WAITING;
1460 if (part->init_event_state)
1461 return ANIM_STATE_WAITING;
1463 // animation part is now running/visible and therefore clickable
1464 part->clickable = TRUE;
1466 // check if moving animation has left the visible screen area
1467 if ((part->x <= -g->width && part->step_xoffset <= 0) ||
1468 (part->x >= part->viewport_width && part->step_xoffset >= 0) ||
1469 (part->y <= -g->height && part->step_yoffset <= 0) ||
1470 (part->y >= part->viewport_height && part->step_yoffset >= 0))
1472 // do not wait for "anim" events for off-screen animations
1473 part->anim_event_state = FALSE;
1475 // do not stop animation before "anim" or "post" counter are finished
1476 if (part->anim_delay_counter == 0 &&
1477 part->post_delay_counter == 0)
1479 StopGlobalAnimSoundAndMusic(part);
1481 HandleGlobalAnimEvent(part, ANIM_EVENT_END, "END [ANIM/OFF-SCREEN]");
1483 part->post_delay_counter =
1484 (c->post_delay_fixed + GetSimpleRandom(c->post_delay_random));
1486 if (part->post_delay_counter > 0)
1487 return ANIM_STATE_RUNNING;
1489 // drawing last frame not needed here -- animation not visible anymore
1490 return ANIM_STATE_RESTART;
1494 if (part->anim_delay_counter > 0)
1496 part->anim_delay_counter--;
1498 if (part->anim_delay_counter == 0)
1500 part->anim_event_state = FALSE;
1502 StopGlobalAnimSoundAndMusic(part);
1504 HandleGlobalAnimDelay(part, ANIM_DELAY_ANIM, "END [ANIM_DELAY]");
1505 HandleGlobalAnimEvent(part, ANIM_EVENT_END, "END [ANIM_DELAY/EVENT]");
1507 part->post_delay_counter =
1508 (c->post_delay_fixed + GetSimpleRandom(c->post_delay_random));
1510 if (part->post_delay_counter > 0)
1511 return ANIM_STATE_RUNNING;
1513 // additional state "RUNNING" required to not skip drawing last frame
1514 return ANIM_STATE_RESTART | ANIM_STATE_RUNNING;
1518 if (part->post_delay_counter > 0)
1520 part->post_delay_counter--;
1522 if (part->post_delay_counter == 0)
1524 HandleGlobalAnimDelay(part, ANIM_DELAY_POST, "END [POST_DELAY]");
1525 HandleGlobalAnimEvent(part, ANIM_EVENT_POST, "END [POST_DELAY]");
1527 return ANIM_STATE_RESTART;
1530 return ANIM_STATE_WAITING;
1533 // special case to prevent expiring loop sounds when playing
1534 PlayGlobalAnimSoundIfLoop(part);
1536 if (!DelayReachedExt(&part->step_delay, anim_sync_frame))
1537 return ANIM_STATE_RUNNING;
1541 static unsigned int last_counter = -1;
1542 unsigned int counter = Counter();
1544 Debug("anim:HandleGlobalAnim_Part", "NEXT ANIM PART [%d, %d]",
1545 anim_sync_frame, counter - last_counter);
1547 last_counter = counter;
1551 part->x += part->step_xoffset;
1552 part->y += part->step_yoffset;
1554 anim->last_x = part->x;
1555 anim->last_y = part->y;
1557 return ANIM_STATE_RUNNING;
1560 static void HandleGlobalAnim_Main(struct GlobalAnimMainControlInfo *anim,
1563 struct GlobalAnimPartControlInfo *part;
1564 struct GraphicInfo *c = &anim->control_info;
1565 int num_parts = anim->num_parts + (anim->has_base ? 1 : 0);
1566 int state, active_part_nr;
1570 Debug("anim:HandleGlobalAnim_Main", "%d, %d => %d",
1571 anim->mode_nr, anim->nr, anim->num_parts);
1572 Debug("anim:HandleGlobalAnim_Main",
1573 "%d, %d, %d", global.num_toons, setup.toons, num_toons);
1577 Debug("anim:HandleGlobalAnim_Main", "%s(%d): %d, %d, %d [%d]",
1578 (action == ANIM_START ? "ANIM_START" :
1579 action == ANIM_CONTINUE ? "ANIM_CONTINUE" :
1580 action == ANIM_STOP ? "ANIM_STOP" : "(should not happen)"),
1582 anim->state & ANIM_STATE_RESTART,
1583 anim->state & ANIM_STATE_WAITING,
1584 anim->state & ANIM_STATE_RUNNING,
1591 anim->state = anim->last_state = ANIM_STATE_RESTART;
1592 anim->active_part_nr = anim->last_active_part_nr = 0;
1593 anim->part_counter = 0;
1598 if (anim->state == ANIM_STATE_INACTIVE)
1601 anim->state = anim->last_state;
1602 anim->active_part_nr = anim->last_active_part_nr;
1607 anim->state = ANIM_STATE_INACTIVE;
1609 for (i = 0; i < num_parts; i++)
1610 StopGlobalAnimSoundAndMusic(&anim->part[i]);
1618 if (c->anim_mode & ANIM_ALL || anim->num_parts == 0)
1621 Debug("anim:HandleGlobalAnim_Main", "%d, %d => %d",
1622 anim->mode_nr, anim->nr, num_parts);
1625 for (i = 0; i < num_parts; i++)
1627 part = &anim->part[i];
1632 anim->state = ANIM_STATE_RUNNING;
1633 part->state = ANIM_STATE_RESTART;
1638 if (part->state == ANIM_STATE_INACTIVE)
1644 part->state = ANIM_STATE_INACTIVE;
1652 part->state = HandleGlobalAnim_Part(part, part->state);
1654 // when animation mode is "once", stop after animation was played once
1655 if (c->anim_mode & ANIM_ONCE &&
1656 part->state & ANIM_STATE_RESTART)
1657 part->state = ANIM_STATE_INACTIVE;
1660 anim->last_state = anim->state;
1661 anim->last_active_part_nr = anim->active_part_nr;
1666 if (anim->state & ANIM_STATE_RESTART) // directly after restart
1667 anim->active_part_nr = getGlobalAnimationPart(anim);
1669 part = &anim->part[anim->active_part_nr];
1671 // first set all animation parts to "inactive", ...
1672 for (i = 0; i < num_parts; i++)
1673 anim->part[i].state = ANIM_STATE_INACTIVE;
1675 // ... then set current animation parts to "running"
1676 part->state = ANIM_STATE_RUNNING;
1678 anim->state = HandleGlobalAnim_Part(part, anim->state);
1680 if (anim->state & ANIM_STATE_RESTART)
1681 anim->part_counter++;
1683 // when animation mode is "once", stop after all animations were played once
1684 if (c->anim_mode & ANIM_ONCE &&
1685 anim->part_counter == anim->num_parts)
1686 anim->state = ANIM_STATE_INACTIVE;
1688 state = anim->state;
1689 active_part_nr = anim->active_part_nr;
1691 // while the animation parts are pausing (waiting or inactive), play the base
1692 // (main) animation; this corresponds to the "boring player animation" logic
1693 // (!!! KLUDGE WARNING: I THINK THIS IS A MESS THAT SHOULD BE CLEANED UP !!!)
1696 if (anim->state == ANIM_STATE_WAITING ||
1697 anim->state == ANIM_STATE_INACTIVE)
1699 anim->active_part_nr = anim->num_parts; // part nr of base animation
1700 part = &anim->part[anim->active_part_nr];
1702 if (anim->state != anim->last_state)
1703 part->state = ANIM_STATE_RESTART;
1705 anim->state = ANIM_STATE_RUNNING;
1706 part->state = HandleGlobalAnim_Part(part, part->state);
1710 anim->last_state = state;
1711 anim->last_active_part_nr = active_part_nr;
1714 static void HandleGlobalAnim_Mode(struct GlobalAnimControlInfo *ctrl, int action)
1719 Debug("anim:HandleGlobalAnim_Mode", "%d => %d", ctrl->nr, ctrl->num_anims);
1722 for (i = 0; i < ctrl->num_anims; i++)
1723 HandleGlobalAnim_Main(&ctrl->anim[i], action);
1726 static void HandleGlobalAnim(int action, int game_mode)
1729 Debug("anim:HandleGlobalAnim", "mode == %d", game_status);
1732 HandleGlobalAnim_Mode(&global_anim_ctrl[game_mode], action);
1735 static void DoAnimationExt(void)
1740 Debug("anim:DoAnimationExt", "%d, %d", anim_sync_frame, Counter());
1743 // global animations now synchronized with frame delay of screen update
1746 for (i = 0; i < NUM_GAME_MODES; i++)
1747 HandleGlobalAnim(ANIM_CONTINUE, i);
1750 // force screen redraw in next frame to continue drawing global animations
1751 redraw_mask = REDRAW_ALL;
1755 static void DoGlobalAnim_DelayAction(struct GlobalAnimPartControlInfo *part,
1759 (delay_type == ANIM_DELAY_INIT ? part->control_info.init_delay_action :
1760 delay_type == ANIM_DELAY_ANIM ? part->control_info.anim_delay_action :
1761 delay_type == ANIM_DELAY_POST ? part->control_info.post_delay_action :
1762 ANIM_DELAY_ACTION_NONE);
1764 if (delay_action == ANIM_DELAY_ACTION_NONE)
1767 PushUserEvent(USEREVENT_ANIM_DELAY_ACTION, delay_action, 0);
1770 static boolean DoGlobalAnim_EventAction(struct GlobalAnimPartControlInfo *part)
1772 int event_action = (part->init_event_state ?
1773 part->control_info.init_event_action :
1774 part->control_info.anim_event_action);
1776 if (event_action == ANIM_EVENT_ACTION_NONE)
1779 if (event_action < MAX_IMAGE_FILES)
1780 PushUserEvent(USEREVENT_ANIM_EVENT_ACTION, event_action, 0);
1782 OpenURLFromHash(anim_url_hash, event_action);
1784 // check if further actions are allowed to be executed
1785 if (part->control_info.style & STYLE_MULTIPLE_ACTIONS)
1791 static void InitGlobalAnim_Clickable(void)
1795 for (mode_nr = 0; mode_nr < NUM_GAME_MODES; mode_nr++)
1797 struct GlobalAnimControlInfo *ctrl = &global_anim_ctrl[mode_nr];
1800 for (anim_nr = 0; anim_nr < ctrl->num_anims; anim_nr++)
1802 struct GlobalAnimMainControlInfo *anim = &ctrl->anim[anim_nr];
1805 for (part_nr = 0; part_nr < anim->num_parts_all; part_nr++)
1807 struct GlobalAnimPartControlInfo *part = &anim->part[part_nr];
1809 if (part->triggered)
1810 part->clicked = TRUE;
1812 part->triggered = FALSE;
1813 part->clickable = FALSE;
1819 #define ANIM_CLICKED_RESET 0
1820 #define ANIM_CLICKED_PRESSED 1
1821 #define ANIM_CLICKED_RELEASED 2
1823 static boolean InitGlobalAnim_Clicked(int mx, int my, int clicked_event)
1825 boolean click_consumed = FALSE;
1826 boolean anything_clicked = FALSE;
1827 boolean any_part_clicked = FALSE;
1828 boolean any_event_action = FALSE;
1832 // check game modes in reverse draw order (to stop when clicked)
1833 for (mode_nr = NUM_GAME_MODES - 1; mode_nr >= 0; mode_nr--)
1835 struct GlobalAnimControlInfo *ctrl = &global_anim_ctrl[mode_nr];
1838 // check animations in reverse draw order (to stop when clicked)
1839 for (anim_nr = ctrl->num_anims - 1; anim_nr >= 0; anim_nr--)
1841 struct GlobalAnimMainControlInfo *anim = &ctrl->anim[anim_nr];
1844 // check animation parts in reverse draw order (to stop when clicked)
1845 for (part_nr = anim->num_parts_all - 1; part_nr >= 0; part_nr--)
1847 struct GlobalAnimPartControlInfo *part = &anim->part[part_nr];
1849 if (clicked_event == ANIM_CLICKED_RESET)
1851 part->clicked = FALSE;
1856 if (!part->clickable)
1859 if (!(part->state & ANIM_STATE_RUNNING))
1862 // always handle "any" click events (clicking anywhere on screen) ...
1863 if (clicked_event == ANIM_CLICKED_PRESSED &&
1864 isClickablePart(part, ANIM_EVENT_ANY))
1866 #if DEBUG_ANIM_EVENTS
1867 Debug("anim:InitGlobalAnim_Clicked", "%d.%d TRIGGERED BY ANY",
1868 part->old_anim_nr + 1, part->old_nr + 1);
1871 anything_clicked = part->clicked = TRUE;
1872 click_consumed |= clickConsumed(part);
1875 // always handle "unclick:any" events (releasing anywhere on screen) ...
1876 if (clicked_event == ANIM_CLICKED_RELEASED &&
1877 isClickablePart(part, ANIM_EVENT_UNCLICK_ANY))
1879 #if DEBUG_ANIM_EVENTS
1880 Debug("anim:InitGlobalAnim_Clicked", "%d.%d TRIGGERED BY UNCLICK:ANY",
1881 part->old_anim_nr + 1, part->old_nr + 1);
1884 anything_clicked = part->clicked = TRUE;
1885 click_consumed |= clickConsumed(part);
1888 // ... but only handle the first (topmost) clickable animation
1889 if (any_part_clicked)
1892 if (clicked_event == ANIM_CLICKED_PRESSED &&
1893 isClickedPart(part, mx, my, TRUE))
1896 Debug("anim:InitGlobalAnim_Clicked", "%d.%d CLICKED [%d]",
1897 anim_nr, part_nr, part->control_info.anim_event_action);
1900 // after executing event action, ignore any further actions
1901 if (!any_event_action && DoGlobalAnim_EventAction(part))
1902 any_event_action = TRUE;
1904 // determine if mouse clicks should be blocked from other animations
1905 any_part_clicked |= clickConsumed(part);
1907 if (isClickablePart(part, ANIM_EVENT_SELF))
1909 #if DEBUG_ANIM_EVENTS
1910 Debug("anim:InitGlobalAnim_Clicked", "%d.%d TRIGGERED BY SELF",
1911 part->old_anim_nr + 1, part->old_nr + 1);
1914 anything_clicked = part->clicked = TRUE;
1915 click_consumed |= clickConsumed(part);
1918 // determine if mouse clicks should be blocked by this animation
1919 click_consumed |= clickBlocked(part);
1921 // check if this click is defined to trigger other animations
1922 InitGlobalAnim_Triggered(part, &click_consumed, &any_event_action,
1923 ANIM_EVENT_CLICK, "CLICK");
1929 if (anything_clicked)
1931 handle_click = TRUE;
1933 for (i = 0; i < NUM_GAME_MODES; i++)
1934 HandleGlobalAnim(ANIM_CONTINUE, i);
1936 handle_click = FALSE;
1938 // prevent ignoring release event if processed within same game frame
1939 StopProcessingEvents();
1942 return (click_consumed || any_event_action);
1945 static void ResetGlobalAnim_Clickable(void)
1947 InitGlobalAnim_Clickable();
1950 static void ResetGlobalAnim_Clicked(void)
1952 InitGlobalAnim_Clicked(-1, -1, ANIM_CLICKED_RESET);
1955 boolean HandleGlobalAnimClicks(int mx, int my, int button, boolean force_click)
1957 static boolean click_consumed = FALSE;
1958 static int last_button = 0;
1959 boolean press_event;
1960 boolean release_event;
1961 boolean click_consumed_current = click_consumed;
1963 if (button != 0 && force_click)
1966 // check if button state has changed since last invocation
1967 press_event = (button != 0 && last_button == 0);
1968 release_event = (button == 0 && last_button != 0);
1969 last_button = button;
1973 click_consumed = InitGlobalAnim_Clicked(mx, my, ANIM_CLICKED_PRESSED);
1974 click_consumed_current = click_consumed;
1979 InitGlobalAnim_Clicked(mx, my, ANIM_CLICKED_RELEASED);
1980 click_consumed = FALSE;
1983 return click_consumed_current;