First step towards untiing the c172/c182 knot
This commit is contained in:
parent
a9c8aeac7e
commit
d71f743d62
12 changed files with 1036 additions and 0 deletions
BIN
Aircraft/Generic/Panels/Textures/generic-panel-01.rgb
Normal file
BIN
Aircraft/Generic/Panels/Textures/generic-panel-01.rgb
Normal file
Binary file not shown.
BIN
Aircraft/Generic/Panels/Textures/generic-panel-02.rgb
Normal file
BIN
Aircraft/Generic/Panels/Textures/generic-panel-02.rgb
Normal file
Binary file not shown.
BIN
Aircraft/Generic/Panels/Textures/generic-panel-03.rgb
Normal file
BIN
Aircraft/Generic/Panels/Textures/generic-panel-03.rgb
Normal file
Binary file not shown.
BIN
Aircraft/Generic/Panels/Textures/generic-panel-04.rgb
Normal file
BIN
Aircraft/Generic/Panels/Textures/generic-panel-04.rgb
Normal file
Binary file not shown.
BIN
Aircraft/Generic/Panels/Textures/generic-panel-07.rgb
Normal file
BIN
Aircraft/Generic/Panels/Textures/generic-panel-07.rgb
Normal file
Binary file not shown.
BIN
Aircraft/Generic/Panels/Textures/generic-panel-08.rgb
Normal file
BIN
Aircraft/Generic/Panels/Textures/generic-panel-08.rgb
Normal file
Binary file not shown.
BIN
Aircraft/Generic/Panels/Textures/panel-bg.rgb
Normal file
BIN
Aircraft/Generic/Panels/Textures/panel-bg.rgb
Normal file
Binary file not shown.
BIN
Aircraft/Generic/Panels/Textures/panel-trans-mini-bg.rgb
Normal file
BIN
Aircraft/Generic/Panels/Textures/panel-trans-mini-bg.rgb
Normal file
Binary file not shown.
309
Aircraft/Generic/Panels/generic-ifr-panel.xml
Normal file
309
Aircraft/Generic/Panels/generic-ifr-panel.xml
Normal file
|
@ -0,0 +1,309 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Cessna 172 Skyhawk panel.
|
||||||
|
October 2000
|
||||||
|
John Check <j4strngs@rockfish.net>
|
||||||
|
_______________________________________________________________________
|
||||||
|
|
||||||
|
This is a panel configuration file for the open-source flight
|
||||||
|
simulator FlightGear (www.flightgear.org). The file is an XML-encoded
|
||||||
|
FlightGear property list defining the panel's background texture and
|
||||||
|
the location (and optionally, size) of the instruments that will
|
||||||
|
appear on the panel.
|
||||||
|
|
||||||
|
Each instrument is, itself, defined in an XML-encoded property list
|
||||||
|
in a separate file.
|
||||||
|
|
||||||
|
Co-ordinates are relative to the *bottom* left corner of the screen
|
||||||
|
(as in OpenGL). The total FlightGear window is always considered to
|
||||||
|
be 1024x768, whatever its actual display size on the screen. All
|
||||||
|
paths are relative to $FG_ROOT.
|
||||||
|
|
||||||
|
Note that the name of the element defining each instrument must be
|
||||||
|
different, or else instrument definitions will be overwritten:
|
||||||
|
that's not particularly XML-ish, but that's how property lists
|
||||||
|
work in FlightGear right now.
|
||||||
|
|
||||||
|
Each instrument has its own preferred width and height, but you can
|
||||||
|
override those by providing <w>..</w> and <h>..</h> properties with the
|
||||||
|
<x>...</x> and <y>...</y> properties.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!DOCTYPE PropertyList SYSTEM "panel.dtd">
|
||||||
|
|
||||||
|
<PropertyList>
|
||||||
|
|
||||||
|
<name>Generic IFR Panel</name>
|
||||||
|
<background>Aircraft/Generic/Panels/Textures/panel-bg.rgb</background>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-01.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-02.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-03.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-04.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-03.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-04.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-07.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-08.rgb</multibackground>
|
||||||
|
<w>1424</w>
|
||||||
|
<h>488</h>
|
||||||
|
<y-offset>0</y-offset>
|
||||||
|
<view-height>500</view-height>
|
||||||
|
|
||||||
|
<instruments>
|
||||||
|
<!--
|
||||||
|
<instrument include="../../Instruments/num.xml">
|
||||||
|
<name>numbertape</name>
|
||||||
|
<x>768</x>
|
||||||
|
<y>685</y>
|
||||||
|
</instrument>
|
||||||
|
-->
|
||||||
|
<!-- comical tail number -->
|
||||||
|
<instrument include="../../Instruments/logo.xml">
|
||||||
|
<name>Tail Number Plate</name>
|
||||||
|
<x>412</x>
|
||||||
|
<y>415</y>
|
||||||
|
<w>72</w>
|
||||||
|
<h>32</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- engine guage cluster -->
|
||||||
|
<instrument include="../../Instruments/clock.xml">
|
||||||
|
<name>Chronometer</name>
|
||||||
|
<x>177</x>
|
||||||
|
<y>316</y>
|
||||||
|
<w>74</w>
|
||||||
|
<h>74</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/egt.xml">
|
||||||
|
<name>Exhaust Gas Temperature Gauge</name>
|
||||||
|
<x>177</x>
|
||||||
|
<y>242</y>
|
||||||
|
<w>74</w>
|
||||||
|
<h>74</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/fuel.xml">
|
||||||
|
<name>Fuel Gauge</name>
|
||||||
|
<x>100</x>
|
||||||
|
<y>242</y>
|
||||||
|
<w>74</w>
|
||||||
|
<h>74</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/oil.xml">
|
||||||
|
<name>Oil Gauge</name>
|
||||||
|
<x>100</x>
|
||||||
|
<y>165</y>
|
||||||
|
<w>74</w>
|
||||||
|
<h>74</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/vacamp.xml">
|
||||||
|
<name>Vacuum Pressure Gauge</name>
|
||||||
|
<x>177</x>
|
||||||
|
<y>165</y>
|
||||||
|
<w>74</w>
|
||||||
|
<h>74</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<instrument include="../../Instruments/single-manifold-pressure.xml">
|
||||||
|
<name>Manifold Pressure Gauge</name>
|
||||||
|
<x>279</x>
|
||||||
|
<y>69</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
-->
|
||||||
|
<!-- end engine gauges cluster -->
|
||||||
|
|
||||||
|
<!-- engine controls cluster -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/rpm.xml">
|
||||||
|
<name>RPM Gauge</name>
|
||||||
|
<x>542</x>
|
||||||
|
<y>69</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/throttle-knob.xml">
|
||||||
|
<name>Throttle Knob</name>
|
||||||
|
<x>785</x>
|
||||||
|
<y>50</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/mixture-knob.xml">
|
||||||
|
<name>Fuel Mixture Knob</name>
|
||||||
|
<x>865</x>
|
||||||
|
<y>50</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/single-magneto-switch.xml">
|
||||||
|
<name>Magneto switch panel</name>
|
||||||
|
<x>137</x>
|
||||||
|
<y>48</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- end engine controls cluster -->
|
||||||
|
|
||||||
|
<!-- controls visual feedback cluster -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/flap.xml">
|
||||||
|
<name>Flaps Control</name>
|
||||||
|
<x>950</x>
|
||||||
|
<y>55</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/brakes.xml">
|
||||||
|
<name>Brake Indicator Light</name>
|
||||||
|
<x>412</x>
|
||||||
|
<y>120</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/controls.xml">
|
||||||
|
<name>Control Position Indicators</name>
|
||||||
|
<x>412</x>
|
||||||
|
<y>60</y>
|
||||||
|
<w>90</w>
|
||||||
|
<h>90</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- end controls visual feedback cluster -->
|
||||||
|
|
||||||
|
<!-- sacred six -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/asi-160-knot.xml">
|
||||||
|
<name>Airspeed Indicator</name>
|
||||||
|
<x>279</x>
|
||||||
|
<y>335</y>
|
||||||
|
<w>128</w>
|
||||||
|
<h>128</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/attitude-indicator.xml">
|
||||||
|
<name>Attitude Gyro</name>
|
||||||
|
<x>412</x>
|
||||||
|
<y>335</y>
|
||||||
|
<w>128</w>
|
||||||
|
<h>128</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/altimeter.xml">
|
||||||
|
<name>Altimeter</name>
|
||||||
|
<x>542</x>
|
||||||
|
<y>335</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/turn.xml">
|
||||||
|
<name>Turn Coordinator</name>
|
||||||
|
<x>279</x>
|
||||||
|
<y>202</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/hsi.xml">
|
||||||
|
<name>Directional Gyro</name>
|
||||||
|
<x>412</x>
|
||||||
|
<y>202</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/vertical.xml">
|
||||||
|
<name>Vertical Velocity Indicator</name>
|
||||||
|
<x>542</x>
|
||||||
|
<y>202</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- end sacred six -->
|
||||||
|
|
||||||
|
<!-- radio nav instruments -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/nav1.xml">
|
||||||
|
<name>VOR 2 Gauge</name>
|
||||||
|
<params>
|
||||||
|
<nav-to-flag>/instrumentation/nav[1]/to-flag</nav-to-flag>
|
||||||
|
<nav-from-flag>/instrumentation/nav[1]/from-flag</nav-from-flag>
|
||||||
|
<nav-radial-selected>/instrumentation/nav[1]/radials/selected-deg</nav-radial-selected>
|
||||||
|
<nav-gs-needle-deflection>/instrumentation/nav[1]/gs-needle-deflection</nav-gs-needle-deflection>
|
||||||
|
<nav-heading-needle-deflection>/instrumentation/nav[1]/heading-needle-deflection</nav-heading-needle-deflection>
|
||||||
|
<nav-has-gs-needle>/sim/instrument-options/nav[1]/has-gs-needle</nav-has-gs-needle>
|
||||||
|
<nav-needles-pivot>/sim/instrument-options/nav[1]/needles-pivot</nav-needles-pivot>
|
||||||
|
</params>
|
||||||
|
<x>675</x>
|
||||||
|
<y>335</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- end radio nav instruments -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- radio stack -->
|
||||||
|
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/dme.xml">
|
||||||
|
<name>DME Display</name>
|
||||||
|
<x>880</x>
|
||||||
|
<y>361</y>
|
||||||
|
<w>122</w>
|
||||||
|
<h>59</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/markerbeacon.xml">
|
||||||
|
<name>Marker Beacon Indicators</name>
|
||||||
|
<x>786</x>
|
||||||
|
<y>361</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/navcom-radio.xml">
|
||||||
|
<name>NavCom 1 Radio</name>
|
||||||
|
<x>880</x>
|
||||||
|
<y>297</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/navcom-radio.xml">
|
||||||
|
<name>NavCom 2 Radio</name>
|
||||||
|
<params>
|
||||||
|
<comm-freq-selected-prop>/instrumentation/comm[1]/frequencies/selected-mhz</comm-freq-selected-prop>
|
||||||
|
<comm-freq-standby-prop>/instrumentation/comm[1]/frequencies/standby-mhz</comm-freq-standby-prop>
|
||||||
|
<nav-freq-selected-prop>/instrumentation/nav[1]/frequencies/selected-mhz</nav-freq-selected-prop>
|
||||||
|
<nav-freq-standby-prop>/instrumentation/nav[1]/frequencies/standby-mhz</nav-freq-standby-prop>
|
||||||
|
<nav-morse-id-volume-prop>/instrumentation/nav[1]/volume</nav-morse-id-volume-prop>
|
||||||
|
<nav-morse-ident-toggle-prop>/instrumentation/nav[1]/ident</nav-morse-ident-toggle-prop>
|
||||||
|
</params>
|
||||||
|
<x>880</x>
|
||||||
|
<y>232</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/adf-radio.xml">
|
||||||
|
<name>ADF Radio</name>
|
||||||
|
<x>880</x>
|
||||||
|
<y>167</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/autopilot.xml">
|
||||||
|
<name>Autopilot</name>
|
||||||
|
<x>880</x>
|
||||||
|
<y>121</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- end radio stack -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/magcompass.xml">
|
||||||
|
<name>Magnetic Compass</name>
|
||||||
|
<x>768</x>
|
||||||
|
<y>497</y>
|
||||||
|
</instrument>
|
||||||
|
</instruments>
|
||||||
|
|
||||||
|
|
||||||
|
</PropertyList>
|
153
Aircraft/Generic/Panels/generic-trans-mini-panel.xml
Normal file
153
Aircraft/Generic/Panels/generic-trans-mini-panel.xml
Normal file
|
@ -0,0 +1,153 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Cessna 172 Skyhawk panel.
|
||||||
|
October 2000
|
||||||
|
John Check <j4strngs@rockfish.net>
|
||||||
|
_______________________________________________________________________
|
||||||
|
|
||||||
|
This is a panel configuration file for the open-source flight
|
||||||
|
simulator FlightGear (www.flightgear.org). The file is an XML-encoded
|
||||||
|
FlightGear property list defining the panel's background texture and
|
||||||
|
the location (and optionally, size) of the instruments that will
|
||||||
|
appear on the panel.
|
||||||
|
|
||||||
|
Each instrument is, itself, defined in an XML-encoded property list
|
||||||
|
in a separate file.
|
||||||
|
|
||||||
|
Co-ordinates are relative to the *bottom* left corner of the screen
|
||||||
|
(as in OpenGL). The total FlightGear window is always considered to
|
||||||
|
be 1024x768, whatever its actual display size on the screen. All
|
||||||
|
paths are relative to $FG_ROOT.
|
||||||
|
|
||||||
|
Note that the name of the element defining each instrument must be
|
||||||
|
different, or else instrument definitions will be overwritten:
|
||||||
|
that's not particularly XML-ish, but that's how property lists
|
||||||
|
work in FlightGear right now.
|
||||||
|
|
||||||
|
Each instrument has its own preferred width and height, but you can
|
||||||
|
override those by providing <w>Aircraft</w> and <h>..</h> properties with the
|
||||||
|
<x>Aircraft.</x> and <y>...</y> properties.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!DOCTYPE PropertyList SYSTEM "panel.dtd">
|
||||||
|
|
||||||
|
<PropertyList>
|
||||||
|
|
||||||
|
<name>Generic mini panel</name>
|
||||||
|
<background>Aircraft/Generic/Panels/Textures/panel-trans-mini-bg.rgb</background>
|
||||||
|
<w>1024</w>
|
||||||
|
<h>154</h>
|
||||||
|
<y-offset>0</y-offset>
|
||||||
|
<view-height>768</view-height>
|
||||||
|
|
||||||
|
<instruments>
|
||||||
|
|
||||||
|
<!-- engine controls cluster -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/rpm.xml">
|
||||||
|
<name>RPM Gauge</name>
|
||||||
|
<x>885</x>
|
||||||
|
<y>70</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/mixture-knob.xml">
|
||||||
|
<name>Fuel Mixture Knob</name>
|
||||||
|
<x>980</x>
|
||||||
|
<y>115</y>
|
||||||
|
<w>45</w>
|
||||||
|
<h>55</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- end engine controls cluster -->
|
||||||
|
|
||||||
|
<!-- controls visual feedback cluster -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/flap.xml">
|
||||||
|
<name>Flaps Control</name>
|
||||||
|
<x>980</x>
|
||||||
|
<y>55</y>
|
||||||
|
<w>40</w>
|
||||||
|
<h>70</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/brakes.xml">
|
||||||
|
<name>Brake Indicator Light</name>
|
||||||
|
<x>410</x>
|
||||||
|
<y>120</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/controls.xml">
|
||||||
|
<name>Control Position Indicators</name>
|
||||||
|
<x>410</x>
|
||||||
|
<y>60</y>
|
||||||
|
<w>90</w>
|
||||||
|
<h>90</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- end controls visual feedback cluster -->
|
||||||
|
|
||||||
|
<!-- sacred six -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/asi-160-knot.xml">
|
||||||
|
<name>Airspeed Indicator</name>
|
||||||
|
<x>65</x>
|
||||||
|
<y>70</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/attitude-indicator.xml">
|
||||||
|
<name>Attitude Gyro</name>
|
||||||
|
<x>305</x>
|
||||||
|
<y>70</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/altimeter.xml">
|
||||||
|
<name>Altimeter</name>
|
||||||
|
<x>638</x>
|
||||||
|
<y>70</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/turn.xml">
|
||||||
|
<name>Turn Coordinator</name>
|
||||||
|
<x>185</x>
|
||||||
|
<y>70</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/gyro.xml">
|
||||||
|
<name>Directional Gyro</name>
|
||||||
|
<x>515</x>
|
||||||
|
<y>70</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/vertical.xml">
|
||||||
|
<name>Vertical Velocity Indicator</name>
|
||||||
|
<x>761</x>
|
||||||
|
<y>70</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- end sacred six -->
|
||||||
|
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/magcompass.xml">
|
||||||
|
<name>Magnetic Compass</name>
|
||||||
|
<x>768</x>
|
||||||
|
<y>170</y>
|
||||||
|
</instrument>
|
||||||
|
</instruments>
|
||||||
|
|
||||||
|
</PropertyList>
|
||||||
|
|
335
Aircraft/Generic/Panels/generic-vfr-panel.xml
Normal file
335
Aircraft/Generic/Panels/generic-vfr-panel.xml
Normal file
|
@ -0,0 +1,335 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Generic panel.
|
||||||
|
October 2000
|
||||||
|
John Check <j4strngs@rockfish.net>
|
||||||
|
_______________________________________________________________________
|
||||||
|
|
||||||
|
This is a panel configuration file for the open-source flight
|
||||||
|
simulator FlightGear (www.flightgear.org). The file is an XML-encoded
|
||||||
|
FlightGear property list defining the panel's background texture and
|
||||||
|
the location (and optionally, size) of the instruments that will
|
||||||
|
appear on the panel.
|
||||||
|
|
||||||
|
Each instrument is, itself, defined in an XML-encoded property list
|
||||||
|
in a separate file.
|
||||||
|
|
||||||
|
Co-ordinates are relative to the *bottom* left corner of the screen
|
||||||
|
(as in OpenGL). The total FlightGear window is always considered to
|
||||||
|
be 1024x768, whatever its actual display size on the screen. All
|
||||||
|
paths are relative to $FG_ROOT.
|
||||||
|
|
||||||
|
Note that the name of the element defining each instrument must be
|
||||||
|
different, or else instrument definitions will be overwritten:
|
||||||
|
that's not particularly XML-ish, but that's how property lists
|
||||||
|
work in FlightGear right now.
|
||||||
|
|
||||||
|
Each instrument has its own preferred width and height, but you can
|
||||||
|
override those by providing <w>..</w> and <h>..</h> properties with the
|
||||||
|
<x>...</x> and <y>...</y> properties.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!DOCTYPE PropertyList SYSTEM "panel.dtd">
|
||||||
|
|
||||||
|
<PropertyList>
|
||||||
|
|
||||||
|
<name>Generic VFR Panel</name>
|
||||||
|
<background>Aircraft/Generic/Panels/Textures/panel-bg.rgb</background>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-01.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-02.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-03.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-04.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-03.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-04.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-07.rgb</multibackground>
|
||||||
|
<multibackground>Aircraft/Generic/Panels/Textures/generic-panel-08.rgb</multibackground>
|
||||||
|
<w>1424</w>
|
||||||
|
<h>488</h>
|
||||||
|
<y-offset>0</y-offset>
|
||||||
|
<view-height>500</view-height>
|
||||||
|
|
||||||
|
<instruments>
|
||||||
|
<!-- comical tail number -->
|
||||||
|
<instrument include="../../Instruments/logo.xml">
|
||||||
|
<name>Tail Number Plate</name>
|
||||||
|
<x>412</x>
|
||||||
|
<y>415</y>
|
||||||
|
<w>72</w>
|
||||||
|
<h>32</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- engine guage cluster -->
|
||||||
|
<instrument include="../../Instruments/oat.xml">
|
||||||
|
<name>OAT</name>
|
||||||
|
<x>100</x>
|
||||||
|
<y>316</y>
|
||||||
|
<w>80</w>
|
||||||
|
<h>25</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/clock.xml">
|
||||||
|
<name>Chronometer</name>
|
||||||
|
<x>177</x>
|
||||||
|
<y>316</y>
|
||||||
|
<w>74</w>
|
||||||
|
<h>74</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/egt.xml">
|
||||||
|
<name>Exhaust Gas Temperature Gauge</name>
|
||||||
|
<x>177</x>
|
||||||
|
<y>242</y>
|
||||||
|
<w>74</w>
|
||||||
|
<h>74</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/fuel.xml">
|
||||||
|
<name>Fuel Gauge</name>
|
||||||
|
<x>100</x>
|
||||||
|
<y>242</y>
|
||||||
|
<w>74</w>
|
||||||
|
<h>74</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/oil.xml">
|
||||||
|
<name>Oil Gauge</name>
|
||||||
|
<x>100</x>
|
||||||
|
<y>165</y>
|
||||||
|
<w>74</w>
|
||||||
|
<h>74</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/vacamp.xml">
|
||||||
|
<name>Vacuum Pressure Gauge</name>
|
||||||
|
<x>177</x>
|
||||||
|
<y>165</y>
|
||||||
|
<w>74</w>
|
||||||
|
<h>74</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<instrument include="../../Instruments/single-manifold-pressure.xml">
|
||||||
|
<name>Manifold Pressure Gauge</name>
|
||||||
|
<x>279</x>
|
||||||
|
<y>69</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
-->
|
||||||
|
<!-- end engine gauges cluster -->
|
||||||
|
|
||||||
|
<!-- engine controls cluster -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/rpm.xml">
|
||||||
|
<name>RPM Gauge</name>
|
||||||
|
<x>542</x>
|
||||||
|
<y>69</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/throttle-knob.xml">
|
||||||
|
<name>Throttle Knob</name>
|
||||||
|
<x>785</x>
|
||||||
|
<y>50</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/mixture-knob.xml">
|
||||||
|
<name>Fuel Mixture Knob</name>
|
||||||
|
<x>865</x>
|
||||||
|
<y>50</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/single-magneto-switch.xml">
|
||||||
|
<name>Magneto switch panel</name>
|
||||||
|
<x>137</x>
|
||||||
|
<y>48</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- end engine controls cluster -->
|
||||||
|
|
||||||
|
<!-- controls visual feedback cluster -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/flap.xml">
|
||||||
|
<name>Flaps Control</name>
|
||||||
|
<x>950</x>
|
||||||
|
<y>55</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/brakes.xml">
|
||||||
|
<name>Brake Indicator Light</name>
|
||||||
|
<x>412</x>
|
||||||
|
<y>120</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/controls.xml">
|
||||||
|
<name>Control Position Indicators</name>
|
||||||
|
<x>412</x>
|
||||||
|
<y>60</y>
|
||||||
|
<w>90</w>
|
||||||
|
<h>90</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- end controls visual feedback cluster -->
|
||||||
|
|
||||||
|
<!-- sacred six -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/asi-160-knot.xml">
|
||||||
|
<name>Airspeed Indicator</name>
|
||||||
|
<x>279</x>
|
||||||
|
<y>335</y>
|
||||||
|
<w>128</w>
|
||||||
|
<h>128</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/attitude-indicator.xml">
|
||||||
|
<name>Attitude Gyro</name>
|
||||||
|
<x>412</x>
|
||||||
|
<y>335</y>
|
||||||
|
<w>128</w>
|
||||||
|
<h>128</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/altimeter.xml">
|
||||||
|
<name>Altimeter</name>
|
||||||
|
<x>542</x>
|
||||||
|
<y>335</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/turn.xml">
|
||||||
|
<name>Turn Coordinator</name>
|
||||||
|
<x>279</x>
|
||||||
|
<y>202</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/gyro.xml">
|
||||||
|
<name>Directional Gyro</name>
|
||||||
|
<x>412</x>
|
||||||
|
<y>202</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/vertical.xml">
|
||||||
|
<name>Vertical Velocity Indicator</name>
|
||||||
|
<x>542</x>
|
||||||
|
<y>202</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<!-- end sacred six -->
|
||||||
|
|
||||||
|
<!-- radio nav instruments -->
|
||||||
|
<instrument include="../../Instruments/nav1.xml">
|
||||||
|
<name>VOR 1 Gauge</name>
|
||||||
|
<x>675</x>
|
||||||
|
<y>335</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/nav1.xml">
|
||||||
|
<name>VOR 2 Gauge</name>
|
||||||
|
<params>
|
||||||
|
<nav-to-flag>/instrumentation/nav[1]/to-flag</nav-to-flag>
|
||||||
|
<nav-from-flag>/instrumentation/nav[1]/from-flag</nav-from-flag>
|
||||||
|
<nav-radial-selected>/instrumentation/nav[1]/radials/selected-deg</nav-radial-selected>
|
||||||
|
<nav-gs-needle-deflection>/instrumentation/nav[1]/gs-needle-deflection</nav-gs-needle-deflection>
|
||||||
|
<nav-heading-needle-deflection>/instrumentation/nav[1]/heading-needle-deflection</nav-heading-needle-deflection>
|
||||||
|
<nav-has-gs-needle>/sim/instrument-options/nav[1]/has-gs-needle</nav-has-gs-needle>
|
||||||
|
<nav-needles-pivot>/sim/instrument-options/nav[1]/needles-pivot</nav-needles-pivot>
|
||||||
|
</params>
|
||||||
|
<x>675</x>
|
||||||
|
<y>202</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
<instrument include="../../Instruments/adf.xml">
|
||||||
|
<name>ADF Gauge</name>
|
||||||
|
<x>675</x>
|
||||||
|
<y>69</y>
|
||||||
|
<w>120</w>
|
||||||
|
<h>120</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- end radio nav instruments -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- radio stack -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<instrument include="../../Instruments/dme.xml">
|
||||||
|
<name>DME Display</name>
|
||||||
|
<x>880</x>
|
||||||
|
<y>361</y>
|
||||||
|
<w>122</w>
|
||||||
|
<h>59</h>
|
||||||
|
</instrument>
|
||||||
|
-->
|
||||||
|
<instrument include="../../Instruments/markerbeacon.xml">
|
||||||
|
<name>Marker Beacon Indicators</name>
|
||||||
|
<x>786</x>
|
||||||
|
<y>361</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/navcom-radio.xml">
|
||||||
|
<name>NavCom 1 Radio</name>
|
||||||
|
<x>880</x>
|
||||||
|
<y>315</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/navcom-radio.xml">
|
||||||
|
<name>NavCom 2 Radio</name>
|
||||||
|
<params>
|
||||||
|
<comm-freq-selected-prop>/instrumentation/comm[1]/frequencies/selected-mhz</comm-freq-selected-prop>
|
||||||
|
<comm-freq-standby-prop>/instrumentation/comm[1]/frequencies/standby-mhz</comm-freq-standby-prop>
|
||||||
|
<nav-freq-selected-prop>/instrumentation/nav[1]/frequencies/selected-mhz</nav-freq-selected-prop>
|
||||||
|
<nav-freq-standby-prop>/instrumentation/nav[1]/frequencies/standby-mhz</nav-freq-standby-prop>
|
||||||
|
<nav-morse-id-volume-prop>/instrumentation/nav[1]/volume</nav-morse-id-volume-prop>
|
||||||
|
<nav-morse-ident-toggle-prop>/instrumentation/nav[1]/ident</nav-morse-ident-toggle-prop>
|
||||||
|
</params>
|
||||||
|
<x>880</x>
|
||||||
|
<y>250</y>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/adf-radio.xml">
|
||||||
|
<name>ADF Radio</name>
|
||||||
|
<x>880</x>
|
||||||
|
<y>185</y>
|
||||||
|
</instrument>
|
||||||
|
<!--
|
||||||
|
<instrument include="../../Instruments/autopilot.xml">
|
||||||
|
<name>Autopilot</name>
|
||||||
|
<x>880</x>
|
||||||
|
<y>127</y>
|
||||||
|
</instrument>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/KAP140TwoAxis.xml">
|
||||||
|
<name>KAP140 Autopilot</name>
|
||||||
|
<x>880</x>
|
||||||
|
<y>127</y>
|
||||||
|
<w>256</w>
|
||||||
|
<h>64</h>
|
||||||
|
</instrument>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- end radio stack -->
|
||||||
|
|
||||||
|
<instrument include="../../Instruments/magcompass.xml">
|
||||||
|
<name>Magnetic Compass</name>
|
||||||
|
<x>768</x>
|
||||||
|
<y>497</y>
|
||||||
|
</instrument>
|
||||||
|
</instruments>
|
||||||
|
|
||||||
|
|
||||||
|
</PropertyList>
|
||||||
|
|
239
Aircraft/Generic/generic-sound.xml
Normal file
239
Aircraft/Generic/generic-sound.xml
Normal file
|
@ -0,0 +1,239 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
|
||||||
|
<PropertyList>
|
||||||
|
|
||||||
|
<fx>
|
||||||
|
|
||||||
|
<crank>
|
||||||
|
<name>engstart</name>
|
||||||
|
<path>Sounds/engstart.wav</path>
|
||||||
|
<property>/engines/engine/cranking</property>
|
||||||
|
<volume>
|
||||||
|
<offset>0.4</offset>
|
||||||
|
</volume>
|
||||||
|
</crank>
|
||||||
|
|
||||||
|
<crank>
|
||||||
|
<name>crank</name>
|
||||||
|
<mode>looped</mode>
|
||||||
|
<path>Sounds/cranking.wav</path>
|
||||||
|
<condition>
|
||||||
|
<property>/engines/engine/cranking</property>
|
||||||
|
<not>
|
||||||
|
<property>/engines/engine/running</property>
|
||||||
|
</not>
|
||||||
|
</condition>
|
||||||
|
<volume>
|
||||||
|
<offset>0.5</offset>
|
||||||
|
</volume>
|
||||||
|
</crank>
|
||||||
|
|
||||||
|
<crank>
|
||||||
|
<name>cough</name>
|
||||||
|
<path>Sounds/coughing.wav</path>
|
||||||
|
<property>/engines/engine/running</property>
|
||||||
|
<volume>
|
||||||
|
<offset>0.3</offset>
|
||||||
|
</volume>
|
||||||
|
</crank>
|
||||||
|
|
||||||
|
<engine>
|
||||||
|
<name>engine</name>
|
||||||
|
<mode>looped</mode>
|
||||||
|
<path>Sounds/wasp.wav</path>
|
||||||
|
<property>/engines/engine/running</property>
|
||||||
|
<volume>
|
||||||
|
<property>/engines/engine/mp-osi</property>
|
||||||
|
<factor>0.00375</factor>
|
||||||
|
<min>0.15</min>
|
||||||
|
<max>0.5</max>
|
||||||
|
</volume>
|
||||||
|
<volume>
|
||||||
|
<property>/orientation/alpha-deg</property>
|
||||||
|
<type>log</type>
|
||||||
|
<min>1.0</min>
|
||||||
|
<max>1.5</max>
|
||||||
|
</volume>
|
||||||
|
<volume>
|
||||||
|
<property>/sim/current-view/internal</property>
|
||||||
|
<offset>1.0</offset>
|
||||||
|
<factor>-0.7</factor>
|
||||||
|
</volume>
|
||||||
|
<pitch>
|
||||||
|
<property>/engines/engine/rpm</property>
|
||||||
|
<factor>0.0004</factor>
|
||||||
|
<min>0.5</min>
|
||||||
|
<max>2.0</max>
|
||||||
|
<offset>0.15</offset>
|
||||||
|
</pitch>
|
||||||
|
</engine>
|
||||||
|
|
||||||
|
<propeller>
|
||||||
|
<name>propeller</name>
|
||||||
|
<mode>looped</mode>
|
||||||
|
<path>Sounds/turboprop1.wav</path>
|
||||||
|
<property>/engines/engine/running</property>
|
||||||
|
<volume>
|
||||||
|
<property>/orientation/alpha-deg</property>
|
||||||
|
<type>log</type>
|
||||||
|
<min>0.2</min>
|
||||||
|
<max>1.0</max>
|
||||||
|
</volume>
|
||||||
|
<volume>
|
||||||
|
<property>/sim/current-view/internal</property>
|
||||||
|
<factor>0.5</factor>
|
||||||
|
</volume>
|
||||||
|
<pitch>
|
||||||
|
<property>/engines/engine/mp-osi</property>
|
||||||
|
<factor>0.0036</factor>
|
||||||
|
<min>0.5</min>
|
||||||
|
<max>2.0</max>
|
||||||
|
<offset>0.9</offset>
|
||||||
|
</pitch>
|
||||||
|
</propeller>
|
||||||
|
|
||||||
|
<rumble>
|
||||||
|
<name>rumble</name>
|
||||||
|
<mode>looped</mode>
|
||||||
|
<path>Sounds/rumble.wav</path>
|
||||||
|
<condition>
|
||||||
|
<or>
|
||||||
|
<property>/gear/gear[0]/wow</property>
|
||||||
|
<property>/gear/gear[1]/wow</property>
|
||||||
|
<property>/gear/gear[2]/wow</property>
|
||||||
|
</or>
|
||||||
|
<!-- <property>/sim/current-view/internal</property> -->
|
||||||
|
</condition>
|
||||||
|
<volume>
|
||||||
|
<property>/velocities/airspeed-kt</property>
|
||||||
|
<type>log</type>
|
||||||
|
<factor>0.25</factor>
|
||||||
|
</volume>
|
||||||
|
</rumble>
|
||||||
|
|
||||||
|
<!-- the c172 doesn't have a retractable landing gear
|
||||||
|
<gear>
|
||||||
|
<name>gear</name>
|
||||||
|
<mode>in-transit</mode>
|
||||||
|
<path>Sounds/gear.wav</path>
|
||||||
|
<property>/gear/gear[0]/position-norm</property>
|
||||||
|
</gear>
|
||||||
|
|
||||||
|
<gear>
|
||||||
|
<name>gear-lock</name>
|
||||||
|
<path>Sounds/gear-lck.wav</path>
|
||||||
|
<condition>
|
||||||
|
<greater-than>
|
||||||
|
<property>/gear/gear[0]/position-norm</property>
|
||||||
|
<value>0.9</value>
|
||||||
|
</greater-than>
|
||||||
|
</condition>
|
||||||
|
</gear>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<squeal>
|
||||||
|
<name>squeal</name>
|
||||||
|
<path>Sounds/squeal.wav</path>
|
||||||
|
<condition>
|
||||||
|
<or>
|
||||||
|
<property>/gear/gear[0]/wow</property>
|
||||||
|
<property>/gear/gear[1]/wow</property>
|
||||||
|
<property>/gear/gear[2]/wow</property>
|
||||||
|
</or>
|
||||||
|
</condition>
|
||||||
|
<volume>
|
||||||
|
<property>/velocities/speed-down-fps</property>
|
||||||
|
<factor>0.5</factor>
|
||||||
|
<max>1.0</max>
|
||||||
|
</volume>
|
||||||
|
<volume>
|
||||||
|
<property>/velocities/airspeed-kt</property>
|
||||||
|
<factor>0.01</factor>
|
||||||
|
<max>1.0</max>
|
||||||
|
</volume>
|
||||||
|
<volume>
|
||||||
|
<internal>dt_stop</internal>
|
||||||
|
<factor>0.05</factor>
|
||||||
|
<max>1.0</max>
|
||||||
|
</volume>
|
||||||
|
<pitch>
|
||||||
|
<property>/velocities/airspeed-kt</property>
|
||||||
|
<factor>0.0025</factor>
|
||||||
|
<offset>1.2</offset>
|
||||||
|
</pitch>
|
||||||
|
</squeal>
|
||||||
|
|
||||||
|
<flap>
|
||||||
|
<name>flaps</name>
|
||||||
|
<mode>in-transit</mode>
|
||||||
|
<path>Sounds/flaps.wav</path>
|
||||||
|
<property>/surface-positions/flap-pos-norm</property>
|
||||||
|
<volume>
|
||||||
|
<factor>0.8</factor>
|
||||||
|
</volume>
|
||||||
|
<reference-dist>10.0</reference-dist>
|
||||||
|
<max-dist>20.0</max-dist>
|
||||||
|
</flap>
|
||||||
|
|
||||||
|
<wind>
|
||||||
|
<name>wind</name>
|
||||||
|
<mode>looped</mode>
|
||||||
|
<path>Sounds/wind.wav</path>
|
||||||
|
<property>/velocities/airspeed-kt</property>
|
||||||
|
<volume>
|
||||||
|
<property>/position/altitude-ft</property>
|
||||||
|
<factor>-0.000015</factor>
|
||||||
|
<offset>1.0</offset>
|
||||||
|
<min>0.1</min>
|
||||||
|
<max>1.0</max>
|
||||||
|
</volume>
|
||||||
|
<volume>
|
||||||
|
<property>/velocities/airspeed-kt</property>
|
||||||
|
<factor>0.0015</factor>
|
||||||
|
<min>0.03</min>
|
||||||
|
<max>0.25</max>
|
||||||
|
</volume>
|
||||||
|
<pitch>
|
||||||
|
<property>/velocities/airspeed-kt</property>
|
||||||
|
<factor>0.0035</factor>
|
||||||
|
<offset>1.25</offset>
|
||||||
|
</pitch>
|
||||||
|
</wind>
|
||||||
|
|
||||||
|
<stall>
|
||||||
|
<name>stall</name>
|
||||||
|
<mode>looped</mode>
|
||||||
|
<path>Sounds/stall.wav</path>
|
||||||
|
<condition>
|
||||||
|
<and>
|
||||||
|
<property>/sim/alarms/stall-warning</property>
|
||||||
|
<greater-than>
|
||||||
|
<property>/velocities/airspeed-kt</property>
|
||||||
|
<value>10</value>
|
||||||
|
</greater-than>
|
||||||
|
<not>
|
||||||
|
<property>/gear/gear[0]/wow</property>
|
||||||
|
<property>/gear/gear[1]/wow</property>
|
||||||
|
<property>/gear/gear[2]/wow</property>
|
||||||
|
</not>
|
||||||
|
</and>
|
||||||
|
<!-- <property>/sim/current-view/internal</property> -->
|
||||||
|
</condition>
|
||||||
|
<volume>
|
||||||
|
<property>/sim/alarms/stall-warning</property>
|
||||||
|
<max>1.0</max>
|
||||||
|
</volume>
|
||||||
|
<reference-dist>10.0</reference-dist>
|
||||||
|
<max-dist>20.0</max-dist>
|
||||||
|
</stall>
|
||||||
|
|
||||||
|
<!-- no binding yet?
|
||||||
|
<click>
|
||||||
|
<name>click</name>
|
||||||
|
<path>Sounds/click.wav</path>
|
||||||
|
</click>
|
||||||
|
-->
|
||||||
|
|
||||||
|
</fx>
|
||||||
|
|
||||||
|
</PropertyList>
|
Loading…
Add table
Reference in a new issue