f44db83b25
From https://github.com/Juanvvc/c172p-detailed/ release/2016.1 commit 3f33b88bb015a8ee685ab3178932d16d6e072410 A big Thank-You to the c172p-detailed team for their ongoing work.
255 lines
8.5 KiB
XML
255 lines
8.5 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<PropertyList>
|
|
|
|
<name>c172p-left-fuel-sample-dialog</name>
|
|
<layout>vbox</layout>
|
|
<resizable>false</resizable>
|
|
<modal>false</modal>
|
|
<draggable>true</draggable>
|
|
|
|
<group>
|
|
<layout>hbox</layout>
|
|
|
|
<empty><stretch>true</stretch></empty>
|
|
<text>
|
|
<label>Left Fuel Tank Sampling</label>
|
|
</text>
|
|
<empty><stretch>true</stretch></empty>
|
|
|
|
<button>
|
|
<legend/>
|
|
<key>Esc</key>
|
|
<pref-width>16</pref-width>
|
|
<pref-height>16</pref-height>
|
|
<binding>
|
|
<command>dialog-close</command>
|
|
</binding>
|
|
</button>
|
|
</group>
|
|
|
|
<hrule/>
|
|
|
|
<group>
|
|
<layout>vbox</layout>
|
|
<default-padding>6</default-padding>
|
|
<empty><stretch>true</stretch></empty>
|
|
<button>
|
|
<legend>Take a sample</legend>
|
|
<equal>true</equal>
|
|
<default>false</default>
|
|
<enable>
|
|
<and>
|
|
<not>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
</not>
|
|
<!-- checking if there is at least 50ml of fuel in the tanks -->
|
|
<greater-than>
|
|
<property>/consumables/fuel/tank[0]/level-gal_us</property>
|
|
<value>0.0132086</value>
|
|
</greater-than>
|
|
<less-than>
|
|
<property>velocities/groundspeed-kt</property>
|
|
<value>1.0</value>
|
|
</less-than>
|
|
</and>
|
|
</enable>
|
|
<binding>
|
|
<condition>
|
|
<not>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
</not>
|
|
</condition>
|
|
<command>nasal</command>
|
|
<script>c172p.take_fuel_sample(0);</script>
|
|
</binding>
|
|
<binding>
|
|
<command>property-assign</command>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
<value>true</value>
|
|
</binding>
|
|
</button>
|
|
<button>
|
|
<legend>Discard sample</legend>
|
|
<equal>true</equal>
|
|
<default>false</default>
|
|
<enable>
|
|
<and>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
<less-than>
|
|
<property>velocities/groundspeed-kt</property>
|
|
<value>1.0</value>
|
|
</less-than>
|
|
</and>
|
|
</enable>
|
|
<binding>
|
|
<command>property-assign</command>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
<value>false</value>
|
|
</binding>
|
|
</button>
|
|
<button>
|
|
<legend>Return sample to the tank</legend>
|
|
<equal>true</equal>
|
|
<default>false</default>
|
|
<enable>
|
|
<and>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
<less-than>
|
|
<property>velocities/groundspeed-kt</property>
|
|
<value>1.0</value>
|
|
</less-than>
|
|
</and>
|
|
</enable>
|
|
<binding>
|
|
<condition>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
</condition>
|
|
<command>nasal</command>
|
|
<script>c172p.return_fuel_sample(0);</script>
|
|
</binding>
|
|
<binding>
|
|
<command>property-assign</command>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
<value>false</value>
|
|
</binding>
|
|
</button>
|
|
</group>
|
|
|
|
<group>
|
|
<layout>hbox</layout>
|
|
<text>
|
|
<visible>
|
|
<greater-than-equals>
|
|
<property>velocities/groundspeed-kt</property>
|
|
<value>1.0</value>
|
|
</greater-than-equals>
|
|
</visible>
|
|
<color>
|
|
<red>0.9</red>
|
|
<green>0.1</green>
|
|
<blue>0.1</blue>
|
|
</color>
|
|
<label>Dialog disabled when in movement</label>
|
|
</text>
|
|
</group>
|
|
|
|
<hrule/>
|
|
|
|
<group>
|
|
<layout>hbox</layout>
|
|
<padding>6</padding>
|
|
<group>
|
|
<layout>hbox</layout>
|
|
<text>
|
|
<label>Fuel sample colour:</label>
|
|
<halign>left</halign>
|
|
</text>
|
|
</group>
|
|
<group>
|
|
<layout>table</layout>
|
|
<text>
|
|
<row>0</row>
|
|
<col>0</col>
|
|
<visible>
|
|
<and>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
<equals>
|
|
<property>/consumables/fuel/tank[0]/water-contamination</property>
|
|
<value>0.0</value>
|
|
</equals>
|
|
</and>
|
|
</visible>
|
|
<color>
|
|
<red>0.22</red>
|
|
<green>0.69</green>
|
|
<blue>0.87</blue>
|
|
</color>
|
|
<label>light blue</label>
|
|
</text>
|
|
<text>
|
|
<row>0</row>
|
|
<col>0</col>
|
|
<visible>
|
|
<and>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
<greater-than>
|
|
<property>/consumables/fuel/tank[0]/water-contamination</property>
|
|
<value>0.0</value>
|
|
</greater-than>
|
|
<less-than-equals>
|
|
<property>/consumables/fuel/tank[0]/water-contamination</property>
|
|
<value>0.2</value>
|
|
</less-than-equals>
|
|
</and>
|
|
</visible>
|
|
<color>
|
|
<red>0.22</red>
|
|
<green>0.69</green>
|
|
<blue>0.87</blue>
|
|
</color>
|
|
<label>part light blue</label>
|
|
</text>
|
|
<text>
|
|
<row>0</row>
|
|
<col>2</col>
|
|
<visible>
|
|
<and>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
<greater-than>
|
|
<property>/consumables/fuel/tank[0]/water-contamination</property>
|
|
<value>0.0</value>
|
|
</greater-than>
|
|
<less-than-equals>
|
|
<property>/consumables/fuel/tank[0]/water-contamination</property>
|
|
<value>0.2</value>
|
|
</less-than-equals>
|
|
</and>
|
|
</visible>
|
|
<color>
|
|
<red>0.84</red>
|
|
<green>0.84</green>
|
|
<blue>0.84</blue>
|
|
</color>
|
|
<label>part transparent</label>
|
|
</text>
|
|
<text>
|
|
<row>0</row>
|
|
<col>0</col>
|
|
<visible>
|
|
<and>
|
|
<property>/consumables/fuel/tank[0]/fuel-sample-taken</property>
|
|
<greater-than>
|
|
<property>/consumables/fuel/tank[0]/water-contamination</property>
|
|
<value>0.2</value>
|
|
</greater-than>
|
|
</and>
|
|
</visible>
|
|
<color>
|
|
<red>0.84</red>
|
|
<green>0.84</green>
|
|
<blue>0.84</blue>
|
|
</color>
|
|
<label>completely transparent</label>
|
|
</text>
|
|
</group>
|
|
</group>
|
|
|
|
<hrule/>
|
|
|
|
<group>
|
|
<layout>hbox</layout>
|
|
<default-padding>6</default-padding>
|
|
<empty><stretch>true</stretch></empty>
|
|
<button>
|
|
<legend>Close</legend>
|
|
<equal>true</equal>
|
|
<key>Esc</key>
|
|
<default>true</default>
|
|
<binding>
|
|
<command>dialog-close</command>
|
|
</binding>
|
|
</button>
|
|
</group>
|
|
|
|
</PropertyList>
|