• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

Status of user's flight

Messages
16
Country
france
Hello all,

I didn't try yet in my C++ Simconnect program, but is it possible to retrieve status of User's flight (not AI Traffic)? Like Takeoff, landing, taxi, waiting, etc...

Because I saw this enum : AI UNIT MODE
One of:
0: Sleep
1: Zombie
2: Waypoint
3: Takeoff
4: Landing
5: Taxi
6: Working
7: Waiting.

Regards,

Chris.
 
Well, to know the status of user's flight, you will need to plug simconnect into user's mind :D ;)

Basically, there is nothing in the sim that can distinguish between taxiing and takeoff for instance. You can guess with some heuristics (based on ground surface type, altitude above ground, speed, rpm, etc), but it's not reliable.
There is a status flag in the ATC subsystem, concerning procedures and all taxi/takeoff/course phases. But again since user can disobey to ATC, it would be only a guess. Moreover simconnect provides absolutely no insights into ATC internals, so you will need to do some hacking.
 
Thanks for the reply :)

Well recently for my program, I use the methods to request informations (ground, speed, and more) to know the status of flight step by step (from startup to shutdown on checklist). Of course, it's not reliable but it's the best way.

There is a status flag in the ATC subsystem
Really? what is the solution?

Anyelse, If someone knows how to "hack" ATC, it could be useful for me.

Regards,

Chris
 
Back
Top