renamed function
[rocksndiamonds.git] / src / game_bd / bd_graphics.c
1 /*
2  * Copyright (c) 2007, 2008, 2009, Czirkos Zoltan <cirix@fw.hu>
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #include "main_bd.h"
18
19
20 // !!! (can be removed later) !!!
21 #define DO_GFX_SANITY_CHECK     TRUE
22
23 // distance to screen edge in cells when scrolling the screen
24 #define SCROLL_EDGE_DISTANCE    4
25
26 // these can't be larger than 31, or they mess up utf8 coding or are the same as some ascii letter
27 #define GD_DOWN_CHAR            1
28 #define GD_LEFT_CHAR            2
29 #define GD_UP_CHAR              3
30 #define GD_RIGHT_CHAR           4
31
32 #define GD_BALL_CHAR            5
33 #define GD_UNCHECKED_BOX_CHAR   6
34 #define GD_CHECKED_BOX_CHAR     7
35
36 #define GD_PLAYER_CHAR          8
37 #define GD_DIAMOND_CHAR         9
38 #define GD_SKELETON_CHAR        11
39 #define GD_KEY_CHAR             12
40 #define GD_COMMENT_CHAR         13
41
42 // pointer to tile bitmap (which may be prepared with level-specific colors)
43 static Bitmap *gd_tile_bitmap = NULL;
44 // pointer to reference tile bitmap (without level-specific colors)
45 static Bitmap *gd_tile_bitmap_reference = NULL;
46
47 // optional title screen bitmaps (foreground and background)
48 static Bitmap *gd_title_screen_bitmaps[2] = { NULL, NULL };
49
50 // screen area
51 Bitmap *gd_screen_bitmap = NULL;
52
53 static int play_area_w = 0;
54 static int play_area_h = 0;
55
56 static int scroll_x, scroll_y;
57
58 // quit, global variable which is set to true if the application should quit
59 boolean gd_quit = FALSE;
60
61 static int cell_size = 0;
62
63 // graphic info for game objects/frames and players/actions/frames
64 struct GraphicInfo_BD graphic_info_bd_object[O_MAX_ALL][8];
65 // graphic info for game graphics template for level-specific colors
66 struct GraphicInfo_BD graphic_info_bd_color_template;
67
68 static inline int c64_png_colors(int r, int g, int b, int a)
69 {
70   static const int c64_png_cols[] =
71   {
72     // ABGR
73
74     /* 0000 */ 0,       // transparent
75     /* 0001 */ 0,
76     /* 0010 */ 0,
77     /* 0011 */ 0,
78     /* 0100 */ 0,
79     /* 0101 */ 0,
80     /* 0110 */ 0,
81     /* 0111 */ 0,
82     /* 1000 */ 1,       // black - background
83     /* 1001 */ 2,       // red - foreg1
84     /* 1010 */ 5,       // green - amoeba
85     /* 1011 */ 4,       // yellow - foreg3
86     /* 1100 */ 6,       // blue - slime
87     /* 1101 */ 3,       // purple - foreg2
88     /* 1110 */ 7,       // black around arrows (used in editor) is coded as cyan
89     /* 1111 */ 8,       // white is the arrow
90   };
91
92   int c = ((a >> 7) * 8 +
93            (b >> 7) * 4 +
94            (g >> 7) * 2 +
95            (r >> 7) * 1);
96
97   return c64_png_cols[c];
98 }
99
100 void set_cell_size(int s)
101 {
102   cell_size = s;
103 }
104
105 void set_play_area(int w, int h)
106 {
107   play_area_w = w;
108   play_area_h = h;
109 }
110
111 void gd_init_play_area(void)
112 {
113   set_play_area(SXSIZE, SYSIZE);
114 }
115
116 /*
117   logical_size: logical pixel size of playfield, usually larger than the screen.
118   physical_size: visible part. (remember: player_x-x1!)
119
120   center: the coordinates to scroll to.
121   exact: scroll exactly
122   start: start scrolling if difference is larger than
123   to: scroll to, if started, until difference is smaller than
124   current
125
126   desired: the function stores its data here
127   speed: the function stores its data here
128
129   cell_size: size of one cell. used to determine if the play field is only a
130   slightly larger than the screen, in that case no scrolling is desirable
131 */
132 static boolean cave_scroll(int logical_size, int physical_size, int center, boolean exact,
133                            int *current, int *desired, int speed)
134 {
135   int max = MAX(0, logical_size - physical_size);
136   int edge_distance = SCROLL_EDGE_DISTANCE;
137   int cell_size = TILESIZE_VAR;
138   boolean changed = FALSE;
139
140   // start scrolling when player reaches certain distance to screen edge
141   int start = physical_size / 2 - cell_size * edge_distance;
142
143   // scroll so that the player is at the center; the allowed difference is this
144   int to = cell_size;
145
146   // if cave size smaller than the screen, no scrolling req'd
147   if (logical_size < physical_size)
148   {
149     *desired = 0;
150
151     if (*current != 0)
152     {
153       *current = 0;
154       changed = TRUE;
155     }
156
157     return changed;
158   }
159
160   if (logical_size <= physical_size + cell_size)
161   {
162     // if cave size is only a slightly larger than the screen, also no scrolling
163     // scroll to the middle of the cell
164     *desired = max / 2;
165   }
166   else
167   {
168     if (exact)
169     {
170       // if exact scrolling, just go exactly to the center.
171       *desired = center;
172     }
173     else
174     {
175       // hystheresis function.
176       // when scrolling left, always go a bit less left than player being at the middle.
177       // when scrolling right, always go a bit less to the right.
178       if (*current < center - start)
179         *desired = center - to;
180       if (*current > center + start)
181         *desired = center + to;
182     }
183   }
184
185   *desired = MIN(MAX(0, *desired), max);
186
187   if (*current < *desired)
188   {
189     *current = MIN(*current + speed, *desired);
190
191     changed = TRUE;
192   }
193
194   if (*current > *desired)
195   {
196     *current = MAX(*current - speed, *desired);
197
198     changed = TRUE;
199   }
200
201   return changed;
202 }
203
204 // just set current viewport to upper left.
205 void gd_scroll_to_origin(void)
206 {
207   scroll_x = 0;
208   scroll_y = 0;
209 }
210
211 int get_scroll_x(void)
212 {
213   return scroll_x / cell_size;
214 }
215
216 int get_scroll_y(void)
217 {
218   return scroll_y / cell_size;
219 }
220
221 int get_play_area_w(void)
222 {
223   return play_area_w / cell_size;
224 }
225
226 int get_play_area_h(void)
227 {
228   return play_area_h / cell_size;
229 }
230
231 static boolean player_out_of_window(GdGame *game, int player_x, int player_y)
232 {
233   // if not yet born, we treat as visible. so cave will run.
234   // the user is unable to control an unborn player, so this is the right behaviour.
235   if (game->cave->player_state == GD_PL_NOT_YET)
236     return FALSE;
237
238   // check if active player is outside drawing area. if yes, we should wait for scrolling
239   if ((player_x * cell_size) < scroll_x ||
240       (player_x * cell_size + cell_size - 1) > scroll_x + play_area_w)
241   {
242     // but only do the wait, if the player SHOULD BE visible, ie. he is inside
243     // the defined visible area of the cave
244     if (game->cave->player_x >= game->cave->x1 &&
245         game->cave->player_x <= game->cave->x2)
246       return TRUE;
247   }
248
249   if ((player_y * cell_size) < scroll_y ||
250       (player_y * cell_size + cell_size - 1) > scroll_y + play_area_h)
251   {
252     // but only do the wait, if the player SHOULD BE visible, ie. he is inside
253     // the defined visible area of the cave
254     if (game->cave->player_y >= game->cave->y1 &&
255         game->cave->player_y <= game->cave->y2)
256       return TRUE;
257   }
258
259   // player is inside visible window
260   return FALSE;
261 }
262
263 /*
264   SCROLLING
265   
266   scrolls to the player during game play.
267   called by drawcave
268   returns true, if player is not visible-ie it is out of the visible size in the drawing area.
269 */
270 boolean gd_scroll(GdGame *game, boolean exact_scroll, boolean immediate)
271 {
272   static int scroll_desired_x = 0, scroll_desired_y = 0;
273   static int scroll_speed_last = -1;
274   int player_x, player_y, visible_x, visible_y;
275   boolean changed;
276
277   // max scrolling speed depends on the speed of the cave.
278   // game moves cell_size_game * 1s / cave time pixels in a second.
279   // scrolling moves scroll speed * 1s / scroll_time in a second.
280   // these should be almost equal; scrolling speed a little slower.
281   // that way, the player might reach the border with a small probability,
282   // but the scrolling will not "oscillate", ie. turn on for little intervals as it has
283   // caught up with the desired position. smaller is better.
284   int scroll_speed = cell_size * 20 / game->cave->speed;
285
286   if (!setup.bd_scroll_delay)
287     exact_scroll = TRUE;
288
289   if (immediate)
290     scroll_speed = cell_size * MAX(game->cave->w, game->cave->h);
291
292   player_x = game->cave->player_x - game->cave->x1; // cell coordinates of player
293   player_y = game->cave->player_y - game->cave->y1;
294
295   // if player is outside visible playfield area, use faster scrolling
296   // (might happen when wrapping around the playfield, teleporting etc.)
297   if (player_out_of_window(game, player_x, player_y))
298     scroll_speed *= 4;
299
300   // if scrolling started with player outside visible playfield area, keep faster scrolling
301   if (scroll_speed_last > scroll_speed)
302     scroll_speed = scroll_speed_last;
303
304   // store current (potentially faster) scrolling speed for next time
305   scroll_speed_last = scroll_speed;
306
307   // pixel size of visible part of the cave (may be smaller in intermissions)
308   visible_x = (game->cave->x2 - game->cave->x1 + 1) * cell_size;
309   visible_y = (game->cave->y2 - game->cave->y1 + 1) * cell_size;
310
311   // cell_size contains the scaled size, but we need the original.
312   changed = FALSE;
313
314   if (cave_scroll(visible_x, play_area_w, player_x * cell_size + cell_size / 2 - play_area_w / 2,
315                   exact_scroll, &scroll_x, &scroll_desired_x, scroll_speed))
316     changed = TRUE;
317
318   if (cave_scroll(visible_y, play_area_h, player_y * cell_size + cell_size / 2 - play_area_h / 2,
319                   exact_scroll, &scroll_y, &scroll_desired_y, scroll_speed))
320     changed = TRUE;
321
322   // if scrolling, we should update entire screen.
323   if (changed)
324   {
325     int x, y;
326
327     for (y = 0; y < game->cave->h; y++)
328       for (x = 0; x < game->cave->w; x++)
329         game->gfx_buffer[y][x] |= GD_REDRAW;
330   }
331
332   // if no scrolling required, reset last (potentially faster) scrolling speed
333   if (!changed)
334     scroll_speed_last = -1;
335
336   // check if active player is visible at the moment.
337   return player_out_of_window(game, player_x, player_y);
338 }
339
340 // returns true, if the given surface seems to be a c64 imported image.
341 static boolean surface_has_c64_colors(SDL_Surface *surface)
342 {
343   boolean has_c64_colors = TRUE;        // default: assume C64 colors
344   const unsigned char *p;
345   int x, y;
346
347   if (surface->format->BytesPerPixel != 4)
348     return FALSE;
349
350   SDL_LockSurface(surface);
351
352   for (y = 0; y < surface->h && has_c64_colors; y++)
353   {
354     p = ((unsigned char *)surface->pixels) + y * surface->pitch;
355
356     for (x = 0; x < surface->w * surface->format->BytesPerPixel && has_c64_colors; x++)
357       if (p[x] != 0 && p[x] != 255)
358         has_c64_colors = FALSE;
359   }
360
361   SDL_UnlockSurface(surface);
362
363   return has_c64_colors;
364 }
365
366 // sets one of the colors in the indexed palette of an sdl surface to a GdColor.
367 static void set_surface_palette_color(SDL_Surface *surface, int index, GdColor col)
368 {
369   if (surface->format->BytesPerPixel != 1)
370     return;
371
372   SDL_Color c;
373
374   c.r = gd_color_get_r(col);
375   c.g = gd_color_get_g(col);
376   c.b = gd_color_get_b(col);
377
378   SDL_SetPaletteColors(surface->format->palette, &c, index, 1);
379 }
380
381 // takes a c64_gfx.png-coded 32-bit surface, and creates a paletted surface in our internal format.
382 static SDL_Surface *get_tile_surface_c64(SDL_Surface *surface, int scale_down_factor)
383 {
384   static SDL_Surface *tile_surface_c64 = NULL;
385   static unsigned char *pixels = NULL;
386   int width  = surface->w;
387   int height = surface->h;
388   int out = 0;
389   int x, y;
390
391   if (!surface_has_c64_colors(surface))
392     return NULL;
393
394   if (surface->format->BytesPerPixel != 4)
395     Fail("C64 style surface has wrong color depth -- should not happen");
396
397   if (tile_surface_c64 != NULL)
398     SDL_FreeSurface(tile_surface_c64);
399
400   checked_free(pixels);
401
402   pixels = checked_malloc(width * height);
403
404   SDL_LockSurface(surface);
405
406   for (y = 0; y < height; y++)
407   {
408     unsigned int *p = (unsigned int *)((char *)surface->pixels + y * surface->pitch);
409
410     for (x = 0; x < width; x++)
411     {
412       int r = (p[x] & surface->format->Rmask) >> surface->format->Rshift << surface->format->Rloss;
413       int g = (p[x] & surface->format->Gmask) >> surface->format->Gshift << surface->format->Gloss;
414       int b = (p[x] & surface->format->Bmask) >> surface->format->Bshift << surface->format->Bloss;
415       // should be:
416       // a = (p[x]&surface->format->Amask) >> surface->format->Ashift << surface->format->Aloss;
417       // but we do not use the alpha channel in sdash, so we just use 255 (max alpha)
418
419       pixels[out++] = c64_png_colors(r, g, b, 255);
420     }
421   }
422
423   SDL_UnlockSurface(surface);
424
425   // create new surface from pixel data
426   tile_surface_c64 =
427     SDL_CreateRGBSurfaceFrom((void *)pixels, width, height, 8, width, 0, 0, 0, 0);
428
429   if (tile_surface_c64 == NULL)
430     Fail("SDL_CreateRGBSurfaceFrom() failed: %s", SDL_GetError());
431
432   if (scale_down_factor > 1)
433   {
434     SDL_Surface *surface_old = tile_surface_c64;
435     int width_scaled  = width  / scale_down_factor;
436     int height_scaled = height / scale_down_factor;
437
438     // replace surface with scaled-down variant
439     tile_surface_c64 = SDLZoomSurface(surface_old, width_scaled, height_scaled);
440
441     // free previous (non-scaled) surface
442     SDL_FreeSurface(surface_old);
443   }
444
445   return tile_surface_c64;
446 }
447
448 static Bitmap *get_tile_bitmap_c64(GdCave *cave, SDL_Surface *surface)
449 {
450   static Bitmap *tile_bitmap_c64 = NULL;
451
452   if (surface == NULL)
453     return NULL;
454
455   if (tile_bitmap_c64 != NULL)
456     FreeBitmap(tile_bitmap_c64);
457
458   // set surface color palette to cave colors
459   set_surface_palette_color(surface, 0, 0);
460   set_surface_palette_color(surface, 1, gd_color_get_rgb(cave->color0));
461   set_surface_palette_color(surface, 2, gd_color_get_rgb(cave->color1));
462   set_surface_palette_color(surface, 3, gd_color_get_rgb(cave->color2));
463   set_surface_palette_color(surface, 4, gd_color_get_rgb(cave->color3));
464   set_surface_palette_color(surface, 5, gd_color_get_rgb(cave->color4));
465   set_surface_palette_color(surface, 6, gd_color_get_rgb(cave->color5));
466   set_surface_palette_color(surface, 7, 0);
467   set_surface_palette_color(surface, 8, 0);
468
469   // create bitmap from C64 surface
470   tile_bitmap_c64 = SDLGetBitmapFromSurface(surface);
471
472   return tile_bitmap_c64;
473 }
474
475 void gd_prepare_tile_bitmap(GdCave *cave, Bitmap *bitmap, int scale_down_factor)
476 {
477   static SDL_Surface *tile_surface_c64 = NULL;
478   static Bitmap *gd_tile_bitmap_original = NULL;
479   static int scale_down_factor_last = -1;
480
481   if (program.headless)
482     return;
483
484   // check if tile bitmap has changed (different artwork or tile size selected)
485   if (bitmap != gd_tile_bitmap_original || scale_down_factor != scale_down_factor_last)
486   {
487     // check if tile bitmap has limited C64 style colors
488     tile_surface_c64 = get_tile_surface_c64(bitmap->surface, scale_down_factor);
489
490     // store original tile bitmap from current artwork set and scaling factor
491     gd_tile_bitmap_original = bitmap;
492     scale_down_factor_last = scale_down_factor;
493
494     // store reference tile bitmap from current artwork set (may be changed later)
495     gd_tile_bitmap_reference = bitmap;
496   }
497
498   // check if tile bitmap should be colored for next game
499   if (tile_surface_c64 != NULL)
500   {
501     // set tile bitmap to bitmap with level-specific colors
502     gd_tile_bitmap = get_tile_bitmap_c64(cave, tile_surface_c64);
503   }
504   else
505   {
506     // no special tile bitmap available for this artwork set
507     gd_tile_bitmap = NULL;
508   }
509 }
510
511 void gd_set_tile_bitmap_reference(Bitmap *bitmap)
512 {
513   gd_tile_bitmap_reference = bitmap;
514 }
515
516 Bitmap *gd_get_tile_bitmap(Bitmap *bitmap)
517 {
518   // if no special tile bitmap available, keep using default tile bitmap
519   if (gd_tile_bitmap == NULL)
520     return bitmap;
521
522   // if default bitmap refers to tile bitmap, use special tile bitmap
523   if (bitmap == gd_tile_bitmap_reference)
524     return gd_tile_bitmap;
525
526   return bitmap;
527 }
528
529 // returns true if the element is a player
530 static inline boolean el_player(const int element)
531 {
532   return (gd_elements[element & O_MASK].properties & P_PLAYER) != 0;
533 }
534
535 // returns true if the element is diggable
536 static inline boolean el_diggable(const int element)
537 {
538   return (gd_elements[element & O_MASK].properties & P_DIGGABLE) != 0;
539 }
540
541 // returns true if the element is collectible
542 static inline boolean el_collectible(const int element)
543 {
544   return (gd_elements[element & O_MASK].properties & P_COLLECTIBLE) != 0;
545 }
546
547 // returns true if the element is pushable
548 static inline boolean el_pushable(const int element)
549 {
550   return (gd_elements[element & O_MASK].properties & P_PUSHABLE) != 0;
551 }
552
553 // returns true if the element can move
554 static inline boolean el_can_move(const int element)
555 {
556   return (gd_elements[element & O_MASK].properties & P_CAN_MOVE) != 0;
557 }
558
559 // returns true if the element can fall
560 static inline boolean el_falling(const int element)
561 {
562   return (gd_elements[element & O_MASK].properties & P_FALLING) != 0;
563 }
564
565 // returns true if the element is exploding
566 static inline boolean el_explosion(const int element)
567 {
568   return (gd_elements[element & O_MASK].properties & P_EXPLOSION) != 0;
569 }
570
571 static void gd_drawcave_tile(Bitmap *dest, GdGame *game, int x, int y, boolean draw_masked)
572 {
573   void (*blit_bitmap)(Bitmap *, Bitmap *, int, int, int, int, int, int) =
574     (draw_masked ? BlitBitmapMasked : BlitBitmap);
575   GdCave *cave = game->cave;
576   int sx = x * cell_size - scroll_x;
577   int sy = y * cell_size - scroll_y;
578   int dir = game->dir_buffer[y][x];
579   int tile = game->element_buffer[y][x];
580   int frame = game->animcycle;
581   struct GraphicInfo_BD *g = &graphic_info_bd_object[tile][frame];
582   Bitmap *tile_bitmap = gd_get_tile_bitmap(g->bitmap);
583   boolean is_movable = (el_can_move(tile) || el_falling(tile) || el_pushable(tile) ||
584                         el_player(tile));
585   boolean is_movable_or_diggable = (is_movable || el_diggable(game->last_element_buffer[y][x]));
586   boolean is_moving = (is_movable_or_diggable && dir != GD_MV_STILL);
587   boolean use_smooth_movements = use_bd_smooth_movements();
588
589   // do not use smooth movement animation for exploding game elements (like player)
590   if (el_explosion(tile) && dir != GD_MV_STILL)
591     use_smooth_movements = FALSE;
592
593   // do not use smooth movement animation for player entering exit (engine stopped)
594   if (cave->player_state == GD_PL_EXITED)
595     use_smooth_movements = FALSE;
596
597 #if DO_GFX_SANITY_CHECK
598   if (use_native_bd_graphics_engine() && !setup.small_game_graphics && !program.headless)
599   {
600     int old_x = (game->gfx_buffer[y][x] % GD_NUM_OF_CELLS) % GD_NUM_OF_CELLS_X;
601     int old_y = (game->gfx_buffer[y][x] % GD_NUM_OF_CELLS) / GD_NUM_OF_CELLS_X;
602     int new_x = g->src_x / g->width;
603     int new_y = g->src_y / g->height;
604
605     if (new_x != old_x || new_y != old_y)
606     {
607       printf("::: BAD ANIMATION FOR TILE %d, FRAME %d [NEW(%d, %d) != OLD(%d, %d)] ['%s']\n",
608              tile, frame,
609              new_x, new_y,
610              old_x, old_y,
611              gd_elements[tile].name);
612     }
613   }
614 #endif
615
616   // if game element not moving (or no smooth movements requested), simply draw tile
617   if (!is_moving || !use_smooth_movements)
618   {
619     blit_bitmap(tile_bitmap, dest, g->src_x, g->src_y, cell_size, cell_size, sx, sy);
620
621     return;
622   }
623
624   // draw smooth animation for game element moving between two cave tiles
625
626   if (!(game->last_element_buffer[y][x] & SKIPPED))
627   {
628     // redraw previous game element on the cave field the new element is moving to
629     int tile_last = game->last_element_buffer[y][x];
630
631     // only redraw previous game element if it is diggable (like dirt etc.)
632     if (!el_diggable(tile_last))
633       tile_last = O_SPACE;
634
635     struct GraphicInfo_BD *g_old = &graphic_info_bd_object[tile_last][frame];
636     Bitmap *tile_bitmap_old = gd_get_tile_bitmap(g_old->bitmap);
637
638     blit_bitmap(tile_bitmap_old, dest, g_old->src_x, g_old->src_y, cell_size, cell_size, sx, sy);
639   }
640
641   // get cave field position the game element is moving from
642   int dx = (dir == GD_MV_LEFT ? +1 : dir == GD_MV_RIGHT ? -1 : 0);
643   int dy = (dir == GD_MV_UP   ? +1 : dir == GD_MV_DOWN  ? -1 : 0);
644   int old_x = cave->getx(cave, x + dx, y + dy);
645   int old_y = cave->gety(cave, x + dx, y + dy);
646   int tile_from = game->element_buffer[old_y][old_x] & ~SKIPPED;   // should never be skipped
647   struct GraphicInfo_BD *g_from = &graphic_info_bd_object[tile_from][frame];
648   Bitmap *tile_bitmap_from = gd_get_tile_bitmap(g_from->bitmap);
649   boolean old_is_player = el_player(tile_from);
650   boolean old_is_moving = (game->dir_buffer[old_y][old_x] != GD_MV_STILL);
651   boolean old_is_visible = (old_x >= cave->x1 &&
652                             old_x <= cave->x2 &&
653                             old_y >= cave->y1 &&
654                             old_y <= cave->y2);
655   if (old_is_visible)
656   {
657     if (!old_is_moving && !old_is_player)
658     {
659       // redraw game element on the cave field the element is moving from
660       blit_bitmap(tile_bitmap_from, dest, g_from->src_x, g_from->src_y, cell_size, cell_size,
661                   sx + dx * cell_size, sy + dy * cell_size);
662
663       game->element_buffer[old_y][old_x] |= SKIPPED;
664     }
665     else
666     {
667       // if old tile also moving (like pushing player), do not redraw tile background
668       // (but redraw if tile and old tile are moving/falling into different directions)
669       if (game->dir_buffer[old_y][old_x] == game->dir_buffer[y][x])
670         game->last_element_buffer[old_y][old_x] |= SKIPPED;
671     }
672   }
673
674   // get shifted position between cave fields the game element is moving from/to
675   int itercycle = MIN(MAX(0, game->itermax - game->itercycle - 1), game->itermax);
676   int shift = cell_size * itercycle / game->itermax;
677
678   blit_bitmap(tile_bitmap, dest, g->src_x, g->src_y, cell_size, cell_size,
679               sx + dx * shift, sy + dy * shift);
680
681   // special case: redraw player snapping a game element
682   if (old_is_visible && old_is_player && !old_is_moving)
683   {
684     // redraw game element on the cave field the element is moving from
685     blit_bitmap(tile_bitmap_from, dest, g_from->src_x, g_from->src_y, cell_size, cell_size,
686                 sx + dx * cell_size, sy + dy * cell_size);
687   }
688 }
689
690 int gd_drawcave(Bitmap *dest, GdGame *game, boolean force_redraw)
691 {
692   GdCave *cave = game->cave;
693   static int show_flash_count = 0;
694   boolean show_flash = FALSE;
695   boolean draw_masked = FALSE;
696   boolean redraw_all = force_redraw;
697   int x, y;
698
699   // force redraw if maximum number of cycles has changed (to redraw moving elements)
700   if (game->itermax != game->itermax_last)
701     redraw_all = TRUE;
702
703   if (!cave->gate_open_flash)
704   {
705     show_flash_count = 0;
706   }
707   else
708   {
709     if (show_flash_count++ < 4)
710       show_flash = TRUE;
711
712     redraw_all = TRUE;
713   }
714
715   if (show_flash)
716   {
717     FillRectangle(dest, 0, 0, SXSIZE, SYSIZE, WHITE_PIXEL);
718
719     draw_masked = TRUE;
720     redraw_all = TRUE;
721   }
722
723   // here we draw all cells to be redrawn. we do not take scrolling area into
724   // consideration - sdl will do the clipping.
725   for (y = cave->y1; y <= cave->y2; y++)
726   {
727     for (x = cave->x1; x <= cave->x2; x++)
728     {
729       if (redraw_all ||
730           game->gfx_buffer[y][x] & GD_REDRAW ||
731           game->dir_buffer[y][x] != GD_MV_STILL)
732       {
733         // skip redrawing already drawn element with movement
734         if (game->element_buffer[y][x] & SKIPPED)
735           continue;
736
737         // now we have drawn it
738         game->gfx_buffer[y][x] = game->gfx_buffer[y][x] & ~GD_REDRAW;
739
740         gd_drawcave_tile(dest, game, x, y, draw_masked);
741       }
742     }
743   }
744
745   return 0;
746 }
747
748 static SDL_Surface *get_surface_from_raw_data(const unsigned char *data, int size)
749 {
750   SDL_RWops *rwop = SDL_RWFromConstMem(data, size);
751   SDL_Surface *surface = IMG_Load_RW(rwop, 1);  // 1 = automatically closes rwop
752
753   return surface;
754 }
755
756 static SDL_Surface *get_surface_from_base64(const char *base64_data)
757 {
758   int decoded_data_size = base64_decoded_size(base64_data);
759   unsigned char *decoded_data = checked_malloc(decoded_data_size);
760
761   base64_decode(decoded_data, base64_data);
762
763   SDL_Surface *surface = get_surface_from_raw_data(decoded_data, decoded_data_size);
764
765   checked_free(decoded_data);
766
767   return surface;
768 }
769
770 static SDL_Surface *get_title_screen_background_surface(SDL_Surface *tile)
771 {
772   if (tile == NULL)
773     return NULL;
774
775   SDL_Surface *foreground_surface = gd_title_screen_bitmaps[0]->surface_masked;
776
777   // if foreground image has no transparency, no background image needed
778   if (foreground_surface->format->Amask == 0)
779     return NULL;
780
781   // use foreground image size for background image size
782   int w = foreground_surface->w;
783   int h = foreground_surface->h + tile->h;      // background is one scrolling tile higher
784
785   // create background surface
786   SDL_Surface *back = SDL_CreateRGBSurface(0, w, h, 32, 0, 0, 0, 0);
787   int x, y;
788
789   // fill background surface with tile
790   for (y = 0; y < h; y += tile->h)
791     for (x = 0; x < w; x += tile->w)
792       SDLBlitSurface(tile, back, 0, 0, tile->w, tile->h, x, y);
793
794   // background tile surface not needed anymore
795   SDL_FreeSurface(tile);
796
797   return back;
798 }
799
800 static SDL_Surface *get_title_screen_surface(int nr)
801 {
802   if (gd_caveset_data == NULL)
803     return NULL;
804
805   // do not use title screen background without foreground image
806   if (nr == 1 && gd_title_screen_bitmaps[0] == NULL)
807     return NULL;
808
809   char *data = (nr == 0 ? gd_caveset_data->title_screen : gd_caveset_data->title_screen_scroll);
810
811   if (data == NULL)
812     return NULL;
813
814   SDL_Surface *surface = get_surface_from_base64(data);
815
816   if (surface == NULL)
817     return NULL;
818
819   return (nr == 0 ? surface : get_title_screen_background_surface(surface));
820 }
821
822 static void set_title_screen_bitmap(int nr)
823 {
824   if (gd_title_screen_bitmaps[nr] != NULL)
825     FreeBitmap(gd_title_screen_bitmaps[nr]);
826
827   gd_title_screen_bitmaps[nr] = NULL;
828
829   SDL_Surface *surface = get_title_screen_surface(nr);
830
831   if (surface == NULL)
832     return;
833
834   int width_scaled  = surface->w * 2;
835   int height_scaled = surface->h * 2;
836   SDL_Surface *surface_scaled = SDLZoomSurface(surface, width_scaled, height_scaled);
837
838   gd_title_screen_bitmaps[nr] = SDLGetBitmapFromSurface(surface_scaled);
839
840   SDL_FreeSurface(surface);
841   SDL_FreeSurface(surface_scaled);
842 }
843
844 static void set_title_screen_bitmaps(void)
845 {
846   int i;
847
848   for (i = 0; i < 2; i++)
849     set_title_screen_bitmap(i);
850 }
851
852 Bitmap **gd_get_title_screen_bitmaps(void)
853 {
854   static char *levelset_subdir_last = NULL;
855
856   if (gd_caveset_data == NULL || gd_caveset_data->title_screen == NULL)
857     return NULL;
858
859   // check if stored cave set is used as current level set (may be outdated)
860   if (!strEqual(gd_caveset_data->levelset_subdir, leveldir_current->subdir))
861     return NULL;
862
863   // check if stored cave set has changed
864   if (!strEqual(gd_caveset_data->levelset_subdir, levelset_subdir_last))
865     set_title_screen_bitmaps();
866
867   setString(&levelset_subdir_last, gd_caveset_data->levelset_subdir);
868
869   return gd_title_screen_bitmaps;
870 }