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

FS2004 GPS 500 (FS9) set Default to Daytime

Messages
10,057
Country
us-arizona
How do you set 'daytime' mode (terrain) as your default startup in the ole FS2004 GPS (gps_500) screen?

Mine starts off at night time, I wish to reverse that since its usually a day time flight people start up in.



Bill
 

Heretic

Resource contributor
Messages
6,828
Country
germany
There is no specific daytime and nighttime mode for the GPS. Do you mean the simple and shaded terrain rendering?
 
Messages
1,564
Country
thailand
Bill,

Building on what Bjoern said, what you're looking at is not a Day/Night mode feature. You're seeing the default GPS 500 map background (black, with dark blue water) and it has nothing to do with daytime or nighttime. The user can display terrain elevation colors simply by clicking the TERR button.

The real Garmin GPS 500 did not have a TERR button. Its map background was black with dark blue water, just like the MSFT gps_500.xml default setup. Because of this, I'd encourage you to not make any changes to the gps_500.xml gauge.

However, if you want to set terrain elevation colors as your default, you, and your users, will need to edit the gps_500.xml gauge. Go to line 749 and change

Code:
<DetailLayerTerrain>(@g:setup_ColorTerrain) 0 == if{ 1 } els{ 2 }</DetailLayerTerrain>

to this:

<DetailLayerTerrain>(@g:setup_ColorTerrain) 0 == if{ 2 } els{ 1 }</DetailLayerTerrain>


That should do it.

Bob
 
Last edited:
Messages
10,057
Country
us-arizona
Brilliant!!! Worked great. Many thanks, Bob.

I tried tracking it down through the TERR button code. I just didnt see it. I looked at the 'ColorTerrain' many times, but was trying to find the night time terrain to figure out how to flip the names, lol... This works much easier.
 
Messages
1,564
Country
thailand
Hi Bill,

It's not just the one line that should be changed. Color schemes for the compass rose, aircraft symbol and airspace dim should also be reversed.

XML:
749:
<DetailLayerTerrain>(@g:setup_ColorTerrain) 0 == if{ 1 } els{ 2 }</DetailLayerTerrain>
to
<DetailLayerTerrain>(@g:setup_ColorTerrain) if{ 1 } els{ 2 }</DetailLayerTerrain>

757:
<ColorLayerAirspaces>(@g:setup_ColorTerrain) 0 == if{ 0x808080 } els{ 0xFFFFFF }</ColorLayerAirspaces>
to
<ColorLayerAirspaces>(@g:setup_ColorTerrain) if{ 0x808080 } els{ 0xFFFFFF }</ColorLayerAirspaces>    

775:
<Polygon FillColor="%((@g:setup_ColorTerrain) if{ 0x503030 } els{ 0xF0D0D0 })" Bright="Yes">
to
<Polygon FillColor="%((@g:setup_ColorTerrain) ! if{ 0x503030 } els{ 0xF0D0D0 })" Bright="Yes">

807:
<Color>(@g:setup_ColorTerrain) if{ 0x703030 } els{ 0xF0D0D0 }</Color>
to
<Color>(@g:setup_ColorTerrain) ! if{ 0x703030 } els{ 0xF0D0D0 }</Color>

808:
<BackgroundColor>(@g:setup_ColorTerrain) if{ 0 } els{ 0x080808 }</BackgroundColor>
to
<BackgroundColor>(@g:setup_ColorTerrain) ! if{ 0 } els{ 0x080808 }</BackgroundColor>

858:
<Polyline LineWidth="1" Color="%((@g:setup_ColorTerrain) if{ 0x703030 } els{ 0xF0D0D0 })" Bright="Yes">
to
<Polyline LineWidth="1" Color="%((@g:setup_ColorTerrain) ! if{ 0x703030 } els{ 0xF0D0D0 })" Bright="Yes">

2726:
<DetailLayerTerrain>(@g:setup_ColorTerrain) 0 == if{ 1 } els{ 2 }</DetailLayerTerrain>
to
<DetailLayerTerrain>(@g:setup_ColorTerrain) if{ 1 } els{ 2 }</DetailLayerTerrain>


At any rate, my preference would be a black background as the better default if the gps screen is small, like the real Garmin GPS 500 and stock MSFT gps_500, because it's so much easier to see the nav information layers.

Bob
 
Last edited:
Messages
10,057
Country
us-arizona
A thousand thanks again! I was wondering how to change the plane and letter backgrounds. Awesome awesome.
 
Top