1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
7 // http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
10 // ============================================================================
14 #include "libgame/libgame.h"
26 /* select level set with EMC X11 graphics before activating EM GFX debugging */
27 #define DEBUG_EM_GFX FALSE
28 #define DEBUG_FRAME_TIME FALSE
30 /* tool button identifiers */
31 #define TOOL_CTRL_ID_YES 0
32 #define TOOL_CTRL_ID_NO 1
33 #define TOOL_CTRL_ID_CONFIRM 2
34 #define TOOL_CTRL_ID_PLAYER_1 3
35 #define TOOL_CTRL_ID_PLAYER_2 4
36 #define TOOL_CTRL_ID_PLAYER_3 5
37 #define TOOL_CTRL_ID_PLAYER_4 6
39 #define NUM_TOOL_BUTTONS 7
41 /* constants for number of doors and door parts */
43 #define NUM_PANELS NUM_DOORS
44 // #define NUM_PANELS 0
45 #define MAX_PARTS_PER_DOOR 8
46 #define MAX_DOOR_PARTS (NUM_DOORS * MAX_PARTS_PER_DOOR + NUM_PANELS)
47 #define DOOR_PART_IS_PANEL(i) ((i) >= NUM_DOORS * MAX_PARTS_PER_DOOR)
50 struct DoorPartOrderInfo
56 static struct DoorPartOrderInfo door_part_order[MAX_DOOR_PARTS];
58 struct DoorPartControlInfo
62 struct DoorPartPosInfo *pos;
65 static struct DoorPartControlInfo door_part_controls[] =
69 IMG_GFX_DOOR_1_PART_1,
74 IMG_GFX_DOOR_1_PART_2,
79 IMG_GFX_DOOR_1_PART_3,
84 IMG_GFX_DOOR_1_PART_4,
89 IMG_GFX_DOOR_1_PART_5,
94 IMG_GFX_DOOR_1_PART_6,
99 IMG_GFX_DOOR_1_PART_7,
104 IMG_GFX_DOOR_1_PART_8,
110 IMG_GFX_DOOR_2_PART_1,
115 IMG_GFX_DOOR_2_PART_2,
120 IMG_GFX_DOOR_2_PART_3,
125 IMG_GFX_DOOR_2_PART_4,
130 IMG_GFX_DOOR_2_PART_5,
135 IMG_GFX_DOOR_2_PART_6,
140 IMG_GFX_DOOR_2_PART_7,
145 IMG_GFX_DOOR_2_PART_8,
151 IMG_BACKGROUND_PANEL,
168 /* forward declaration for internal use */
169 static void UnmapToolButtons();
170 static void HandleToolButtons(struct GadgetInfo *);
171 static int el_act_dir2crm(int, int, int);
172 static int el_act2crm(int, int);
174 static struct GadgetInfo *tool_gadget[NUM_TOOL_BUTTONS];
175 static int request_gadget_id = -1;
177 static char *print_if_not_empty(int element)
179 static char *s = NULL;
180 char *token_name = element_info[element].token_name;
185 s = checked_malloc(strlen(token_name) + 10 + 1);
187 if (element != EL_EMPTY)
188 sprintf(s, "%d\t['%s']", element, token_name);
190 sprintf(s, "%d", element);
195 int correctLevelPosX_EM(int lx)
198 lx -= (BorderElement != EL_EMPTY ? 1 : 0);
203 int correctLevelPosY_EM(int ly)
206 ly -= (BorderElement != EL_EMPTY ? 1 : 0);
211 static int getFieldbufferOffsetX_RND()
213 int full_lev_fieldx = lev_fieldx + (BorderElement != EL_EMPTY ? 2 : 0);
214 int dx = (ScreenMovDir & (MV_LEFT | MV_RIGHT) ? ScreenGfxPos : 0);
215 int dx_var = dx * TILESIZE_VAR / TILESIZE;
218 if (EVEN(SCR_FIELDX))
220 int ffx = (scroll_x - SBX_Left) * TILEX_VAR + dx_var;
222 if (ffx < SBX_Right * TILEX_VAR + TILEX_VAR / 2 + TILEX_VAR)
223 fx += dx_var - MIN(ffx, TILEX_VAR / 2) + TILEX_VAR;
225 fx += (dx_var > 0 ? TILEX_VAR : 0);
232 if (full_lev_fieldx <= SCR_FIELDX)
234 if (EVEN(SCR_FIELDX))
235 fx = 2 * TILEX_VAR - (ODD(lev_fieldx) ? TILEX_VAR / 2 : 0);
237 fx = 2 * TILEX_VAR - (EVEN(lev_fieldx) ? TILEX_VAR / 2 : 0);
243 static int getFieldbufferOffsetY_RND()
245 int full_lev_fieldy = lev_fieldy + (BorderElement != EL_EMPTY ? 2 : 0);
246 int dy = (ScreenMovDir & (MV_UP | MV_DOWN) ? ScreenGfxPos : 0);
247 int dy_var = dy * TILESIZE_VAR / TILESIZE;
250 if (EVEN(SCR_FIELDY))
252 int ffy = (scroll_y - SBY_Upper) * TILEY_VAR + dy_var;
254 if (ffy < SBY_Lower * TILEY_VAR + TILEY_VAR / 2 + TILEY_VAR)
255 fy += dy_var - MIN(ffy, TILEY_VAR / 2) + TILEY_VAR;
257 fy += (dy_var > 0 ? TILEY_VAR : 0);
264 if (full_lev_fieldy <= SCR_FIELDY)
266 if (EVEN(SCR_FIELDY))
267 fy = 2 * TILEY_VAR - (ODD(lev_fieldy) ? TILEY_VAR / 2 : 0);
269 fy = 2 * TILEY_VAR - (EVEN(lev_fieldy) ? TILEY_VAR / 2 : 0);
275 static int getLevelFromScreenX_RND(int sx)
277 int fx = getFieldbufferOffsetX_RND();
280 int lx = LEVELX((px + dx) / TILESIZE_VAR);
285 static int getLevelFromScreenY_RND(int sy)
287 int fy = getFieldbufferOffsetY_RND();
290 int ly = LEVELY((py + dy) / TILESIZE_VAR);
295 static int getLevelFromScreenX_EM(int sx)
297 int level_xsize = level.native_em_level->lev->width;
298 int full_xsize = level_xsize * TILESIZE_VAR;
300 sx -= (full_xsize < SXSIZE ? (SXSIZE - full_xsize) / 2 : 0);
302 int fx = getFieldbufferOffsetX_EM();
305 int lx = LEVELX((px + dx) / TILESIZE_VAR);
307 lx = correctLevelPosX_EM(lx);
312 static int getLevelFromScreenY_EM(int sy)
314 int level_ysize = level.native_em_level->lev->height;
315 int full_ysize = level_ysize * TILESIZE_VAR;
317 sy -= (full_ysize < SYSIZE ? (SYSIZE - full_ysize) / 2 : 0);
319 int fy = getFieldbufferOffsetY_EM();
322 int ly = LEVELY((py + dy) / TILESIZE_VAR);
324 ly = correctLevelPosY_EM(ly);
329 static int getLevelFromScreenX_SP(int sx)
331 int menBorder = setup.sp_show_border_elements;
332 int level_xsize = level.native_sp_level->width;
333 int full_xsize = (level_xsize - (menBorder ? 0 : 1)) * TILESIZE_VAR;
335 sx += (full_xsize < SXSIZE ? (SXSIZE - full_xsize) / 2 : 0);
337 int fx = getFieldbufferOffsetX_SP();
340 int lx = LEVELX((px + dx) / TILESIZE_VAR);
345 static int getLevelFromScreenY_SP(int sy)
347 int menBorder = setup.sp_show_border_elements;
348 int level_ysize = level.native_sp_level->height;
349 int full_ysize = (level_ysize - (menBorder ? 0 : 1)) * TILESIZE_VAR;
351 sy += (full_ysize < SYSIZE ? (SYSIZE - full_ysize) / 2 : 0);
353 int fy = getFieldbufferOffsetY_SP();
356 int ly = LEVELY((py + dy) / TILESIZE_VAR);
361 int getLevelFromScreenX(int x)
363 if (level.game_engine_type == GAME_ENGINE_TYPE_EM)
364 return getLevelFromScreenX_EM(x);
365 if (level.game_engine_type == GAME_ENGINE_TYPE_SP)
366 return getLevelFromScreenX_SP(x);
368 return getLevelFromScreenX_RND(x);
371 int getLevelFromScreenY(int y)
373 if (level.game_engine_type == GAME_ENGINE_TYPE_EM)
374 return getLevelFromScreenY_EM(y);
375 if (level.game_engine_type == GAME_ENGINE_TYPE_SP)
376 return getLevelFromScreenY_SP(y);
378 return getLevelFromScreenY_RND(y);
381 void DumpTile(int x, int y)
386 printf_line("-", 79);
387 printf("Field Info: SCREEN(%d, %d), LEVEL(%d, %d)\n", sx, sy, x, y);
388 printf_line("-", 79);
390 if (!IN_LEV_FIELD(x, y))
392 printf("(not in level field)\n");
398 printf(" Feld: %d\t['%s']\n", Feld[x][y],
399 element_info[Feld[x][y]].token_name);
400 printf(" Back: %s\n", print_if_not_empty(Back[x][y]));
401 printf(" Store: %s\n", print_if_not_empty(Store[x][y]));
402 printf(" Store2: %s\n", print_if_not_empty(Store2[x][y]));
403 printf(" StorePlayer: %s\n", print_if_not_empty(StorePlayer[x][y]));
404 printf(" MovPos: %d\n", MovPos[x][y]);
405 printf(" MovDir: %d\n", MovDir[x][y]);
406 printf(" MovDelay: %d\n", MovDelay[x][y]);
407 printf(" ChangeDelay: %d\n", ChangeDelay[x][y]);
408 printf(" CustomValue: %d\n", CustomValue[x][y]);
409 printf(" GfxElement: %d\n", GfxElement[x][y]);
410 printf(" GfxAction: %d\n", GfxAction[x][y]);
411 printf(" GfxFrame: %d [%d]\n", GfxFrame[x][y], FrameCounter);
412 printf(" Player x/y: %d, %d\n", local_player->jx, local_player->jy);
416 void DumpTileFromScreen(int sx, int sy)
418 int lx = getLevelFromScreenX(sx);
419 int ly = getLevelFromScreenY(sy);
424 void SetDrawtoField(int mode)
426 if (mode == DRAW_TO_FIELDBUFFER)
432 BX2 = SCR_FIELDX + 1;
433 BY2 = SCR_FIELDY + 1;
435 drawto_field = fieldbuffer;
437 else /* DRAW_TO_BACKBUFFER */
443 BX2 = SCR_FIELDX - 1;
444 BY2 = SCR_FIELDY - 1;
446 drawto_field = backbuffer;
450 static void RedrawPlayfield_RND()
452 if (game.envelope_active)
455 DrawLevel(REDRAW_ALL);
459 void RedrawPlayfield()
461 if (game_status != GAME_MODE_PLAYING)
464 if (level.game_engine_type == GAME_ENGINE_TYPE_EM)
465 RedrawPlayfield_EM(TRUE);
466 else if (level.game_engine_type == GAME_ENGINE_TYPE_SP)
467 RedrawPlayfield_SP(TRUE);
468 else if (level.game_engine_type == GAME_ENGINE_TYPE_RND)
469 RedrawPlayfield_RND();
471 BlitScreenToBitmap(backbuffer);
473 BlitBitmap(drawto, window, gfx.sx, gfx.sy, gfx.sxsize, gfx.sysize,
477 static void DrawMaskedBorderExt_Rect(int x, int y, int width, int height,
480 Bitmap *src_bitmap = getGlobalBorderBitmapFromStatus(global.border_status);
481 Bitmap *dst_bitmap = gfx.masked_border_bitmap_ptr;
483 if (x == -1 && y == -1)
486 if (draw_target == DRAW_TO_SCREEN)
487 BlitToScreenMasked(src_bitmap, x, y, width, height, x, y);
489 BlitBitmapMasked(src_bitmap, dst_bitmap, x, y, width, height, x, y);
492 static void DrawMaskedBorderExt_FIELD(int draw_target)
494 if (global.border_status >= GAME_MODE_MAIN &&
495 global.border_status <= GAME_MODE_PLAYING &&
496 border.draw_masked[global.border_status])
497 DrawMaskedBorderExt_Rect(REAL_SX, REAL_SY, FULL_SXSIZE, FULL_SYSIZE,
501 static void DrawMaskedBorderExt_DOOR_1(int draw_target)
503 // when drawing to backbuffer, never draw border over open doors
504 if (draw_target == DRAW_TO_BACKBUFFER &&
505 (GetDoorState() & DOOR_OPEN_1))
508 if (border.draw_masked[GFX_SPECIAL_ARG_DOOR] &&
509 (global.border_status != GAME_MODE_EDITOR ||
510 border.draw_masked[GFX_SPECIAL_ARG_EDITOR]))
511 DrawMaskedBorderExt_Rect(DX, DY, DXSIZE, DYSIZE, draw_target);
514 static void DrawMaskedBorderExt_DOOR_2(int draw_target)
516 // when drawing to backbuffer, never draw border over open doors
517 if (draw_target == DRAW_TO_BACKBUFFER &&
518 (GetDoorState() & DOOR_OPEN_2))
521 if (border.draw_masked[GFX_SPECIAL_ARG_DOOR] &&
522 global.border_status != GAME_MODE_EDITOR)
523 DrawMaskedBorderExt_Rect(VX, VY, VXSIZE, VYSIZE, draw_target);
526 static void DrawMaskedBorderExt_DOOR_3(int draw_target)
528 /* currently not available */
531 static void DrawMaskedBorderExt_ALL(int draw_target)
533 DrawMaskedBorderExt_FIELD(draw_target);
534 DrawMaskedBorderExt_DOOR_1(draw_target);
535 DrawMaskedBorderExt_DOOR_2(draw_target);
536 DrawMaskedBorderExt_DOOR_3(draw_target);
539 static void DrawMaskedBorderExt(int redraw_mask, int draw_target)
541 /* never draw masked screen borders on borderless screens */
542 if (global.border_status == GAME_MODE_LOADING ||
543 global.border_status == GAME_MODE_TITLE)
546 if (redraw_mask & REDRAW_ALL)
547 DrawMaskedBorderExt_ALL(draw_target);
550 if (redraw_mask & REDRAW_FIELD)
551 DrawMaskedBorderExt_FIELD(draw_target);
552 if (redraw_mask & REDRAW_DOOR_1)
553 DrawMaskedBorderExt_DOOR_1(draw_target);
554 if (redraw_mask & REDRAW_DOOR_2)
555 DrawMaskedBorderExt_DOOR_2(draw_target);
556 if (redraw_mask & REDRAW_DOOR_3)
557 DrawMaskedBorderExt_DOOR_3(draw_target);
561 void DrawMaskedBorder_FIELD()
563 DrawMaskedBorderExt_FIELD(DRAW_TO_BACKBUFFER);
566 void DrawMaskedBorder(int redraw_mask)
568 DrawMaskedBorderExt(redraw_mask, DRAW_TO_BACKBUFFER);
571 void DrawMaskedBorderToTarget(int draw_target)
573 if (draw_target == DRAW_TO_BACKBUFFER ||
574 draw_target == DRAW_TO_SCREEN)
576 DrawMaskedBorderExt(REDRAW_ALL, draw_target);
580 int last_border_status = global.border_status;
582 if (draw_target == DRAW_TO_FADE_SOURCE)
584 global.border_status = gfx.fade_border_source_status;
585 gfx.masked_border_bitmap_ptr = gfx.fade_bitmap_source;
587 else if (draw_target == DRAW_TO_FADE_TARGET)
589 global.border_status = gfx.fade_border_target_status;
590 gfx.masked_border_bitmap_ptr = gfx.fade_bitmap_target;
593 DrawMaskedBorderExt(REDRAW_ALL, draw_target);
595 global.border_status = last_border_status;
596 gfx.masked_border_bitmap_ptr = backbuffer;
600 void BlitScreenToBitmap_RND(Bitmap *target_bitmap)
602 int fx = getFieldbufferOffsetX_RND();
603 int fy = getFieldbufferOffsetY_RND();
605 BlitBitmap(drawto_field, target_bitmap, fx, fy, SXSIZE, SYSIZE, SX, SY);
608 void BlitScreenToBitmap(Bitmap *target_bitmap)
610 if (level.game_engine_type == GAME_ENGINE_TYPE_EM)
611 BlitScreenToBitmap_EM(target_bitmap);
612 else if (level.game_engine_type == GAME_ENGINE_TYPE_SP)
613 BlitScreenToBitmap_SP(target_bitmap);
614 else if (level.game_engine_type == GAME_ENGINE_TYPE_RND)
615 BlitScreenToBitmap_RND(target_bitmap);
617 redraw_mask |= REDRAW_FIELD;
620 void DrawFramesPerSecond()
623 int font_nr = FONT_TEXT_2;
624 int font_width = getFontWidth(font_nr);
626 sprintf(text, "%04.1f fps", global.frames_per_second);
628 DrawTextExt(backbuffer, WIN_XSIZE - font_width * strlen(text), 0, text,
629 font_nr, BLIT_OPAQUE);
633 static void PrintFrameTimeDebugging()
635 static unsigned int last_counter = 0;
636 unsigned int counter = Counter();
637 int diff_1 = counter - last_counter;
638 int diff_2 = diff_1 - GAME_FRAME_DELAY;
640 int diff_2_cut = MIN(ABS(diff_2), diff_2_max);
641 char diff_bar[2 * diff_2_max + 5];
645 diff_bar[pos++] = (diff_2 < -diff_2_max ? '<' : ' ');
647 for (i = 0; i < diff_2_max; i++)
648 diff_bar[pos++] = (diff_2 >= 0 ? ' ' :
649 i >= diff_2_max - diff_2_cut ? '-' : ' ');
651 diff_bar[pos++] = '|';
653 for (i = 0; i < diff_2_max; i++)
654 diff_bar[pos++] = (diff_2 <= 0 ? ' ' : i < diff_2_cut ? '+' : ' ');
656 diff_bar[pos++] = (diff_2 > diff_2_max ? '>' : ' ');
658 diff_bar[pos++] = '\0';
660 Error(ERR_INFO, "%06d [%02d] [%c%02d] %s",
663 (diff_2 < 0 ? '-' : diff_2 > 0 ? '+' : ' '), ABS(diff_2),
666 last_counter = counter;
670 static int unifiedRedrawMask(int mask)
672 if (mask & REDRAW_ALL)
675 if (mask & REDRAW_FIELD && mask & REDRAW_DOORS)
681 static boolean equalRedrawMasks(int mask_1, int mask_2)
683 return unifiedRedrawMask(mask_1) == unifiedRedrawMask(mask_2);
688 static int last_redraw_mask = REDRAW_NONE;
690 // force screen redraw in every frame to continue drawing global animations
691 // (but always use the last redraw mask to prevent unwanted side effects)
692 if (redraw_mask == REDRAW_NONE)
693 redraw_mask = last_redraw_mask;
695 last_redraw_mask = redraw_mask;
698 // masked border now drawn immediately when blitting backbuffer to window
700 // draw masked border to all viewports, if defined
701 DrawMaskedBorder(redraw_mask);
704 // draw frames per second (only if debug mode is enabled)
705 if (redraw_mask & REDRAW_FPS)
706 DrawFramesPerSecond();
708 // remove playfield redraw before potentially merging with doors redraw
709 if (DrawingDeactivated(REAL_SX, REAL_SY, FULL_SXSIZE, FULL_SYSIZE))
710 redraw_mask &= ~REDRAW_FIELD;
712 // redraw complete window if both playfield and (some) doors need redraw
713 if (redraw_mask & REDRAW_FIELD && redraw_mask & REDRAW_DOORS)
714 redraw_mask = REDRAW_ALL;
716 /* although redrawing the whole window would be fine for normal gameplay,
717 being able to only redraw the playfield is required for deactivating
718 certain drawing areas (mainly playfield) to work, which is needed for
719 warp-forward to be fast enough (by skipping redraw of most frames) */
721 if (redraw_mask & REDRAW_ALL)
723 BlitBitmap(backbuffer, window, 0, 0, WIN_XSIZE, WIN_YSIZE, 0, 0);
725 else if (redraw_mask & REDRAW_FIELD)
727 BlitBitmap(backbuffer, window,
728 REAL_SX, REAL_SY, FULL_SXSIZE, FULL_SYSIZE, REAL_SX, REAL_SY);
730 else if (redraw_mask & REDRAW_DOORS)
732 // merge door areas to prevent calling screen redraw more than once
738 if (redraw_mask & REDRAW_DOOR_1)
742 x2 = MAX(x2, DX + DXSIZE);
743 y2 = MAX(y2, DY + DYSIZE);
746 if (redraw_mask & REDRAW_DOOR_2)
750 x2 = MAX(x2, VX + VXSIZE);
751 y2 = MAX(y2, VY + VYSIZE);
754 if (redraw_mask & REDRAW_DOOR_3)
758 x2 = MAX(x2, EX + EXSIZE);
759 y2 = MAX(y2, EY + EYSIZE);
762 // make sure that at least one pixel is blitted, and inside the screen
763 // (else nothing is blitted, causing the animations not to be updated)
764 x1 = MIN(MAX(0, x1), WIN_XSIZE - 1);
765 y1 = MIN(MAX(0, y1), WIN_YSIZE - 1);
766 x2 = MIN(MAX(1, x2), WIN_XSIZE);
767 y2 = MIN(MAX(1, y2), WIN_YSIZE);
769 BlitBitmap(backbuffer, window, x1, y1, x2 - x1, y2 - y1, x1, y1);
772 redraw_mask = REDRAW_NONE;
775 PrintFrameTimeDebugging();
779 void BackToFront_WithFrameDelay(unsigned int frame_delay_value)
781 unsigned int frame_delay_value_old = GetVideoFrameDelay();
783 SetVideoFrameDelay(frame_delay_value);
787 SetVideoFrameDelay(frame_delay_value_old);
790 static int fade_type_skip = FADE_TYPE_NONE;
792 static void FadeExt(int fade_mask, int fade_mode, int fade_type)
794 void (*draw_border_function)(void) = NULL;
795 int x, y, width, height;
796 int fade_delay, post_delay;
798 if (fade_type == FADE_TYPE_FADE_OUT)
800 if (fade_type_skip != FADE_TYPE_NONE)
802 /* skip all fade operations until specified fade operation */
803 if (fade_type & fade_type_skip)
804 fade_type_skip = FADE_TYPE_NONE;
809 if (fading.fade_mode & FADE_TYPE_TRANSFORM)
813 redraw_mask |= fade_mask;
815 if (fade_type == FADE_TYPE_SKIP)
817 fade_type_skip = fade_mode;
822 fade_delay = fading.fade_delay;
823 post_delay = (fade_mode == FADE_MODE_FADE_OUT ? fading.post_delay : 0);
825 if (fade_type_skip != FADE_TYPE_NONE)
827 /* skip all fade operations until specified fade operation */
828 if (fade_type & fade_type_skip)
829 fade_type_skip = FADE_TYPE_NONE;
834 if (global.autoplay_leveldir)
839 if (fade_mask == REDRAW_FIELD)
844 height = FADE_SYSIZE;
846 if (border.draw_masked_when_fading)
847 draw_border_function = DrawMaskedBorder_FIELD; /* update when fading */
849 DrawMaskedBorder_FIELD(); /* draw once */
851 else /* REDRAW_ALL */
859 if (!setup.fade_screens ||
861 fading.fade_mode == FADE_MODE_NONE)
863 if (fade_mode == FADE_MODE_FADE_OUT)
866 BlitBitmap(backbuffer, window, x, y, width, height, x, y);
868 redraw_mask &= ~fade_mask;
873 FadeRectangle(x, y, width, height, fade_mode, fade_delay, post_delay,
874 draw_border_function);
876 redraw_mask &= ~fade_mask;
879 static void SetScreenStates_BeforeFadingIn()
881 // temporarily set screen mode for animations to screen after fading in
882 global.anim_status = global.anim_status_next;
884 // store backbuffer with all animations that will be started after fading in
885 if (fade_type_skip != FADE_MODE_SKIP_FADE_IN)
886 PrepareFadeBitmap(DRAW_TO_FADE_TARGET);
888 // set screen mode for animations back to fading
889 global.anim_status = GAME_MODE_PSEUDO_FADING;
892 static void SetScreenStates_AfterFadingIn()
894 // store new source screen (to use correct masked border for fading)
895 gfx.fade_border_source_status = global.border_status;
897 global.anim_status = global.anim_status_next;
900 static void SetScreenStates_BeforeFadingOut()
902 // store new target screen (to use correct masked border for fading)
903 gfx.fade_border_target_status = game_status;
905 // set screen mode for animations to fading
906 global.anim_status = GAME_MODE_PSEUDO_FADING;
908 // store backbuffer with all animations that will be stopped for fading out
909 if (fade_type_skip != FADE_MODE_SKIP_FADE_OUT)
910 PrepareFadeBitmap(DRAW_TO_FADE_SOURCE);
913 static void SetScreenStates_AfterFadingOut()
915 global.border_status = game_status;
918 void FadeIn(int fade_mask)
920 SetScreenStates_BeforeFadingIn();
923 DrawMaskedBorder(REDRAW_ALL);
926 if (fading.fade_mode & FADE_TYPE_TRANSFORM)
927 FadeExt(fade_mask, fading.fade_mode, FADE_TYPE_FADE_IN);
929 FadeExt(fade_mask, FADE_MODE_FADE_IN, FADE_TYPE_FADE_IN);
933 FADE_SXSIZE = FULL_SXSIZE;
934 FADE_SYSIZE = FULL_SYSIZE;
936 if (game_status == GAME_MODE_PLAYING &&
937 strEqual(setup.touch.control_type, TOUCH_CONTROL_VIRTUAL_BUTTONS))
938 SetOverlayActive(TRUE);
940 SetScreenStates_AfterFadingIn();
942 // force update of global animation status in case of rapid screen changes
943 redraw_mask = REDRAW_ALL;
947 void FadeOut(int fade_mask)
949 // update screen if areas covered by "fade_mask" and "redraw_mask" differ
950 if (!equalRedrawMasks(fade_mask, redraw_mask))
953 SetScreenStates_BeforeFadingOut();
955 SetOverlayActive(FALSE);
958 DrawMaskedBorder(REDRAW_ALL);
961 if (fading.fade_mode & FADE_TYPE_TRANSFORM)
962 FadeExt(fade_mask, fading.fade_mode, FADE_TYPE_FADE_OUT);
964 FadeExt(fade_mask, FADE_MODE_FADE_OUT, FADE_TYPE_FADE_OUT);
966 SetScreenStates_AfterFadingOut();
969 static void FadeSetLeaveNext(struct TitleFadingInfo fading_leave, boolean set)
971 static struct TitleFadingInfo fading_leave_stored;
974 fading_leave_stored = fading_leave;
976 fading = fading_leave_stored;
979 void FadeSetEnterMenu()
981 fading = menu.enter_menu;
983 FadeSetLeaveNext(fading, TRUE); /* (keep same fade mode) */
986 void FadeSetLeaveMenu()
988 fading = menu.leave_menu;
990 FadeSetLeaveNext(fading, TRUE); /* (keep same fade mode) */
993 void FadeSetEnterScreen()
995 fading = menu.enter_screen[game_status];
997 FadeSetLeaveNext(menu.leave_screen[game_status], TRUE); /* store */
1000 void FadeSetNextScreen()
1002 fading = menu.next_screen[game_status];
1004 // (do not overwrite fade mode set by FadeSetEnterScreen)
1005 // FadeSetLeaveNext(fading, TRUE); /* (keep same fade mode) */
1008 void FadeSetLeaveScreen()
1010 FadeSetLeaveNext(menu.leave_screen[game_status], FALSE); /* recall */
1013 void FadeSetFromType(int type)
1015 if (type & TYPE_ENTER_SCREEN)
1016 FadeSetEnterScreen();
1017 else if (type & TYPE_ENTER)
1019 else if (type & TYPE_LEAVE)
1023 void FadeSetDisabled()
1025 static struct TitleFadingInfo fading_none = { FADE_MODE_NONE, -1, -1, -1 };
1027 fading = fading_none;
1030 void FadeSkipNextFadeIn()
1032 FadeExt(0, FADE_MODE_SKIP_FADE_IN, FADE_TYPE_SKIP);
1035 void FadeSkipNextFadeOut()
1037 FadeExt(0, FADE_MODE_SKIP_FADE_OUT, FADE_TYPE_SKIP);
1040 Bitmap *getBitmapFromGraphicOrDefault(int graphic, int default_graphic)
1042 boolean redefined = getImageListEntryFromImageID(graphic)->redefined;
1044 return (graphic == IMG_UNDEFINED ? NULL :
1045 graphic_info[graphic].bitmap != NULL || redefined ?
1046 graphic_info[graphic].bitmap :
1047 graphic_info[default_graphic].bitmap);
1050 Bitmap *getBackgroundBitmap(int graphic)
1052 return getBitmapFromGraphicOrDefault(graphic, IMG_BACKGROUND);
1055 Bitmap *getGlobalBorderBitmap(int graphic)
1057 return getBitmapFromGraphicOrDefault(graphic, IMG_GLOBAL_BORDER);
1060 Bitmap *getGlobalBorderBitmapFromStatus(int status)
1063 (status == GAME_MODE_MAIN ||
1064 status == GAME_MODE_PSEUDO_TYPENAME ? IMG_GLOBAL_BORDER_MAIN :
1065 status == GAME_MODE_SCORES ? IMG_GLOBAL_BORDER_SCORES :
1066 status == GAME_MODE_EDITOR ? IMG_GLOBAL_BORDER_EDITOR :
1067 status == GAME_MODE_PLAYING ? IMG_GLOBAL_BORDER_PLAYING :
1070 return getGlobalBorderBitmap(graphic);
1073 void SetWindowBackgroundImageIfDefined(int graphic)
1075 if (graphic_info[graphic].bitmap)
1076 SetWindowBackgroundBitmap(graphic_info[graphic].bitmap);
1079 void SetMainBackgroundImageIfDefined(int graphic)
1081 if (graphic_info[graphic].bitmap)
1082 SetMainBackgroundBitmap(graphic_info[graphic].bitmap);
1085 void SetDoorBackgroundImageIfDefined(int graphic)
1087 if (graphic_info[graphic].bitmap)
1088 SetDoorBackgroundBitmap(graphic_info[graphic].bitmap);
1091 void SetWindowBackgroundImage(int graphic)
1093 SetWindowBackgroundBitmap(getBackgroundBitmap(graphic));
1096 void SetMainBackgroundImage(int graphic)
1098 SetMainBackgroundBitmap(getBackgroundBitmap(graphic));
1101 void SetDoorBackgroundImage(int graphic)
1103 SetDoorBackgroundBitmap(getBackgroundBitmap(graphic));
1106 void SetPanelBackground()
1108 struct GraphicInfo *gfx = &graphic_info[IMG_BACKGROUND_PANEL];
1110 BlitBitmapTiled(gfx->bitmap, bitmap_db_panel, gfx->src_x, gfx->src_y,
1111 gfx->width, gfx->height, 0, 0, DXSIZE, DYSIZE);
1113 SetDoorBackgroundBitmap(bitmap_db_panel);
1116 void DrawBackground(int x, int y, int width, int height)
1118 /* "drawto" might still point to playfield buffer here (hall of fame) */
1119 ClearRectangleOnBackground(backbuffer, x, y, width, height);
1121 if (IN_GFX_FIELD_FULL(x, y))
1122 redraw_mask |= REDRAW_FIELD;
1123 else if (IN_GFX_DOOR_1(x, y))
1124 redraw_mask |= REDRAW_DOOR_1;
1125 else if (IN_GFX_DOOR_2(x, y))
1126 redraw_mask |= REDRAW_DOOR_2;
1127 else if (IN_GFX_DOOR_3(x, y))
1128 redraw_mask |= REDRAW_DOOR_3;
1131 void DrawBackgroundForFont(int x, int y, int width, int height, int font_nr)
1133 struct FontBitmapInfo *font = getFontBitmapInfo(font_nr);
1135 if (font->bitmap == NULL)
1138 DrawBackground(x, y, width, height);
1141 void DrawBackgroundForGraphic(int x, int y, int width, int height, int graphic)
1143 struct GraphicInfo *g = &graphic_info[graphic];
1145 if (g->bitmap == NULL)
1148 DrawBackground(x, y, width, height);
1151 static int game_status_last = -1;
1152 static Bitmap *global_border_bitmap_last = NULL;
1153 static Bitmap *global_border_bitmap = NULL;
1154 static int real_sx_last = -1, real_sy_last = -1;
1155 static int full_sxsize_last = -1, full_sysize_last = -1;
1156 static int dx_last = -1, dy_last = -1;
1157 static int dxsize_last = -1, dysize_last = -1;
1158 static int vx_last = -1, vy_last = -1;
1159 static int vxsize_last = -1, vysize_last = -1;
1161 boolean CheckIfGlobalBorderHasChanged()
1163 // if game status has not changed, global border has not changed either
1164 if (game_status == game_status_last)
1167 // determine and store new global border bitmap for current game status
1168 global_border_bitmap = getGlobalBorderBitmapFromStatus(game_status);
1170 return (global_border_bitmap_last != global_border_bitmap);
1173 boolean CheckIfGlobalBorderRedrawIsNeeded()
1175 // if game status has not changed, nothing has to be redrawn
1176 if (game_status == game_status_last)
1179 // redraw if last screen was title screen
1180 if (game_status_last == GAME_MODE_TITLE)
1183 // redraw if global screen border has changed
1184 if (CheckIfGlobalBorderHasChanged())
1187 // redraw if position or size of playfield area has changed
1188 if (real_sx_last != REAL_SX || real_sy_last != REAL_SY ||
1189 full_sxsize_last != FULL_SXSIZE || full_sysize_last != FULL_SYSIZE)
1192 // redraw if position or size of door area has changed
1193 if (dx_last != DX || dy_last != DY ||
1194 dxsize_last != DXSIZE || dysize_last != DYSIZE)
1197 // redraw if position or size of tape area has changed
1198 if (vx_last != VX || vy_last != VY ||
1199 vxsize_last != VXSIZE || vysize_last != VYSIZE)
1205 void RedrawGlobalBorderFromBitmap(Bitmap *bitmap)
1208 BlitBitmap(bitmap, backbuffer, 0, 0, WIN_XSIZE, WIN_YSIZE, 0, 0);
1210 ClearRectangle(backbuffer, 0, 0, WIN_XSIZE, WIN_YSIZE);
1213 void RedrawGlobalBorder()
1215 Bitmap *bitmap = getGlobalBorderBitmapFromStatus(game_status);
1217 RedrawGlobalBorderFromBitmap(bitmap);
1219 redraw_mask = REDRAW_ALL;
1222 static void RedrawGlobalBorderIfNeeded()
1224 if (game_status == game_status_last)
1227 // copy current draw buffer to later copy back areas that have not changed
1228 if (game_status_last != GAME_MODE_TITLE)
1229 BlitBitmap(backbuffer, bitmap_db_store_1, 0, 0, WIN_XSIZE, WIN_YSIZE, 0, 0);
1231 if (CheckIfGlobalBorderRedrawIsNeeded())
1233 // redraw global screen border (or clear, if defined to be empty)
1234 RedrawGlobalBorderFromBitmap(global_border_bitmap);
1236 // copy previous playfield and door areas, if they are defined on both
1237 // previous and current screen and if they still have the same size
1239 if (real_sx_last != -1 && real_sy_last != -1 &&
1240 REAL_SX != -1 && REAL_SY != -1 &&
1241 full_sxsize_last == FULL_SXSIZE && full_sysize_last == FULL_SYSIZE)
1242 BlitBitmap(bitmap_db_store_1, backbuffer,
1243 real_sx_last, real_sy_last, FULL_SXSIZE, FULL_SYSIZE,
1246 if (dx_last != -1 && dy_last != -1 &&
1247 DX != -1 && DY != -1 &&
1248 dxsize_last == DXSIZE && dysize_last == DYSIZE)
1249 BlitBitmap(bitmap_db_store_1, backbuffer,
1250 dx_last, dy_last, DXSIZE, DYSIZE, DX, DY);
1252 if (vx_last != -1 && vy_last != -1 &&
1253 VX != -1 && VY != -1 &&
1254 vxsize_last == VXSIZE && vysize_last == VYSIZE)
1255 BlitBitmap(bitmap_db_store_1, backbuffer,
1256 vx_last, vy_last, VXSIZE, VYSIZE, VX, VY);
1258 redraw_mask = REDRAW_ALL;
1261 game_status_last = game_status;
1263 global_border_bitmap_last = global_border_bitmap;
1265 real_sx_last = REAL_SX;
1266 real_sy_last = REAL_SY;
1267 full_sxsize_last = FULL_SXSIZE;
1268 full_sysize_last = FULL_SYSIZE;
1271 dxsize_last = DXSIZE;
1272 dysize_last = DYSIZE;
1275 vxsize_last = VXSIZE;
1276 vysize_last = VYSIZE;
1281 RedrawGlobalBorderIfNeeded();
1283 /* !!! "drawto" might still point to playfield buffer here (see above) !!! */
1284 /* (when entering hall of fame after playing) */
1285 DrawBackground(REAL_SX, REAL_SY, FULL_SXSIZE, FULL_SYSIZE);
1287 /* !!! maybe this should be done before clearing the background !!! */
1288 if (game_status == GAME_MODE_PLAYING)
1290 ClearRectangle(fieldbuffer, 0, 0, FXSIZE, FYSIZE);
1291 SetDrawtoField(DRAW_TO_FIELDBUFFER);
1295 SetDrawtoField(DRAW_TO_BACKBUFFER);
1299 void MarkTileDirty(int x, int y)
1301 redraw_mask |= REDRAW_FIELD;
1304 void SetBorderElement()
1308 BorderElement = EL_EMPTY;
1310 for (y = 0; y < lev_fieldy && BorderElement == EL_EMPTY; y++)
1312 for (x = 0; x < lev_fieldx; x++)
1314 if (!IS_INDESTRUCTIBLE(Feld[x][y]))
1315 BorderElement = EL_STEELWALL;
1317 if (y != 0 && y != lev_fieldy - 1 && x != lev_fieldx - 1)
1323 void FloodFillLevel(int from_x, int from_y, int fill_element,
1324 short field[MAX_LEV_FIELDX][MAX_LEV_FIELDY],
1325 int max_fieldx, int max_fieldy)
1329 static int check[4][2] = { { -1, 0 }, { 0, -1 }, { 1, 0 }, { 0, 1 } };
1330 static int safety = 0;
1332 /* check if starting field still has the desired content */
1333 if (field[from_x][from_y] == fill_element)
1338 if (safety > max_fieldx * max_fieldy)
1339 Error(ERR_EXIT, "Something went wrong in 'FloodFill()'. Please debug.");
1341 old_element = field[from_x][from_y];
1342 field[from_x][from_y] = fill_element;
1344 for (i = 0; i < 4; i++)
1346 x = from_x + check[i][0];
1347 y = from_y + check[i][1];
1349 if (IN_FIELD(x, y, max_fieldx, max_fieldy) && field[x][y] == old_element)
1350 FloodFillLevel(x, y, fill_element, field, max_fieldx, max_fieldy);
1356 void SetRandomAnimationValue(int x, int y)
1358 gfx.anim_random_frame = GfxRandom[x][y];
1361 int getGraphicAnimationFrame(int graphic, int sync_frame)
1363 /* animation synchronized with global frame counter, not move position */
1364 if (graphic_info[graphic].anim_global_sync || sync_frame < 0)
1365 sync_frame = FrameCounter;
1367 return getAnimationFrame(graphic_info[graphic].anim_frames,
1368 graphic_info[graphic].anim_delay,
1369 graphic_info[graphic].anim_mode,
1370 graphic_info[graphic].anim_start_frame,
1374 void getGraphicSourceBitmap(int graphic, int tilesize, Bitmap **bitmap)
1376 struct GraphicInfo *g = &graphic_info[graphic];
1377 int tilesize_capped = MIN(MAX(1, tilesize), TILESIZE);
1379 if (tilesize == gfx.standard_tile_size)
1380 *bitmap = g->bitmaps[IMG_BITMAP_STANDARD];
1381 else if (tilesize == game.tile_size)
1382 *bitmap = g->bitmaps[IMG_BITMAP_GAME];
1384 *bitmap = g->bitmaps[IMG_BITMAP_1x1 - log_2(tilesize_capped)];
1387 void getGraphicSourceXY(int graphic, int frame, int *x, int *y,
1388 boolean get_backside)
1390 struct GraphicInfo *g = &graphic_info[graphic];
1391 int src_x = g->src_x + (get_backside ? g->offset2_x : 0);
1392 int src_y = g->src_y + (get_backside ? g->offset2_y : 0);
1394 if (g->offset_y == 0) /* frames are ordered horizontally */
1396 int max_width = g->anim_frames_per_line * g->width;
1397 int pos = (src_y / g->height) * max_width + src_x + frame * g->offset_x;
1399 *x = pos % max_width;
1400 *y = src_y % g->height + pos / max_width * g->height;
1402 else if (g->offset_x == 0) /* frames are ordered vertically */
1404 int max_height = g->anim_frames_per_line * g->height;
1405 int pos = (src_x / g->width) * max_height + src_y + frame * g->offset_y;
1407 *x = src_x % g->width + pos / max_height * g->width;
1408 *y = pos % max_height;
1410 else /* frames are ordered diagonally */
1412 *x = src_x + frame * g->offset_x;
1413 *y = src_y + frame * g->offset_y;
1417 void getSizedGraphicSourceExt(int graphic, int frame, int tilesize,
1418 Bitmap **bitmap, int *x, int *y,
1419 boolean get_backside)
1421 struct GraphicInfo *g = &graphic_info[graphic];
1423 // if no in-game graphics defined, always use standard graphic size
1424 if (g->bitmaps[IMG_BITMAP_GAME] == NULL)
1425 tilesize = TILESIZE;
1427 getGraphicSourceBitmap(graphic, tilesize, bitmap);
1428 getGraphicSourceXY(graphic, frame, x, y, get_backside);
1430 *x = *x * tilesize / g->tile_size;
1431 *y = *y * tilesize / g->tile_size;
1434 void getFixedGraphicSourceExt(int graphic, int frame, Bitmap **bitmap,
1435 int *x, int *y, boolean get_backside)
1437 getSizedGraphicSourceExt(graphic, frame, TILESIZE, bitmap, x, y,
1441 void getSizedGraphicSource(int graphic, int frame, int tilesize,
1442 Bitmap **bitmap, int *x, int *y)
1444 getSizedGraphicSourceExt(graphic, frame, tilesize, bitmap, x, y, FALSE);
1447 void getFixedGraphicSource(int graphic, int frame,
1448 Bitmap **bitmap, int *x, int *y)
1450 getSizedGraphicSourceExt(graphic, frame, TILESIZE, bitmap, x, y, FALSE);
1453 void getMiniGraphicSource(int graphic, Bitmap **bitmap, int *x, int *y)
1455 getSizedGraphicSource(graphic, 0, MINI_TILESIZE, bitmap, x, y);
1458 inline static void getGraphicSourceExt(int graphic, int frame, Bitmap **bitmap,
1459 int *x, int *y, boolean get_backside)
1461 getSizedGraphicSourceExt(graphic, frame, TILESIZE_VAR, bitmap, x, y,
1465 void getGraphicSource(int graphic, int frame, Bitmap **bitmap, int *x, int *y)
1467 getGraphicSourceExt(graphic, frame, bitmap, x, y, FALSE);
1470 void DrawGraphic(int x, int y, int graphic, int frame)
1473 if (!IN_SCR_FIELD(x, y))
1475 printf("DrawGraphic(): x = %d, y = %d, graphic = %d\n", x, y, graphic);
1476 printf("DrawGraphic(): This should never happen!\n");
1481 DrawGraphicExt(drawto_field, FX + x * TILEX_VAR, FY + y * TILEY_VAR, graphic,
1484 MarkTileDirty(x, y);
1487 void DrawFixedGraphic(int x, int y, int graphic, int frame)
1490 if (!IN_SCR_FIELD(x, y))
1492 printf("DrawGraphic(): x = %d, y = %d, graphic = %d\n", x, y, graphic);
1493 printf("DrawGraphic(): This should never happen!\n");
1498 DrawFixedGraphicExt(drawto_field, FX + x * TILEX, FY + y * TILEY, graphic,
1500 MarkTileDirty(x, y);
1503 void DrawGraphicExt(DrawBuffer *dst_bitmap, int x, int y, int graphic,
1509 getGraphicSource(graphic, frame, &src_bitmap, &src_x, &src_y);
1511 BlitBitmap(src_bitmap, dst_bitmap, src_x, src_y, TILEX_VAR, TILEY_VAR, x, y);
1514 void DrawFixedGraphicExt(DrawBuffer *dst_bitmap, int x, int y, int graphic,
1520 getFixedGraphicSource(graphic, frame, &src_bitmap, &src_x, &src_y);
1521 BlitBitmap(src_bitmap, dst_bitmap, src_x, src_y, TILEX, TILEY, x, y);
1524 void DrawGraphicThruMask(int x, int y, int graphic, int frame)
1527 if (!IN_SCR_FIELD(x, y))
1529 printf("DrawGraphicThruMask(): x = %d,y = %d, graphic = %d\n",x,y,graphic);
1530 printf("DrawGraphicThruMask(): This should never happen!\n");
1535 DrawGraphicThruMaskExt(drawto_field, FX + x * TILEX_VAR, FY + y * TILEY_VAR,
1538 MarkTileDirty(x, y);
1541 void DrawFixedGraphicThruMask(int x, int y, int graphic, int frame)
1544 if (!IN_SCR_FIELD(x, y))
1546 printf("DrawGraphicThruMask(): x = %d,y = %d, graphic = %d\n",x,y,graphic);
1547 printf("DrawGraphicThruMask(): This should never happen!\n");
1552 DrawFixedGraphicThruMaskExt(drawto_field, FX + x * TILEX, FY + y * TILEY,
1554 MarkTileDirty(x, y);
1557 void DrawGraphicThruMaskExt(DrawBuffer *d, int dst_x, int dst_y, int graphic,
1563 getGraphicSource(graphic, frame, &src_bitmap, &src_x, &src_y);
1565 BlitBitmapMasked(src_bitmap, d, src_x, src_y, TILEX_VAR, TILEY_VAR,
1569 void DrawFixedGraphicThruMaskExt(DrawBuffer *d, int dst_x, int dst_y,
1570 int graphic, int frame)
1575 getFixedGraphicSource(graphic, frame, &src_bitmap, &src_x, &src_y);
1577 BlitBitmapMasked(src_bitmap, d, src_x, src_y, TILEX, TILEY,
1581 void DrawSizedGraphic(int x, int y, int graphic, int frame, int tilesize)
1583 DrawSizedGraphicExt(drawto, SX + x * tilesize, SY + y * tilesize, graphic,
1585 MarkTileDirty(x / tilesize, y / tilesize);
1588 void DrawSizedGraphicExt(DrawBuffer *d, int x, int y, int graphic, int frame,
1594 getSizedGraphicSource(graphic, frame, tilesize, &src_bitmap, &src_x, &src_y);
1595 BlitBitmap(src_bitmap, d, src_x, src_y, tilesize, tilesize, x, y);
1598 void DrawMiniGraphic(int x, int y, int graphic)
1600 DrawMiniGraphicExt(drawto, SX + x * MINI_TILEX,SY + y * MINI_TILEY, graphic);
1601 MarkTileDirty(x / 2, y / 2);
1604 void DrawMiniGraphicExt(DrawBuffer *d, int x, int y, int graphic)
1609 getMiniGraphicSource(graphic, &src_bitmap, &src_x, &src_y);
1610 BlitBitmap(src_bitmap, d, src_x, src_y, MINI_TILEX, MINI_TILEY, x, y);
1613 inline static void DrawGraphicShiftedNormal(int x, int y, int dx, int dy,
1614 int graphic, int frame,
1615 int cut_mode, int mask_mode)
1620 int width = TILEX, height = TILEY;
1623 if (dx || dy) /* shifted graphic */
1625 if (x < BX1) /* object enters playfield from the left */
1632 else if (x > BX2) /* object enters playfield from the right */
1638 else if (x == BX1 && dx < 0) /* object leaves playfield to the left */
1644 else if (x == BX2 && dx > 0) /* object leaves playfield to the right */
1646 else if (dx) /* general horizontal movement */
1647 MarkTileDirty(x + SIGN(dx), y);
1649 if (y < BY1) /* object enters playfield from the top */
1651 if (cut_mode == CUT_BELOW) /* object completely above top border */
1659 else if (y > BY2) /* object enters playfield from the bottom */
1665 else if (y == BY1 && dy < 0) /* object leaves playfield to the top */
1671 else if (dy > 0 && cut_mode == CUT_ABOVE)
1673 if (y == BY2) /* object completely above bottom border */
1679 MarkTileDirty(x, y + 1);
1680 } /* object leaves playfield to the bottom */
1681 else if (dy > 0 && (y == BY2 || cut_mode == CUT_BELOW))
1683 else if (dy) /* general vertical movement */
1684 MarkTileDirty(x, y + SIGN(dy));
1688 if (!IN_SCR_FIELD(x, y))
1690 printf("DrawGraphicShifted(): x = %d, y = %d, graphic = %d\n",x,y,graphic);
1691 printf("DrawGraphicShifted(): This should never happen!\n");
1696 width = width * TILESIZE_VAR / TILESIZE;
1697 height = height * TILESIZE_VAR / TILESIZE;
1698 cx = cx * TILESIZE_VAR / TILESIZE;
1699 cy = cy * TILESIZE_VAR / TILESIZE;
1700 dx = dx * TILESIZE_VAR / TILESIZE;
1701 dy = dy * TILESIZE_VAR / TILESIZE;
1703 if (width > 0 && height > 0)
1705 getGraphicSource(graphic, frame, &src_bitmap, &src_x, &src_y);
1710 dst_x = FX + x * TILEX_VAR + dx;
1711 dst_y = FY + y * TILEY_VAR + dy;
1713 if (mask_mode == USE_MASKING)
1714 BlitBitmapMasked(src_bitmap, drawto_field, src_x, src_y, width, height,
1717 BlitBitmap(src_bitmap, drawto_field, src_x, src_y, width, height,
1720 MarkTileDirty(x, y);
1724 inline static void DrawGraphicShiftedDouble(int x, int y, int dx, int dy,
1725 int graphic, int frame,
1726 int cut_mode, int mask_mode)
1731 int width = TILEX_VAR, height = TILEY_VAR;
1734 int x2 = x + SIGN(dx);
1735 int y2 = y + SIGN(dy);
1737 /* movement with two-tile animations must be sync'ed with movement position,
1738 not with current GfxFrame (which can be higher when using slow movement) */
1739 int anim_pos = (dx ? ABS(dx) : ABS(dy));
1740 int anim_frames = graphic_info[graphic].anim_frames;
1742 /* (we also need anim_delay here for movement animations with less frames) */
1743 int anim_delay = graphic_info[graphic].anim_delay;
1744 int sync_frame = anim_pos * anim_frames * anim_delay / TILESIZE;
1746 boolean draw_start_tile = (cut_mode != CUT_ABOVE); /* only for falling! */
1747 boolean draw_end_tile = (cut_mode != CUT_BELOW); /* only for falling! */
1749 /* re-calculate animation frame for two-tile movement animation */
1750 frame = getGraphicAnimationFrame(graphic, sync_frame);
1752 /* check if movement start graphic inside screen area and should be drawn */
1753 if (draw_start_tile && IN_SCR_FIELD(x1, y1))
1755 getGraphicSourceExt(graphic, frame, &src_bitmap, &src_x, &src_y, TRUE);
1757 dst_x = FX + x1 * TILEX_VAR;
1758 dst_y = FY + y1 * TILEY_VAR;
1760 if (mask_mode == USE_MASKING)
1761 BlitBitmapMasked(src_bitmap, drawto_field, src_x, src_y, width, height,
1764 BlitBitmap(src_bitmap, drawto_field, src_x, src_y, width, height,
1767 MarkTileDirty(x1, y1);
1770 /* check if movement end graphic inside screen area and should be drawn */
1771 if (draw_end_tile && IN_SCR_FIELD(x2, y2))
1773 getGraphicSourceExt(graphic, frame, &src_bitmap, &src_x, &src_y, FALSE);
1775 dst_x = FX + x2 * TILEX_VAR;
1776 dst_y = FY + y2 * TILEY_VAR;
1778 if (mask_mode == USE_MASKING)
1779 BlitBitmapMasked(src_bitmap, drawto_field, src_x, src_y, width, height,
1782 BlitBitmap(src_bitmap, drawto_field, src_x, src_y, width, height,
1785 MarkTileDirty(x2, y2);
1789 static void DrawGraphicShifted(int x, int y, int dx, int dy,
1790 int graphic, int frame,
1791 int cut_mode, int mask_mode)
1795 DrawGraphic(x, y, graphic, frame);
1800 if (graphic_info[graphic].double_movement) /* EM style movement images */
1801 DrawGraphicShiftedDouble(x, y, dx, dy, graphic, frame, cut_mode,mask_mode);
1803 DrawGraphicShiftedNormal(x, y, dx, dy, graphic, frame, cut_mode,mask_mode);
1806 void DrawGraphicShiftedThruMask(int x, int y, int dx, int dy, int graphic,
1807 int frame, int cut_mode)
1809 DrawGraphicShifted(x, y, dx, dy, graphic, frame, cut_mode, USE_MASKING);
1812 void DrawScreenElementExt(int x, int y, int dx, int dy, int element,
1813 int cut_mode, int mask_mode)
1815 int lx = LEVELX(x), ly = LEVELY(y);
1819 if (IN_LEV_FIELD(lx, ly))
1821 SetRandomAnimationValue(lx, ly);
1823 graphic = el_act_dir2img(element, GfxAction[lx][ly], GfxDir[lx][ly]);
1824 frame = getGraphicAnimationFrame(graphic, GfxFrame[lx][ly]);
1826 /* do not use double (EM style) movement graphic when not moving */
1827 if (graphic_info[graphic].double_movement && !dx && !dy)
1829 graphic = el_act_dir2img(element, ACTION_DEFAULT, GfxDir[lx][ly]);
1830 frame = getGraphicAnimationFrame(graphic, GfxFrame[lx][ly]);
1833 else /* border element */
1835 graphic = el2img(element);
1836 frame = getGraphicAnimationFrame(graphic, -1);
1839 if (element == EL_EXPANDABLE_WALL)
1841 boolean left_stopped = FALSE, right_stopped = FALSE;
1843 if (!IN_LEV_FIELD(lx - 1, ly) || IS_WALL(Feld[lx - 1][ly]))
1844 left_stopped = TRUE;
1845 if (!IN_LEV_FIELD(lx + 1, ly) || IS_WALL(Feld[lx + 1][ly]))
1846 right_stopped = TRUE;
1848 if (left_stopped && right_stopped)
1850 else if (left_stopped)
1852 graphic = IMG_EXPANDABLE_WALL_GROWING_RIGHT;
1853 frame = graphic_info[graphic].anim_frames - 1;
1855 else if (right_stopped)
1857 graphic = IMG_EXPANDABLE_WALL_GROWING_LEFT;
1858 frame = graphic_info[graphic].anim_frames - 1;
1863 DrawGraphicShifted(x, y, dx, dy, graphic, frame, cut_mode, mask_mode);
1864 else if (mask_mode == USE_MASKING)
1865 DrawGraphicThruMask(x, y, graphic, frame);
1867 DrawGraphic(x, y, graphic, frame);
1870 void DrawLevelElementExt(int x, int y, int dx, int dy, int element,
1871 int cut_mode, int mask_mode)
1873 if (IN_LEV_FIELD(x, y) && IN_SCR_FIELD(SCREENX(x), SCREENY(y)))
1874 DrawScreenElementExt(SCREENX(x), SCREENY(y), dx, dy, element,
1875 cut_mode, mask_mode);
1878 void DrawScreenElementShifted(int x, int y, int dx, int dy, int element,
1881 DrawScreenElementExt(x, y, dx, dy, element, cut_mode, NO_MASKING);
1884 void DrawLevelElementShifted(int x, int y, int dx, int dy, int element,
1887 DrawLevelElementExt(x, y, dx, dy, element, cut_mode, NO_MASKING);
1890 void DrawLevelElementThruMask(int x, int y, int element)
1892 DrawLevelElementExt(x, y, 0, 0, element, NO_CUTTING, USE_MASKING);
1895 void DrawLevelFieldThruMask(int x, int y)
1897 DrawLevelElementExt(x, y, 0, 0, Feld[x][y], NO_CUTTING, USE_MASKING);
1900 /* !!! implementation of quicksand is totally broken !!! */
1901 #define IS_CRUMBLED_TILE(x, y, e) \
1902 (GFX_CRUMBLED(e) && (!IN_LEV_FIELD(x, y) || \
1903 !IS_MOVING(x, y) || \
1904 (e) == EL_QUICKSAND_EMPTYING || \
1905 (e) == EL_QUICKSAND_FAST_EMPTYING))
1907 static void DrawLevelFieldCrumbledInnerCorners(int x, int y, int dx, int dy,
1912 int width, height, cx, cy;
1913 int sx = SCREENX(x), sy = SCREENY(y);
1914 int crumbled_border_size = graphic_info[graphic].border_size;
1915 int crumbled_tile_size = graphic_info[graphic].tile_size;
1916 int crumbled_border_size_var =
1917 crumbled_border_size * TILESIZE_VAR / crumbled_tile_size;
1920 getGraphicSource(graphic, 0, &src_bitmap, &src_x, &src_y);
1922 for (i = 1; i < 4; i++)
1924 int dxx = (i & 1 ? dx : 0);
1925 int dyy = (i & 2 ? dy : 0);
1928 int element = (IN_LEV_FIELD(xx, yy) ? TILE_GFX_ELEMENT(xx, yy) :
1931 /* check if neighbour field is of same crumble type */
1932 boolean same = (IS_CRUMBLED_TILE(xx, yy, element) &&
1933 graphic_info[graphic].class ==
1934 graphic_info[el_act2crm(element, ACTION_DEFAULT)].class);
1936 /* return if check prevents inner corner */
1937 if (same == (dxx == dx && dyy == dy))
1941 /* if we reach this point, we have an inner corner */
1943 getGraphicSource(graphic, 1, &src_bitmap, &src_x, &src_y);
1945 width = crumbled_border_size_var;
1946 height = crumbled_border_size_var;
1947 cx = (dx > 0 ? TILESIZE_VAR - width : 0);
1948 cy = (dy > 0 ? TILESIZE_VAR - height : 0);
1950 BlitBitmap(src_bitmap, drawto_field, src_x + cx, src_y + cy,
1951 width, height, FX + sx * TILEX_VAR + cx, FY + sy * TILEY_VAR + cy);
1954 static void DrawLevelFieldCrumbledBorders(int x, int y, int graphic, int frame,
1959 int width, height, bx, by, cx, cy;
1960 int sx = SCREENX(x), sy = SCREENY(y);
1961 int crumbled_border_size = graphic_info[graphic].border_size;
1962 int crumbled_tile_size = graphic_info[graphic].tile_size;
1963 int crumbled_border_size_var =
1964 crumbled_border_size * TILESIZE_VAR / crumbled_tile_size;
1965 int crumbled_border_pos_var = TILESIZE_VAR - crumbled_border_size_var;
1968 getGraphicSource(graphic, frame, &src_bitmap, &src_x, &src_y);
1970 /* draw simple, sloppy, non-corner-accurate crumbled border */
1972 width = (dir == 1 || dir == 2 ? crumbled_border_size_var : TILESIZE_VAR);
1973 height = (dir == 0 || dir == 3 ? crumbled_border_size_var : TILESIZE_VAR);
1974 cx = (dir == 2 ? crumbled_border_pos_var : 0);
1975 cy = (dir == 3 ? crumbled_border_pos_var : 0);
1977 BlitBitmap(src_bitmap, drawto_field, src_x + cx, src_y + cy, width, height,
1978 FX + sx * TILEX_VAR + cx,
1979 FY + sy * TILEY_VAR + cy);
1981 /* (remaining middle border part must be at least as big as corner part) */
1982 if (!(graphic_info[graphic].style & STYLE_ACCURATE_BORDERS) ||
1983 crumbled_border_size_var >= TILESIZE_VAR / 3)
1986 /* correct corners of crumbled border, if needed */
1988 for (i = -1; i <= 1; i += 2)
1990 int xx = x + (dir == 0 || dir == 3 ? i : 0);
1991 int yy = y + (dir == 1 || dir == 2 ? i : 0);
1992 int element = (IN_LEV_FIELD(xx, yy) ? TILE_GFX_ELEMENT(xx, yy) :
1995 /* check if neighbour field is of same crumble type */
1996 if (IS_CRUMBLED_TILE(xx, yy, element) &&
1997 graphic_info[graphic].class ==
1998 graphic_info[el_act2crm(element, ACTION_DEFAULT)].class)
2000 /* no crumbled corner, but continued crumbled border */
2002 int c1 = (dir == 2 || dir == 3 ? crumbled_border_pos_var : 0);
2003 int c2 = (i == 1 ? crumbled_border_pos_var : 0);
2004 int b1 = (i == 1 ? crumbled_border_size_var :
2005 TILESIZE_VAR - 2 * crumbled_border_size_var);
2007 width = crumbled_border_size_var;
2008 height = crumbled_border_size_var;
2010 if (dir == 1 || dir == 2)
2025 BlitBitmap(src_bitmap, drawto_field, src_x + bx, src_y + by,
2027 FX + sx * TILEX_VAR + cx,
2028 FY + sy * TILEY_VAR + cy);
2033 static void DrawLevelFieldCrumbledExt(int x, int y, int graphic, int frame)
2035 int sx = SCREENX(x), sy = SCREENY(y);
2038 static int xy[4][2] =
2046 if (!IN_LEV_FIELD(x, y))
2049 element = TILE_GFX_ELEMENT(x, y);
2051 if (IS_CRUMBLED_TILE(x, y, element)) /* crumble field itself */
2053 if (!IN_SCR_FIELD(sx, sy))
2056 /* crumble field borders towards direct neighbour fields */
2057 for (i = 0; i < 4; i++)
2059 int xx = x + xy[i][0];
2060 int yy = y + xy[i][1];
2062 element = (IN_LEV_FIELD(xx, yy) ? TILE_GFX_ELEMENT(xx, yy) :
2065 /* check if neighbour field is of same crumble type */
2066 if (IS_CRUMBLED_TILE(xx, yy, element) &&
2067 graphic_info[graphic].class ==
2068 graphic_info[el_act2crm(element, ACTION_DEFAULT)].class)
2071 DrawLevelFieldCrumbledBorders(x, y, graphic, frame, i);
2074 /* crumble inner field corners towards corner neighbour fields */
2075 if ((graphic_info[graphic].style & STYLE_INNER_CORNERS) &&
2076 graphic_info[graphic].anim_frames == 2)
2078 for (i = 0; i < 4; i++)
2080 int dx = (i & 1 ? +1 : -1);
2081 int dy = (i & 2 ? +1 : -1);
2083 DrawLevelFieldCrumbledInnerCorners(x, y, dx, dy, graphic);
2087 MarkTileDirty(sx, sy);
2089 else /* center field is not crumbled -- crumble neighbour fields */
2091 /* crumble field borders of direct neighbour fields */
2092 for (i = 0; i < 4; i++)
2094 int xx = x + xy[i][0];
2095 int yy = y + xy[i][1];
2096 int sxx = sx + xy[i][0];
2097 int syy = sy + xy[i][1];
2099 if (!IN_LEV_FIELD(xx, yy) ||
2100 !IN_SCR_FIELD(sxx, syy))
2103 if (Feld[xx][yy] == EL_ELEMENT_SNAPPING)
2106 element = TILE_GFX_ELEMENT(xx, yy);
2108 if (!IS_CRUMBLED_TILE(xx, yy, element))
2111 graphic = el_act2crm(element, ACTION_DEFAULT);
2113 DrawLevelFieldCrumbledBorders(xx, yy, graphic, 0, 3 - i);
2115 MarkTileDirty(sxx, syy);
2118 /* crumble inner field corners of corner neighbour fields */
2119 for (i = 0; i < 4; i++)
2121 int dx = (i & 1 ? +1 : -1);
2122 int dy = (i & 2 ? +1 : -1);
2128 if (!IN_LEV_FIELD(xx, yy) ||
2129 !IN_SCR_FIELD(sxx, syy))
2132 if (Feld[xx][yy] == EL_ELEMENT_SNAPPING)
2135 element = TILE_GFX_ELEMENT(xx, yy);
2137 if (!IS_CRUMBLED_TILE(xx, yy, element))
2140 graphic = el_act2crm(element, ACTION_DEFAULT);
2142 if ((graphic_info[graphic].style & STYLE_INNER_CORNERS) &&
2143 graphic_info[graphic].anim_frames == 2)
2144 DrawLevelFieldCrumbledInnerCorners(xx, yy, -dx, -dy, graphic);
2146 MarkTileDirty(sxx, syy);
2151 void DrawLevelFieldCrumbled(int x, int y)
2155 if (!IN_LEV_FIELD(x, y))
2158 if (Feld[x][y] == EL_ELEMENT_SNAPPING &&
2159 GfxElement[x][y] != EL_UNDEFINED &&
2160 GFX_CRUMBLED(GfxElement[x][y]))
2162 DrawLevelFieldCrumbledDigging(x, y, GfxDir[x][y], GfxFrame[x][y]);
2167 graphic = el_act2crm(TILE_GFX_ELEMENT(x, y), ACTION_DEFAULT);
2169 DrawLevelFieldCrumbledExt(x, y, graphic, 0);
2172 void DrawLevelFieldCrumbledDigging(int x, int y, int direction,
2175 int graphic1 = el_act_dir2img(GfxElement[x][y], ACTION_DIGGING, direction);
2176 int graphic2 = el_act_dir2crm(GfxElement[x][y], ACTION_DIGGING, direction);
2177 int frame1 = getGraphicAnimationFrame(graphic1, step_frame);
2178 int frame2 = getGraphicAnimationFrame(graphic2, step_frame);
2179 int sx = SCREENX(x), sy = SCREENY(y);
2181 DrawGraphic(sx, sy, graphic1, frame1);
2182 DrawLevelFieldCrumbledExt(x, y, graphic2, frame2);
2185 void DrawLevelFieldCrumbledNeighbours(int x, int y)
2187 int sx = SCREENX(x), sy = SCREENY(y);
2188 static int xy[4][2] =
2197 /* crumble direct neighbour fields (required for field borders) */
2198 for (i = 0; i < 4; i++)
2200 int xx = x + xy[i][0];
2201 int yy = y + xy[i][1];
2202 int sxx = sx + xy[i][0];
2203 int syy = sy + xy[i][1];
2205 if (!IN_LEV_FIELD(xx, yy) ||
2206 !IN_SCR_FIELD(sxx, syy) ||
2207 !GFX_CRUMBLED(Feld[xx][yy]) ||
2211 DrawLevelField(xx, yy);
2214 /* crumble corner neighbour fields (required for inner field corners) */
2215 for (i = 0; i < 4; i++)
2217 int dx = (i & 1 ? +1 : -1);
2218 int dy = (i & 2 ? +1 : -1);
2224 if (!IN_LEV_FIELD(xx, yy) ||
2225 !IN_SCR_FIELD(sxx, syy) ||
2226 !GFX_CRUMBLED(Feld[xx][yy]) ||
2230 int element = TILE_GFX_ELEMENT(xx, yy);
2231 int graphic = el_act2crm(element, ACTION_DEFAULT);
2233 if ((graphic_info[graphic].style & STYLE_INNER_CORNERS) &&
2234 graphic_info[graphic].anim_frames == 2)
2235 DrawLevelField(xx, yy);
2239 static int getBorderElement(int x, int y)
2243 { EL_STEELWALL_TOPLEFT, EL_INVISIBLE_STEELWALL_TOPLEFT },
2244 { EL_STEELWALL_TOPRIGHT, EL_INVISIBLE_STEELWALL_TOPRIGHT },
2245 { EL_STEELWALL_BOTTOMLEFT, EL_INVISIBLE_STEELWALL_BOTTOMLEFT },
2246 { EL_STEELWALL_BOTTOMRIGHT, EL_INVISIBLE_STEELWALL_BOTTOMRIGHT },
2247 { EL_STEELWALL_VERTICAL, EL_INVISIBLE_STEELWALL_VERTICAL },
2248 { EL_STEELWALL_HORIZONTAL, EL_INVISIBLE_STEELWALL_HORIZONTAL },
2249 { EL_STEELWALL, EL_INVISIBLE_STEELWALL }
2251 int steel_type = (BorderElement == EL_STEELWALL ? 0 : 1);
2252 int steel_position = (x == -1 && y == -1 ? 0 :
2253 x == lev_fieldx && y == -1 ? 1 :
2254 x == -1 && y == lev_fieldy ? 2 :
2255 x == lev_fieldx && y == lev_fieldy ? 3 :
2256 x == -1 || x == lev_fieldx ? 4 :
2257 y == -1 || y == lev_fieldy ? 5 : 6);
2259 return border[steel_position][steel_type];
2262 void DrawScreenElement(int x, int y, int element)
2264 DrawScreenElementExt(x, y, 0, 0, element, NO_CUTTING, NO_MASKING);
2265 DrawLevelFieldCrumbled(LEVELX(x), LEVELY(y));
2268 void DrawLevelElement(int x, int y, int element)
2270 if (IN_LEV_FIELD(x, y) && IN_SCR_FIELD(SCREENX(x), SCREENY(y)))
2271 DrawScreenElement(SCREENX(x), SCREENY(y), element);
2274 void DrawScreenField(int x, int y)
2276 int lx = LEVELX(x), ly = LEVELY(y);
2277 int element, content;
2279 if (!IN_LEV_FIELD(lx, ly))
2281 if (lx < -1 || lx > lev_fieldx || ly < -1 || ly > lev_fieldy)
2284 element = getBorderElement(lx, ly);
2286 DrawScreenElement(x, y, element);
2291 element = Feld[lx][ly];
2292 content = Store[lx][ly];
2294 if (IS_MOVING(lx, ly))
2296 int horiz_move = (MovDir[lx][ly] == MV_LEFT || MovDir[lx][ly] == MV_RIGHT);
2297 boolean cut_mode = NO_CUTTING;
2299 if (element == EL_QUICKSAND_EMPTYING ||
2300 element == EL_QUICKSAND_FAST_EMPTYING ||
2301 element == EL_MAGIC_WALL_EMPTYING ||
2302 element == EL_BD_MAGIC_WALL_EMPTYING ||
2303 element == EL_DC_MAGIC_WALL_EMPTYING ||
2304 element == EL_AMOEBA_DROPPING)
2305 cut_mode = CUT_ABOVE;
2306 else if (element == EL_QUICKSAND_FILLING ||
2307 element == EL_QUICKSAND_FAST_FILLING ||
2308 element == EL_MAGIC_WALL_FILLING ||
2309 element == EL_BD_MAGIC_WALL_FILLING ||
2310 element == EL_DC_MAGIC_WALL_FILLING)
2311 cut_mode = CUT_BELOW;
2313 if (cut_mode == CUT_ABOVE)
2314 DrawScreenElement(x, y, element);
2316 DrawScreenElement(x, y, EL_EMPTY);
2319 DrawScreenElementShifted(x, y, MovPos[lx][ly], 0, element, NO_CUTTING);
2320 else if (cut_mode == NO_CUTTING)
2321 DrawScreenElementShifted(x, y, 0, MovPos[lx][ly], element, cut_mode);
2324 DrawScreenElementShifted(x, y, 0, MovPos[lx][ly], content, cut_mode);
2326 if (cut_mode == CUT_BELOW &&
2327 IN_LEV_FIELD(lx, ly + 1) && IN_SCR_FIELD(x, y + 1))
2328 DrawLevelElement(lx, ly + 1, element);
2331 if (content == EL_ACID)
2333 int dir = MovDir[lx][ly];
2334 int newlx = lx + (dir == MV_LEFT ? -1 : dir == MV_RIGHT ? +1 : 0);
2335 int newly = ly + (dir == MV_UP ? -1 : dir == MV_DOWN ? +1 : 0);
2337 DrawLevelElementThruMask(newlx, newly, EL_ACID);
2339 // prevent target field from being drawn again (but without masking)
2340 // (this would happen if target field is scanned after moving element)
2341 Stop[newlx][newly] = TRUE;
2344 else if (IS_BLOCKED(lx, ly))
2349 boolean cut_mode = NO_CUTTING;
2350 int element_old, content_old;
2352 Blocked2Moving(lx, ly, &oldx, &oldy);
2355 horiz_move = (MovDir[oldx][oldy] == MV_LEFT ||
2356 MovDir[oldx][oldy] == MV_RIGHT);
2358 element_old = Feld[oldx][oldy];
2359 content_old = Store[oldx][oldy];
2361 if (element_old == EL_QUICKSAND_EMPTYING ||
2362 element_old == EL_QUICKSAND_FAST_EMPTYING ||
2363 element_old == EL_MAGIC_WALL_EMPTYING ||
2364 element_old == EL_BD_MAGIC_WALL_EMPTYING ||
2365 element_old == EL_DC_MAGIC_WALL_EMPTYING ||
2366 element_old == EL_AMOEBA_DROPPING)
2367 cut_mode = CUT_ABOVE;
2369 DrawScreenElement(x, y, EL_EMPTY);
2372 DrawScreenElementShifted(sx, sy, MovPos[oldx][oldy], 0, element_old,
2374 else if (cut_mode == NO_CUTTING)
2375 DrawScreenElementShifted(sx, sy, 0, MovPos[oldx][oldy], element_old,
2378 DrawScreenElementShifted(sx, sy, 0, MovPos[oldx][oldy], content_old,
2381 else if (IS_DRAWABLE(element))
2382 DrawScreenElement(x, y, element);
2384 DrawScreenElement(x, y, EL_EMPTY);
2387 void DrawLevelField(int x, int y)
2389 if (IN_SCR_FIELD(SCREENX(x), SCREENY(y)))
2390 DrawScreenField(SCREENX(x), SCREENY(y));
2391 else if (IS_MOVING(x, y))
2395 Moving2Blocked(x, y, &newx, &newy);
2396 if (IN_SCR_FIELD(SCREENX(newx), SCREENY(newy)))
2397 DrawScreenField(SCREENX(newx), SCREENY(newy));
2399 else if (IS_BLOCKED(x, y))
2403 Blocked2Moving(x, y, &oldx, &oldy);
2404 if (IN_SCR_FIELD(SCREENX(oldx), SCREENY(oldy)))
2405 DrawScreenField(SCREENX(oldx), SCREENY(oldy));
2409 void DrawSizedElement(int x, int y, int element, int tilesize)
2413 graphic = el2edimg(element);
2414 DrawSizedGraphic(x, y, graphic, 0, tilesize);
2417 void DrawMiniElement(int x, int y, int element)
2421 graphic = el2edimg(element);
2422 DrawMiniGraphic(x, y, graphic);
2425 void DrawSizedElementOrWall(int sx, int sy, int scroll_x, int scroll_y,
2428 int x = sx + scroll_x, y = sy + scroll_y;
2430 if (x < -1 || x > lev_fieldx || y < -1 || y > lev_fieldy)
2431 DrawSizedElement(sx, sy, EL_EMPTY, tilesize);
2432 else if (x > -1 && x < lev_fieldx && y > -1 && y < lev_fieldy)
2433 DrawSizedElement(sx, sy, Feld[x][y], tilesize);
2435 DrawSizedGraphic(sx, sy, el2edimg(getBorderElement(x, y)), 0, tilesize);
2438 void DrawMiniElementOrWall(int sx, int sy, int scroll_x, int scroll_y)
2440 int x = sx + scroll_x, y = sy + scroll_y;
2442 if (x < -1 || x > lev_fieldx || y < -1 || y > lev_fieldy)
2443 DrawMiniElement(sx, sy, EL_EMPTY);
2444 else if (x > -1 && x < lev_fieldx && y > -1 && y < lev_fieldy)
2445 DrawMiniElement(sx, sy, Feld[x][y]);
2447 DrawMiniGraphic(sx, sy, el2edimg(getBorderElement(x, y)));
2450 void DrawEnvelopeBackgroundTiles(int graphic, int startx, int starty,
2451 int x, int y, int xsize, int ysize,
2452 int tile_width, int tile_height)
2456 int dst_x = startx + x * tile_width;
2457 int dst_y = starty + y * tile_height;
2458 int width = graphic_info[graphic].width;
2459 int height = graphic_info[graphic].height;
2460 int inner_width_raw = MAX(width - 2 * tile_width, tile_width);
2461 int inner_height_raw = MAX(height - 2 * tile_height, tile_height);
2462 int inner_width = inner_width_raw - (inner_width_raw % tile_width);
2463 int inner_height = inner_height_raw - (inner_height_raw % tile_height);
2464 int inner_sx = (width >= 3 * tile_width ? tile_width : 0);
2465 int inner_sy = (height >= 3 * tile_height ? tile_height : 0);
2466 boolean draw_masked = graphic_info[graphic].draw_masked;
2468 getFixedGraphicSource(graphic, 0, &src_bitmap, &src_x, &src_y);
2470 if (src_bitmap == NULL || width < tile_width || height < tile_height)
2472 ClearRectangle(drawto, dst_x, dst_y, tile_width, tile_height);
2476 src_x += (x == 0 ? 0 : x == xsize - 1 ? width - tile_width :
2477 inner_sx + (x - 1) * tile_width % inner_width);
2478 src_y += (y == 0 ? 0 : y == ysize - 1 ? height - tile_height :
2479 inner_sy + (y - 1) * tile_height % inner_height);
2482 BlitBitmapMasked(src_bitmap, drawto, src_x, src_y, tile_width, tile_height,
2485 BlitBitmap(src_bitmap, drawto, src_x, src_y, tile_width, tile_height,
2489 void DrawEnvelopeBackground(int graphic, int startx, int starty,
2490 int x, int y, int xsize, int ysize, int font_nr)
2492 int font_width = getFontWidth(font_nr);
2493 int font_height = getFontHeight(font_nr);
2495 DrawEnvelopeBackgroundTiles(graphic, startx, starty, x, y, xsize, ysize,
2496 font_width, font_height);
2499 void AnimateEnvelope(int envelope_nr, int anim_mode, int action)
2501 int graphic = IMG_BACKGROUND_ENVELOPE_1 + envelope_nr;
2502 Bitmap *src_bitmap = graphic_info[graphic].bitmap;
2503 int mask_mode = (src_bitmap != NULL ? BLIT_MASKED : BLIT_ON_BACKGROUND);
2504 boolean ffwd_delay = (tape.playing && tape.fast_forward);
2505 boolean no_delay = (tape.warp_forward);
2506 unsigned int anim_delay = 0;
2507 int frame_delay_value = (ffwd_delay ? FfwdFrameDelay : GameFrameDelay);
2508 int anim_delay_value = (no_delay ? 0 : frame_delay_value) / 2;
2509 int font_nr = FONT_ENVELOPE_1 + envelope_nr;
2510 int font_width = getFontWidth(font_nr);
2511 int font_height = getFontHeight(font_nr);
2512 int max_xsize = level.envelope[envelope_nr].xsize;
2513 int max_ysize = level.envelope[envelope_nr].ysize;
2514 int xstart = (anim_mode & ANIM_VERTICAL ? max_xsize : 0);
2515 int ystart = (anim_mode & ANIM_HORIZONTAL ? max_ysize : 0);
2516 int xend = max_xsize;
2517 int yend = (anim_mode != ANIM_DEFAULT ? max_ysize : 0);
2518 int xstep = (xstart < xend ? 1 : 0);
2519 int ystep = (ystart < yend || xstep == 0 ? 1 : 0);
2521 int end = MAX(xend - xstart, yend - ystart);
2524 for (i = start; i <= end; i++)
2526 int last_frame = end; // last frame of this "for" loop
2527 int x = xstart + i * xstep;
2528 int y = ystart + i * ystep;
2529 int xsize = (action == ACTION_CLOSING ? xend - (x - xstart) : x) + 2;
2530 int ysize = (action == ACTION_CLOSING ? yend - (y - ystart) : y) + 2;
2531 int sx = SX + (SXSIZE - xsize * font_width) / 2;
2532 int sy = SY + (SYSIZE - ysize * font_height) / 2;
2535 SetDrawtoField(DRAW_TO_FIELDBUFFER);
2537 BlitScreenToBitmap(backbuffer);
2539 SetDrawtoField(DRAW_TO_BACKBUFFER);
2541 for (yy = 0; yy < ysize; yy++)
2542 for (xx = 0; xx < xsize; xx++)
2543 DrawEnvelopeBackground(graphic, sx, sy, xx, yy, xsize, ysize, font_nr);
2545 DrawTextBuffer(sx + font_width, sy + font_height,
2546 level.envelope[envelope_nr].text, font_nr, max_xsize,
2547 xsize - 2, ysize - 2, 0, mask_mode,
2548 level.envelope[envelope_nr].autowrap,
2549 level.envelope[envelope_nr].centered, FALSE);
2551 redraw_mask |= REDRAW_FIELD;
2554 SkipUntilDelayReached(&anim_delay, anim_delay_value, &i, last_frame);
2558 void ShowEnvelope(int envelope_nr)
2560 int element = EL_ENVELOPE_1 + envelope_nr;
2561 int graphic = IMG_BACKGROUND_ENVELOPE_1 + envelope_nr;
2562 int sound_opening = element_info[element].sound[ACTION_OPENING];
2563 int sound_closing = element_info[element].sound[ACTION_CLOSING];
2564 boolean ffwd_delay = (tape.playing && tape.fast_forward);
2565 boolean no_delay = (tape.warp_forward);
2566 int normal_delay_value = ONE_SECOND_DELAY / (ffwd_delay ? 2 : 1);
2567 int wait_delay_value = (no_delay ? 0 : normal_delay_value);
2568 int anim_mode = graphic_info[graphic].anim_mode;
2569 int main_anim_mode = (anim_mode == ANIM_NONE ? ANIM_VERTICAL|ANIM_HORIZONTAL:
2570 anim_mode == ANIM_DEFAULT ? ANIM_VERTICAL : anim_mode);
2572 game.envelope_active = TRUE; /* needed for RedrawPlayfield() events */
2574 PlayMenuSoundStereo(sound_opening, SOUND_MIDDLE);
2576 if (anim_mode == ANIM_DEFAULT)
2577 AnimateEnvelope(envelope_nr, ANIM_DEFAULT, ACTION_OPENING);
2579 AnimateEnvelope(envelope_nr, main_anim_mode, ACTION_OPENING);
2582 Delay(wait_delay_value);
2584 WaitForEventToContinue();
2586 PlayMenuSoundStereo(sound_closing, SOUND_MIDDLE);
2588 if (anim_mode != ANIM_NONE)
2589 AnimateEnvelope(envelope_nr, main_anim_mode, ACTION_CLOSING);
2591 if (anim_mode == ANIM_DEFAULT)
2592 AnimateEnvelope(envelope_nr, ANIM_DEFAULT, ACTION_CLOSING);
2594 game.envelope_active = FALSE;
2596 SetDrawtoField(DRAW_TO_FIELDBUFFER);
2598 redraw_mask |= REDRAW_FIELD;
2602 static void setRequestBasePosition(int *x, int *y)
2604 int sx_base, sy_base;
2606 if (request.x != -1)
2607 sx_base = request.x;
2608 else if (request.align == ALIGN_LEFT)
2610 else if (request.align == ALIGN_RIGHT)
2611 sx_base = SX + SXSIZE;
2613 sx_base = SX + SXSIZE / 2;
2615 if (request.y != -1)
2616 sy_base = request.y;
2617 else if (request.valign == VALIGN_TOP)
2619 else if (request.valign == VALIGN_BOTTOM)
2620 sy_base = SY + SYSIZE;
2622 sy_base = SY + SYSIZE / 2;
2628 static void setRequestPositionExt(int *x, int *y, int width, int height,
2629 boolean add_border_size)
2631 int border_size = request.border_size;
2632 int sx_base, sy_base;
2635 setRequestBasePosition(&sx_base, &sy_base);
2637 if (request.align == ALIGN_LEFT)
2639 else if (request.align == ALIGN_RIGHT)
2640 sx = sx_base - width;
2642 sx = sx_base - width / 2;
2644 if (request.valign == VALIGN_TOP)
2646 else if (request.valign == VALIGN_BOTTOM)
2647 sy = sy_base - height;
2649 sy = sy_base - height / 2;
2651 sx = MAX(0, MIN(sx, WIN_XSIZE - width));
2652 sy = MAX(0, MIN(sy, WIN_YSIZE - height));
2654 if (add_border_size)
2664 static void setRequestPosition(int *x, int *y, boolean add_border_size)
2666 setRequestPositionExt(x, y, request.width, request.height, add_border_size);
2669 void DrawEnvelopeRequest(char *text)
2671 char *text_final = text;
2672 char *text_door_style = NULL;
2673 int graphic = IMG_BACKGROUND_REQUEST;
2674 Bitmap *src_bitmap = graphic_info[graphic].bitmap;
2675 int mask_mode = (src_bitmap != NULL ? BLIT_MASKED : BLIT_ON_BACKGROUND);
2676 int font_nr = FONT_REQUEST;
2677 int font_width = getFontWidth(font_nr);
2678 int font_height = getFontHeight(font_nr);
2679 int border_size = request.border_size;
2680 int line_spacing = request.line_spacing;
2681 int line_height = font_height + line_spacing;
2682 int max_text_width = request.width - 2 * border_size;
2683 int max_text_height = request.height - 2 * border_size;
2684 int line_length = max_text_width / font_width;
2685 int max_lines = max_text_height / line_height;
2686 int text_width = line_length * font_width;
2687 int width = request.width;
2688 int height = request.height;
2689 int tile_size = MAX(request.step_offset, 1);
2690 int x_steps = width / tile_size;
2691 int y_steps = height / tile_size;
2692 int sx_offset = border_size;
2693 int sy_offset = border_size;
2697 if (request.centered)
2698 sx_offset = (request.width - text_width) / 2;
2700 if (request.wrap_single_words && !request.autowrap)
2702 char *src_text_ptr, *dst_text_ptr;
2704 text_door_style = checked_malloc(2 * strlen(text) + 1);
2706 src_text_ptr = text;
2707 dst_text_ptr = text_door_style;
2709 while (*src_text_ptr)
2711 if (*src_text_ptr == ' ' ||
2712 *src_text_ptr == '?' ||
2713 *src_text_ptr == '!')
2714 *dst_text_ptr++ = '\n';
2716 if (*src_text_ptr != ' ')
2717 *dst_text_ptr++ = *src_text_ptr;
2722 *dst_text_ptr = '\0';
2724 text_final = text_door_style;
2727 setRequestPosition(&sx, &sy, FALSE);
2729 ClearRectangle(backbuffer, 0, 0, WIN_XSIZE, WIN_YSIZE);
2731 for (y = 0; y < y_steps; y++)
2732 for (x = 0; x < x_steps; x++)
2733 DrawEnvelopeBackgroundTiles(graphic, sx, sy,
2734 x, y, x_steps, y_steps,
2735 tile_size, tile_size);
2737 /* force DOOR font inside door area */
2738 SetFontStatus(GAME_MODE_PSEUDO_DOOR);
2740 DrawTextBuffer(sx + sx_offset, sy + sy_offset, text_final, font_nr,
2741 line_length, -1, max_lines, line_spacing, mask_mode,
2742 request.autowrap, request.centered, FALSE);
2746 for (i = 0; i < NUM_TOOL_BUTTONS; i++)
2747 RedrawGadget(tool_gadget[i]);
2749 // store readily prepared envelope request for later use when animating
2750 BlitBitmap(backbuffer, bitmap_db_store_2, 0, 0, WIN_XSIZE, WIN_YSIZE, 0, 0);
2752 if (text_door_style)
2753 free(text_door_style);
2756 void AnimateEnvelopeRequest(int anim_mode, int action)
2758 int graphic = IMG_BACKGROUND_REQUEST;
2759 boolean draw_masked = graphic_info[graphic].draw_masked;
2760 int delay_value_normal = request.step_delay;
2761 int delay_value_fast = delay_value_normal / 2;
2762 boolean ffwd_delay = (tape.playing && tape.fast_forward);
2763 boolean no_delay = (tape.warp_forward);
2764 int delay_value = (ffwd_delay ? delay_value_fast : delay_value_normal);
2765 int anim_delay_value = (no_delay ? 0 : delay_value + 500 * 0) / 2;
2766 unsigned int anim_delay = 0;
2768 int tile_size = MAX(request.step_offset, 1);
2769 int max_xsize = request.width / tile_size;
2770 int max_ysize = request.height / tile_size;
2771 int max_xsize_inner = max_xsize - 2;
2772 int max_ysize_inner = max_ysize - 2;
2774 int xstart = (anim_mode & ANIM_VERTICAL ? max_xsize_inner : 0);
2775 int ystart = (anim_mode & ANIM_HORIZONTAL ? max_ysize_inner : 0);
2776 int xend = max_xsize_inner;
2777 int yend = (anim_mode != ANIM_DEFAULT ? max_ysize_inner : 0);
2778 int xstep = (xstart < xend ? 1 : 0);
2779 int ystep = (ystart < yend || xstep == 0 ? 1 : 0);
2781 int end = MAX(xend - xstart, yend - ystart);
2784 if (setup.quick_doors)
2791 for (i = start; i <= end; i++)
2793 int last_frame = end; // last frame of this "for" loop
2794 int x = xstart + i * xstep;
2795 int y = ystart + i * ystep;
2796 int xsize = (action == ACTION_CLOSING ? xend - (x - xstart) : x) + 2;
2797 int ysize = (action == ACTION_CLOSING ? yend - (y - ystart) : y) + 2;
2798 int xsize_size_left = (xsize - 1) * tile_size;
2799 int ysize_size_top = (ysize - 1) * tile_size;
2800 int max_xsize_pos = (max_xsize - 1) * tile_size;
2801 int max_ysize_pos = (max_ysize - 1) * tile_size;
2802 int width = xsize * tile_size;
2803 int height = ysize * tile_size;
2808 setRequestPosition(&src_x, &src_y, FALSE);
2809 setRequestPositionExt(&dst_x, &dst_y, width, height, FALSE);
2811 BlitBitmap(bitmap_db_store_1, backbuffer, 0, 0, WIN_XSIZE, WIN_YSIZE, 0, 0);
2813 for (yy = 0; yy < 2; yy++)
2815 for (xx = 0; xx < 2; xx++)
2817 int src_xx = src_x + xx * max_xsize_pos;
2818 int src_yy = src_y + yy * max_ysize_pos;
2819 int dst_xx = dst_x + xx * xsize_size_left;
2820 int dst_yy = dst_y + yy * ysize_size_top;
2821 int xx_size = (xx ? tile_size : xsize_size_left);
2822 int yy_size = (yy ? tile_size : ysize_size_top);
2825 BlitBitmapMasked(bitmap_db_store_2, backbuffer,
2826 src_xx, src_yy, xx_size, yy_size, dst_xx, dst_yy);
2828 BlitBitmap(bitmap_db_store_2, backbuffer,
2829 src_xx, src_yy, xx_size, yy_size, dst_xx, dst_yy);
2833 redraw_mask |= REDRAW_FIELD;
2837 SkipUntilDelayReached(&anim_delay, anim_delay_value, &i, last_frame);
2841 void ShowEnvelopeRequest(char *text, unsigned int req_state, int action)
2843 int graphic = IMG_BACKGROUND_REQUEST;
2844 int sound_opening = SND_REQUEST_OPENING;
2845 int sound_closing = SND_REQUEST_CLOSING;
2846 int anim_mode_1 = request.anim_mode; /* (higher priority) */
2847 int anim_mode_2 = graphic_info[graphic].anim_mode; /* (lower priority) */
2848 int anim_mode = (anim_mode_1 != ANIM_DEFAULT ? anim_mode_1 : anim_mode_2);
2849 int main_anim_mode = (anim_mode == ANIM_NONE ? ANIM_VERTICAL|ANIM_HORIZONTAL:
2850 anim_mode == ANIM_DEFAULT ? ANIM_VERTICAL : anim_mode);
2852 if (game_status == GAME_MODE_PLAYING)
2853 BlitScreenToBitmap(backbuffer);
2855 SetDrawtoField(DRAW_TO_BACKBUFFER);
2857 // SetDrawBackgroundMask(REDRAW_NONE);
2859 if (action == ACTION_OPENING)
2861 BlitBitmap(backbuffer, bitmap_db_store_1, 0, 0, WIN_XSIZE, WIN_YSIZE, 0, 0);
2863 if (req_state & REQ_ASK)
2865 MapGadget(tool_gadget[TOOL_CTRL_ID_YES]);
2866 MapGadget(tool_gadget[TOOL_CTRL_ID_NO]);
2868 else if (req_state & REQ_CONFIRM)
2870 MapGadget(tool_gadget[TOOL_CTRL_ID_CONFIRM]);
2872 else if (req_state & REQ_PLAYER)
2874 MapGadget(tool_gadget[TOOL_CTRL_ID_PLAYER_1]);
2875 MapGadget(tool_gadget[TOOL_CTRL_ID_PLAYER_2]);
2876 MapGadget(tool_gadget[TOOL_CTRL_ID_PLAYER_3]);
2877 MapGadget(tool_gadget[TOOL_CTRL_ID_PLAYER_4]);
2880 DrawEnvelopeRequest(text);
2883 game.envelope_active = TRUE; /* needed for RedrawPlayfield() events */
2885 if (action == ACTION_OPENING)
2887 PlayMenuSoundStereo(sound_opening, SOUND_MIDDLE);
2889 if (anim_mode == ANIM_DEFAULT)
2890 AnimateEnvelopeRequest(ANIM_DEFAULT, ACTION_OPENING);
2892 AnimateEnvelopeRequest(main_anim_mode, ACTION_OPENING);
2896 PlayMenuSoundStereo(sound_closing, SOUND_MIDDLE);
2898 if (anim_mode != ANIM_NONE)
2899 AnimateEnvelopeRequest(main_anim_mode, ACTION_CLOSING);
2901 if (anim_mode == ANIM_DEFAULT)
2902 AnimateEnvelopeRequest(ANIM_DEFAULT, ACTION_CLOSING);
2905 game.envelope_active = FALSE;
2907 if (action == ACTION_CLOSING)
2908 BlitBitmap(bitmap_db_store_1, backbuffer, 0, 0, WIN_XSIZE, WIN_YSIZE, 0, 0);
2910 // SetDrawBackgroundMask(last_draw_background_mask);
2912 redraw_mask |= REDRAW_FIELD;
2916 if (action == ACTION_CLOSING &&
2917 game_status == GAME_MODE_PLAYING &&
2918 level.game_engine_type == GAME_ENGINE_TYPE_RND)
2919 SetDrawtoField(DRAW_TO_FIELDBUFFER);
2922 void DrawPreviewElement(int dst_x, int dst_y, int element, int tilesize)
2926 int graphic = el2preimg(element);
2928 getSizedGraphicSource(graphic, 0, tilesize, &src_bitmap, &src_x, &src_y);
2929 BlitBitmap(src_bitmap, drawto, src_x, src_y, tilesize, tilesize, dst_x,dst_y);
2932 void DrawLevel(int draw_background_mask)
2936 SetMainBackgroundImage(IMG_BACKGROUND_PLAYING);
2937 SetDrawBackgroundMask(draw_background_mask);
2941 for (x = BX1; x <= BX2; x++)
2942 for (y = BY1; y <= BY2; y++)
2943 DrawScreenField(x, y);
2945 redraw_mask |= REDRAW_FIELD;
2948 void DrawSizedLevel(int size_x, int size_y, int scroll_x, int scroll_y,
2953 for (x = 0; x < size_x; x++)
2954 for (y = 0; y < size_y; y++)
2955 DrawSizedElementOrWall(x, y, scroll_x, scroll_y, tilesize);
2957 redraw_mask |= REDRAW_FIELD;
2960 void DrawMiniLevel(int size_x, int size_y, int scroll_x, int scroll_y)
2964 for (x = 0; x < size_x; x++)
2965 for (y = 0; y < size_y; y++)
2966 DrawMiniElementOrWall(x, y, scroll_x, scroll_y);
2968 redraw_mask |= REDRAW_FIELD;
2971 static void DrawPreviewLevelPlayfieldExt(int from_x, int from_y)
2973 boolean show_level_border = (BorderElement != EL_EMPTY);
2974 int level_xsize = lev_fieldx + (show_level_border ? 2 : 0);
2975 int level_ysize = lev_fieldy + (show_level_border ? 2 : 0);
2976 int tile_size = preview.tile_size;
2977 int preview_width = preview.xsize * tile_size;
2978 int preview_height = preview.ysize * tile_size;
2979 int real_preview_xsize = MIN(level_xsize, preview.xsize);
2980 int real_preview_ysize = MIN(level_ysize, preview.ysize);
2981 int real_preview_width = real_preview_xsize * tile_size;
2982 int real_preview_height = real_preview_ysize * tile_size;
2983 int dst_x = SX + ALIGNED_XPOS(preview.x, preview_width, preview.align);
2984 int dst_y = SY + ALIGNED_YPOS(preview.y, preview_height, preview.valign);
2987 if (!IN_GFX_FIELD_FULL(dst_x, dst_y + preview_height - 1))
2990 DrawBackground(dst_x, dst_y, preview_width, preview_height);
2992 dst_x += (preview_width - real_preview_width) / 2;
2993 dst_y += (preview_height - real_preview_height) / 2;
2995 for (x = 0; x < real_preview_xsize; x++)
2997 for (y = 0; y < real_preview_ysize; y++)
2999 int lx = from_x + x + (show_level_border ? -1 : 0);
3000 int ly = from_y + y + (show_level_border ? -1 : 0);
3001 int element = (IN_LEV_FIELD(lx, ly) ? level.field[lx][ly] :
3002 getBorderElement(lx, ly));
3004 DrawPreviewElement(dst_x + x * tile_size, dst_y + y * tile_size,
3005 element, tile_size);
3009 redraw_mask |= REDRAW_FIELD;
3012 #define MICROLABEL_EMPTY 0
3013 #define MICROLABEL_LEVEL_NAME 1
3014 #define MICROLABEL_LEVEL_AUTHOR_HEAD 2
3015 #define MICROLABEL_LEVEL_AUTHOR 3
3016 #define MICROLABEL_IMPORTED_FROM_HEAD 4
3017 #define MICROLABEL_IMPORTED_FROM 5
3018 #define MICROLABEL_IMPORTED_BY_HEAD 6
3019 #define MICROLABEL_IMPORTED_BY 7
3021 static int getMaxTextLength(struct TextPosInfo *pos, int font_nr)
3023 int max_text_width = SXSIZE;
3024 int font_width = getFontWidth(font_nr);
3026 if (pos->align == ALIGN_CENTER)
3027 max_text_width = (pos->x < SXSIZE / 2 ? pos->x * 2 : (SXSIZE - pos->x) * 2);
3028 else if (pos->align == ALIGN_RIGHT)
3029 max_text_width = pos->x;
3031 max_text_width = SXSIZE - pos->x;
3033 return max_text_width / font_width;
3036 static void DrawPreviewLevelLabelExt(int mode)
3038 struct TextPosInfo *pos = &menu.main.text.level_info_2;
3039 char label_text[MAX_OUTPUT_LINESIZE + 1];
3040 int max_len_label_text;
3041 int font_nr = pos->font;
3044 if (!IN_GFX_FIELD_FULL(pos->x, pos->y + getFontHeight(pos->font)))
3047 if (mode == MICROLABEL_LEVEL_AUTHOR_HEAD ||
3048 mode == MICROLABEL_IMPORTED_FROM_HEAD ||
3049 mode == MICROLABEL_IMPORTED_BY_HEAD)
3050 font_nr = pos->font_alt;
3052 max_len_label_text = getMaxTextLength(pos, font_nr);
3054 if (pos->size != -1)
3055 max_len_label_text = pos->size;
3057 for (i = 0; i < max_len_label_text; i++)
3058 label_text[i] = ' ';
3059 label_text[max_len_label_text] = '\0';
3061 if (strlen(label_text) > 0)
3062 DrawTextSAligned(pos->x, pos->y, label_text, font_nr, pos->align);
3065 (mode == MICROLABEL_LEVEL_NAME ? level.name :
3066 mode == MICROLABEL_LEVEL_AUTHOR_HEAD ? "created by" :
3067 mode == MICROLABEL_LEVEL_AUTHOR ? level.author :
3068 mode == MICROLABEL_IMPORTED_FROM_HEAD ? "imported from" :
3069 mode == MICROLABEL_IMPORTED_FROM ? leveldir_current->imported_from :
3070 mode == MICROLABEL_IMPORTED_BY_HEAD ? "imported by" :
3071 mode == MICROLABEL_IMPORTED_BY ? leveldir_current->imported_by :""),
3072 max_len_label_text);
3073 label_text[max_len_label_text] = '\0';
3075 if (strlen(label_text) > 0)
3076 DrawTextSAligned(pos->x, pos->y, label_text, font_nr, pos->align);
3078 redraw_mask |= REDRAW_FIELD;
3081 static void DrawPreviewLevelExt(boolean restart)
3083 static unsigned int scroll_delay = 0;
3084 static unsigned int label_delay = 0;
3085 static int from_x, from_y, scroll_direction;
3086 static int label_state, label_counter;
3087 unsigned int scroll_delay_value = preview.step_delay;
3088 boolean show_level_border = (BorderElement != EL_EMPTY);
3089 int level_xsize = lev_fieldx + (show_level_border ? 2 : 0);
3090 int level_ysize = lev_fieldy + (show_level_border ? 2 : 0);
3097 if (preview.anim_mode == ANIM_CENTERED)
3099 if (level_xsize > preview.xsize)
3100 from_x = (level_xsize - preview.xsize) / 2;
3101 if (level_ysize > preview.ysize)
3102 from_y = (level_ysize - preview.ysize) / 2;
3105 from_x += preview.xoffset;
3106 from_y += preview.yoffset;
3108 scroll_direction = MV_RIGHT;
3112 DrawPreviewLevelPlayfieldExt(from_x, from_y);
3113 DrawPreviewLevelLabelExt(label_state);
3115 /* initialize delay counters */
3116 DelayReached(&scroll_delay, 0);
3117 DelayReached(&label_delay, 0);
3119 if (leveldir_current->name)
3121 struct TextPosInfo *pos = &menu.main.text.level_info_1;
3122 char label_text[MAX_OUTPUT_LINESIZE + 1];
3123 int font_nr = pos->font;
3124 int max_len_label_text = getMaxTextLength(pos, font_nr);
3126 if (pos->size != -1)
3127 max_len_label_text = pos->size;
3129 strncpy(label_text, leveldir_current->name, max_len_label_text);
3130 label_text[max_len_label_text] = '\0';
3132 if (IN_GFX_FIELD_FULL(pos->x, pos->y + getFontHeight(pos->font)))
3133 DrawTextSAligned(pos->x, pos->y, label_text, font_nr, pos->align);
3139 /* scroll preview level, if needed */
3140 if (preview.anim_mode != ANIM_NONE &&
3141 (level_xsize > preview.xsize || level_ysize > preview.ysize) &&
3142 DelayReached(&scroll_delay, scroll_delay_value))
3144 switch (scroll_direction)
3149 from_x -= preview.step_offset;
3150 from_x = (from_x < 0 ? 0 : from_x);
3153 scroll_direction = MV_UP;
3157 if (from_x < level_xsize - preview.xsize)
3159 from_x += preview.step_offset;
3160 from_x = (from_x > level_xsize - preview.xsize ?
3161 level_xsize - preview.xsize : from_x);
3164 scroll_direction = MV_DOWN;
3170 from_y -= preview.step_offset;
3171 from_y = (from_y < 0 ? 0 : from_y);
3174 scroll_direction = MV_RIGHT;
3178 if (from_y < level_ysize - preview.ysize)
3180 from_y += preview.step_offset;
3181 from_y = (from_y > level_ysize - preview.ysize ?
3182 level_ysize - preview.ysize : from_y);
3185 scroll_direction = MV_LEFT;
3192 DrawPreviewLevelPlayfieldExt(from_x, from_y);
3195 /* !!! THIS ALL SUCKS -- SHOULD BE CLEANLY REWRITTEN !!! */
3196 /* redraw micro level label, if needed */
3197 if (!strEqual(level.name, NAMELESS_LEVEL_NAME) &&
3198 !strEqual(level.author, ANONYMOUS_NAME) &&
3199 !strEqual(level.author, leveldir_current->name) &&
3200 DelayReached(&label_delay, MICROLEVEL_LABEL_DELAY))
3202 int max_label_counter = 23;
3204 if (leveldir_current->imported_from != NULL &&
3205 strlen(leveldir_current->imported_from) > 0)
3206 max_label_counter += 14;
3207 if (leveldir_current->imported_by != NULL &&
3208 strlen(leveldir_current->imported_by) > 0)
3209 max_label_counter += 14;
3211 label_counter = (label_counter + 1) % max_label_counter;
3212 label_state = (label_counter >= 0 && label_counter <= 7 ?
3213 MICROLABEL_LEVEL_NAME :
3214 label_counter >= 9 && label_counter <= 12 ?
3215 MICROLABEL_LEVEL_AUTHOR_HEAD :
3216 label_counter >= 14 && label_counter <= 21 ?
3217 MICROLABEL_LEVEL_AUTHOR :
3218 label_counter >= 23 && label_counter <= 26 ?
3219 MICROLABEL_IMPORTED_FROM_HEAD :
3220 label_counter >= 28 && label_counter <= 35 ?
3221 MICROLABEL_IMPORTED_FROM :
3222 label_counter >= 37 && label_counter <= 40 ?
3223 MICROLABEL_IMPORTED_BY_HEAD :
3224 label_counter >= 42 && label_counter <= 49 ?
3225 MICROLABEL_IMPORTED_BY : MICROLABEL_EMPTY);
3227 if (leveldir_current->imported_from == NULL &&
3228 (label_state == MICROLABEL_IMPORTED_FROM_HEAD ||
3229 label_state == MICROLABEL_IMPORTED_FROM))
3230 label_state = (label_state == MICROLABEL_IMPORTED_FROM_HEAD ?
3231 MICROLABEL_IMPORTED_BY_HEAD : MICROLABEL_IMPORTED_BY);
3233 DrawPreviewLevelLabelExt(label_state);
3237 void DrawPreviewLevelInitial()
3239 DrawPreviewLevelExt(TRUE);
3242 void DrawPreviewLevelAnimation()
3244 DrawPreviewLevelExt(FALSE);
3247 inline static void DrawGraphicAnimationExt(DrawBuffer *dst_bitmap, int x, int y,
3248 int graphic, int sync_frame,
3251 int frame = getGraphicAnimationFrame(graphic, sync_frame);
3253 if (mask_mode == USE_MASKING)
3254 DrawGraphicThruMaskExt(dst_bitmap, x, y, graphic, frame);
3256 DrawGraphicExt(dst_bitmap, x, y, graphic, frame);
3259 void DrawFixedGraphicAnimationExt(DrawBuffer *dst_bitmap, int x, int y,
3260 int graphic, int sync_frame, int mask_mode)
3262 int frame = getGraphicAnimationFrame(graphic, sync_frame);
3264 if (mask_mode == USE_MASKING)
3265 DrawFixedGraphicThruMaskExt(dst_bitmap, x, y, graphic, frame);
3267 DrawFixedGraphicExt(dst_bitmap, x, y, graphic, frame);
3270 inline static void DrawGraphicAnimation(int x, int y, int graphic)
3272 int lx = LEVELX(x), ly = LEVELY(y);
3274 if (!IN_SCR_FIELD(x, y))
3277 DrawGraphicAnimationExt(drawto_field, FX + x * TILEX_VAR, FY + y * TILEY_VAR,
3278 graphic, GfxFrame[lx][ly], NO_MASKING);
3280 MarkTileDirty(x, y);
3283 void DrawFixedGraphicAnimation(int x, int y, int graphic)
3285 int lx = LEVELX(x), ly = LEVELY(y);
3287 if (!IN_SCR_FIELD(x, y))
3290 DrawGraphicAnimationExt(drawto_field, FX + x * TILEX, FY + y * TILEY,
3291 graphic, GfxFrame[lx][ly], NO_MASKING);
3292 MarkTileDirty(x, y);
3295 void DrawLevelGraphicAnimation(int x, int y, int graphic)
3297 DrawGraphicAnimation(SCREENX(x), SCREENY(y), graphic);
3300 void DrawLevelElementAnimation(int x, int y, int element)
3302 int graphic = el_act_dir2img(element, GfxAction[x][y], GfxDir[x][y]);
3304 DrawGraphicAnimation(SCREENX(x), SCREENY(y), graphic);
3307 void DrawLevelGraphicAnimationIfNeeded(int x, int y, int graphic)
3309 int sx = SCREENX(x), sy = SCREENY(y);
3311 if (!IN_LEV_FIELD(x, y) || !IN_SCR_FIELD(sx, sy))
3314 if (!IS_NEW_FRAME(GfxFrame[x][y], graphic))
3317 DrawGraphicAnimation(sx, sy, graphic);
3320 if (GFX_CRUMBLED(TILE_GFX_ELEMENT(x, y)))
3321 DrawLevelFieldCrumbled(x, y);
3323 if (GFX_CRUMBLED(Feld[x][y]))
3324 DrawLevelFieldCrumbled(x, y);
3328 void DrawLevelElementAnimationIfNeeded(int x, int y, int element)
3330 int sx = SCREENX(x), sy = SCREENY(y);
3333 if (!IN_LEV_FIELD(x, y) || !IN_SCR_FIELD(sx, sy))
3336 graphic = el_act_dir2img(element, GfxAction[x][y], GfxDir[x][y]);
3338 if (!IS_NEW_FRAME(GfxFrame[x][y], graphic))
3341 DrawGraphicAnimation(sx, sy, graphic);
3343 if (GFX_CRUMBLED(element))
3344 DrawLevelFieldCrumbled(x, y);
3347 static int getPlayerGraphic(struct PlayerInfo *player, int move_dir)
3349 if (player->use_murphy)
3351 /* this works only because currently only one player can be "murphy" ... */
3352 static int last_horizontal_dir = MV_LEFT;
3353 int graphic = el_act_dir2img(EL_SP_MURPHY, player->GfxAction, move_dir);
3355 if (move_dir == MV_LEFT || move_dir == MV_RIGHT)
3356 last_horizontal_dir = move_dir;
3358 if (graphic == IMG_SP_MURPHY) /* undefined => use special graphic */
3360 int direction = (player->is_snapping ? move_dir : last_horizontal_dir);
3362 graphic = el_act_dir2img(EL_SP_MURPHY, player->GfxAction, direction);
3368 return el_act_dir2img(player->artwork_element, player->GfxAction,move_dir);
3371 static boolean equalGraphics(int graphic1, int graphic2)
3373 struct GraphicInfo *g1 = &graphic_info[graphic1];
3374 struct GraphicInfo *g2 = &graphic_info[graphic2];
3376 return (g1->bitmap == g2->bitmap &&
3377 g1->src_x == g2->src_x &&
3378 g1->src_y == g2->src_y &&
3379 g1->anim_frames == g2->anim_frames &&
3380 g1->anim_delay == g2->anim_delay &&
3381 g1->anim_mode == g2->anim_mode);
3384 void DrawAllPlayers()
3388 for (i = 0; i < MAX_PLAYERS; i++)
3389 if (stored_player[i].active)
3390 DrawPlayer(&stored_player[i]);
3393 void DrawPlayerField(int x, int y)
3395 if (!IS_PLAYER(x, y))
3398 DrawPlayer(PLAYERINFO(x, y));
3401 #define DRAW_PLAYER_OVER_PUSHED_ELEMENT 1
3403 void DrawPlayer(struct PlayerInfo *player)
3405 int jx = player->jx;
3406 int jy = player->jy;
3407 int move_dir = player->MovDir;
3408 int dx = (move_dir == MV_LEFT ? -1 : move_dir == MV_RIGHT ? +1 : 0);
3409 int dy = (move_dir == MV_UP ? -1 : move_dir == MV_DOWN ? +1 : 0);
3410 int last_jx = (player->is_moving ? jx - dx : jx);
3411 int last_jy = (player->is_moving ? jy - dy : jy);
3412 int next_jx = jx + dx;
3413 int next_jy = jy + dy;
3414 boolean player_is_moving = (player->MovPos ? TRUE : FALSE);
3415 boolean player_is_opaque = FALSE;
3416 int sx = SCREENX(jx), sy = SCREENY(jy);
3417 int sxx = 0, syy = 0;
3418 int element = Feld[jx][jy], last_element = Feld[last_jx][last_jy];
3420 int action = ACTION_DEFAULT;
3421 int last_player_graphic = getPlayerGraphic(player, move_dir);
3422 int last_player_frame = player->Frame;
3425 /* GfxElement[][] is set to the element the player is digging or collecting;
3426 remove also for off-screen player if the player is not moving anymore */
3427 if (IN_LEV_FIELD(jx, jy) && !player_is_moving)
3428 GfxElement[jx][jy] = EL_UNDEFINED;
3430 if (!player->active || !IN_SCR_FIELD(SCREENX(last_jx), SCREENY(last_jy)))
3434 if (!IN_LEV_FIELD(jx, jy))
3436 printf("DrawPlayerField(): x = %d, y = %d\n",jx,jy);
3437 printf("DrawPlayerField(): sx = %d, sy = %d\n",sx,sy);
3438 printf("DrawPlayerField(): This should never happen!\n");
3443 if (element == EL_EXPLOSION)
3446 action = (player->is_pushing ? ACTION_PUSHING :
3447 player->is_digging ? ACTION_DIGGING :
3448 player->is_collecting ? ACTION_COLLECTING :
3449 player->is_moving ? ACTION_MOVING :
3450 player->is_snapping ? ACTION_SNAPPING :
3451 player->is_dropping ? ACTION_DROPPING :
3452 player->is_waiting ? player->action_waiting : ACTION_DEFAULT);
3454 if (player->is_waiting)
3455 move_dir = player->dir_waiting;
3457 InitPlayerGfxAnimation(player, action, move_dir);
3459 /* ----------------------------------------------------------------------- */
3460 /* draw things in the field the player is leaving, if needed */
3461 /* ----------------------------------------------------------------------- */
3463 if (player->is_moving)
3465 if (Back[last_jx][last_jy] && IS_DRAWABLE(last_element))
3467 DrawLevelElement(last_jx, last_jy, Back[last_jx][last_jy]);
3469 if (last_element == EL_DYNAMITE_ACTIVE ||
3470 last_element == EL_EM_DYNAMITE_ACTIVE ||
3471 last_element == EL_SP_DISK_RED_ACTIVE)
3472 DrawDynamite(last_jx, last_jy);
3474 DrawLevelFieldThruMask(last_jx, last_jy);
3476 else if (last_element == EL_DYNAMITE_ACTIVE ||
3477 last_element == EL_EM_DYNAMITE_ACTIVE ||
3478 last_element == EL_SP_DISK_RED_ACTIVE)
3479 DrawDynamite(last_jx, last_jy);
3481 /* !!! this is not enough to prevent flickering of players which are
3482 moving next to each others without a free tile between them -- this
3483 can only be solved by drawing all players layer by layer (first the
3484 background, then the foreground etc.) !!! => TODO */
3485 else if (!IS_PLAYER(last_jx, last_jy))
3486 DrawLevelField(last_jx, last_jy);
3489 DrawLevelField(last_jx, last_jy);
3492 if (player->is_pushing && IN_SCR_FIELD(SCREENX(next_jx), SCREENY(next_jy)))
3493 DrawLevelElement(next_jx, next_jy, EL_EMPTY);
3496 if (!IN_SCR_FIELD(sx, sy))
3499 /* ----------------------------------------------------------------------- */
3500 /* draw things behind the player, if needed */
3501 /* ----------------------------------------------------------------------- */
3504 DrawLevelElement(jx, jy, Back[jx][jy]);
3505 else if (IS_ACTIVE_BOMB(element))
3506 DrawLevelElement(jx, jy, EL_EMPTY);
3509 if (player_is_moving && GfxElement[jx][jy] != EL_UNDEFINED)
3511 int old_element = GfxElement[jx][jy];
3512 int old_graphic = el_act_dir2img(old_element, action, move_dir);
3513 int frame = getGraphicAnimationFrame(old_graphic, player->StepFrame);
3515 if (GFX_CRUMBLED(old_element))
3516 DrawLevelFieldCrumbledDigging(jx, jy, move_dir, player->StepFrame);
3518 DrawGraphic(sx, sy, old_graphic, frame);
3520 if (graphic_info[old_graphic].anim_mode & ANIM_OPAQUE_PLAYER)
3521 player_is_opaque = TRUE;
3525 GfxElement[jx][jy] = EL_UNDEFINED;
3527 /* make sure that pushed elements are drawn with correct frame rate */
3528 graphic = el_act_dir2img(element, ACTION_PUSHING, move_dir);
3530 if (player->is_pushing && player->is_moving && !IS_ANIM_MODE_CE(graphic))
3531 GfxFrame[jx][jy] = player->StepFrame;
3533 DrawLevelField(jx, jy);
3537 #if !DRAW_PLAYER_OVER_PUSHED_ELEMENT
3538 /* ----------------------------------------------------------------------- */
3539 /* draw player himself */
3540 /* ----------------------------------------------------------------------- */
3542 graphic = getPlayerGraphic(player, move_dir);
3544 /* in the case of changed player action or direction, prevent the current
3545 animation frame from being restarted for identical animations */
3546 if (player->Frame == 0 && equalGraphics(graphic, last_player_graphic))
3547 player->Frame = last_player_frame;
3549 frame = getGraphicAnimationFrame(graphic, player->Frame);
3553 if (move_dir == MV_LEFT || move_dir == MV_RIGHT)
3554 sxx = player->GfxPos;
3556 syy = player->GfxPos;
3559 if (player_is_opaque)
3560 DrawGraphicShifted(sx, sy, sxx, syy, graphic, frame,NO_CUTTING,NO_MASKING);
3562 DrawGraphicShiftedThruMask(sx, sy, sxx, syy, graphic, frame, NO_CUTTING);
3564 if (SHIELD_ON(player))
3566 int graphic = (player->shield_deadly_time_left ? IMG_SHIELD_DEADLY_ACTIVE :
3567 IMG_SHIELD_NORMAL_ACTIVE);
3568 int frame = getGraphicAnimationFrame(graphic, -1);
3570 DrawGraphicShiftedThruMask(sx, sy, sxx, syy, graphic, frame, NO_CUTTING);
3574 #if DRAW_PLAYER_OVER_PUSHED_ELEMENT
3577 if (move_dir == MV_LEFT || move_dir == MV_RIGHT)
3578 sxx = player->GfxPos;
3580 syy = player->GfxPos;
3584 /* ----------------------------------------------------------------------- */
3585 /* draw things the player is pushing, if needed */
3586 /* ----------------------------------------------------------------------- */
3588 if (player->is_pushing && player->is_moving)
3590 int px = SCREENX(jx), py = SCREENY(jy);
3591 int pxx = (TILEX - ABS(sxx)) * dx;
3592 int pyy = (TILEY - ABS(syy)) * dy;
3593 int gfx_frame = GfxFrame[jx][jy];
3599 if (!IS_MOVING(jx, jy)) /* push movement already finished */
3601 element = Feld[next_jx][next_jy];
3602 gfx_frame = GfxFrame[next_jx][next_jy];
3605 graphic = el_act_dir2img(element, ACTION_PUSHING, move_dir);
3607 sync_frame = (IS_ANIM_MODE_CE(graphic) ? gfx_frame : player->StepFrame);
3608 frame = getGraphicAnimationFrame(graphic, sync_frame);
3610 /* draw background element under pushed element (like the Sokoban field) */
3611 if (game.use_masked_pushing && IS_MOVING(jx, jy))
3613 /* this allows transparent pushing animation over non-black background */
3616 DrawLevelElement(jx, jy, Back[jx][jy]);
3618 DrawLevelElement(jx, jy, EL_EMPTY);
3620 if (Back[next_jx][next_jy])
3621 DrawLevelElement(next_jx, next_jy, Back[next_jx][next_jy]);
3623 DrawLevelElement(next_jx, next_jy, EL_EMPTY);
3625 else if (Back[next_jx][next_jy])
3626 DrawLevelElement(next_jx, next_jy, Back[next_jx][next_jy]);
3629 /* do not draw (EM style) pushing animation when pushing is finished */
3630 /* (two-tile animations usually do not contain start and end frame) */
3631 if (graphic_info[graphic].double_movement && !IS_MOVING(jx, jy))
3632 DrawLevelElement(next_jx, next_jy, Feld[next_jx][next_jy]);
3634 DrawGraphicShiftedThruMask(px, py, pxx, pyy, graphic, frame, NO_CUTTING);
3636 /* masked drawing is needed for EMC style (double) movement graphics */
3637 /* !!! (ONLY WHEN DRAWING PUSHED ELEMENT OVER THE PLAYER) !!! */
3638 DrawGraphicShiftedThruMask(px, py, pxx, pyy, graphic, frame, NO_CUTTING);
3642 #if DRAW_PLAYER_OVER_PUSHED_ELEMENT
3643 /* ----------------------------------------------------------------------- */
3644 /* draw player himself */
3645 /* ----------------------------------------------------------------------- */
3647 graphic = getPlayerGraphic(player, move_dir);
3649 /* in the case of changed player action or direction, prevent the current
3650 animation frame from being restarted for identical animations */
3651 if (player->Frame == 0 && equalGraphics(graphic, last_player_graphic))
3652 player->Frame = last_player_frame;
3654 frame = getGraphicAnimationFrame(graphic, player->Frame);
3658 if (move_dir == MV_LEFT || move_dir == MV_RIGHT)
3659 sxx = player->GfxPos;
3661 syy = player->GfxPos;
3664 if (player_is_opaque)
3665 DrawGraphicShifted(sx, sy, sxx, syy, graphic, frame,NO_CUTTING,NO_MASKING);
3667 DrawGraphicShiftedThruMask(sx, sy, sxx, syy, graphic, frame, NO_CUTTING);
3669 if (SHIELD_ON(player))
3671 int graphic = (player->shield_deadly_time_left ? IMG_SHIELD_DEADLY_ACTIVE :
3672 IMG_SHIELD_NORMAL_ACTIVE);
3673 int frame = getGraphicAnimationFrame(graphic, -1);
3675 DrawGraphicShiftedThruMask(sx, sy, sxx, syy, graphic, frame, NO_CUTTING);
3679 /* ----------------------------------------------------------------------- */
3680 /* draw things in front of player (active dynamite or dynabombs) */
3681 /* ----------------------------------------------------------------------- */
3683 if (IS_ACTIVE_BOMB(element))
3685 graphic = el2img(element);
3686 frame = getGraphicAnimationFrame(graphic, GfxFrame[jx][jy]);
3688 if (game.emulation == EMU_SUPAPLEX)
3689 DrawGraphic(sx, sy, IMG_SP_DISK_RED, frame);
3691 DrawGraphicThruMask(sx, sy, graphic, frame);
3694 if (player_is_moving && last_element == EL_EXPLOSION)
3696 int element = (GfxElement[last_jx][last_jy] != EL_UNDEFINED ?
3697 GfxElement[last_jx][last_jy] : EL_EMPTY);
3698 int graphic = el_act2img(element, ACTION_EXPLODING);
3699 int delay = (game.emulation == EMU_SUPAPLEX ? 3 : 2);
3700 int phase = ExplodePhase[last_jx][last_jy] - 1;
3701 int frame = getGraphicAnimationFrame(graphic, phase - delay);
3704 DrawGraphicThruMask(SCREENX(last_jx), SCREENY(last_jy), graphic, frame);
3707 /* ----------------------------------------------------------------------- */
3708 /* draw elements the player is just walking/passing through/under */
3709 /* ----------------------------------------------------------------------- */
3711 if (player_is_moving)
3713 /* handle the field the player is leaving ... */
3714 if (IS_ACCESSIBLE_INSIDE(last_element))
3715 DrawLevelField(last_jx, last_jy);
3716 else if (IS_ACCESSIBLE_UNDER(last_element))
3717 DrawLevelFieldThruMask(last_jx, last_jy);
3720 /* do not redraw accessible elements if the player is just pushing them */
3721 if (!player_is_moving || !player->is_pushing)
3723 /* ... and the field the player is entering */
3724 if (IS_ACCESSIBLE_INSIDE(element))
3725 DrawLevelField(jx, jy);
3726 else if (IS_ACCESSIBLE_UNDER(element))
3727 DrawLevelFieldThruMask(jx, jy);
3730 MarkTileDirty(sx, sy);
3733 /* ------------------------------------------------------------------------- */
3735 void WaitForEventToContinue()
3737 boolean still_wait = TRUE;
3739 if (program.headless)
3742 /* simulate releasing mouse button over last gadget, if still pressed */
3744 HandleGadgets(-1, -1, 0);
3746 button_status = MB_RELEASED;
3760 case EVENT_BUTTONPRESS:
3761 case EVENT_KEYPRESS:
3765 case EVENT_KEYRELEASE:
3766 ClearPlayerAction();
3770 HandleOtherEvents(&event);
3774 else if (AnyJoystickButton() == JOY_BUTTON_NEW_PRESSED)
3783 #define MAX_REQUEST_LINES 13
3784 #define MAX_REQUEST_LINE_FONT1_LEN 7
3785 #define MAX_REQUEST_LINE_FONT2_LEN 10
3787 static int RequestHandleEvents(unsigned int req_state)
3789 boolean level_solved = (game_status == GAME_MODE_PLAYING &&
3790 local_player->LevelSolved_GameEnd);
3791 int width = request.width;
3792 int height = request.height;
3796 setRequestPosition(&sx, &sy, FALSE);
3798 button_status = MB_RELEASED;
3800 request_gadget_id = -1;
3807 SetDrawtoField(DRAW_TO_FIELDBUFFER);
3809 HandleGameActions();
3811 SetDrawtoField(DRAW_TO_BACKBUFFER);
3813 if (global.use_envelope_request)
3815 /* copy current state of request area to middle of playfield area */
3816 BlitBitmap(bitmap_db_store_2, drawto, sx, sy, width, height, sx, sy);
3824 while (NextValidEvent(&event))
3828 case EVENT_BUTTONPRESS:
3829 case EVENT_BUTTONRELEASE:
3830 case EVENT_MOTIONNOTIFY:
3834 if (event.type == EVENT_MOTIONNOTIFY)
3839 motion_status = TRUE;
3840 mx = ((MotionEvent *) &event)->x;
3841 my = ((MotionEvent *) &event)->y;
3845 motion_status = FALSE;
3846 mx = ((ButtonEvent *) &event)->x;
3847 my = ((ButtonEvent *) &event)->y;
3848 if (event.type == EVENT_BUTTONPRESS)
3849 button_status = ((ButtonEvent *) &event)->button;
3851 button_status = MB_RELEASED;
3854 /* this sets 'request_gadget_id' */
3855 HandleGadgets(mx, my, button_status);
3857 switch (request_gadget_id)
3859 case TOOL_CTRL_ID_YES:
3862 case TOOL_CTRL_ID_NO:
3865 case TOOL_CTRL_ID_CONFIRM:
3866 result = TRUE | FALSE;
3869 case TOOL_CTRL_ID_PLAYER_1:
3872 case TOOL_CTRL_ID_PLAYER_2:
3875 case TOOL_CTRL_ID_PLAYER_3:
3878 case TOOL_CTRL_ID_PLAYER_4:
3889 #if defined(TARGET_SDL2)
3890 case SDL_WINDOWEVENT:
3891 HandleWindowEvent((WindowEvent *) &event);
3894 case SDL_APP_WILLENTERBACKGROUND:
3895 case SDL_APP_DIDENTERBACKGROUND:
3896 case SDL_APP_WILLENTERFOREGROUND:
3897 case SDL_APP_DIDENTERFOREGROUND:
3898 HandlePauseResumeEvent((PauseResumeEvent *) &event);
3902 case EVENT_KEYPRESS:
3904 Key key = GetEventKey((KeyEvent *)&event, TRUE);
3909 if (req_state & REQ_CONFIRM)
3914 #if defined(TARGET_SDL2)
3921 #if defined(TARGET_SDL2)
3928 HandleKeysDebug(key);
3932 if (req_state & REQ_PLAYER)
3938 case EVENT_KEYRELEASE:
3939 ClearPlayerAction();
3942 #if defined(TARGET_SDL2)
3943 case SDL_CONTROLLERBUTTONDOWN:
3944 switch (event.cbutton.button)
3946 case SDL_CONTROLLER_BUTTON_A:
3947 case SDL_CONTROLLER_BUTTON_X:
3948 case SDL_CONTROLLER_BUTTON_LEFTSHOULDER:
3952 case SDL_CONTROLLER_BUTTON_B:
3953 case SDL_CONTROLLER_BUTTON_Y:
3954 case SDL_CONTROLLER_BUTTON_RIGHTSHOULDER:
3955 case SDL_CONTROLLER_BUTTON_BACK: