Add a weather radar display instrument which treats every AIAircraft as a thunderstorm right now.
This commit is contained in:
parent
779116ab4f
commit
b1f694cec0
1 changed files with 226 additions and 0 deletions
226
Aircraft/Instruments/wxradar.xml
Normal file
226
Aircraft/Instruments/wxradar.xml
Normal file
|
@ -0,0 +1,226 @@
|
|||
<PropertyList>
|
||||
<name>Radar</name>
|
||||
<w-base>256</w-base>
|
||||
<h-base>256</h-base>
|
||||
<layers>
|
||||
|
||||
<layer>
|
||||
<name>background</name>
|
||||
<w>256</w>
|
||||
<h>256</h>
|
||||
<texture>
|
||||
<path>Aircraft/T38/Instruments/Textures/radar_background.rgb</path>
|
||||
<x1>0</x1>
|
||||
<y1>0</y1>
|
||||
<x2>1</x2>
|
||||
<y2>1</y2>
|
||||
</texture>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>target1</name>
|
||||
<w>20</w>
|
||||
<h>13</h>
|
||||
<condition>
|
||||
<less-than>
|
||||
<property>ai/models/aircraft[1]/radar/range-nm</property>
|
||||
<value>43</value>
|
||||
</less-than>
|
||||
</condition>
|
||||
<texture>
|
||||
<path>Aircraft/T38/Instruments/Textures/radar_misc.rgb</path>
|
||||
<x1>0.078125</x1>
|
||||
<y1>0.605468</y1>
|
||||
<x2>0.414062</x2>
|
||||
<y2>0.8125</y2>
|
||||
</texture>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<property>ai/models/aircraft[1]/radar/x-shift</property>
|
||||
<scale>2.55</scale>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<property>ai/models/aircraft[1]/radar/y-shift</property>
|
||||
<scale>2.55</scale>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>rotation</type>
|
||||
<property>ai/models/aircraft[1]/radar/rotation</property>
|
||||
<offset>-90</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>frame</name>
|
||||
<w>256</w>
|
||||
<h>256</h>
|
||||
<texture>
|
||||
<path>Aircraft/T38/Instruments/Textures/radar_frame.rgb</path>
|
||||
<x1>0</x1>
|
||||
<y1>0</y1>
|
||||
<x2>1</x2>
|
||||
<y2>1</y2>
|
||||
</texture>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>range knob</name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>instrumentation/radar/range</property>
|
||||
<value>20</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<w>22</w>
|
||||
<h>22</h>
|
||||
<texture>
|
||||
<path>Aircraft/T38/Instruments/Textures/radar_misc.rgb</path>
|
||||
<x1>0.0273437</x1>
|
||||
<y1>0.9101562</y1>
|
||||
<x2>0.0898437</x2>
|
||||
<y2>0.9765662</y2>
|
||||
</texture>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-108</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>-112</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>rotation</type>
|
||||
<offset>-45</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>range knob</name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>instrumentation/radar/range</property>
|
||||
<value>40</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<w>22</w>
|
||||
<h>22</h>
|
||||
<texture>
|
||||
<path>Aircraft/T38/Instruments/Textures/radar_misc.rgb</path>
|
||||
<x1>0.0273437</x1>
|
||||
<y1>0.9101562</y1>
|
||||
<x2>0.0898437</x2>
|
||||
<y2>0.9765662</y2>
|
||||
</texture>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-108</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>-112</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>rotation</type>
|
||||
<offset>40</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>altitude</name>
|
||||
<type>text</type>
|
||||
<font>led</font>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>0.96</red>
|
||||
<green>1.0</green>
|
||||
<blue>0.96</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>number-value</type>
|
||||
<property>ai/models/aircraft[1]/position/altitude-ft</property>
|
||||
<scale>0.001</scale>
|
||||
<format>%2.1f</format>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>85</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>-121</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>outer range ring</name>
|
||||
<type>text</type>
|
||||
<font>led</font>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>0.96</red>
|
||||
<green>1.0</green>
|
||||
<blue>0.96</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>number-value</type>
|
||||
<property>instrumentation/radar/range</property>
|
||||
<format>%2.0f</format>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-90</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>66</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>inner range ring</name>
|
||||
<type>text</type>
|
||||
<font>led</font>
|
||||
<point-size>6</point-size>
|
||||
<color>
|
||||
<red>0.96</red>
|
||||
<green>1.0</green>
|
||||
<blue>0.96</blue>
|
||||
</color>
|
||||
<chunks>
|
||||
<chunk>
|
||||
<type>number-value</type>
|
||||
<property>instrumentation/radar/range</property>
|
||||
<scale>0.5</scale>
|
||||
<format>%2.0f</format>
|
||||
</chunk>
|
||||
</chunks>
|
||||
<transformations>
|
||||
<transformation>
|
||||
<type>x-shift</type>
|
||||
<offset>-50</offset>
|
||||
</transformation>
|
||||
<transformation>
|
||||
<type>y-shift</type>
|
||||
<offset>32</offset>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
|
||||
</layers>
|
||||
</PropertyList>
|
Loading…
Add table
Reference in a new issue