From 26fbd6db55e774c238eba2c64c1e41377415888c Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Sun, 22 Oct 2017 23:26:08 -0400 Subject: [PATCH] tfv: animate the ship landing --- gr-sim/tfv_flying.c | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/gr-sim/tfv_flying.c b/gr-sim/tfv_flying.c index 489d1c32..9549a26e 100644 --- a/gr-sim/tfv_flying.c +++ b/gr-sim/tfv_flying.c @@ -609,6 +609,7 @@ int flying(void) { print_help(); } + /* Ending */ if (ch==13) { int landing_color,tx,ty; #if FIXEDPT @@ -619,7 +620,38 @@ int flying(void) { landing_color=lookup_map(tx,ty); printf("Trying to land at %d %d\n",tx,ty); printf("Color=%d\n",landing_color); - if (landing_color==12) return 0; + if (landing_color==12) { + int loop; + +#if FIXEDPT + zint=space_z.i; +#else + zint=space_z; +#endif + + /* Land the ship */ + for(loop=zint;loop>0;loop--) { + + draw_background_mode7(); + grsim_put_sprite(shadow_forward,SHIPX+3,31+zint); + grsim_put_sprite(ship_forward,SHIPX,shipy); + page_flip(); + usleep(200000); + +#if FIXEDPT + space_z.i--; +#else + space_z--; +#endif + + } + + + + + + return 0; + } else { int draw_save; draw_save=ram[DRAW_PAGE];