tfv: more work on flying

This commit is contained in:
Vince Weaver 2017-09-11 23:54:31 -04:00
parent 39fe5e542a
commit d71a601f4f
1 changed files with 22 additions and 0 deletions

View File

@ -597,6 +597,28 @@ int flying(void) {
speed=SPEED_STOPPED;
}
if (ch=='h') {
print_help();
}
if (ch==13) {
int landing_color,tx,ty;
#if FIXEDPT
tx=cx.i; ty=cy.i;
#else
tx=cx; ty=cy;
#endif
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;
else {
printf("Need to land on grass!\n");
}
}
if (speed!=SPEED_STOPPED) {
#if FIXEDPT
int ii;