src/airport_movement.h
changeset 6321 62564548351b
parent 6175 26674ca57aac
child 6254 abc6ad7c035c
equal deleted inserted replaced
6320:5fc5a089b147 6321:62564548351b
     7 // state machine input struct (from external file, etc.)
     7 // state machine input struct (from external file, etc.)
     8 // Finite sTate mAchine --> FTA
     8 // Finite sTate mAchine --> FTA
     9 typedef struct AirportFTAbuildup {
     9 typedef struct AirportFTAbuildup {
    10 	byte position; // the position that an airplane is at
    10 	byte position; // the position that an airplane is at
    11 	byte heading;  // the current orders (eg. TAKEOFF, HANGAR, ENDLANDING, etc.)
    11 	byte heading;  // the current orders (eg. TAKEOFF, HANGAR, ENDLANDING, etc.)
    12 	uint32 block;  // the block this position is on on the airport (st->airport_flags)
    12 	uint64 block;  // the block this position is on on the airport (st->airport_flags)
    13 	byte next;     // next position from this position
    13 	byte next;     // next position from this position
    14 } AirportFTAbuildup;
    14 } AirportFTAbuildup;
    15 
    15 
    16 ///////////////////////////////////////////////////////////////////////
    16 ///////////////////////////////////////////////////////////////////////
    17 /////*********Movement Positions on Airports********************///////
    17 /////*********Movement Positions on Airports********************///////