X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_em%2Fgraphics.c;h=3ffdb105fac7762d855a2b81ca7640589d199b65;hb=14f10ebaf067872a8a1412476c8923cb2414aee4;hp=c3d365407b9e53406c93e6149300c8bf5fa37ec5;hpb=96e81193abbb278dd3b79d109ff99d061fe43973;p=rocksndiamonds.git diff --git a/src/game_em/graphics.c b/src/game_em/graphics.c index c3d36540..3ffdb105 100644 --- a/src/game_em/graphics.c +++ b/src/game_em/graphics.c @@ -27,6 +27,7 @@ (8 - frame) * ply[p].y) * TILEY / 8 \ - ((SCR_FIELDY - 1) * TILEY) / 2) +#define USE_EXTENDED_GRAPHICS_ENGINE 1 int frame; /* current screen frame */ int screen_x; /* current scroll position */ @@ -148,6 +149,12 @@ static void DrawLevelField_EM(int x, int y, int sx, int sy, { int tile = Draw[y][x]; struct GraphicInfo_EM *g = &graphic_info_em_object[tile][frame]; + +#if USE_EXTENDED_GRAPHICS_ENGINE + getGraphicSourceObjectExt_EM(tile, frame, &g->bitmap, &g->src_x, &g->src_y, + x - 2, y - 2); +#endif + int src_x = g->src_x + g->src_offset_x; int src_y = g->src_y + g->src_offset_y; int dst_x = sx * TILEX + g->dst_offset_x; @@ -188,6 +195,12 @@ static void DrawLevelFieldCrumbled_EM(int x, int y, int sx, int sy, { int tile = Draw[y][x]; struct GraphicInfo_EM *g = &graphic_info_em_object[tile][frame]; + +#if USE_EXTENDED_GRAPHICS_ENGINE + getGraphicSourceObjectExt_EM(tile, frame, &g->bitmap, &g->src_x, &g->src_y, + x - 2, y - 2); +#endif + int left = screen_x / TILEX; int top = screen_y / TILEY; int i; @@ -248,9 +261,9 @@ static void DrawLevelPlayer_EM(int x1, int y1, int player_nr, int anim, { struct GraphicInfo_EM *g = &graphic_info_em_player[player_nr][anim][frame]; -#if 1 - getGraphicSourceExt_EM(player_nr, anim, frame, - &g->bitmap, &g->src_x, &g->src_y); +#if USE_EXTENDED_GRAPHICS_ENGINE + getGraphicSourcePlayerExt_EM(player_nr, anim, frame, + &g->bitmap, &g->src_x, &g->src_y); #endif int src_x = g->src_x, src_y = g->src_y; @@ -330,6 +343,12 @@ static void animscreen(void) { 0, +1 } }; +#if USE_EXTENDED_GRAPHICS_ENGINE + for (y = 2; y < EM_MAX_CAVE_HEIGHT - 2; y++) + for (x = 2; x < EM_MAX_CAVE_WIDTH - 2; x++) + SetGfxAnimation_EM(Draw[y][x], frame, x - 2, y - 2); +#endif + for (y = top; y < top + MAX_BUF_YSIZE; y++) { for (x = left; x < left + MAX_BUF_XSIZE; x++) @@ -362,7 +381,11 @@ static void animscreen(void) } /* only redraw screen tiles if they (or their crumbled state) changed */ +#if USE_EXTENDED_GRAPHICS_ENGINE + // if (screentiles[sy][sx] != obj || crumbled_state[sy][sx] != crm) +#else if (screentiles[sy][sx] != obj || crumbled_state[sy][sx] != crm) +#endif { DrawLevelField_EM(x, y, sx, sy, FALSE); DrawLevelFieldCrumbled_EM(x, y, sx, sy, crm, FALSE); @@ -511,7 +534,7 @@ void DrawRelocatePlayer(struct PlayerInfo *player, boolean quick_relocation) if (quick_relocation) { - int offset = (setup.scroll_delay ? 3 : 0); + int offset = game.scroll_delay_value; if (!IN_VIS_FIELD(SCREENX(jx), SCREENY(jy))) { @@ -715,7 +738,7 @@ void RedrawPlayfield_EM(boolean force_redraw) int player_nr = game_em.last_moving_player; #endif int stepsize = TILEX / 8; - int offset = (setup.scroll_delay ? 3 : 0) * TILEX; + int offset = game.scroll_delay_value * TILEX; int offset_x = offset; int offset_y = offset; int screen_x_old = screen_x;