1
0
Fork 0
fgdata/Aircraft/Instruments/dual-manifold-pressure.xml
j4strngs b5537626f8 Instruments are now consolidated in a single directory.
Textures are now more organized and usefully named.
2001-12-12 14:20:38 +00:00

161 lines
4 KiB
XML

<?xml version="1.0"?>
<!--
Manifold pressure instrument. This is not a stock C172 item and is usually
not found on rentals.
October 2000 by John Check, <j4strngs@rockfish.net>
________________________________________________________________________________
This is an instrument configuration file for the open-source flight
simulator FlightGear (www.flightgear.org). The file is an XML-encoded
FlightGear property list defining the instrument's layers and actions.
Each instrument is composed of layers stacked on top of each other.
A layer may be a texture (with transparent parts to show the layers
underneath), text, or a special layer that switches between two
others (say, to turn an indicator light on or off). Each layer can
move independently in proportion to a property value, and text
can be generated from property values as well: all of the layer's
movements are defined as transformations.
Actions are hotspots on the instrument that will respond to a mouse
click. Actions always modify the values of properties, either by
adjusting them, toggling them, or swaping them with other
properties' values.
-->
<PropertyList>
<name>Dual Manifold Pressure</name>
<w-base>128</w-base>
<h-base>128</h-base>
<params>
<mp0-select>/engines/engine[0]/mp-osi</mp0-select>
<mp1-select>/engines/engine[1]/mp-osi</mp1-select>
</params>
<layers>
<layer>
<name>gauge face </name>
<texture>
<path>Aircraft/Instruments/Textures/faces-6.rgb</path>
<x1>0</x1>
<y1>0.515625</y1>
<x2>0.4765625</x2>
<y2>1.0</y2>
</texture>
<w>105</w>
<h>105</h>
</layer>
<layer>
<name>needle 1</name>
<texture>
<path>Aircraft/Instruments/Textures/misc-1.rgb</path>
<x1>0.6796875</x1>
<x2>0.7265625</x2>
<y1>0.68359375</y1>
<y2>1.0</y2>
</texture>
<w>6</w>
<h>36</h>
<transformations>
<transformation>
<type>rotation</type>
<property alias="../../../../../params/mp1-select"/>
<min>10.0</min>
<max>50.0</max>
<scale>5.0</scale>
<offset>-150.0</offset>
<wrap>false</wrap>
</transformation>
<transformation>
<type>y-shift</type>
<offset>20</offset>
</transformation>
</transformations>
</layer>
<layer>
<name>needle 0</name>
<texture>
<path>Aircraft/Instruments/Textures/misc-1.rgb</path>
<x1>0.8</x1>
<y1>0.78125</y1>
<x2>0.8375</x2>
<y2>1.0</y2>
</texture>
<w>6</w>
<h>36</h>
<transformations>
<transformation>
<type>rotation</type>
<property alias="../../../../../params/mp0-select"/>
<min>10.0</min>
<max>50.0</max>
<scale>5.0</scale>
<offset>-150.0</offset>
<wrap>false</wrap>
</transformation>
<transformation>
<type>y-shift</type>
<offset>20</offset>
</transformation>
</transformations>
</layer>
<layer>
<name>button</name>
<texture>
<path>Aircraft/Instruments/Textures/misc-1.rgb</path>
<x1>0.6171875</x1>
<y1>0.2421875</y1>
<x2>0.7890625</x2>
<y2>0.4140625</y2>
</texture>
<w>15</w>
<h>15</h>
<transformations>
<transformation>
<type>rotation</type>
<property>/orientation/roll-deg</property>
<min>-360.0</min>
<max>360.0</max>
<scale>1.0</scale>
<wrap>1</wrap>
</transformation>
</transformations>
</layer>
<layer>
<name>glare shield</name>
<texture>
<path>Aircraft/Instruments/Textures/bezel1.rgb</path>
<x1>0.5</x1>
<y1>0.0</y1>
<x2>1.0</x2>
<y2>0.5</y2>
</texture>
<w>124</w>
<h>124</h>
<transformations>
<transformation>
<type>rotation</type>
<property>/orientation/roll-deg</property>
<min>-360.0</min>
<max>360.0</max>
<scale>1.0</scale>
<wrap>1</wrap>
</transformation>
<transformation>
<type>x-shift</type>
<offset>2</offset>
</transformation>
<transformation>
<type>y-shift</type>
<offset>-2</offset>
</transformation>
</transformations>
</layer>
</layers>
</PropertyList>