• 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 Determining of switch direction

Messages
53
Country
germany
Hi, I have a switch with several positions.
I need now to know if the switch was turned up or down in a xml gauge.
I have a (l:switch pos,number) with Range 0-4.
I think I need some kind of timer?
 
Here's 2 different versions that may help.
XML:
<!-- 2 L:vars to hold direction -->
<Update>
    <!-- INI TO CURRENT POSITION -->
    (G:Var1) 0 == if{
        (L:switch pos, number) (>L:old switch pos, number)
        1 (>G:Var1)
    }
    
    (L:switch pos, number) (L:old switch pos, number) != if{
        (L:switch pos, number) (L:old switch pos, number) &gt; if{
            1 (>L:switch went up, bool) 0 (>L:switch went down, bool)
        } els{
            0 (>L:switch went up, bool) 1 (>L:switch went down, bool)  
        }
        (L:switch pos, number) (>L:old switch pos, number)
    }
</Update>

<!-- L:switch direction, number | 0 = invalid (never moved yet), 1 = went up, 2 went down -->
<Update>
    <!-- INI TO CURRENT POSITION -->
    (G:Var1) 0 == if{
        (L:switch pos, number) (>L:old switch pos, number)
        1 (>G:Var1)
    }
    
    (L:switch pos, number) (L:old switch pos, number) != if{
        (L:switch pos, number) (L:old switch pos, number) &gt; if{
            1
        } els{
            2  
        }
        (>L:switch direction, number)
        (L:switch pos, number) (>L:old switch pos, number)
    }
</Update>
 
Last edited:
As a general rule UP or away from the pilot (ie forwards, left,right) = ON
Roy
 
As a general rule UP or away from the pilot (ie forwards, left,right) = ON
Roy
Which helps explain why so often on an overhead panel, switches DOWN are the ON position (away from pilot).
 
Back
Top