443 lines
11 KiB
XML
443 lines
11 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<PropertyList>
|
|
|
|
<path>lat_rev.ac</path>
|
|
|
|
<!-- mCDU Display Brightness -->
|
|
|
|
<animation>
|
|
<type>material</type>
|
|
<object-name>white</object-name>
|
|
<emission>
|
|
<red>1</red>
|
|
<green>1</green>
|
|
<blue>1</blue>
|
|
<factor-prop>/instrumentation/mcdu/brt</factor-prop>
|
|
</emission>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>material</type>
|
|
<object-name>green</object-name>
|
|
<emission>
|
|
<red>0</red>
|
|
<green>0.37</green>
|
|
<blue>0</blue>
|
|
<factor-prop>/instrumentation/mcdu/brt</factor-prop>
|
|
</emission>
|
|
<diffuse>
|
|
<red>0</red>
|
|
<green>0.37</green>
|
|
<blue>0</blue>
|
|
</diffuse>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>material</type>
|
|
<object-name>enable_altn</object-name>
|
|
<emission>
|
|
<red>0</red>
|
|
<green>0.4823</green>
|
|
<blue>0.5372</blue>
|
|
<factor-prop>/instrumentation/mcdu/brt</factor-prop>
|
|
</emission>
|
|
<diffuse>
|
|
<red>0</red>
|
|
<green>0.4823</green>
|
|
<blue>0.5372</blue>
|
|
</diffuse>
|
|
</animation>
|
|
|
|
<!-- Button Pick Animations -->
|
|
|
|
<animation>
|
|
<type>pick</type>
|
|
<object-name>l2</object-name>
|
|
<action>
|
|
<button>0</button>
|
|
<repeatable type="bool">false</repeatable>
|
|
<binding>
|
|
<command>nasal</command>
|
|
<script>
|
|
|
|
var dep = getprop("/instrumentation/mcdu/lat_rev/dep");
|
|
|
|
var arr = getprop("/instrumentation/mcdu/lat_rev/arr");
|
|
|
|
# HOLD
|
|
|
|
if ((dep == 0) and (arr == 0)) {
|
|
|
|
var id = getprop("/instrumentation/mcdu/lat_rev/id");
|
|
|
|
var name = getprop("/autopilot/route-manager/route/wp[" ~ id ~ "]/id");
|
|
|
|
setprop("/instrumentation/mcdu/page", "hold");
|
|
|
|
setprop("/instrumentation/mcdu/hold/wp", name);
|
|
|
|
setprop("/instrumentation/mcdu/hold/wp_id", id);
|
|
|
|
var wp = getprop("/instrumentation/mcdu/hold/wp");
|
|
|
|
setprop("/instrumentation/gps/scratch/query", wp);
|
|
|
|
if (3 >= size(wp))
|
|
setprop("/instrumentation/gps/scratch/type", "vor");
|
|
else
|
|
setprop("/instrumentation/gps/scratch/type", "fix");
|
|
|
|
setprop("/instrumentation/gps/command", "search");
|
|
|
|
setprop("/flight-management/hold/crs", getprop("/instrumentation/gps/scratch/mag-bearing-deg"));
|
|
|
|
}
|
|
|
|
# DEPARTURE
|
|
|
|
elsif (dep == 1){
|
|
var fp = mcdu.f_pln.get_current_flightplan();
|
|
var dep = fp.departure;
|
|
if(dep != nil)
|
|
mcdu.sid.select_arpt(dep.id);
|
|
}
|
|
|
|
# ARRIVAL
|
|
|
|
else{
|
|
var dest_arpt = mcdu.f_pln.get_destination_airport();
|
|
var dest_id = (dest_arpt != nil ? dest_arpt.id : getprop("autopilot/route-manager/destination/airport"));
|
|
mcdu.star.select_arpt(dest_id);
|
|
}
|
|
|
|
|
|
</script>
|
|
</binding>
|
|
</action>
|
|
</animation>
|
|
|
|
<!-- ILS Approach is automatically set when arrival is selected -->
|
|
|
|
<!-- animation>
|
|
<type>pick</type>
|
|
<object-name>l3</object-name>
|
|
<action>
|
|
<button>0</button>
|
|
<repeatable type="bool">false</repeatable>
|
|
<binding>
|
|
<command>nasal</command>
|
|
<script>
|
|
# APPROACH
|
|
|
|
else
|
|
mcdu.iap.select_arpt(getprop("autopilot/route-manager/destination/airport"));
|
|
|
|
</script>
|
|
</binding>
|
|
</action>
|
|
</animation -->
|
|
|
|
<animation>
|
|
<type>pick</type>
|
|
<object-name>l4</object-name>
|
|
<action>
|
|
<button>0</button>
|
|
<repeatable type="bool">false</repeatable>
|
|
<binding>
|
|
<command>nasal</command>
|
|
<script>
|
|
if(getprop('/instrumentation/mcdu/lat_rev/enable-altn')){
|
|
var idx = getprop("/instrumentation/mcdu/lat_rev/id");
|
|
mcdu.f_pln.enable_alternate(idx);
|
|
mcdu.f_pln.update_disp();
|
|
setprop("/instrumentation/mcdu/page", "f-pln");
|
|
}
|
|
</script>
|
|
</binding>
|
|
</action>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>pick</type>
|
|
<object-name>r6</object-name>
|
|
<action>
|
|
<button>0</button>
|
|
<repeatable type="bool">false</repeatable>
|
|
<binding>
|
|
<command>nasal</command>
|
|
<script>
|
|
# Direct To
|
|
|
|
#setprop("/flight-management/hold/init", 0);
|
|
|
|
#setprop("/autopilot/route-manager/input", "@ACTIVATE");
|
|
|
|
var id = getprop("/instrumentation/mcdu/lat_rev/id");
|
|
|
|
#setprop("/autopilot/route-manager/input", "@JUMP" ~ id);
|
|
|
|
#setprop("/flight-management/current-wp", id);
|
|
mcdu.f_pln.dir_to(id);
|
|
setprop("/instrumentation/mcdu/page", "f-pln");
|
|
|
|
mcdu.f_pln.update_disp();
|
|
|
|
</script>
|
|
</binding>
|
|
</action>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>pick</type>
|
|
<object-name>l5</object-name>
|
|
<action>
|
|
<button>0</button>
|
|
<repeatable type="bool">false</repeatable>
|
|
<binding>
|
|
<command>nasal</command>
|
|
<script>
|
|
|
|
# Remove WP
|
|
|
|
mcdu.lat_rev.rm_wp(getprop("/instrumentation/mcdu/lat_rev/id"));
|
|
|
|
# Remove Hold if Exists
|
|
|
|
var hold = getprop("/flight-management/hold/wp_id");
|
|
|
|
var lat_rev = getprop("/instrumentation/mcdu/lat_rev/id");
|
|
|
|
if (lat_rev == hold) {
|
|
|
|
setprop("/flight-management/hold/wp", "---");
|
|
|
|
setprop("/flight-management/hold/wp_id", 0);
|
|
|
|
setprop("/instrumentation/mcdu/f-pln/hold-id", 0);
|
|
|
|
setprop("/instrumentation/mcdu/f-pln/show-hold", 0);
|
|
|
|
}
|
|
|
|
setprop("/instrumentation/mcdu/page", "f-pln");
|
|
|
|
mcdu.f_pln.update_disp();
|
|
|
|
</script>
|
|
</binding>
|
|
</action>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>pick</type>
|
|
<object-name>l6</object-name>
|
|
<action>
|
|
<button>0</button>
|
|
<repeatable type="bool">false</repeatable>
|
|
<binding>
|
|
<command>nasal</command>
|
|
<script>
|
|
|
|
setprop("/instrumentation/mcdu/page", "f-pln");
|
|
|
|
mcdu.f_pln.update_disp();
|
|
|
|
</script>
|
|
</binding>
|
|
</action>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>pick</type>
|
|
<object-name>r3</object-name>
|
|
<action>
|
|
<button>0</button>
|
|
<repeatable type="bool">false</repeatable>
|
|
<binding>
|
|
<command>nasal</command>
|
|
<script>
|
|
|
|
# Next WPT
|
|
|
|
var new_id = mcdu.lat_rev.next_wp(getprop("/instrumentation/mcdu/lat_rev/id"), getprop("/instrumentation/mcdu/input"));
|
|
|
|
mcdu.clear_inp();
|
|
|
|
mcdu.lat_rev.revise(new_id);
|
|
|
|
</script>
|
|
</binding>
|
|
</action>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>pick</type>
|
|
<object-name>r4</object-name>
|
|
<action>
|
|
<button>0</button>
|
|
<repeatable type="bool">false</repeatable>
|
|
<binding>
|
|
<command>nasal</command>
|
|
<script>
|
|
|
|
# NEW DESTINATION (COME BACK LATER)
|
|
mcdu.lat_rev.new_dest(getprop("/instrumentation/mcdu/lat_rev/id"), getprop("/instrumentation/mcdu/input"));
|
|
mcdu.clear_inp();
|
|
setprop("/instrumentation/mcdu/page", "f-pln");
|
|
|
|
mcdu.f_pln.update_disp();
|
|
|
|
</script>
|
|
</binding>
|
|
</action>
|
|
</animation>
|
|
|
|
<!-- Show Departure only on start arpt -->
|
|
|
|
<animation>
|
|
<type>select</type>
|
|
<object-name>dep</object-name>
|
|
<condition>
|
|
<equals>
|
|
<property>/instrumentation/mcdu/lat_rev/dep</property>
|
|
<value>1</value>
|
|
</equals>
|
|
</condition>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>select</type>
|
|
<object-name>arr</object-name>
|
|
<condition>
|
|
<equals>
|
|
<property>/instrumentation/mcdu/lat_rev/arr</property>
|
|
<value>1</value>
|
|
</equals>
|
|
</condition>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>select</type>
|
|
<object-name>hold</object-name>
|
|
<condition>
|
|
<and>
|
|
<equals>
|
|
<property>/instrumentation/mcdu/lat_rev/dep</property>
|
|
<value>0</value>
|
|
</equals>
|
|
<equals>
|
|
<property>/instrumentation/mcdu/lat_rev/arr</property>
|
|
<value>0</value>
|
|
</equals>
|
|
</and>
|
|
</condition>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>select</type>
|
|
<object-name>enable_altn</object-name>
|
|
<condition>
|
|
<property>/instrumentation/mcdu/lat_rev/enable-altn</property>
|
|
</condition>
|
|
</animation>
|
|
|
|
<!-- OSGText -->
|
|
|
|
<text>
|
|
<name>green</name>
|
|
<offsets>
|
|
<x-m>-0.0760</x-m>
|
|
<y-m>0.0130</y-m>
|
|
<z-m>-0.0006</z-m>
|
|
<heading-deg>90</heading-deg>
|
|
</offsets>
|
|
<alignment>left-center</alignment>
|
|
<axis-alignment>xy-plane</axis-alignment>
|
|
<type type="string">text-value</type>
|
|
<format type="string">%s</format>
|
|
<property>/instrumentation/mcdu/lat_rev/name</property>
|
|
<truncate type="bool">false</truncate>
|
|
<font type="string">courier-bold.txf</font>
|
|
<draw-text type="bool">true</draw-text>
|
|
<draw-alignment type="bool">false</draw-alignment>
|
|
<draw-boundingbox type="bool">false</draw-boundingbox>
|
|
<character-size>0.005</character-size>
|
|
<font-resolution>
|
|
<width type="int">32</width>
|
|
<height type="int">32</height>
|
|
</font-resolution>
|
|
</text>
|
|
|
|
<text>
|
|
<name>green</name>
|
|
<offsets>
|
|
<x-m>-0.0714</x-m>
|
|
<y-m>0</y-m>
|
|
<z-m>-0.0006</z-m>
|
|
<heading-deg>90</heading-deg>
|
|
</offsets>
|
|
<alignment>center-center</alignment>
|
|
<axis-alignment>xy-plane</axis-alignment>
|
|
<type type="string">text-value</type>
|
|
<format type="string">%s</format>
|
|
<property>/instrumentation/mcdu/lat_rev/pos-string</property>
|
|
<truncate type="bool">false</truncate>
|
|
<font type="string">courier-bold.txf</font>
|
|
<draw-text type="bool">true</draw-text>
|
|
<draw-alignment type="bool">false</draw-alignment>
|
|
<draw-boundingbox type="bool">false</draw-boundingbox>
|
|
<character-size>0.0035</character-size>
|
|
<font-resolution>
|
|
<width type="int">32</width>
|
|
<height type="int">32</height>
|
|
</font-resolution>
|
|
</text>
|
|
|
|
<text>
|
|
<name>enable_altn</name>
|
|
<offsets>
|
|
<x-m>-0.0474</x-m>
|
|
<y-m>-0.0360</y-m>
|
|
<z-m>-0.0006</z-m>
|
|
<heading-deg>90</heading-deg>
|
|
</offsets>
|
|
<alignment>left-center</alignment>
|
|
<axis-alignment>xy-plane</axis-alignment>
|
|
<type type="string">literal</type>
|
|
<text>ENABLE</text>
|
|
<font type="string">courier-bold.txf</font>
|
|
<draw-text type="bool">true</draw-text>
|
|
<draw-alignment type="bool">false</draw-alignment>
|
|
<draw-boundingbox type="bool">false</draw-boundingbox>
|
|
<character-size>0.0030</character-size>
|
|
<font-resolution>
|
|
<width type="int">32</width>
|
|
<height type="int">32</height>
|
|
</font-resolution>
|
|
</text>
|
|
|
|
<text>
|
|
<name>enable_altn</name>
|
|
<offsets>
|
|
<x-m>-0.0424</x-m>
|
|
<y-m>-0.04</y-m>
|
|
<z-m>-0.0006</z-m>
|
|
<heading-deg>90</heading-deg>
|
|
</offsets>
|
|
<alignment>left-center</alignment>
|
|
<axis-alignment>xy-plane</axis-alignment>
|
|
<type type="string">literal</type>
|
|
<text>< ALTN</text>
|
|
<font type="string">courier-bold.txf</font>
|
|
<draw-text type="bool">true</draw-text>
|
|
<draw-alignment type="bool">false</draw-alignment>
|
|
<draw-boundingbox type="bool">false</draw-boundingbox>
|
|
<character-size>0.0035</character-size>
|
|
<font-resolution>
|
|
<width type="int">32</width>
|
|
<height type="int">32</height>
|
|
</font-resolution>
|
|
</text>
|
|
|
|
</PropertyList>
|