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

P3D v4 FSX / P3D version number readout in XML code

rcbarend

Resource contributor
Messages
435
Country
netherlands
To work around a bug in SimConnect, introduced in FSX and apperantly solved in P3Dv4.* , I need to identify the exact FSX/P3D version a user has installed; to keep my XML code compatible for all FSX/P3D versions.

For FS9 / FSX / P3Dv1/2/3, I'm now using Doug Dawson's XMLsound gauge, which provides these version number in Lvars.
Like:
The version for FSX-Accel is: 10.0.61637.0
Reflected in Doug's Lvars by:
- (L:FSVersionMajor,number) = 10
- (L:FSVersionMinor,number) = 0
- (L:FSVersionBuild,number) = 61637

Questions:
1. Does this concept still work for Doug's 64-bit XML-Sound gauge (for P3Dv4.*) ??
(I can't try this myself, since I only have FSX-Accel)

2. If so:
Does somebody have an overview of all FS9 / FSX-boxed / FSX-Steam / P3D versions released sofar ??

3. If not:
Any other suggestions ??

Thanks in advance ,

Rob
 
Rob,
With regard to question 1, yes, the 64 bit version of the sound gauge provides the same version information. The major version returned will be 4.

Doug
 
These are the ones I could find.

FS9:
1.1 - 9.1.0.40901

FSX:
RTM - 10.0.60905
SP1 - 10.0.61242
SP2 - 10.0.61472
Acc - 10.0.61259/61637
SE - 10.0.62615 (current)


SimConnect is usually a good indicator for the current version.
 
Rob,
With regard to question 1, yes, the 64 bit version of the sound gauge provides the same version information. The major version returned will be 4.

Doug
I'll implement this and have someone test it in P3Dv4.1/2 (my first usage of it is for Maryadi's MV22B).
Thanks !!

Rob
 
These are the ones I could find.

FS9:
1.1 - 9.1.0.40901

FSX:
RTM - 10.0.60905
SP1 - 10.0.61242
SP2 - 10.0.61472
Acc - 10.0.61259/61637
SE - 10.0.62615 (current)


SimConnect is usually a good indicator for the current version.
Thanks Bjoern.
Good enough for now, since for my current purpose I only need to be able to identify P3DV4 and up. And XMLsound does that.

FYI: I already used the version id's for FSX-RTM/SP1/SP2 for another addon , to determine if reading the value of Avar SURFACE RELATIVE GROUND SPEED (introduced with FSX-Accel) is meaningfull or not.

Rob
 
I'll implement this and have someone test it in P3Dv4.1/2 (my first usage of it is for Maryadi's MV22B).
Thanks !!

Rob
FYI: using the FS-Major/FS-Minor Lvars from Dougs XMLsound gauge, to distinguish between ALL FSX and P3D versions, works perfect !
 
Back
Top