mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-27 17:29:49 +00:00
tfv: more work on flying
This commit is contained in:
parent
39fe5e542a
commit
d71a601f4f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user