• 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.

How to develop a FS2004 plugin like FSPassenger, ActiveCamera etc.

Messages
4
Country
china
hi,

I am new to the FS plugin develop, but I have more than 8 years C++ & windows program experience, can someone give me a instruction of how to develop a plugin like FSPassenger, ActiveCamera etc.

These tool can get the information about the Aircracft position, speed, and other information, how can implement these features, I did download all FS2004 SDK but found no information about these.
 
If you are working with FS2004 then you might want to get the FSUIPC SDK. I recall that has a section dealing with writing modules.

You can find the information and downloads here

http://www.schiratti.com/dowson.html
 
Thank you.

FSUIPC is is a third part module, and seems what FSUIPC doing is directly read/write the data from the FS memory, the Microsoft didn't provide the related SDK to users, am I right?
 
It is used to interface with FS version prior to FSX. FSX has Simconnect. There is a version of FSUIPC for FSX that itself uses Simconnect.

Thus if you want to develop addons for FS2004 that read and write information to and from the Sim you will need something like FSUIPC.There are other interface modules but FSUIPC is the best known and probably most widely used. The developer Pete Dowson is sometimes here on FSDeveloper and has his own support forum.
 
Technical Point

You mentioned:

"the Microsoft didn't provide the related SDK to users, am I right?"

Technically speaking, they did and do in fact, provide an SDK into the inner-workings of Flight Sim versions prior to FSX.

For a couple years, I very happily coded in 'C' and got hundreds of pieces of data from my aircraft, scattering them all about my LAN and the Internet...even into my SQL database on my hosted server, so anyone could see where I was and could even place their aircraft in the same location/configuration as I. :)

It was ONLY when I was confronted with needing small details like the Aircraft Title...ROFL! That I was forced into the murky 'underground' of FSUIPC. :rolleyes:

By that? I mean that there is data available in FSUIPC that is not otherwise available through the 'official' SDK.

If you simply need the data of your user aircraft ("the Aircracft position, speed, and other information")? Then, you can indeed get them and a LOT of other data, without FSUIPC through the Pre-FSX Microsoft SDK. :)

FlapsOut
 
Last edited:
Back
Top