X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_bd%2Fbd_graphics.c;h=8938ab80d8c23444dd674846dce14e12d4047b28;hb=3cc8592ba5081ff394e42f1efa7b0b2409f845db;hp=73b38013f68edeab00ea082d9d0304ae9e00723c;hpb=c14ad49b74125ca9f908ad5d20d78922e9295ef5;p=rocksndiamonds.git diff --git a/src/game_bd/bd_graphics.c b/src/game_bd/bd_graphics.c index 73b38013..8938ab80 100644 --- a/src/game_bd/bd_graphics.c +++ b/src/game_bd/bd_graphics.c @@ -341,22 +341,14 @@ int gd_drawcave(Bitmap *dest, GdGame *game, boolean force_redraw) if (game->element_buffer[y][x] & SKIPPED) continue; - /* if it needs to be redrawn */ - SDL_Rect offset; - - /* sdl_blitsurface destroys offset, so we have to set y here, too. - (ie. in every iteration) */ - offset.y = y * cell_size - scroll_y_aligned; - offset.x = x * cell_size - scroll_x; - /* now we have drawn it */ game->gfx_buffer[y][x] = game->gfx_buffer[y][x] & ~GD_REDRAW; + int sx = x * cell_size - scroll_x; + int sy = y * cell_size - scroll_y_aligned; int tile = game->element_buffer[y][x]; int frame = game->animcycle; struct GraphicInfo_BD *g = &graphic_info_bd_object[tile][frame]; - int width = g->width * TILESIZE_VAR / TILESIZE; - int height = g->height * TILESIZE_VAR / TILESIZE; boolean use_smooth_movements = TRUE; /* if game element is just moving, draw movement animation between two tiles */ @@ -365,11 +357,11 @@ int gd_drawcave(Bitmap *dest, GdGame *game, boolean force_redraw) if (!(game->last_element_buffer[y][x] & SKIPPED)) { /* redraw previous game element on the cave field the new element is moving to */ - int tile_old = game->last_element_buffer[y][x] & ~SKIPPED; + int tile_old = game->last_element_buffer[y][x]; struct GraphicInfo_BD *g_old = &graphic_info_bd_object[tile_old][frame]; - blit_bitmap(g_old->bitmap, dest, g_old->src_x, g_old->src_y, width, height, - offset.x, offset.y); + blit_bitmap(g_old->bitmap, dest, g_old->src_x, g_old->src_y, cell_size, cell_size, + sx, sy); } /* get cave field position the game element is moving from */ @@ -389,8 +381,8 @@ int gd_drawcave(Bitmap *dest, GdGame *game, boolean force_redraw) int tile_from = game->element_buffer[old_y][old_x]; struct GraphicInfo_BD *g_from = &graphic_info_bd_object[tile_from][0]; - blit_bitmap(g_from->bitmap, dest, g_from->src_x, g_from->src_y, width, height, - offset.x + dx * cell_size, offset.y + dy * cell_size); + blit_bitmap(g_from->bitmap, dest, g_from->src_x, g_from->src_y, cell_size, cell_size, + sx + dx * cell_size, sy + dy * cell_size); game->element_buffer[old_y][old_x] |= SKIPPED; } @@ -405,11 +397,11 @@ int gd_drawcave(Bitmap *dest, GdGame *game, boolean force_redraw) int itercycle = MIN(MAX(0, game->itermax - game->itercycle - 1), game->itermax); int shift = cell_size * itercycle / game->itermax; - offset.x += dx * shift; - offset.y += dy * shift; + sx += dx * shift; + sy += dy * shift; } - blit_bitmap(g->bitmap, dest, g->src_x, g->src_y, width, height, offset.x, offset.y); + blit_bitmap(g->bitmap, dest, g->src_x, g->src_y, cell_size, cell_size, sx, sy); #if DO_GFX_SANITY_CHECK if (use_native_bd_graphics_engine() && !setup.small_game_graphics && !program.headless)