Merge branch 'master' of gitorious.org:fg/fgdata
This commit is contained in:
commit
3de799e84e
73 changed files with 64863 additions and 41919 deletions
|
@ -1,27 +0,0 @@
|
|||
N 0 -118.0372167 34.08178333 0.0 J E-01-19 "rwy 01"
|
||||
N 1 -118.0321833 34.09066667 0.0 J E-01-19 "rwy 19"
|
||||
N 2 -118.0369167 34.08166667 0.0 H E ""
|
||||
N 3 -118.03185 34.0906 0.0 H E ""
|
||||
N 4 -118.03515 34.0848 0.0 T E ""
|
||||
N 5 -118.0349667 34.08511667 0.0 T E ""
|
||||
N 6 -118.0348333 34.08466667 0.0 T E ""
|
||||
G 7 -118.0347333 34.08483333 0.0 GS 10 ""
|
||||
N 8 -118.03465 34.08498333 0.0 T E ""
|
||||
N 9 -118.0346 34.08456667 0.0 T E ""
|
||||
G 10 -118.0345167 34.08473333 0.0 GS 10 ""
|
||||
N 11 -118.0344167 34.0849 0.0 T E ""
|
||||
A 0 1 R N ""
|
||||
A 0 2 T N ""
|
||||
A 1 3 T N ""
|
||||
A 2 4 T N ""
|
||||
A 4 5 T N ""
|
||||
A 3 5 T N ""
|
||||
A 4 6 T N ""
|
||||
A 6 9 T Y ""
|
||||
A 5 8 T Y ""
|
||||
A 8 11 T Y ""
|
||||
A 6 7 T Y ""
|
||||
A 7 8 T Y ""
|
||||
A 9 10 T Y ""
|
||||
A 10 11 T Y ""
|
||||
[End]
|
|
@ -1,14 +0,0 @@
|
|||
1 0 -1 0 "@ST approach, @CS, say again please" "Say again"
|
||||
1 0 0 1 "@ST approach, @CS, request landing at @AP" "Request landing at @AP"
|
||||
1 0 0 2 "@ST approach, @CS, request crossing airspace" "Request crossing airspace of @AP"
|
||||
1 0 1 0 "@ST approach, @CS, aborting approach" "Abort approach to @AP"
|
||||
1 1 1 0 "@ST approach, @CS, turn @TD heading @HE, @VD @AL feet" ""
|
||||
1 0 1 1 "@ST approach, @CS, turning @TD heading @HE, @VD @AL feet" "Read back"
|
||||
1 1 2 0 "@ST approach, @CS, turn @TD heading @HE" ""
|
||||
1 0 2 1 "@ST approach, @CS, turning @TD heading @HE" "Read back"
|
||||
1 1 3 0 "@ST approach, @CS, turn @TD heading @HE, You are cleared for approach to runway @RW" ""
|
||||
1 0 3 1 "@ST approach, @CS, turning @TD heading @HE, Cleared to land on runway @RW" "Read back"
|
||||
1 1 4 0 "@ST approach, @CS, you are @MI miles off course, turn @TD heading @HE" ""
|
||||
1 0 4 1 "@ST approach, @CS, turning @TD heading @HE" "Read back"
|
||||
1 1 5 0 "@ST approach, @CS, contact tower on @FR, Good day" ""
|
||||
|
3556
ATC/default.vce
3556
ATC/default.vce
File diff suppressed because it is too large
Load diff
BIN
ATC/default.wav
BIN
ATC/default.wav
Binary file not shown.
155
Aircraft/Generic/Oxygen/oxygen.nas
Normal file
155
Aircraft/Generic/Oxygen/oxygen.nas
Normal file
|
@ -0,0 +1,155 @@
|
|||
###############################################################################
|
||||
##
|
||||
## Oxygen system module for FlightGear.
|
||||
##
|
||||
## Copyright (C) 2010 Vivian Meazza (vivia.meazza(at)lineone.net)
|
||||
## This file is licensed under the GPL license v2 or later.
|
||||
##
|
||||
###############################################################################
|
||||
|
||||
|
||||
# Properties under /consumables/fuel/tank[n]:
|
||||
# + level_cu_ft - Current free oxygen content. Must be set by user code.
|
||||
# + capacity_cu_ft - Tank volume
|
||||
# + selected - boolean indicating tank selection.
|
||||
# + name ...........- string
|
||||
# + pressure - OUTPUT ONLY property, do not try to set
|
||||
|
||||
# Properties under /controls/oxygen/
|
||||
# + altitude-norm - the selected supply altitude normalized 0 - 100% oxygen
|
||||
# + flowrate_cu_ft_ps - Max (100%) Oxygen flow rate
|
||||
|
||||
# + flowrate considerations:
|
||||
# ref http://en.wikipedia.org/wiki/Human_lung
|
||||
#
|
||||
# when maximum (100%) oxygen is selected, we wish to deliver enough oxygen to fill
|
||||
# the pilot's lungs, with slight overpressure.
|
||||
#
|
||||
# let the tidal flow volume - that is the amount of gas which flows
|
||||
# into and out of the lungs on each breath = T ft^3;
|
||||
# and the number of breaths per minute at rest= N min^-1;
|
||||
# but we need to consider a pilot under stress factor = 1.5
|
||||
#
|
||||
# so flowrate (ft^3.sec^-1) = (T*1.5*N)/60
|
||||
#
|
||||
# substituting the values from the reference
|
||||
#
|
||||
# flowrate = 0.01765 * 1.5 * 20 / 60 = 0.008828
|
||||
#
|
||||
# rounding up to provide overpressure
|
||||
#
|
||||
# flowrate = 0.01 (ft^3.sec^-1)
|
||||
|
||||
|
||||
#========================= Initialize ===============================
|
||||
var MAXTANKS = 20;
|
||||
var INHG2PSI = 0.491154077497;
|
||||
|
||||
var initialize = func {
|
||||
|
||||
print( "Initializing Oxygen System ..." );
|
||||
|
||||
props.globals.initNode("/systems/oxygen/serviceable", 1, "BOOL");
|
||||
props.globals.initNode("/sim/freeze/oxygen", 0, "BOOL");
|
||||
props.globals.initNode("/controls/oxygen/altitude-norm", 0.0, "DOUBLE");
|
||||
props.globals.initNode("/controls/oxygen/flowrate-cu-ft-ps", 0.01, "DOUBLE");
|
||||
|
||||
for (var i = 0; i < MAXTANKS; i += 1){
|
||||
props.globals.initNode("/consumables/oxygen/tank["~ i ~ "]/capacity-cu-ft", 0.01, "DOUBLE");
|
||||
props.globals.initNode("/consumables/oxygen/tank["~ i ~ "]/level-cu-ft", 0, "DOUBLE");
|
||||
props.globals.initNode("/consumables/oxygen/tank["~ i ~ "]/selected", 0, "BOOL");
|
||||
props.globals.initNode("/consumables/oxygen/tank["~ i ~ "]/pressure-psi", 50, "DOUBLE");
|
||||
}
|
||||
|
||||
oxygen();
|
||||
|
||||
} #end init
|
||||
|
||||
#========================= Oxygen System ============================
|
||||
var oxygen = func {
|
||||
|
||||
var freeze = getprop("/sim/freeze/oxygen");
|
||||
var serviceable =getprop("/systems/oxygen/serviceable");
|
||||
|
||||
if(freeze or !serviceable) { return; }
|
||||
|
||||
var dt = getprop("sim/time/delta-sec");
|
||||
var oxygen_alt = getprop("controls/oxygen/altitude-norm");
|
||||
var flowrate_cu_ft_ps = getprop("controls/oxygen/flowrate-cu-ft-ps");
|
||||
var Pa = getprop("environment/pressure-inhg") * INHG2PSI;
|
||||
|
||||
var flow_cu_ft = flowrate_cu_ft_ps * oxygen_alt * dt;
|
||||
|
||||
var contents = 0;
|
||||
var cap = 0;
|
||||
var availableTanks = [];
|
||||
var selected = 0;
|
||||
var pressure = 2000;
|
||||
|
||||
# Build a list of available tanks. An available tank is both selected, has
|
||||
# oxygen remaining.and pressure < ambient.
|
||||
var AllTanks = props.globals.getNode("consumables/oxygen").getChildren("tank");
|
||||
|
||||
foreach( var t; AllTanks) {
|
||||
cap = t.getNode("capacity-cu-ft", 1).getValue();
|
||||
contents = t.getNode("level-cu-ft", 1).getValue();
|
||||
selected = t.getNode("selected", 1).getBoolValue();
|
||||
pressure = t.getNode("pressure-psi", 1).getValue();
|
||||
|
||||
if(cap != nil and cap > 0.01 ) {
|
||||
# print ("Pressure ", pressure, " " , Pa);
|
||||
|
||||
if(selected and pressure > Pa) {
|
||||
append(availableTanks, t);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
# print("flow_cu_ft ", flow_cu_ft," " ,size(availableTanks));
|
||||
|
||||
# Subtract flow_cu_ft from tanks, set auxilliary properties. Set out-of-gas
|
||||
# when all tanks are empty.
|
||||
var outOfGas = 0;
|
||||
|
||||
if(size(availableTanks) == 0) {
|
||||
outOfGas = 1;
|
||||
} else {
|
||||
flowPerTank = flow_cu_ft / size(availableTanks);
|
||||
foreach( var t; availableTanks ) {
|
||||
cu_ft = t.getNode("level-cu-ft").getValue();
|
||||
cu_ft -= flowPerTank;
|
||||
cap = t.getNode("capacity-cu-ft", 1).getValue();
|
||||
|
||||
if(cu_ft < 0) { cu_ft = 0;}
|
||||
|
||||
# print ("pressure ", calcPressure(cu_ft, cap));
|
||||
|
||||
t.getNode("level-cu-ft").setDoubleValue(cu_ft);
|
||||
t.getNode("pressure-psi").setDoubleValue(calcPressure(cu_ft, cap));
|
||||
}
|
||||
}
|
||||
|
||||
settimer(oxygen, 0.3);
|
||||
|
||||
} #end oxygen
|
||||
|
||||
# We apply Boyle's Law to derive the pressure in the tank fom the capacity of the
|
||||
# tank and the contents. We ignore the effects of temperature.
|
||||
|
||||
var calcPressure = func (cu_ft, cap){
|
||||
var Vc = cap;
|
||||
var Va = cu_ft;
|
||||
var Pa = 14.7;
|
||||
|
||||
# print (Vc, " ", Va, " ", Pa);
|
||||
|
||||
Pc = (Pa * Va)/Vc;
|
||||
return Pc;
|
||||
} #end calcPressure
|
||||
|
||||
setlistener("sim/signals/fdm-initialized", initialize);
|
||||
|
||||
# end
|
||||
|
File diff suppressed because it is too large
Load diff
Binary file not shown.
Before Width: | Height: | Size: 97 KiB After Width: | Height: | Size: 99 KiB |
Binary file not shown.
39
Aircraft/Instruments-3d/A-14A-OxReg/A-14A.xml
Normal file
39
Aircraft/Instruments-3d/A-14A-OxReg/A-14A.xml
Normal file
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<PropertyList>
|
||||
|
||||
<path>A-14A.ac</path>
|
||||
|
||||
<animation>
|
||||
<type>range</type>
|
||||
<min-m>0</min-m>
|
||||
<max-m>7</max-m>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>material</type>
|
||||
<object-name>A-14A-Ox-pipe</object-name>
|
||||
<object-name>A-14A-Body</object-name>
|
||||
<object-name>A-14A-Alt-selector</object-name>
|
||||
<object-name>A-14A-Hose-pipe</object-name>
|
||||
<object-name>A-14A-main-connector</object-name>
|
||||
<object-name>A-14A-Connector-elbow</object-name>
|
||||
<object-name>A-14A-connector-ring</object-name>
|
||||
<object-name>A-14A-Ox-inlet-pipe</object-name>
|
||||
<object-name>A-14A-Ox-inlet-flang</object-name>
|
||||
<object-name>A-14A-Ox-Con-nut</object-name>
|
||||
<object-name>A-14A-normal-100-pct</object-name>
|
||||
<object-name>A-14A-flang-3</object-name>
|
||||
<object-name>A-14A-flang-1</object-name>
|
||||
<object-name>A-14A-flang-2</object-name>
|
||||
<object-name>A-14A-plug-flang</object-name>
|
||||
<object-name>A-14A-blink-con</object-name>
|
||||
<emission>
|
||||
<factor-prop>controls/lighting/cabin-norm</factor-prop>
|
||||
<red>0.25</red>
|
||||
<green>0.12</green>
|
||||
<blue>0.12</blue>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
</PropertyList>
|
2144
Aircraft/Instruments-3d/AN-APS-13/AN-APS-13-bell-box.ac
Normal file
2144
Aircraft/Instruments-3d/AN-APS-13/AN-APS-13-bell-box.ac
Normal file
File diff suppressed because it is too large
Load diff
BIN
Aircraft/Instruments-3d/AN-APS-13/AN-APS-13-bell-box.rgb
Normal file
BIN
Aircraft/Instruments-3d/AN-APS-13/AN-APS-13-bell-box.rgb
Normal file
Binary file not shown.
BIN
Aircraft/Instruments-3d/AN-APS-13/AN-APS-13-bell-box.xcf
Normal file
BIN
Aircraft/Instruments-3d/AN-APS-13/AN-APS-13-bell-box.xcf
Normal file
Binary file not shown.
26
Aircraft/Instruments-3d/AN-APS-13/AN-APS-13-bell-box.xml
Normal file
26
Aircraft/Instruments-3d/AN-APS-13/AN-APS-13-bell-box.xml
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0"?>
|
||||
<PropertyList>
|
||||
|
||||
<path>AN-APS-13-bell-box.ac</path>
|
||||
|
||||
<animation>
|
||||
<type>range</type>
|
||||
<min-m>0</min-m>
|
||||
<max-m>7</max-m>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>material</type>
|
||||
<object-name>AN/APS-13-bell-panel</object-name>
|
||||
<object-name>AN/APS-13-bell-base</object-name>
|
||||
<object-name>AN/APS-13-bell</object-name>
|
||||
<object-name>AN/APS-13-bell-bolt</object-name>
|
||||
<emission>
|
||||
<factor-prop>controls/lighting/cabin-norm</factor-prop>
|
||||
<red>0.25</red>
|
||||
<green>0.12</green>
|
||||
<blue>0.12</blue>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
</PropertyList>
|
File diff suppressed because it is too large
Load diff
29
Aircraft/Instruments-3d/AN-APS-13/AN-APS-13.xml
Normal file
29
Aircraft/Instruments-3d/AN-APS-13/AN-APS-13.xml
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0"?>
|
||||
<PropertyList>
|
||||
|
||||
<path>AN-APS-13.ac</path>
|
||||
|
||||
<animation>
|
||||
<type>range</type>
|
||||
<min-m>0</min-m>
|
||||
<max-m>7</max-m>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>material</type>
|
||||
<object-name>APS-13-plate</object-name>
|
||||
<object-name>aps-13-lamp</object-name>
|
||||
<object-name>aps-13-power-sw</object-name>
|
||||
<object-name>aps-13-test-sw-plate</object-name>
|
||||
<object-name>asp-13-audio</object-name>
|
||||
<object-name>aps-13-test-sw</object-name>
|
||||
<object-name>aps-13-cable-hole</object-name>
|
||||
<emission>
|
||||
<factor-prop>controls/lighting/cabin-norm</factor-prop>
|
||||
<red>0.25</red>
|
||||
<green>0.12</green>
|
||||
<blue>0.12</blue>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
</PropertyList>
|
BIN
Aircraft/Instruments-3d/AN-APS-13/screwhead-philps.png
Normal file
BIN
Aircraft/Instruments-3d/AN-APS-13/screwhead-philps.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
8506
Aircraft/Instruments-3d/SCR-522C/SCR-522C.ac
Normal file
8506
Aircraft/Instruments-3d/SCR-522C/SCR-522C.ac
Normal file
File diff suppressed because it is too large
Load diff
BIN
Aircraft/Instruments-3d/SCR-522C/SCR-522C.rgb
Normal file
BIN
Aircraft/Instruments-3d/SCR-522C/SCR-522C.rgb
Normal file
Binary file not shown.
356
Aircraft/Instruments-3d/SCR-522C/SCR-522C.xml
Normal file
356
Aircraft/Instruments-3d/SCR-522C/SCR-522C.xml
Normal file
|
@ -0,0 +1,356 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<PropertyList>
|
||||
|
||||
<path>SCR-522C.ac</path>
|
||||
|
||||
<animation>
|
||||
<type>range</type>
|
||||
<min-m>0</min-m>
|
||||
<max-m>7</max-m>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>translate</type>
|
||||
<object-name>SCR-522C-OFF</object-name>
|
||||
<property>/systems/comm/SCR-522C/frequencies/channel-selected</property>
|
||||
<interpolation>
|
||||
<entry>
|
||||
<ind>0</ind>
|
||||
<dep>-0.005</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>1</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>2</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>3</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>4</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
</interpolation>
|
||||
<center>
|
||||
<x-m>-0.00</x-m>
|
||||
<y-m>0.0</y-m>
|
||||
<z-m>-0.0</z-m>
|
||||
</center>
|
||||
<axis>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<z>1</z>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>rotate</type>
|
||||
<object-name>SCR-522C-T-base</object-name>
|
||||
<object-name>SCR-522C-T-sw-handle</object-name>
|
||||
<object-name>SCR-522C-T-stem</object-name>
|
||||
<property>/systems/comm/SCR-522C/tr</property>
|
||||
<interpolation>
|
||||
<entry>
|
||||
<ind>0</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>1</ind>
|
||||
<dep>30</dep>
|
||||
</entry>
|
||||
</interpolation>
|
||||
<center>
|
||||
<x-m>-0.00</x-m>
|
||||
<y-m>-0.01</y-m>
|
||||
<z-m>0.05</z-m>
|
||||
</center>
|
||||
<axis>
|
||||
<x>1</x>
|
||||
<y>0</y>
|
||||
<z>0</z>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>translate</type>
|
||||
<object-name>SCR-522C-A</object-name>
|
||||
<property>/systems/comm/SCR-522C/frequencies/channel-selected</property>
|
||||
<interpolation>
|
||||
<entry>
|
||||
<ind>0</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>1</ind>
|
||||
<dep>-0.005</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>2</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>3</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>4</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
</interpolation>
|
||||
<center>
|
||||
<x-m>-0.00</x-m>
|
||||
<y-m>0.0</y-m>
|
||||
<z-m>-0.0</z-m>
|
||||
</center>
|
||||
<axis>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<z>1</z>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>translate</type>
|
||||
<object-name>SCR-522C-B</object-name>
|
||||
<property>/systems/comm/SCR-522C/frequencies/channel-selected</property>
|
||||
<interpolation>
|
||||
<entry>
|
||||
<ind>0</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>1</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>2</ind>
|
||||
<dep>-0.005</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>3</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>4</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
</interpolation>
|
||||
<center>
|
||||
<x-m>-0.00</x-m>
|
||||
<y-m>0.0</y-m>
|
||||
<z-m>-0.0</z-m>
|
||||
</center>
|
||||
<axis>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<z>1</z>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>translate</type>
|
||||
<object-name>SCR-522C-C</object-name>
|
||||
<property>/systems/comm/SCR-522C/frequencies/channel-selected</property>
|
||||
<interpolation>
|
||||
<entry>
|
||||
<ind>0</ind>
|
||||
<dep>-0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>1</ind>
|
||||
<dep>-0.0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>2</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>3</ind>
|
||||
<dep>-0.005</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>4</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
</interpolation>
|
||||
<center>
|
||||
<x-m>-0.00</x-m>
|
||||
<y-m>0.0</y-m>
|
||||
<z-m>-0.0</z-m>
|
||||
</center>
|
||||
<axis>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<z>1</z>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>translate</type>
|
||||
<object-name>SCR-522C-D</object-name>
|
||||
<property>/systems/comm/SCR-522C/frequencies/channel-selected</property>
|
||||
<interpolation>
|
||||
<entry>
|
||||
<ind>0</ind>
|
||||
<dep>-0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>1</ind>
|
||||
<dep>-0.0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>2</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>3</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>4</ind>
|
||||
<dep>-0.005</dep>
|
||||
</entry>
|
||||
</interpolation>
|
||||
<center>
|
||||
<x-m>-0.00</x-m>
|
||||
<y-m>0.0</y-m>
|
||||
<z-m>-0.0</z-m>
|
||||
</center>
|
||||
<axis>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<z>1</z>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>SCR-522C-lamp-A</object-name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/systems/comm/SCR-522C/frequencies/channel-selected</property>
|
||||
<value>1</value>
|
||||
</equals>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>SCR-522C-lamp-B</object-name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/systems/comm/SCR-522C/frequencies/channel-selected</property>
|
||||
<value>2</value>
|
||||
</equals>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>SCR-522C-lamp-C</object-name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/systems/comm/SCR-522C/frequencies/channel-selected</property>
|
||||
<value>3</value>
|
||||
</equals>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>SCR-522C-lamp-D</object-name>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>/systems/comm/SCR-522C/frequencies/channel-selected</property>
|
||||
<value>4</value>
|
||||
</equals>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>SCR-522C-lamp-T</object-name>
|
||||
<condition>
|
||||
<and>
|
||||
<property>/systems/comm/SCR-522C/tr</property>
|
||||
<greater-than>
|
||||
<property>/systems/comm/SCR-522C/frequencies/channel-selected</property>
|
||||
<value>0</value>
|
||||
</greater-than>
|
||||
</and>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>translate</type>
|
||||
<object-name>SCR-522C-light-cont-1</object-name>
|
||||
<property>/systems/comm/SCR-522C/channel-dimmer</property>
|
||||
<interpolation>
|
||||
<entry>
|
||||
<ind>0</ind>
|
||||
<dep>0.005</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>1.0</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
</interpolation>
|
||||
<axis>
|
||||
<x>1</x>
|
||||
<y>0</y>
|
||||
<z>0</z>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>translate</type>
|
||||
<object-name>SCR-522C-light-cont-2</object-name>
|
||||
<property>/systems/comm/SCR-522C/tr-dimmer</property>
|
||||
<interpolation>
|
||||
<entry>
|
||||
<ind>0</ind>
|
||||
<dep>0.005</dep>
|
||||
</entry>
|
||||
<entry>
|
||||
<ind>1.0</ind>
|
||||
<dep>0</dep>
|
||||
</entry>
|
||||
</interpolation>
|
||||
<axis>
|
||||
<x>1</x>
|
||||
<y>0</y>
|
||||
<z>0</z>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>material</type>
|
||||
<object-name>SCR-522C-top</object-name>
|
||||
<object-name>SCR-522C-box</object-name>
|
||||
<object-name>SCR-522C-A</object-name>
|
||||
<object-name>SCR-522C-B</object-name>
|
||||
<object-name>SCR-522C-C</object-name>
|
||||
<object-name>SCR-522C-D</object-name>
|
||||
<object-name>SCR-522C-T-base</object-name>
|
||||
<object-name>SCR-522C-T-sw-handle</object-name>
|
||||
<object-name>SCR-522C-T-stem</object-name>
|
||||
<object-name>SCR-522C-light-cont-2</object-name>
|
||||
<object-name>SCR-522C-light-cont-1</object-name>
|
||||
<object-name>SCR-522C-OFF</object-name>
|
||||
<object-name>right-outer-bracket</object-name>
|
||||
<object-name>left-inner-bracket</object-name>
|
||||
<object-name>left-outer-bracket</object-name>
|
||||
<emission>
|
||||
<factor-prop>controls/lighting/cabin-norm</factor-prop>
|
||||
<red>0.28</red>
|
||||
<green>0.18</green>
|
||||
<blue>0.18</blue>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
</PropertyList>
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
|
@ -1728,6 +1728,141 @@
|
|||
</center>
|
||||
</animation>
|
||||
|
||||
<!-- Fuel Selector -->
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>FuelSelectorOff</object-name>
|
||||
<condition>
|
||||
<and>
|
||||
<not>
|
||||
<property>consumables/fuel/tank[0]/selected</property>
|
||||
</not>
|
||||
<not>
|
||||
<property>consumables/fuel/tank[1]/selected</property>
|
||||
</not>
|
||||
</and>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>FuelSelectorLeft</object-name>
|
||||
<condition>
|
||||
<and>
|
||||
<property>consumables/fuel/tank[0]/selected</property>
|
||||
<not>
|
||||
<property>consumables/fuel/tank[1]/selected</property>
|
||||
</not>
|
||||
</and>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>FuelSelectorRight</object-name>
|
||||
<condition>
|
||||
<and>
|
||||
<not>
|
||||
<property>consumables/fuel/tank[0]/selected</property>
|
||||
</not>
|
||||
<property>consumables/fuel/tank[1]/selected</property>
|
||||
</and>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>FuelSelectorBoth</object-name>
|
||||
<condition>
|
||||
<and>
|
||||
<property>consumables/fuel/tank[0]/selected</property>
|
||||
<property>consumables/fuel/tank[1]/selected</property>
|
||||
</and>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>FuelHotspotOff</object-name>
|
||||
<visible>true</visible>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>property-assign</command>
|
||||
<property>consumables/fuel/tank[0]/selected</property>
|
||||
<value>false</value>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>property-assign</command>
|
||||
<property>consumables/fuel/tank[1]/selected</property>
|
||||
<value>false</value>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>FuelHotspotLeft</object-name>
|
||||
<visible>true</visible>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>property-assign</command>
|
||||
<property>consumables/fuel/tank[0]/selected</property>
|
||||
<value>true</value>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>property-assign</command>
|
||||
<property>consumables/fuel/tank[1]/selected</property>
|
||||
<value>false</value>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>FuelHotspotRight</object-name>
|
||||
<visible>true</visible>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>property-assign</command>
|
||||
<property>consumables/fuel/tank[0]/selected</property>
|
||||
<value>false</value>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>property-assign</command>
|
||||
<property>consumables/fuel/tank[1]/selected</property>
|
||||
<value>true</value>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>FuelHotspotBoth</object-name>
|
||||
<visible>true</visible>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>property-assign</command>
|
||||
<property>consumables/fuel/tank[0]/selected</property>
|
||||
<value>true</value>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>property-assign</command>
|
||||
<property>consumables/fuel/tank[1]/selected</property>
|
||||
<value>true</value>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<!-- Switches -->
|
||||
|
||||
<animation>
|
||||
<type>rotate</type>
|
||||
|
|
BIN
Aircraft/c172p/Models/fuel-selector.png
Normal file
BIN
Aircraft/c172p/Models/fuel-selector.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 65 KiB |
|
@ -123,5 +123,15 @@ var scissor_angle = func(H,C,L,phi) {
|
|||
#
|
||||
setlistener("sim/signals/fdm-initialized", init_actions);
|
||||
|
||||
#
|
||||
# Listeners to tie the /consumables/fuels/tank[]/selected to
|
||||
# /fdm/jsbsim/propulsion/tank[]/priority
|
||||
|
||||
setlistener("consumables/fuel/tank[0]/selected", func(selected) {
|
||||
setprop("/fdm/jsbsim/propulsion/tank[0]/priority", selected.getBoolValue() ? 1 : 0);
|
||||
});
|
||||
|
||||
setlistener("consumables/fuel/tank[1]/selected", func(selected) {
|
||||
setprop("/fdm/jsbsim/propulsion/tank[1]/priority", selected.getBoolValue() ? 1 : 0);
|
||||
});
|
||||
|
||||
|
|
|
@ -29,6 +29,9 @@ td center { margin-top:0em; margin-bottom:0em; }
|
|||
.Canvas { position:relative; }
|
||||
img.math{vertical-align:middle;}
|
||||
li p.indent { text-indent: 0em }
|
||||
li p:first-child{ margin-top:0em; }
|
||||
li p:last-child, li div:last-child { margin-bottom:0.5em; }
|
||||
li p~ul:last-child, li p~ol:last-child{ margin-bottom:0.5em; }
|
||||
.enumerate1 {list-style-type:decimal;}
|
||||
.enumerate2 {list-style-type:lower-alpha;}
|
||||
.enumerate3 {list-style-type:lower-roman;}
|
||||
|
@ -45,7 +48,7 @@ div.verbatim {font-family: monospace; white-space: nowrap; text-align:left; clea
|
|||
.fbox {padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; }
|
||||
div.fbox {display:table}
|
||||
div.center div.fbox {text-align:center; clear:both; padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; }
|
||||
table.minipage{width:100%;}
|
||||
div.minipage{width:100%;}
|
||||
div.center, div.center div.center {text-align: center; margin-left:1em; margin-right:1em;}
|
||||
div.center div {text-align: left;}
|
||||
div.flushright, div.flushright div.flushright {text-align: right;}
|
||||
|
@ -62,6 +65,8 @@ span.footnote-mark sup.textsuperscript, span.footnote-mark a sup.textsuperscript
|
|||
div.tabular, div.center div.tabular {text-align: center; margin-top:0.5em; margin-bottom:0.5em; }
|
||||
table.tabular td p{margin-top:0em;}
|
||||
table.tabular {margin-left: auto; margin-right: auto;}
|
||||
td p:first-child{ margin-top:0em; }
|
||||
td p:last-child{ margin-bottom:0em; }
|
||||
div.td00{ margin-left:0pt; margin-right:0pt; }
|
||||
div.td01{ margin-left:0pt; margin-right:5pt; }
|
||||
div.td10{ margin-left:5pt; margin-right:0pt; }
|
||||
|
@ -79,8 +84,9 @@ span.TEX span.E{ position:relative;top:0.5ex;left:-0.0417em;}
|
|||
a span.TEX span.E {text-decoration: none; }
|
||||
span.LATEX span.A{ position:relative; top:-0.5ex; left:-0.4em; font-size:85%;}
|
||||
span.LATEX span.TEX{ position:relative; left: -0.4em; }
|
||||
div.float img, div.float .caption {text-align:center;}
|
||||
div.figure img, div.figure .caption {text-align:center;}
|
||||
div.float, div.figure {margin-left: auto; margin-right: auto;}
|
||||
div.float img {text-align:center;}
|
||||
div.figure img {text-align:center;}
|
||||
.marginpar {width:20%; float:right; text-align:left; margin-left:auto; margin-top:0.5em; font-size:85%; text-decoration:underline;}
|
||||
.marginpar p{margin-top:0.4em; margin-bottom:0.4em;}
|
||||
table.equation {width:100%;}
|
||||
|
@ -97,11 +103,12 @@ table.pmatrix {width:100%;}
|
|||
span.pmatrix img{vertical-align:middle;}
|
||||
div.pmatrix {text-align:center;}
|
||||
table.pmatrix {width:100%;}
|
||||
span.bar-css {text-decoration:overline;}
|
||||
img.cdots{vertical-align:middle;}
|
||||
.partToc a, .partToc, .likepartToc a, .likepartToc {line-height: 200%; font-weight:bold; font-size:110%;}
|
||||
.index-item, .index-subitem, .index-subsubitem {display:block}
|
||||
.caption td.id{font-weight: bold; white-space: nowrap; }
|
||||
table.caption {text-align:center;}
|
||||
div.caption {text-indent:-2em; margin-left:3em; margin-right:1em; text-align:left;}
|
||||
div.caption span.id{font-weight: bold; white-space: nowrap; }
|
||||
h1.partHead{text-align: center}
|
||||
p.bibitem { text-indent: -2em; margin-left: 2em; margin-top:0.6em; margin-bottom:0.6em; }
|
||||
p.bibitem-p { text-indent: 0em; margin-left: 2em; margin-top:0.6em; margin-bottom:0.6em; }
|
||||
|
@ -117,7 +124,7 @@ div.thanks{text-align:left; margin-left:10%; font-size:85%; font-style:italic; }
|
|||
div.author{white-space: nowrap;}
|
||||
.quotation {margin-bottom:0.25em; margin-top:0.25em; margin-left:1em; }
|
||||
.abstract p {margin-left:5%; margin-right:5%;}
|
||||
table.abstract {width:100%;}
|
||||
div.abstract {width:100%;}
|
||||
.subsectionToc, .likesubsectionToc {margin-left:2em;}
|
||||
.subsubsectionToc, .likesubsubsectionToc {margin-left:4em;}
|
||||
.figure img.graphics {margin-left:10%;}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<meta name="originator" content="TeX4ht (http://www.cse.ohio-state.edu/~gurari/TeX4ht/)">
|
||||
<!-- html,2,info,next,sections+ -->
|
||||
<meta name="src" content="FGShortRef.tex">
|
||||
<meta name="date" content="2010-03-03 18:26:00">
|
||||
<meta name="date" content="2010-12-29 17:55:00">
|
||||
<link rel="stylesheet" type="text/css" href="FGShortRef.css">
|
||||
</head><body
|
||||
>
|
||||
|
@ -31,7 +31,7 @@ id="TBL-1-2"></colgroup><tr
|
|||
class="td11"><span
|
||||
class="ptmb7t-x-x-70">Program Start:</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-1-1-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Linux/UNIX via the fgfs under FlightGear/, </span></td>
|
||||
class="ptmr7t-x-x-70">Linux/UNIX via fgfs under FlightGear/, </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-1-2-"><td style="white-space:nowrap; text-align:left;" id="TBL-1-2-1"
|
||||
class="td11"> </td><td style="white-space:nowrap; text-align:left;" id="TBL-1-2-2"
|
||||
|
@ -58,25 +58,25 @@ class="cmsy-7">\ </span></td>
|
|||
class="td11"><span
|
||||
class="ptmb7t-x-x-70">Engine Start: </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-1-4-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Put ignition switch to BOTH (“</span><span
|
||||
class="ptmr7t-x-x-70">Set ignition switch to BOTH (“</span><span
|
||||
class="cmsy-7">}</span><span
|
||||
class="ptmr7t-x-x-70">” three times). Set mixture to 100%. Set throttle to about 25%. Operate starter using the “s” key.</span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-1-5-"><td style="white-space:nowrap; text-align:left;" id="TBL-1-5-1"
|
||||
class="td11"> </td><td style="white-space:nowrap; text-align:left;" id="TBL-1-5-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Once the engine has started, set throttle back to idle. Release parking brake, if applied. </span></td>
|
||||
</tr></table></div>
|
||||
class="ptmr7t-x-x-70">Once the engine has started, set throttle back to idle. Release parking brake (“B”), if applied. </span></td></tr></table>
|
||||
</div>
|
||||
<!--l. 74--><p class="noindent" ><span
|
||||
class="ptmb7t-x-x-70">Keyboard controls:</span>
|
||||
<table class="multicols" id="multicols-1"><tr><td class="multicol-1">
|
||||
<!--l. 77--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Tab. 1: </span><span
|
||||
class="ptmri7t-x-x-70">Main keyboard controls on the numeric keypad with activated </span><span
|
||||
class="ptmr7t-x-x-70">Table 1: </span><span
|
||||
class="ptmri7t-x-x-70">Directional controls (activated </span><span
|
||||
class="pcrro7t-x-x-70">NumLock</span><span
|
||||
class="ptmri7t-x-x-70">.</span><br
|
||||
class="ptmr7t-x-x-70">)</span><br
|
||||
class="newline" />
|
||||
<!--l. 81--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-2" class="tabular"
|
||||
<!--l. 80--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-2" class="tabular"
|
||||
cellspacing="0" cellpadding="0" rules="groups"
|
||||
><colgroup id="TBL-2-1g"><col
|
||||
id="TBL-2-1"></colgroup><colgroup id="TBL-2-2g"><col
|
||||
|
@ -94,8 +94,7 @@ class="td11"><span
|
|||
class="ptmr7t-x-x-70">9 / 3 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-2-2-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Throttle</span><a
|
||||
id="dx1-2"></a> </td>
|
||||
</tr><tr
|
||||
id="dx1-2"></a> </td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-2-3-"><td style="white-space:nowrap; text-align:left;" id="TBL-2-3-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">4 / 6 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-2-3-2"
|
||||
|
@ -132,83 +131,91 @@ class="ptmr7t-x-x-70">Elevator trim</span><a
|
|||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-2-8-"><td style="white-space:nowrap; text-align:left;" id="TBL-2-8-1"
|
||||
class="td11"> </td>
|
||||
</tr></table></div>
|
||||
<!--l. 86--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Tab. 2: </span><span
|
||||
class="ptmri7t-x-x-70">View directions accessible after de-activating </span><span
|
||||
class="pcrro7t-x-x-70">NumLock </span><span
|
||||
class="ptmri7t-x-x-70">on the numeric keypad.</span>
|
||||
<!--l. 90--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-3" class="tabular"
|
||||
class="td11"> </td></tr></table></div>
|
||||
<!--l. 85--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Table 2: </span><span
|
||||
class="ptmri7t-x-x-70">Engine controls</span>
|
||||
<!--l. 89--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-3" class="tabular"
|
||||
cellspacing="0" cellpadding="0" rules="groups"
|
||||
><colgroup id="TBL-3-1g"><col
|
||||
id="TBL-3-1"></colgroup><colgroup id="TBL-3-2g"><col
|
||||
id="TBL-3-2"></colgroup><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-1-"><td style="white-space:nowrap; text-align:center;" id="TBL-3-1-1"
|
||||
style="vertical-align:baseline;" id="TBL-3-1-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-1-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Numeric Key</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-1-2"
|
||||
class="ptmr7t-x-x-70">Key </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-1-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">View direction</span><a
|
||||
id="dx1-7"></a></td>
|
||||
class="ptmr7t-x-x-70">Action </span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-2-"><td style="white-space:nowrap; text-align:center;" id="TBL-3-2-1"
|
||||
style="vertical-align:baseline;" id="TBL-3-2-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-2-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift-8 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-2-2"
|
||||
class="ptmr7t-x-x-70">! </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-2-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Forward </span></td>
|
||||
class="ptmr7t-x-x-70">Select 1st engine </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-3-"><td style="white-space:nowrap; text-align:center;" id="TBL-3-3-1"
|
||||
style="vertical-align:baseline;" id="TBL-3-3-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-3-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift-7 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-3-2"
|
||||
class="ptmr7t-x-x-70">@ </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-3-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Left/forward </span></td>
|
||||
class="ptmr7t-x-x-70">Select 2nd engine </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-4-"><td style="white-space:nowrap; text-align:center;" id="TBL-3-4-1"
|
||||
style="vertical-align:baseline;" id="TBL-3-4-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-4-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift-4 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-4-2"
|
||||
class="ptmr7t-x-x-70"># </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-4-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Left </span></td>
|
||||
class="ptmr7t-x-x-70">Select 3rd engine </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-5-"><td style="white-space:nowrap; text-align:center;" id="TBL-3-5-1"
|
||||
style="vertical-align:baseline;" id="TBL-3-5-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-5-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift-1 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-5-2"
|
||||
class="ptmr7t-x-x-70">$ </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-5-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Left/back </span></td>
|
||||
class="ptmr7t-x-x-70">Select 4th engine </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-6-"><td style="white-space:nowrap; text-align:center;" id="TBL-3-6-1"
|
||||
style="vertical-align:baseline;" id="TBL-3-6-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-6-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift-2 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-6-2"
|
||||
class="cmsy-7">~ </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-6-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Back </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-7-"><td style="white-space:nowrap; text-align:center;" id="TBL-3-7-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">Shift-3 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-7-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Right/back </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-8-"><td style="white-space:nowrap; text-align:center;" id="TBL-3-8-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">Shift-6 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-8-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Right </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-9-"><td style="white-space:nowrap; text-align:center;" id="TBL-3-9-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">Shift-9 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-9-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Right/forward </span></td>
|
||||
class="ptmr7t-x-x-70">Select all engines </span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-10-"><td style="white-space:nowrap; text-align:center;" id="TBL-3-10-1"
|
||||
class="td11"> </td>
|
||||
</tr></table></div>
|
||||
<!--l. 95--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Tab. 3: </span><span
|
||||
class="ptmri7t-x-x-70">Display options.</span>
|
||||
<!--l. 99--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-4" class="tabular"
|
||||
style="vertical-align:baseline;" id="TBL-3-7-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-7-1"
|
||||
class="td11"><span
|
||||
class="cmsy-7">{ </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-7-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Decrease magneto on selected engine </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-8-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-8-1"
|
||||
class="td11"><span
|
||||
class="cmsy-7">} </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-8-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Increase magneto on selected engine </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-9-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-9-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">s </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-9-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Fire starter on selected engine(s) </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-10-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-10-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">M / m</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-10-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Lean/Enrich selected engine mixture </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-11-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-11-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">N / n </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-3-11-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Decrease/Increase selected propeller RPM</span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-3-12-"><td style="white-space:nowrap; text-align:left;" id="TBL-3-12-1"
|
||||
class="td11"> </td></tr></table></div>
|
||||
<!--l. 94--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Table 3: </span><span
|
||||
class="ptmri7t-x-x-70">Miscellaneous aircraft controls</span>
|
||||
<!--l. 98--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-4" class="tabular"
|
||||
cellspacing="0" cellpadding="0" rules="groups"
|
||||
><colgroup id="TBL-4-1g"><col
|
||||
id="TBL-4-1"></colgroup><colgroup id="TBL-4-2g"><col
|
||||
|
@ -223,113 +230,89 @@ class="ptmr7t-x-x-70">Action
|
|||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-2-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-2-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">P </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-2-2"
|
||||
class="ptmr7t-x-x-70">b </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-2-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle instrument panel</span><a
|
||||
id="dx1-8"></a> <span
|
||||
class="ptmr7t-x-x-70">on/off </span></td>
|
||||
class="ptmr7t-x-x-70">Apply all brakes</span><a
|
||||
id="dx1-7"></a> </td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-3-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-3-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">c </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-3-2"
|
||||
class="ptmr7t-x-x-70">, / . </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-3-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle3D/2D cockpit</span> <a
|
||||
id="dx1-9"></a><span
|
||||
class="ptmr7t-x-x-70">(if both are available)</span> <a
|
||||
id="dx1-10"></a><a
|
||||
id="dx1-11"></a></td>
|
||||
class="ptmr7t-x-x-70">Apply left/right brake </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-4-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-4-1"
|
||||
class="td11"> </td><td style="white-space:nowrap; text-align:left;" id="TBL-4-4-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">S </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-4-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Cycle panel style full/mini </span></td>
|
||||
class="ptmr7t-x-x-70">(useful for differential braking</span><a
|
||||
id="dx1-8"></a><span
|
||||
class="ptmr7t-x-x-70">)</span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-5-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-5-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift-F5/F6</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-5-2"
|
||||
class="ptmr7t-x-x-70">l </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-5-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift the panel in y direction </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle tail-wheel lock</span><a
|
||||
id="dx1-9"></a> </td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-6-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-6-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift-F7/F8</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-6-2"
|
||||
class="ptmr7t-x-x-70">B </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-6-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift the panel in x direction </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle parking brake</span> <a
|
||||
id="dx1-10"></a><a
|
||||
id="dx1-11"></a> </td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-7-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-7-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift-F3 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-7-2"
|
||||
class="ptmr7t-x-x-70">g/G </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-7-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Read a panel from a property list </span></td>
|
||||
class="ptmr7t-x-x-70">Raise/lower landing gear</span><a
|
||||
id="dx1-12"></a><a
|
||||
id="dx1-13"></a> </td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-8-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-8-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Ctrl-c </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-8-2"
|
||||
class="ptmr7t-x-x-70">Space </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-8-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle panel/cockpit hotspot visibility </span></td>
|
||||
class="ptmr7t-x-x-70">Push To Talk (PTT) </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-9-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-9-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">i/I </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-9-2"
|
||||
class="ptmr7t-x-x-70">- / </span><span
|
||||
class="ptmr7t-x-x-70">_ </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-9-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Minimize/maximize HUD </span></td>
|
||||
class="ptmr7t-x-x-70">MP text chat menu/entry </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-10-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-10-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">h/H </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-10-2"
|
||||
class="cmr-7">[ </span><span
|
||||
class="ptmr7t-x-x-70">/ </span><span
|
||||
class="cmr-7">] </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-10-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Change color of HUD/toggle HUD off </span></td>
|
||||
class="ptmr7t-x-x-70">Retract/extend flaps</span><a
|
||||
id="dx1-14"></a> </td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-11-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-11-1"
|
||||
class="td11"> </td><td style="white-space:nowrap; text-align:left;" id="TBL-4-11-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">forward/backward </span></td>
|
||||
class="ptmr7t-x-x-70">j / k </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-11-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Retract/extend spoilers</span><a
|
||||
id="dx1-15"></a> </td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-12-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-12-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">x/X </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-12-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-B</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-12-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Zoom in/out </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-13-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-13-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">v/V </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-13-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Cycle view modes</span><a
|
||||
id="dx1-12"></a> <span
|
||||
class="ptmr7t-x-x-70">forth and back </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-14-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-14-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Ctrl-v </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-14-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Reset view modes</span><a
|
||||
id="dx1-13"></a> <span
|
||||
class="ptmr7t-x-x-70">to pilot view </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-15-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-15-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">z/Z </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-15-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Increase/Decrease visibility (fog) </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-16-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-16-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">F10 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-4-16-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle menu on/off </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle speed brakes </span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-4-17-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-17-1"
|
||||
class="td11"> </td>
|
||||
</tr></table></div>
|
||||
<!--l. 102--><p class="indent" >
|
||||
<!--l. 108--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Tab. 4: </span><span
|
||||
class="ptmri7t-x-x-70">Autopilot and related controls.</span>
|
||||
<!--l. 112--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-5" class="tabular"
|
||||
style="vertical-align:baseline;" id="TBL-4-13-"><td style="white-space:nowrap; text-align:left;" id="TBL-4-13-1"
|
||||
class="td11"> </td></tr></table></div>
|
||||
<!--l. 104--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Table 4: </span><span
|
||||
class="ptmri7t-x-x-70">General simulator controls</span>
|
||||
<!--l. 108--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-5" class="tabular"
|
||||
cellspacing="0" cellpadding="0" rules="groups"
|
||||
><colgroup id="TBL-5-1g"><col
|
||||
id="TBL-5-1"></colgroup><colgroup id="TBL-5-2g"><col
|
||||
|
@ -344,110 +327,116 @@ class="ptmr7t-x-x-70">Action
|
|||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-5-2-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-2-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Ctrl + A</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-2-2"
|
||||
class="ptmr7t-x-x-70">p </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-2-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle altitude lock</span> <a
|
||||
id="dx1-14"></a> </td>
|
||||
class="ptmr7t-x-x-70">Pause simulator</span> <a
|
||||
id="dx1-16"></a> </td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-5-3-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-3-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Ctrl + G</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-3-2"
|
||||
class="ptmr7t-x-x-70">a / A </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-3-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle glide slope lock (NAV 1) </span></td>
|
||||
class="ptmr7t-x-x-70">Simulation speed up/slow down</span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-5-4-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-4-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Ctrl + H</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-4-2"
|
||||
class="ptmr7t-x-x-70">t / T </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-4-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle heading hold</span><a
|
||||
id="dx1-15"></a> </td>
|
||||
class="ptmr7t-x-x-70">Clock speed up/slow down </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-5-5-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-5-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Ctrl + N</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-5-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-R</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-5-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle NAV 1 lock </span></td>
|
||||
class="ptmr7t-x-x-70">Instant replay </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-5-6-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-6-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Ctrl + S </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-6-2"
|
||||
class="ptmr7t-x-x-70">F3 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-6-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle autothrottle</span><a
|
||||
id="dx1-16"></a> </td>
|
||||
class="ptmr7t-x-x-70">Save screen shot </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-5-7-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-7-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Ctrl + T</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-7-2"
|
||||
class="ptmr7t-x-x-70">ESC </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-7-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle terrain follow (AGL) lock </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-5-8-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-8-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Ctrl + U</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-8-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Add 1000 ft. to your altitude (emergency)</span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-5-9-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-9-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">F6 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-9-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle autopilot heading mode </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-5-10-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-10-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">F11 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-5-10-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Autopilot altitude dialog </span></td>
|
||||
class="ptmr7t-x-x-70">Exit program </span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-5-11-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-11-1"
|
||||
class="td11"> </td>
|
||||
</tr></table></div>
|
||||
|
||||
|
||||
|
||||
<!--l. 117--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Tab. 5: </span><span
|
||||
class="ptmri7t-x-x-70">Special action of keys, if autopilot is enabled.</span>
|
||||
<!--l. 121--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-6" class="tabular"
|
||||
style="vertical-align:baseline;" id="TBL-5-8-"><td style="white-space:nowrap; text-align:left;" id="TBL-5-8-1"
|
||||
class="td11"> </td></tr></table></div>
|
||||
<!--l. 113--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Table 5: </span><span
|
||||
class="ptmri7t-x-x-70">View controls (de-activated </span><span
|
||||
class="pcrro7t-x-x-70">NumLock</span><span
|
||||
class="ptmri7t-x-x-70">)</span>
|
||||
<!--l. 117--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-6" class="tabular"
|
||||
cellspacing="0" cellpadding="0" rules="groups"
|
||||
><colgroup id="TBL-6-1g"><col
|
||||
id="TBL-6-1"></colgroup><colgroup id="TBL-6-2g"><col
|
||||
id="TBL-6-2"></colgroup><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-6-1-"><td style="white-space:nowrap; text-align:left;" id="TBL-6-1-1"
|
||||
style="vertical-align:baseline;" id="TBL-6-1-"><td style="white-space:nowrap; text-align:center;" id="TBL-6-1-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Key</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-1-2"
|
||||
class="ptmr7t-x-x-70">Numpad Key</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-1-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Action </span></td>
|
||||
class="ptmr7t-x-x-70">View direction</span><a
|
||||
id="dx1-17"></a></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-6-2-"><td style="white-space:nowrap; text-align:left;" id="TBL-6-2-1"
|
||||
style="vertical-align:baseline;" id="TBL-6-2-"><td style="white-space:nowrap; text-align:center;" id="TBL-6-2-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">8 / 2</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-2-2"
|
||||
class="ptmr7t-x-x-70">Shift-8 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-2-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Altitude adjust </span></td>
|
||||
class="ptmr7t-x-x-70">Forward </span></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-6-3-"><td style="white-space:nowrap; text-align:center;" id="TBL-6-3-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">Shift-7 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-3-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Left/forward</span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-6-3-"><td style="white-space:nowrap; text-align:left;" id="TBL-6-3-1"
|
||||
style="vertical-align:baseline;" id="TBL-6-4-"><td style="white-space:nowrap; text-align:center;" id="TBL-6-4-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">4 / 6</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-3-2"
|
||||
class="ptmr7t-x-x-70">Shift-4 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-4-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Heading adjust </span></td>
|
||||
class="ptmr7t-x-x-70">Left </span></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-6-5-"><td style="white-space:nowrap; text-align:center;" id="TBL-6-5-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">Shift-1 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-5-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Left/back</span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-6-4-"><td style="white-space:nowrap; text-align:left;" id="TBL-6-4-1"
|
||||
style="vertical-align:baseline;" id="TBL-6-6-"><td style="white-space:nowrap; text-align:center;" id="TBL-6-6-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">9 / 3</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-4-2"
|
||||
class="ptmr7t-x-x-70">Shift-2 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-6-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Autothrottle adjust</span></td>
|
||||
class="ptmr7t-x-x-70">Back </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-6-7-"><td style="white-space:nowrap; text-align:center;" id="TBL-6-7-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">Shift-3 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-7-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Right/back </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-6-8-"><td style="white-space:nowrap; text-align:center;" id="TBL-6-8-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">Shift-6 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-8-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Right </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-6-9-"><td style="white-space:nowrap; text-align:center;" id="TBL-6-9-1"
|
||||
class="td11"> <span
|
||||
class="ptmr7t-x-x-70">Shift-9 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-6-9-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Right/forward </span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-6-5-"><td style="white-space:nowrap; text-align:left;" id="TBL-6-5-1"
|
||||
class="td11"> </td>
|
||||
</tr></table></div>
|
||||
<!--l. 127--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Tab. 6: </span><span
|
||||
class="ptmri7t-x-x-70">Engine control keys</span>
|
||||
<!--l. 131--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-7" class="tabular"
|
||||
style="vertical-align:baseline;" id="TBL-6-10-"><td style="white-space:nowrap; text-align:center;" id="TBL-6-10-1"
|
||||
class="td11"> </td></tr></table></div>
|
||||
<!--l. 125--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Table 6: </span><span
|
||||
class="ptmri7t-x-x-70">Autopilot controls</span>
|
||||
<!--l. 129--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-7" class="tabular"
|
||||
cellspacing="0" cellpadding="0" rules="groups"
|
||||
><colgroup id="TBL-7-1g"><col
|
||||
id="TBL-7-1"></colgroup><colgroup id="TBL-7-2g"><col
|
||||
|
@ -462,73 +451,96 @@ class="ptmr7t-x-x-70">Action
|
|||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-2-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-2-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">! </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-2-2"
|
||||
class="ptmr7t-x-x-70">Backspace</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-2-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Select 1st engine </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle autopilot </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-3-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-3-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">@ </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-3-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-A </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-3-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Select 2nd engine </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle altitude lock</span> <a
|
||||
id="dx1-18"></a> </td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-4-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-4-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70"># </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-4-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-G </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-4-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Select 3rd engine </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle glide slope lock (NAV 1) </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-5-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-5-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">$ </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-5-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-H </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-5-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Select 4th engine </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle heading hold</span><a
|
||||
id="dx1-19"></a> </td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-6-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-6-1"
|
||||
class="td11"><span
|
||||
class="cmsy-7">{ </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-6-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-N </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-6-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Decrease magneto on selected engine </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle NAV 1 lock </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-7-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-7-1"
|
||||
class="td11"><span
|
||||
class="cmsy-7">} </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-7-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-S </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-7-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Increase magneto on selected engine </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle autothrottle</span><a
|
||||
id="dx1-20"></a> </td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-8-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-8-1"
|
||||
class="td11"><span
|
||||
class="cmsy-7">~ </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-8-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-T </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-8-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Select all engines </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle terrain follow (AGL) lock </span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-9-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-9-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">s </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-9-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-U </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-9-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Fire starter on selected engine(s) </span></td>
|
||||
class="ptmr7t-x-x-70">Add 1000 ft. to your altitude (emergency)</span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-10-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-10-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">M/m</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-10-2"
|
||||
class="ptmr7t-x-x-70">F6 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-10-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Lean/Enrich selected engine mixture </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle autopilot heading mode </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-11-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-11-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">N/n </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-11-2"
|
||||
class="ptmr7t-x-x-70">F11 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-11-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Decrease/Increase selected propeller RPM</span></td>
|
||||
class="ptmr7t-x-x-70">Autopilot altitude dialog </span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-12-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-12-1"
|
||||
class="td11"> </td>
|
||||
</tr></table></div>
|
||||
<!--l. 136--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Tab. 7: </span><span
|
||||
class="ptmri7t-x-x-70">Miscellaneous keyboard controls.</span>
|
||||
<!--l. 140--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-8" class="tabular"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">8 / 2 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-12-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Altitude adjust </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-13-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-13-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">4 / 6 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-13-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Heading adjust </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-14-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-14-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">9 / 3 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-7-14-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Autothrottle adjust </span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-7-15-"><td style="white-space:nowrap; text-align:left;" id="TBL-7-15-1"
|
||||
class="td11"> </td></tr></table></div>
|
||||
|
||||
|
||||
|
||||
<!--l. 134--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Table 7: </span><span
|
||||
class="ptmri7t-x-x-70">Display controls</span>
|
||||
<!--l. 138--><p class="noindent" ><!--tex4ht:inline--><div class="tabular"> <table id="TBL-8" class="tabular"
|
||||
cellspacing="0" cellpadding="0" rules="groups"
|
||||
><colgroup id="TBL-8-1g"><col
|
||||
id="TBL-8-1"></colgroup><colgroup id="TBL-8-2g"><col
|
||||
|
@ -543,112 +555,92 @@ class="ptmr7t-x-x-70">Action
|
|||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-2-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-2-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">B </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-2-2"
|
||||
class="ptmr7t-x-x-70">P </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-2-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle parking brake</span> <a
|
||||
id="dx1-17"></a><a
|
||||
id="dx1-18"></a> </td>
|
||||
class="ptmr7t-x-x-70">Toggle instrument panel</span><a
|
||||
id="dx1-21"></a> <span
|
||||
class="ptmr7t-x-x-70">on/off </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-3-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-3-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">b </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-3-2"
|
||||
class="ptmr7t-x-x-70">c </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-3-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Apply all brakes</span><a
|
||||
id="dx1-19"></a> </td>
|
||||
class="ptmr7t-x-x-70">Toggle3D/2D cockpit</span> <a
|
||||
id="dx1-22"></a><span
|
||||
class="ptmr7t-x-x-70">(if both are available)</span> <a
|
||||
id="dx1-23"></a><a
|
||||
id="dx1-24"></a></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-4-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-4-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">g/G </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-4-2"
|
||||
class="ptmr7t-x-x-70">S </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-4-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Raise/lower landing gear</span><a
|
||||
id="dx1-20"></a><a
|
||||
id="dx1-21"></a> </td>
|
||||
class="ptmr7t-x-x-70">Cycle panel style full/mini </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-5-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-5-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">, </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-5-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-C</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-5-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Apply left brake (useful for differential braking</span><a
|
||||
id="dx1-22"></a><span
|
||||
class="ptmr7t-x-x-70">) </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle panel/cockpit hotspot visibility </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-6-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-6-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">. </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-6-2"
|
||||
class="ptmr7t-x-x-70">h </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-6-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Apply right brake (useful for differential braking</span><a
|
||||
id="dx1-23"></a><span
|
||||
class="ptmr7t-x-x-70">)</span></td>
|
||||
class="ptmr7t-x-x-70">Toggle HUD </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-7-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-7-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">l </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-7-2"
|
||||
class="ptmr7t-x-x-70">H </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-7-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Toggle tail-wheel lock</span><a
|
||||
id="dx1-24"></a><span
|
||||
class="ptmr7t-x-x-70">) </span></td>
|
||||
class="ptmr7t-x-x-70">Change HUD brightness </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-8-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-8-1"
|
||||
class="td11"><span
|
||||
class="cmr-7">]</span><span
|
||||
class="ptmr7t-x-x-70">/</span><span
|
||||
class="cmr-7">[ </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-8-2"
|
||||
class="ptmr7t-x-x-70">i / I </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-8-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Extend/Retract flaps</span><a
|
||||
id="dx1-25"></a> </td>
|
||||
class="ptmr7t-x-x-70">Minimize/maximize HUD </span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-9-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-9-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">p </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-9-2"
|
||||
class="ptmr7t-x-x-70">x / X </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-9-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Pause Sim</span> <a
|
||||
id="dx1-26"></a> </td>
|
||||
class="ptmr7t-x-x-70">Zoom in/out </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-10-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-10-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">a/A </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-10-2"
|
||||
class="ptmr7t-x-x-70">v / V </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-10-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Simulation speed up/slow down </span></td>
|
||||
class="ptmr7t-x-x-70">Cycle view modes</span><a
|
||||
id="dx1-25"></a> <span
|
||||
class="ptmr7t-x-x-70">forth and back </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-11-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-11-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">t/T </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-11-2"
|
||||
class="ptmr7t-x-x-70">Ctrl-V</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-11-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Clock speed up/slow down </span></td>
|
||||
class="ptmr7t-x-x-70">Reset view modes</span><a
|
||||
id="dx1-26"></a> <span
|
||||
class="ptmr7t-x-x-70">to pilot view </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-12-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-12-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift-F2</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-12-2"
|
||||
class="ptmr7t-x-x-70">z / Z </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-12-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Save current flight to </span><span
|
||||
class="pcrr7t-x-x-70">fgfs.sav </span></td>
|
||||
class="ptmr7t-x-x-70">Increase/Decrease visibility (fog) </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-13-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-13-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Shift-F1</span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-13-2"
|
||||
class="ptmr7t-x-x-70">F10 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-13-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Restore flight from </span><span
|
||||
class="pcrr7t-x-x-70">fgfs.sav </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-14-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-14-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">F3 </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-14-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Save screen shot </span></td>
|
||||
</tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-15-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-15-1"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">ESC </span></td><td style="white-space:nowrap; text-align:left;" id="TBL-8-15-2"
|
||||
class="td11"><span
|
||||
class="ptmr7t-x-x-70">Exit program </span></td>
|
||||
class="ptmr7t-x-x-70">Toggle menu on/off </span></td>
|
||||
</tr><tr
|
||||
class="hline"><td><hr></td><td><hr></td></tr><tr
|
||||
style="vertical-align:baseline;" id="TBL-8-16-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-16-1"
|
||||
class="td11"> </td>
|
||||
</tr></table></div>
|
||||
style="vertical-align:baseline;" id="TBL-8-14-"><td style="white-space:nowrap; text-align:left;" id="TBL-8-14-1"
|
||||
class="td11"> </td></tr></table></div>
|
||||
</td></tr></table>
|
||||
<!--l. 147--><p class="noindent" ><span
|
||||
<!--l. 144--><p class="noindent" ><span
|
||||
class="ptmb7t-x-x-70">Mouse controlled functions: </span><span
|
||||
class="ptmr7t-x-x-70">There are three mouse modes, which can be swapped between by clicking the right mouse</span>
|
||||
<span
|
||||
|
@ -690,10 +682,10 @@ class="ptmr7t-x-x-70">the view direction. Holding the middle button down while m
|
|||
<span
|
||||
class="ptmr7t-x-x-70">be used to control the field of view.</span>
|
||||
</li></ol>
|
||||
<!--l. 170--><p class="noindent" ><span
|
||||
<!--l. 167--><p class="noindent" ><span
|
||||
class="ptmr7t-x-x-70">Short Reference by M. Basler, S. Buchanan for </span><span
|
||||
class="ptmbi7t-x-x-70">FlightGear </span><span
|
||||
class="ptmr7t-x-x-70">version 2.0.0.</span><br
|
||||
class="ptmr7t-x-x-70">version 2.2.0.</span><br
|
||||
class="newline" /><span
|
||||
class="ptmr7t-x-x-70">Published under the GPL (</span><a
|
||||
href="http://www.gnu.org/copyleft/gpl.html" ><span
|
||||
|
|
Binary file not shown.
54153
Docs/getstart.pdf
54153
Docs/getstart.pdf
File diff suppressed because one or more lines are too long
|
@ -1,18 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PropertyList>
|
||||
<name>Effects/material-diffuse</name>
|
||||
<parameters>
|
||||
<material>
|
||||
<color-mode-uniform>1</color-mode-uniform> <!-- DIFFUSE -->
|
||||
</material>
|
||||
</parameters>
|
||||
<inherits-from>Effects/model-default</inherits-from>
|
||||
<technique n="10">
|
||||
<pass>
|
||||
<program>
|
||||
<vertex-shader>Shaders/default.vert</vertex-shader>
|
||||
<fragment-shader>Shaders/default.frag</fragment-shader>
|
||||
</program>
|
||||
<uniform>
|
||||
<name>colorMode</name>
|
||||
<type>int</type>
|
||||
<value>1</value> <!-- DIFFUSE -->
|
||||
</uniform>
|
||||
</pass>
|
||||
</technique>
|
||||
</PropertyList>
|
||||
|
|
|
@ -1,14 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PropertyList>
|
||||
<name>Effects/material-off</name>
|
||||
<parameters>
|
||||
<material>
|
||||
<color-mode-uniform>0</color-mode-uniform> <!-- OFF -->
|
||||
</material>
|
||||
</parameters>
|
||||
<inherits-from>Effects/model-default</inherits-from>
|
||||
<technique n="10">
|
||||
<pass>
|
||||
<uniform>
|
||||
<name>colorMode</name>
|
||||
<type>int</type>
|
||||
<value>0</value> <!-- OFF -->
|
||||
</uniform>
|
||||
</pass>
|
||||
</technique>
|
||||
</PropertyList>
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
<type>white</type>
|
||||
</texture>
|
||||
<vertex-program-two-side type="bool">false</vertex-program-two-side>
|
||||
<material>
|
||||
<color-mode-uniform>1</color-mode-uniform> <!-- DIFFUSE -->
|
||||
</material>
|
||||
</parameters>
|
||||
<technique n="10">
|
||||
<predicate>
|
||||
|
@ -76,7 +79,7 @@
|
|||
<uniform>
|
||||
<name>colorMode</name>
|
||||
<type>int</type>
|
||||
<value>1</value> <!-- DIFFUSE -->
|
||||
<value><use>material/color-mode-uniform</use></value>
|
||||
</uniform>
|
||||
</pass>
|
||||
</technique>
|
||||
|
|
|
@ -112,6 +112,40 @@
|
|||
<output>/environment/config/aloft/entry[0]/visibility-m</output>
|
||||
</filter>
|
||||
|
||||
<filter>
|
||||
<!--
|
||||
transfer the rain intensity to the target environment
|
||||
-->
|
||||
<name>MetarController:rain-norm</name>
|
||||
<type>noise-spike</type>
|
||||
<max-rate-of-change>1.0</max-rate-of-change>
|
||||
<enable>
|
||||
<condition>
|
||||
<property>/environment/metar/valid</property>
|
||||
<property>/environment/params/metar-updates-environment</property>
|
||||
</condition>
|
||||
</enable>
|
||||
<input>/environment/metar/rain-norm</input>
|
||||
<output>/environment/rain-norm</output>
|
||||
</filter>
|
||||
|
||||
<filter>
|
||||
<!--
|
||||
transfer the snow intensity to the target environment
|
||||
-->
|
||||
<name>MetarController:snow-norm</name>
|
||||
<type>noise-spike</type>
|
||||
<max-rate-of-change>1.0</max-rate-of-change>
|
||||
<enable>
|
||||
<condition>
|
||||
<property>/environment/metar/valid</property>
|
||||
<property>/environment/params/metar-updates-environment</property>
|
||||
</condition>
|
||||
</enable>
|
||||
<input>/environment/metar/snow-norm</input>
|
||||
<output>/environment/snow-norm</output>
|
||||
</filter>
|
||||
|
||||
<!-- interpolate the wind vector's components -->
|
||||
<filter>
|
||||
<name>MetarController:wind-from-north-fps</name>
|
||||
|
|
|
@ -120,6 +120,7 @@
|
|||
<property>/controls/flight/aileron</property>
|
||||
<dead-band type="double">0.01</dead-band>
|
||||
<offset type="double">0.0</offset>
|
||||
<squared type="bool">1</squared>
|
||||
</binding>
|
||||
</axis>
|
||||
|
||||
|
@ -138,6 +139,7 @@
|
|||
<dead-band type="double">0.01</dead-band>
|
||||
<offset type="double">0.0</offset>
|
||||
<factor type="double">-1.0</factor>
|
||||
<squared type="bool">1</squared>
|
||||
</binding>
|
||||
</axis>
|
||||
|
||||
|
@ -156,6 +158,7 @@
|
|||
<dead-band type="double">0.01</dead-band>
|
||||
<offset type="double">0.0</offset>
|
||||
<factor type="double">1.0</factor>
|
||||
<squared type="bool">1</squared>
|
||||
</binding>
|
||||
<!-- binding>
|
||||
<command>nasal</command>
|
||||
|
|
|
@ -211,6 +211,35 @@
|
|||
</binding>
|
||||
</mod-up>
|
||||
</button>
|
||||
<button n="18"> <!-- Labled as T5 -->
|
||||
<desc>Retract Spoilers</desc>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.stepSpoilers(-1)</script>
|
||||
</binding>
|
||||
<mod-up>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.stepSpoilers(0)</script>
|
||||
</binding>
|
||||
</mod-up>
|
||||
</button>
|
||||
|
||||
<button n="19"> <!-- Labled as T6 -->
|
||||
<desc>Deploy Spoilers</desc>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.stepSpoilers(1)</script>
|
||||
</binding>
|
||||
<mod-up>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.stepSpoilers(0)</script>
|
||||
</binding>
|
||||
</mod-up>
|
||||
</button>
|
||||
<button n="20">
|
||||
<desc>thrust reverse</desc>
|
||||
<repeatable type="bool">false</repeatable>
|
||||
|
|
|
@ -35,3 +35,4 @@ WRITE ALLOW $FG_HOME/*.log
|
|||
WRITE ALLOW $FG_HOME/Export/*
|
||||
WRITE ALLOW $FG_HOME/state/*.xml
|
||||
WRITE ALLOW $FG_HOME/aircraft-data/*.xml
|
||||
WRITE ALLOW $FG_HOME/Wildfire/*.xml
|
||||
|
|
|
@ -1,10 +1,17 @@
|
|||
var startEngine = func(v = 1) {
|
||||
if (!v)
|
||||
var startEngine = func(v = 1, which...) {
|
||||
if (!v and !size(which))
|
||||
return props.setAll("/controls/engines/engine", "starter", 0);
|
||||
if(size(which)) {
|
||||
foreach(var i; which)
|
||||
foreach(var e; engines)
|
||||
if(e.index == i)
|
||||
e.controls.getNode("starter").setBoolValue(v);
|
||||
} else {
|
||||
foreach(var e; engines)
|
||||
if(e.selected.getValue())
|
||||
e.controls.getNode("starter").setBoolValue(v);
|
||||
}
|
||||
}
|
||||
|
||||
var selectEngine = func(which) {
|
||||
foreach(var e; engines) e.selected.setBoolValue(which == e.index);
|
||||
|
|
|
@ -49,6 +49,23 @@ var menuEnable = func(searchname, state) {
|
|||
}
|
||||
}
|
||||
|
||||
##
|
||||
# Set the binding for a menu item to a Nasal script,
|
||||
# typically a dialog open() command.
|
||||
#
|
||||
var menuBind = func(searchname, command) {
|
||||
foreach (var menu; props.globals.getNode("/sim/menubar/default").getChildren("menu")) {
|
||||
foreach (item; menu.getChildren("item")) {
|
||||
foreach (name; item.getChildren("name")) {
|
||||
if (name.getValue() == searchname) {
|
||||
item.getNode("binding", 1).getNode("command", 1).setValue("nasal");
|
||||
item.getNode("binding", 1).getNode("script", 1).setValue(command);
|
||||
fgcommand("gui-redraw");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
##
|
||||
# Set mouse cursor coordinates and shape (number or name), and return
|
||||
|
@ -724,8 +741,17 @@ var showWeightDialog = func {
|
|||
dialog[name].set("name", name);
|
||||
dialog[name].set("layout", "vbox");
|
||||
|
||||
var header = dialog[name].addChild("text");
|
||||
header.set("label", title);
|
||||
var header = dialog[name].addChild("group");
|
||||
header.set("layout", "hbox");
|
||||
header.addChild("empty").set("stretch", "1");
|
||||
header.addChild("text").set("label", title);
|
||||
header.addChild("empty").set("stretch", "1");
|
||||
var w = header.addChild("button");
|
||||
w.set("pref-width", 16);
|
||||
w.set("pref-height", 16);
|
||||
w.set("legend", "");
|
||||
w.set("default", 0);
|
||||
w.setBinding("dialog-close");
|
||||
|
||||
dialog[name].addChild("hrule");
|
||||
|
||||
|
@ -801,15 +827,17 @@ var showWeightDialog = func {
|
|||
weightitem = nil;
|
||||
}
|
||||
|
||||
dialog[name].addChild("hrule");
|
||||
|
||||
var buttonBar = dialog[name].addChild("group");
|
||||
buttonBar.set("layout", "hbox");
|
||||
buttonBar.set("default-padding", 10);
|
||||
|
||||
var ok = buttonBar.addChild("button");
|
||||
ok.set("legend", "OK");
|
||||
ok.set("key", "esc");
|
||||
ok.setBinding("dialog-apply");
|
||||
ok.setBinding("dialog-close");
|
||||
var close = buttonBar.addChild("button");
|
||||
close.set("legend", "Close");
|
||||
close.set("default", "true");
|
||||
close.set("key", "Enter");
|
||||
close.setBinding("dialog-close");
|
||||
|
||||
# Temporary helper function
|
||||
var tcell = func(parent, type, row, col) {
|
||||
|
|
|
@ -252,7 +252,8 @@ var fly_by_view_handler = {
|
|||
me.latN = props.globals.getNode("/sim/viewer/latitude-deg", 1);
|
||||
me.lonN = props.globals.getNode("/sim/viewer/longitude-deg", 1);
|
||||
me.altN = props.globals.getNode("/sim/viewer/altitude-ft", 1);
|
||||
me.hdgN = props.globals.getNode("/orientation/heading-deg", 1);
|
||||
# me.hdgN = props.globals.getNode("/orientation/heading-deg", 1);
|
||||
me.hdgN = props.globals.getNode("/instrumentation/gps/indicated-track-true-deg", 1);
|
||||
|
||||
setlistener("/sim/signals/reinit", func(n) { n.getValue() or me.reset() });
|
||||
setlistener("/sim/crashed", func(n) { n.getValue() and me.reset() });
|
||||
|
|
|
@ -979,12 +979,12 @@ var dialog = {
|
|||
titlebar.set("layout", "hbox");
|
||||
titlebar.addChild("empty").set("stretch", 1);
|
||||
titlebar.addChild("text").set("label", "Wildfire settings");
|
||||
titlebar.addChild("empty").set("stretch", 1);
|
||||
var w = titlebar.addChild("button");
|
||||
w.set("pref-width", 16);
|
||||
w.set("pref-height", 16);
|
||||
w.set("legend", "");
|
||||
w.set("default", 0);
|
||||
w.set("key", "esc");
|
||||
w.setBinding("nasal", "wildfire.dialog.destroy(); ");
|
||||
w.setBinding("dialog-close");
|
||||
me.dialog.addChild("hrule");
|
||||
|
@ -1011,13 +1011,25 @@ var dialog = {
|
|||
}
|
||||
me.dialog.addChild("hrule");
|
||||
|
||||
# Buttons
|
||||
var buttons = me.dialog.addChild("group");
|
||||
buttons.node.setValues({"layout" : "hbox"});
|
||||
|
||||
# Load button.
|
||||
var load = me.dialog.addChild("button");
|
||||
var load = buttons.addChild("button");
|
||||
load.node.setValues({"legend" : "Load Wildfire log",
|
||||
"halign" : "center"});
|
||||
load.setBinding("nasal",
|
||||
"wildfire.dialog.select_and_load()");
|
||||
|
||||
# Close button
|
||||
var close = buttons.addChild("button");
|
||||
close.node.setValues({"legend" : "Close",
|
||||
"default" : "true",
|
||||
"key" : "Esc"});
|
||||
close.setBinding("nasal", "wildfire.dialog.destroy();");
|
||||
close.setBinding("dialog-close");
|
||||
|
||||
fgcommand("dialog-new", me.dialog.prop());
|
||||
fgcommand("dialog-show", me.namenode);
|
||||
},
|
||||
|
|
|
@ -8,17 +8,30 @@
|
|||
|
||||
<!-- AI Carrier options -->
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<halign>left</halign>
|
||||
<label>AI Carrier</label>
|
||||
<color>
|
||||
<red>0.9</red>
|
||||
<green>0.9</green>
|
||||
<blue>0.9</blue>
|
||||
<alpha>1</alpha>
|
||||
</color>
|
||||
<label>AI Carrier Controls</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty>
|
||||
|
@ -170,6 +183,8 @@
|
|||
</empty>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>6</default-padding>
|
||||
|
|
|
@ -1,124 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<!-- General ATC/AI options -->
|
||||
|
||||
<PropertyList>
|
||||
<name>ai</name>
|
||||
<modal>false</modal>
|
||||
<layout>vbox</layout>
|
||||
|
||||
|
||||
|
||||
<button>
|
||||
<legend>-</legend>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<halign>right</halign>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
<text>
|
||||
<!-- <label>ATC/AI Options</label> -->
|
||||
<label>AI Options</label>
|
||||
</text>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty>
|
||||
<pref-width>10</pref-width>
|
||||
</empty>
|
||||
|
||||
<group>
|
||||
<layout>vbox</layout>
|
||||
|
||||
<!-- <checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Enable ATC</label>
|
||||
<property>/sim/atc/enabled</property>
|
||||
</checkbox> -->
|
||||
|
||||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Enable AI traffic</label>
|
||||
<property>/sim/ai-traffic/enabled</property>
|
||||
</checkbox>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
|
||||
<text>
|
||||
<halign>left</halign>
|
||||
<label>AI traffic density:</label>
|
||||
</text>
|
||||
|
||||
<combo>
|
||||
<halign>left</halign>
|
||||
<property>/sim/ai-traffic/level</property>
|
||||
<value>1</value>
|
||||
<value>2</value>
|
||||
<value>3</value>
|
||||
</combo>
|
||||
</group>
|
||||
|
||||
</group>
|
||||
|
||||
<empty>
|
||||
<stretch>true</stretch>
|
||||
</empty>
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>6</default-padding>
|
||||
<empty>
|
||||
<stretch>true</stretch>
|
||||
</empty>
|
||||
|
||||
<button>
|
||||
<legend>OK</legend>
|
||||
<default>true</default>
|
||||
<equal>true</equal>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
<button>
|
||||
<legend>Apply</legend>
|
||||
<equal>true</equal>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
<button>
|
||||
<legend>Reset</legend>
|
||||
<equal>true</equal>
|
||||
<binding>
|
||||
<command>dialog-update</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
<button>
|
||||
<legend>Cancel</legend>
|
||||
<equal>true</equal>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
<empty>
|
||||
<stretch>true</stretch>
|
||||
</empty>
|
||||
</group>
|
||||
|
||||
</PropertyList>
|
|
@ -5,10 +5,28 @@
|
|||
<layout>vbox</layout>
|
||||
<resizable>true</resizable>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Select an Airport</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<nasal>
|
||||
|
@ -97,6 +115,8 @@
|
|||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>10</default-padding>
|
||||
|
|
|
@ -536,4 +536,15 @@
|
|||
</checkbox>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<default>true</default>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
</PropertyList>
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<default>1</default>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
|
@ -227,4 +226,15 @@
|
|||
</slider>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<default>true</default>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
</PropertyList>
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
<modal>false</modal>
|
||||
<layout>vbox</layout>
|
||||
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
@ -20,14 +19,12 @@
|
|||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<default>1</default>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
@ -82,4 +79,15 @@
|
|||
</checkbox>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<default>true</default>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
</PropertyList>
|
||||
|
|
|
@ -7,18 +7,30 @@
|
|||
<layout>vbox</layout>
|
||||
|
||||
<!-- AI Wingman options -->
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<halign>left</halign>
|
||||
<label>Wingman Controls</label>
|
||||
<color>
|
||||
<red>0.5</red>
|
||||
<green>0.5</green>
|
||||
<blue>0.5</blue>
|
||||
<alpha>1</alpha>
|
||||
</color>
|
||||
<label>AI Wingman Controls</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty>
|
||||
|
@ -195,9 +207,7 @@
|
|||
|
||||
</group>
|
||||
|
||||
<empty>
|
||||
<stretch>true</stretch>
|
||||
</empty>
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
|
|
|
@ -24,9 +24,27 @@
|
|||
</nasal>
|
||||
<name>gps</name>
|
||||
<layout>vbox</layout>
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>GPS</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
<hrule/>
|
||||
<!-- show current state -->
|
||||
<group>
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<PropertyList>
|
||||
<x>-20</x>
|
||||
<y>20</y>
|
||||
<name>hud</name>
|
||||
<layout>vbox</layout>
|
||||
<padding>20</padding>
|
||||
|
@ -21,7 +19,6 @@
|
|||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<default>1</default>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
|
@ -174,6 +171,17 @@
|
|||
</slider>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<default>true</default>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
<nasal>
|
||||
<open>
|
||||
gui.enable_widgets(cmdarg(), "devel-stuff", getprop("/sim/gui/devel-widgets"));
|
||||
|
|
|
@ -5,10 +5,29 @@
|
|||
<name>instrument-failures</name>
|
||||
<modal>false</modal>
|
||||
<layout>vbox</layout>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Instrument Failures</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
|
@ -19,6 +38,8 @@
|
|||
</text>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>table</layout>
|
||||
<halign>center</halign>
|
||||
|
@ -320,6 +341,8 @@
|
|||
</input>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<button>
|
||||
|
|
|
@ -3,27 +3,51 @@
|
|||
<PropertyList>
|
||||
|
||||
<name>instruments</name>
|
||||
<width>400</width>
|
||||
<height>150</height>
|
||||
<modal>false</modal>
|
||||
<layout>vbox</layout>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<x>0</x>
|
||||
<y>120</y>
|
||||
<label>Instrument Settings</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<x>0</x>
|
||||
<y>90</y>
|
||||
<layout>table</layout>
|
||||
<default-padding>5</default-padding>
|
||||
|
||||
<text>
|
||||
<row>0</row>
|
||||
<col>0</col>
|
||||
<halign>right</halign>
|
||||
<label>ALT setting:</label>
|
||||
</text>
|
||||
|
||||
<group>
|
||||
<row>0</row>
|
||||
<col>1</col>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>0</default-padding>
|
||||
|
||||
<button>
|
||||
<x>115</x>
|
||||
<y>2</y>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -39,8 +63,6 @@
|
|||
</button>
|
||||
|
||||
<button>
|
||||
<x>150</x>
|
||||
<y>2</y>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -54,22 +76,34 @@
|
|||
<command>dialog-update</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<input>
|
||||
<x>190</x>
|
||||
<y>0</y>
|
||||
<row>0</row>
|
||||
<col>3</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>inHg</label>
|
||||
<property>/instrumentation/altimeter/setting-inhg</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
</binding>
|
||||
</input>
|
||||
|
||||
<text>
|
||||
<row>0</row>
|
||||
<col>4</col>
|
||||
<padding>0</padding>
|
||||
<halign>left</halign>
|
||||
<label>inHg</label>
|
||||
</text>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<row>0</row>
|
||||
<col>5</col>
|
||||
<default-padding>0</default-padding>
|
||||
|
||||
<button>
|
||||
<x>315</x>
|
||||
<y>2</y>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -85,8 +119,8 @@
|
|||
</button>
|
||||
|
||||
<button>
|
||||
<x>350</x>
|
||||
<y>2</y>
|
||||
<row>0</row>
|
||||
<col>6</col>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -100,20 +134,22 @@
|
|||
<command>dialog-update</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<x>0</x>
|
||||
<y>60</y>
|
||||
|
||||
<text>
|
||||
<row>1</row>
|
||||
<col>0</col>
|
||||
<halign>right</halign>
|
||||
<label>HI offset:</label>
|
||||
</text>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>0</default-padding>
|
||||
<row>1</row>
|
||||
<col>1</col>
|
||||
|
||||
<button>
|
||||
<x>115</x>
|
||||
<y>2</y>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -129,8 +165,6 @@
|
|||
</button>
|
||||
|
||||
<button>
|
||||
<x>150</x>
|
||||
<y>2</y>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -144,22 +178,34 @@
|
|||
<command>dialog-update</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<input>
|
||||
<x>190</x>
|
||||
<y>0</y>
|
||||
<row>1</row>
|
||||
<col>3</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>deg</label>
|
||||
<property>/instrumentation/heading-indicator/offset-deg</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
</binding>
|
||||
</input>
|
||||
|
||||
<text>
|
||||
<row>1</row>
|
||||
<col>4</col>
|
||||
<padding>0</padding>
|
||||
<halign>left</halign>
|
||||
<label>deg</label>
|
||||
</text>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>0</default-padding>
|
||||
<row>1</row>
|
||||
<col>5</col>
|
||||
|
||||
<button>
|
||||
<x>315</x>
|
||||
<y>2</y>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -175,8 +221,6 @@
|
|||
</button>
|
||||
|
||||
<button>
|
||||
<x>350</x>
|
||||
<y>2</y>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -190,14 +234,13 @@
|
|||
<command>dialog-update</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<hrule/>
|
||||
|
||||
<button>
|
||||
<x>150</x>
|
||||
<y>10</y>
|
||||
<legend>Close</legend>
|
||||
<default>true</default>
|
||||
<key>Esc</key>
|
||||
|
@ -206,6 +249,4 @@
|
|||
</binding>
|
||||
</button>
|
||||
|
||||
</group>
|
||||
|
||||
</PropertyList>
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
<modal>false</modal>
|
||||
|
||||
|
||||
|
||||
|
||||
<text>
|
||||
<x>10</x>
|
||||
<y>570</y>
|
||||
|
|
|
@ -36,10 +36,28 @@
|
|||
<close># just kept for educational purposes :-)</close>
|
||||
</nasal>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Location (in air)</label>
|
||||
<label>Position Aircraft In Air</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<text>
|
||||
|
@ -48,7 +66,7 @@
|
|||
|
||||
<group>
|
||||
<layout>table</layout>
|
||||
<halign>left</halign>
|
||||
<halign>center</halign>
|
||||
<radio>
|
||||
<row>0</row><col>0</col>
|
||||
<live>true</live>
|
||||
|
@ -63,6 +81,7 @@
|
|||
</radio>
|
||||
<text>
|
||||
<row>0</row><col>1</col>
|
||||
<halign>right</halign>
|
||||
<label>Airport:</label>
|
||||
</text>
|
||||
<input>
|
||||
|
@ -71,6 +90,7 @@
|
|||
</input>
|
||||
<text>
|
||||
<row>0</row><col>3</col>
|
||||
<halign>right</halign>
|
||||
<label>Runway:</label>
|
||||
</text>
|
||||
<input>
|
||||
|
@ -92,6 +112,7 @@
|
|||
</radio>
|
||||
<text>
|
||||
<row>1</row><col>1</col>
|
||||
<halign>right</halign>
|
||||
<label>Longitude:</label>
|
||||
</text>
|
||||
<input>
|
||||
|
@ -100,6 +121,7 @@
|
|||
</input>
|
||||
<text>
|
||||
<row>1</row><col>3</col>
|
||||
<halign>right</halign>
|
||||
<label>Latitude:</label>
|
||||
</text>
|
||||
<input>
|
||||
|
@ -178,6 +200,8 @@
|
|||
</input>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<text>
|
||||
<label>Relative Position</label>
|
||||
</text>
|
||||
|
@ -246,6 +270,8 @@
|
|||
</input>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>10</default-padding>
|
||||
|
|
|
@ -3,18 +3,42 @@
|
|||
<name>location-of-tower</name>
|
||||
<layout>vbox</layout>
|
||||
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Select tower for the Tower View</label>
|
||||
<label>Tower Position</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<text>
|
||||
<label>Select position of tower for the Tower Views</label>
|
||||
</text>
|
||||
|
||||
<group>
|
||||
<layout>table</layout>
|
||||
|
||||
<text>
|
||||
<row>0</row><col>0</col>
|
||||
<label>Airport ID</label>
|
||||
<halign>right</halign>
|
||||
<label>Airport ID:</label>
|
||||
</text>
|
||||
<input>
|
||||
<name>airport-id</name>
|
||||
|
@ -114,10 +138,10 @@
|
|||
<row>3</row><col>3</col>
|
||||
<stretch>true</stretch>
|
||||
</empty>
|
||||
|
||||
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>10</default-padding>
|
||||
|
|
|
@ -4,10 +4,28 @@
|
|||
<name>location-on-ground</name>
|
||||
<layout>vbox</layout>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Set New Location</label>
|
||||
<label>Position Aircraft On Ground</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<nasal>
|
||||
|
@ -44,6 +62,7 @@
|
|||
}
|
||||
|
||||
var runways = dlg.getNode("available-runways", 1);
|
||||
|
||||
var updateRunways = func {
|
||||
var icao = dlg.getNode("airport").getValue();
|
||||
runways.removeChildren("value");
|
||||
|
@ -56,6 +75,7 @@
|
|||
i += 1;
|
||||
}
|
||||
}
|
||||
|
||||
gui.dialog_update("location-on-ground");
|
||||
}
|
||||
</open>
|
||||
|
@ -140,6 +160,8 @@
|
|||
</input>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>10</default-padding>
|
||||
|
|
|
@ -40,7 +40,6 @@ command interface /autopilot/route-manager/input:
|
|||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<default>1</default>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
|
||||
|
@ -60,7 +59,7 @@ command interface /autopilot/route-manager/input:
|
|||
<layout>vbox</layout>
|
||||
<button>
|
||||
<legend>Fixes</legend>
|
||||
<pref-width>80</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/gui/map/draw-fixes</property>
|
||||
<live>true</live>
|
||||
<binding>
|
||||
|
@ -73,7 +72,7 @@ command interface /autopilot/route-manager/input:
|
|||
|
||||
<button>
|
||||
<legend>Navaids</legend>
|
||||
<pref-width>80</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/gui/map/draw-navaids</property>
|
||||
<live>true</live>
|
||||
<binding>
|
||||
|
@ -83,15 +82,16 @@ command interface /autopilot/route-manager/input:
|
|||
<command>property-toggle</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
<!--
|
||||
<button>
|
||||
<legend>Airways</legend>
|
||||
<pref-width>80</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
</button>
|
||||
-->
|
||||
|
||||
<button>
|
||||
<legend>Traffic</legend>
|
||||
<pref-width>80</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/gui/map/draw-traffic</property>
|
||||
<live>true</live>
|
||||
<binding>
|
||||
|
@ -102,14 +102,16 @@ command interface /autopilot/route-manager/input:
|
|||
</binding>
|
||||
</button>
|
||||
|
||||
<!--
|
||||
<button>
|
||||
<legend>Obstacles</legend>
|
||||
<pref-width>80</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
</button>
|
||||
-->
|
||||
|
||||
<button>
|
||||
<legend>Data</legend>
|
||||
<pref-width>80</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/gui/map/draw-data</property>
|
||||
<live>true</live>
|
||||
<binding>
|
||||
|
@ -124,7 +126,7 @@ command interface /autopilot/route-manager/input:
|
|||
|
||||
<button>
|
||||
<legend>Center on Acft</legend>
|
||||
<pref-width>80</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/gui/map/centre-on-aircraft</property>
|
||||
<live>true</live>
|
||||
<binding>
|
||||
|
@ -137,7 +139,7 @@ command interface /autopilot/route-manager/input:
|
|||
|
||||
<button>
|
||||
<legend>Acft Hdg Up</legend>
|
||||
<pref-width>80</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/gui/map/aircraft-heading-up</property>
|
||||
<live>true</live>
|
||||
<binding>
|
||||
|
@ -150,7 +152,7 @@ command interface /autopilot/route-manager/input:
|
|||
|
||||
<button>
|
||||
<legend>Magnetic Hdgs</legend>
|
||||
<pref-width>80</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/gui/map/magnetic-headings</property>
|
||||
<live>true</live>
|
||||
<binding>
|
||||
|
@ -160,8 +162,22 @@ command interface /autopilot/route-manager/input:
|
|||
<command>property-toggle</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
<empty><stretch>true</stretch></empty>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<pref-width>100</pref-width>
|
||||
<default>true</default>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
</group>
|
||||
|
||||
<vrule/>
|
||||
|
||||
<map>
|
||||
<!-- <halign>fill</halign> -->
|
||||
<valign>fill</valign>
|
||||
|
|
|
@ -4,6 +4,30 @@
|
|||
<name>pilot_offset</name>
|
||||
<layout>vbox</layout>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Adjust View Position</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
|
||||
|
@ -71,11 +95,13 @@
|
|||
</group>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>true</stretch></empty>
|
||||
<button>
|
||||
<legend>OK</legend>
|
||||
<legend>Close</legend>
|
||||
<equal>true</equal>
|
||||
<default>true</default>
|
||||
<key>Esc</key>
|
||||
|
|
|
@ -3,46 +3,74 @@
|
|||
<PropertyList>
|
||||
|
||||
<name>radios</name>
|
||||
<width>600</width>
|
||||
<height>370</height>
|
||||
<width>550</width>
|
||||
<modal>false</modal>
|
||||
<layout>vbox</layout>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<x>10</x>
|
||||
<y>300</y>
|
||||
<label>Radio Frequencies</label>
|
||||
</text>
|
||||
|
||||
<!-- headers -->
|
||||
<group>
|
||||
<x>0</x>
|
||||
<y>280</y>
|
||||
<text>
|
||||
<x>75</x>
|
||||
<label>Selected</label>
|
||||
</text>
|
||||
<text>
|
||||
<x>300</x>
|
||||
<label>Standby</label>
|
||||
</text>
|
||||
<text>
|
||||
<x>450</x>
|
||||
<label>Radial</label>
|
||||
</text>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<x>0</x>
|
||||
<y>240</y>
|
||||
<layout>table</layout>
|
||||
|
||||
<!-- headers -->
|
||||
<text>
|
||||
<row>0</row>
|
||||
<col>1</col>
|
||||
<label>Selected</label>
|
||||
</text>
|
||||
|
||||
<text>
|
||||
<row>0</row>
|
||||
<col>4</col>
|
||||
<label>Standby</label>
|
||||
</text>
|
||||
|
||||
<text>
|
||||
<row>0</row>
|
||||
<col>6</col>
|
||||
<label>Radial</label>
|
||||
</text>
|
||||
|
||||
<!-- Dummy label to stretch table, as layout manager doesn't handle labels well -->
|
||||
<text>
|
||||
<row>0</row>
|
||||
<col>7</col>
|
||||
<label></label>
|
||||
</text>
|
||||
|
||||
<text>
|
||||
<row>1</row>
|
||||
<col>0</col>
|
||||
<halign>right</halign>
|
||||
<label>COM1</label>
|
||||
</text>
|
||||
|
||||
<input>
|
||||
<name>com1-selected</name>
|
||||
<x>75</x>
|
||||
<y>0</y>
|
||||
<row>1</row>
|
||||
<col>1</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>MHz</label>
|
||||
|
@ -50,8 +78,8 @@
|
|||
</input>
|
||||
|
||||
<button>
|
||||
<x>220</x>
|
||||
<y>2</y>
|
||||
<row>1</row>
|
||||
<col>3</col>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -81,28 +109,25 @@
|
|||
|
||||
<input>
|
||||
<name>com1-standby</name>
|
||||
<x>300</x>
|
||||
<y>0</y>
|
||||
<row>1</row>
|
||||
<col>4</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>MHz</label>
|
||||
<property>/instrumentation/comm[0]/frequencies/standby-mhz</property>
|
||||
</input>
|
||||
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<x>0</x>
|
||||
<y>210</y>
|
||||
|
||||
<text>
|
||||
<row>2</row>
|
||||
<col>0</col>
|
||||
<halign>right</halign>
|
||||
<label>COM2</label>
|
||||
</text>
|
||||
|
||||
<input>
|
||||
<name>com2-selected</name>
|
||||
<x>75</x>
|
||||
<y>0</y>
|
||||
<row>2</row>
|
||||
<col>1</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>MHz</label>
|
||||
|
@ -110,8 +135,8 @@
|
|||
</input>
|
||||
|
||||
<button>
|
||||
<x>220</x>
|
||||
<y>2</y>
|
||||
<row>2</row>
|
||||
<col>3</col>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -141,28 +166,25 @@
|
|||
|
||||
<input>
|
||||
<name>com2-standby</name>
|
||||
<x>300</x>
|
||||
<y>0</y>
|
||||
<row>2</row>
|
||||
<col>4</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>MHz</label>
|
||||
<property>/instrumentation/comm[1]/frequencies/standby-mhz</property>
|
||||
</input>
|
||||
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<x>0</x>
|
||||
<y>180</y>
|
||||
|
||||
<text>
|
||||
<row>3</row>
|
||||
<col>0</col>
|
||||
<halign>right</halign>
|
||||
<label>NAV1</label>
|
||||
</text>
|
||||
|
||||
<input>
|
||||
<name>nav1-selected</name>
|
||||
<x>75</x>
|
||||
<y>0</y>
|
||||
<row>3</row>
|
||||
<col>1</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>MHz</label>
|
||||
|
@ -170,8 +192,8 @@
|
|||
</input>
|
||||
|
||||
<button>
|
||||
<x>220</x>
|
||||
<y>2</y>
|
||||
<row>3</row>
|
||||
<col>3</col>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -201,8 +223,8 @@
|
|||
|
||||
<input>
|
||||
<name>nav1-standby</name>
|
||||
<x>300</x>
|
||||
<y>0</y>
|
||||
<row>3</row>
|
||||
<col>4</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>MHz</label>
|
||||
|
@ -211,28 +233,25 @@
|
|||
|
||||
<input>
|
||||
<name>nav1-radial</name>
|
||||
<x>450</x>
|
||||
<y>0</y>
|
||||
<row>3</row>
|
||||
<col>6</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>deg</label>
|
||||
<property>/instrumentation/nav[0]/radials/selected-deg</property>
|
||||
</input>
|
||||
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<x>0</x>
|
||||
<y>150</y>
|
||||
|
||||
<text>
|
||||
<row>4</row>
|
||||
<col>0</col>
|
||||
<halign>right</halign>
|
||||
<label>NAV2</label>
|
||||
</text>
|
||||
|
||||
<input>
|
||||
<name>nav2-selected</name>
|
||||
<x>75</x>
|
||||
<y>0</y>
|
||||
<row>4</row>
|
||||
<col>1</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>MHz</label>
|
||||
|
@ -240,8 +259,8 @@
|
|||
</input>
|
||||
|
||||
<button>
|
||||
<x>220</x>
|
||||
<y>2</y>
|
||||
<row>4</row>
|
||||
<col>3</col>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -271,8 +290,8 @@
|
|||
|
||||
<input>
|
||||
<name>nav2-standby</name>
|
||||
<x>300</x>
|
||||
<y>0</y>
|
||||
<row>4</row>
|
||||
<col>4</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>MHz</label>
|
||||
|
@ -281,28 +300,25 @@
|
|||
|
||||
<input>
|
||||
<name>nav2-radial</name>
|
||||
<x>450</x>
|
||||
<y>0</y>
|
||||
<row>4</row>
|
||||
<col>6</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>deg</label>
|
||||
<property>/instrumentation/nav[1]/radials/selected-deg</property>
|
||||
</input>
|
||||
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<x>0</x>
|
||||
<y>120</y>
|
||||
|
||||
<text>
|
||||
<row>5</row>
|
||||
<col>0</col>
|
||||
<halign>right</halign>
|
||||
<label>ADF</label>
|
||||
</text>
|
||||
|
||||
<input>
|
||||
<name>adf-selected</name>
|
||||
<x>75</x>
|
||||
<y>0</y>
|
||||
<row>5</row>
|
||||
<col>1</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>kHz</label>
|
||||
|
@ -310,8 +326,8 @@
|
|||
</input>
|
||||
|
||||
<button>
|
||||
<x>220</x>
|
||||
<y>2</y>
|
||||
<row>5</row>
|
||||
<col>3</col>
|
||||
<width>35</width>
|
||||
<height>26</height>
|
||||
<border>1</border>
|
||||
|
@ -341,8 +357,8 @@
|
|||
|
||||
<input>
|
||||
<name>adf-standby</name>
|
||||
<x>300</x>
|
||||
<y>0</y>
|
||||
<row>5</row>
|
||||
<col>4</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>kHz</label>
|
||||
|
@ -350,50 +366,48 @@
|
|||
</input>
|
||||
|
||||
<input>
|
||||
<name>nav2-radial</name>
|
||||
<x>450</x>
|
||||
<y>0</y>
|
||||
<name>adf-radial</name>
|
||||
<row>5</row>
|
||||
<col>6</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>deg</label>
|
||||
<property>/instrumentation/adf/rotation-deg</property>
|
||||
</input>
|
||||
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<x>0</x>
|
||||
<y>90</y>
|
||||
|
||||
<text>
|
||||
<row>6</row>
|
||||
<col>0</col>
|
||||
<halign>right</halign>
|
||||
<label>DME</label>
|
||||
</text>
|
||||
|
||||
<input>
|
||||
<name>dme-selected</name>
|
||||
<x>75</x>
|
||||
<y>0</y>
|
||||
<row>6</row>
|
||||
<col>1</col>
|
||||
<width>75</width>
|
||||
<height>25</height>
|
||||
<label>MHz</label>
|
||||
<property>/instrumentation/dme/frequencies/selected-mhz</property>
|
||||
</input>
|
||||
|
||||
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
<group>
|
||||
<x>0</x>
|
||||
<y>60</y>
|
||||
|
||||
<layout>hbox</layout>
|
||||
|
||||
<text>
|
||||
<label>TACAN</label>
|
||||
</text>
|
||||
|
||||
|
||||
<combo>
|
||||
<x>75</x>
|
||||
<y>0</y>
|
||||
<width>45</width>
|
||||
<height>25</height>
|
||||
<pref-width>45</pref-width>
|
||||
<pref-height>25</pref-height>
|
||||
<property>/instrumentation/tacan/frequencies/selected-channel[1]</property>
|
||||
<value>0</value>
|
||||
<value>1</value>
|
||||
|
@ -408,10 +422,8 @@
|
|||
</combo>
|
||||
<!---->
|
||||
<combo>
|
||||
<x>120</x>
|
||||
<y>0</y>
|
||||
<width>45</width>
|
||||
<height>25</height>
|
||||
<pref-width>45</pref-width>
|
||||
<pref-height>25</pref-height>
|
||||
<property>/instrumentation/tacan/frequencies/selected-channel[2]</property>
|
||||
<value>0</value>
|
||||
<value>1</value>
|
||||
|
@ -426,10 +438,8 @@
|
|||
</combo>
|
||||
|
||||
<combo>
|
||||
<x>165</x>
|
||||
<y>0</y>
|
||||
<width>45</width>
|
||||
<height>25</height>
|
||||
<pref-width>45</pref-width>
|
||||
<pref-height>25</pref-height>
|
||||
<property>/instrumentation/tacan/frequencies/selected-channel[3]</property>
|
||||
<value>0</value>
|
||||
<value>1</value>
|
||||
|
@ -444,24 +454,35 @@
|
|||
</combo>
|
||||
|
||||
<combo>
|
||||
<x>210</x>
|
||||
<y>0</y>
|
||||
<width>47</width>
|
||||
<height>25</height>
|
||||
<pref-width>45</pref-width>
|
||||
<pref-height>25</pref-height>
|
||||
<property>/instrumentation/tacan/frequencies/selected-channel[4]</property>
|
||||
<value>X</value>
|
||||
<value>Y</value>
|
||||
</combo>
|
||||
|
||||
|
||||
</group>
|
||||
|
||||
|
||||
<group>
|
||||
<empty>
|
||||
<stretch>true</stretch>
|
||||
</empty>
|
||||
|
||||
<button>
|
||||
<legend>ATC Services in range</legend>
|
||||
<binding>
|
||||
<command>ATC-freq-search</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
</group>
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>6</default-padding>
|
||||
<empty>
|
||||
<stretch>true</stretch>
|
||||
</empty>
|
||||
|
||||
<button>
|
||||
<x>105</x>
|
||||
<y>10</y>
|
||||
<legend>OK</legend>
|
||||
<default>true</default>
|
||||
<equal>true</equal>
|
||||
|
@ -474,8 +495,6 @@
|
|||
</button>
|
||||
|
||||
<button>
|
||||
<x>205</x>
|
||||
<y>10</y>
|
||||
<legend>Apply</legend>
|
||||
<equal>true</equal>
|
||||
<binding>
|
||||
|
@ -484,8 +503,6 @@
|
|||
</button>
|
||||
|
||||
<button>
|
||||
<x>305</x>
|
||||
<y>10</y>
|
||||
<legend>Reset</legend>
|
||||
<equal>true</equal>
|
||||
<binding>
|
||||
|
@ -494,8 +511,6 @@
|
|||
</button>
|
||||
|
||||
<button>
|
||||
<x>405</x>
|
||||
<y>10</y>
|
||||
<legend>Cancel</legend>
|
||||
<equal>true</equal>
|
||||
<key>Esc</key>
|
||||
|
@ -504,16 +519,10 @@
|
|||
</binding>
|
||||
</button>
|
||||
|
||||
</group>
|
||||
<group>
|
||||
<x>400</x>
|
||||
<y>60</y>
|
||||
<button>
|
||||
<legend>ATC Services in range</legend>
|
||||
<binding>
|
||||
<command>ATC-freq-search</command>
|
||||
</binding>
|
||||
</button>
|
||||
<empty>
|
||||
<stretch>true</stretch>
|
||||
</empty>
|
||||
</group>
|
||||
|
||||
|
||||
</PropertyList>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<nasal>
|
||||
<open>
|
||||
<![CDATA[
|
||||
var groups = cmdarg().getChildren("group")[0].getChildren("group");
|
||||
var groups = cmdarg().getChildren("group")[1].getChildren("group");
|
||||
var mtbfNodes = groups[0].getChildren("radio");
|
||||
var mcbfNodes = groups[1].getChildren("radio");
|
||||
|
||||
|
@ -40,13 +40,32 @@
|
|||
</open>
|
||||
</nasal>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Random Failures</label>
|
||||
</text>
|
||||
|
||||
<hrule></hrule>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<text>
|
||||
<halign>left</halign>
|
||||
<label>Configure MTBF/MCBF for all systems and instruments.</label>
|
||||
</text>
|
||||
|
||||
|
@ -332,7 +351,7 @@
|
|||
</button>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<legend>Cancel</legend>
|
||||
<equal>true</equal>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<default>1</default>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
|
@ -40,14 +39,35 @@
|
|||
|
||||
<text>
|
||||
<halign>left</halign>
|
||||
<label>"Material shaders" must be enabled for certain options</label>
|
||||
<label>"Material shaders" must be enabled for most options.</label>
|
||||
</text>
|
||||
<text>
|
||||
<halign>left</halign>
|
||||
<label>Snow is dependant on crop, landmass and urban shaders.</label>
|
||||
</text>
|
||||
|
||||
<group>
|
||||
<layout>vbox</layout>
|
||||
<stretch>1</stretch>
|
||||
<layout>hbox</layout>
|
||||
<text>
|
||||
<label>General</label>
|
||||
<halign>left</halign>
|
||||
</text>
|
||||
<hrule>
|
||||
<stretch>true</stretch>
|
||||
</hrule>
|
||||
</group>
|
||||
|
||||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Wireframe</label>
|
||||
<name>wireframe</name>
|
||||
<property>/sim/rendering/wireframe</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>wireframe</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
<!--
|
||||
|
||||
<group>
|
||||
|
@ -122,18 +142,22 @@
|
|||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Particles (smoke, dust, spray)</label>
|
||||
<name>particles</name>
|
||||
<property>/sim/rendering/particles</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>particles</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Precipitation</label>
|
||||
<name>precipitation</name>
|
||||
<property>/sim/rendering/precipitation-gui-enable</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>precipitation</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
|
@ -162,12 +186,14 @@
|
|||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Random vegetation</label>
|
||||
<name>random-vegetation</name>
|
||||
<enable>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
</enable>
|
||||
<property>/sim/rendering/random-vegetation</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>random-vegetation</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
|
@ -198,32 +224,60 @@
|
|||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>3D clouds</label>
|
||||
<name>3d-clouds</name>
|
||||
<enable>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
</enable>
|
||||
<property>/sim/rendering/clouds3d-enable</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>3d-clouds</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
<!--
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<halign>right</halign>
|
||||
<text>
|
||||
<label>Cloud density</label>
|
||||
<enable>
|
||||
<and>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
<property>/sim/rendering/clouds3d-enable</property>
|
||||
</and>
|
||||
</enable>
|
||||
</text>
|
||||
<slider>
|
||||
<name>cloud-density</name>
|
||||
<enable>
|
||||
<and>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
<property>/sim/rendering/clouds3d-enable</property>
|
||||
</and>
|
||||
</enable>
|
||||
<min>0</min>
|
||||
<max>1.0</max>
|
||||
<property>/sim/rendering/clouds3d-density</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>cloud-density</object-name>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>/sim/rendering/clouds3d-enable</property>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>/sim/rendering/clouds3d-enable</property>
|
||||
</binding>
|
||||
</slider>
|
||||
<text>
|
||||
<enable>
|
||||
<and>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
<property>/sim/rendering/clouds3d-enable</property>
|
||||
</and>
|
||||
</enable>
|
||||
<label>12345678</label>
|
||||
<format>%.2f</format>
|
||||
<live>true</live>
|
||||
|
@ -231,31 +285,40 @@
|
|||
</text>
|
||||
</group>
|
||||
|
||||
-->
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<halign>right</halign>
|
||||
<text>
|
||||
<label>Cloud visibility range</label>
|
||||
<enable>
|
||||
<and>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
<property>/sim/rendering/clouds3d-enable</property>
|
||||
</and>
|
||||
</enable>
|
||||
</text>
|
||||
<slider>
|
||||
<name>cloud-vis-range</name>
|
||||
<enable>
|
||||
<and>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
<property>/sim/rendering/clouds3d-enable</property>
|
||||
</and>
|
||||
</enable>
|
||||
<min>100.0</min>
|
||||
<max>20000.0</max>
|
||||
<property>/sim/rendering/clouds3d-vis-range</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>cloud-vis-range</object-name>
|
||||
</binding>
|
||||
</slider>
|
||||
<text>
|
||||
<enable>
|
||||
<and>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
<property>/sim/rendering/clouds3d-enable</property>
|
||||
</and>
|
||||
</enable>
|
||||
<label>12345678</label>
|
||||
<format>%.fm</format>
|
||||
|
@ -290,9 +353,11 @@
|
|||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Material shaders</label>
|
||||
<name>material-shaders</name>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>material-shaders</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
|
@ -303,72 +368,84 @@
|
|||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Crop texture</label>
|
||||
<name>crop-texture</name>
|
||||
<enable>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
</enable>
|
||||
<property>/sim/rendering/crop-shader</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>crop-texture</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Landmass effects</label>
|
||||
<name>landmass-effects</name>
|
||||
<enable>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
</enable>
|
||||
<property>/sim/rendering/landmass-shader</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>landmass-effects</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Water reflection</label>
|
||||
<name>water-reflection</name>
|
||||
<enable>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
</enable>
|
||||
<property>/sim/rendering/water-shader</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>water-reflection</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Urban effects</label>
|
||||
<name>urban-effects</name>
|
||||
<enable>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
</enable>
|
||||
<property>/sim/rendering/urban-shader</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>urban-effects</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Transition effects</label>
|
||||
<name>transition-effects</name>
|
||||
<enable>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
</enable>
|
||||
<property>/sim/rendering/transition-shader</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>transition-effects</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
|
||||
<checkbox>
|
||||
<halign>left</halign>
|
||||
<label>Persistent contrails</label>
|
||||
<name>persistent-contrails</name>
|
||||
<enable>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
</enable>
|
||||
<property>/sim/rendering/contrail-shader</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>persistent-contrails</object-name>
|
||||
</binding>
|
||||
</checkbox>
|
||||
</group>
|
||||
|
@ -377,25 +454,48 @@
|
|||
<layout>hbox</layout>
|
||||
<halign>right</halign>
|
||||
<text>
|
||||
<label>Snow Level</label>
|
||||
<label>Snow line</label>
|
||||
<enable>
|
||||
<and>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
<or>
|
||||
<property>/sim/rendering/crop-shader</property>
|
||||
<property>/sim/rendering/landmass-shader</property>
|
||||
<property>/sim/rendering/urban-shader</property>
|
||||
</or>
|
||||
</and>
|
||||
</enable>
|
||||
</text>
|
||||
<slider>
|
||||
<name>snow-level</name>
|
||||
<enable>
|
||||
<and>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
<or>
|
||||
<property>/sim/rendering/crop-shader</property>
|
||||
<property>/sim/rendering/landmass-shader</property>
|
||||
<property>/sim/rendering/urban-shader</property>
|
||||
</or>
|
||||
</and>
|
||||
</enable>
|
||||
<min>0.0</min>
|
||||
<max>5000.0</max>
|
||||
<property>/sim/rendering/snow-level-m</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>snow-level</object-name>
|
||||
</binding>
|
||||
</slider>
|
||||
<text>
|
||||
<enable>
|
||||
<and>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
<or>
|
||||
<property>/sim/rendering/crop-shader</property>
|
||||
<property>/sim/rendering/landmass-shader</property>
|
||||
<property>/sim/rendering/urban-shader</property>
|
||||
</or>
|
||||
</and>
|
||||
</enable>
|
||||
<label>12345678</label>
|
||||
<format>%.fm</format>
|
||||
|
@ -414,6 +514,7 @@
|
|||
</enable>
|
||||
</text>
|
||||
<slider>
|
||||
<name>quality-level</name>
|
||||
<enable>
|
||||
<property>/sim/rendering/shader-effects</property>
|
||||
</enable>
|
||||
|
@ -423,6 +524,7 @@
|
|||
<property>/sim/rendering/quality-level</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
<object-name>quality-level</object-name>
|
||||
</binding>
|
||||
</slider>
|
||||
<text>
|
||||
|
@ -439,6 +541,17 @@
|
|||
</group>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<default>true</default>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
<nasal>
|
||||
<open>
|
||||
gui.enable_widgets(cmdarg(), "shadows-debug", getprop("/sim/gui/devel-widgets"));
|
||||
|
|
|
@ -4,15 +4,34 @@
|
|||
<modal>false</modal>
|
||||
<layout>vbox</layout>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Instant Replay</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<nasal>
|
||||
<open>
|
||||
# Populate the view combo box with a list of the available views
|
||||
var combo = cmdarg().getNode("group").getNode("combo");
|
||||
var combo = cmdarg().getChildren("group")[1].getNode("combo");
|
||||
combo.removeChildren("value");
|
||||
|
||||
var current_view = getprop("/sim/current-view/view-number");
|
||||
|
|
|
@ -224,12 +224,17 @@ command interface /autopilot/route-manager/input:
|
|||
<!-- departure / arrival airport information -->
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<layout>table</layout>
|
||||
<text>
|
||||
<row>0</row>
|
||||
<col>0</col>
|
||||
<halign>right</halign>
|
||||
<label>Departure:</label>
|
||||
<pref-width>80</pref-width>
|
||||
</text>
|
||||
<input>
|
||||
<row>0</row>
|
||||
<col>1</col>
|
||||
<halign>left</halign>
|
||||
<name>departure-airport</name>
|
||||
<pref-width>60</pref-width>
|
||||
<property>/autopilot/route-manager/departure/airport</property>
|
||||
|
@ -246,6 +251,8 @@ command interface /autopilot/route-manager/input:
|
|||
</input>
|
||||
|
||||
<text>
|
||||
<row>0</row>
|
||||
<col>2</col>
|
||||
<format>%s</format>
|
||||
<property>/autopilot/route-manager/departure/name</property>
|
||||
<live>true</live>
|
||||
|
@ -254,11 +261,16 @@ command interface /autopilot/route-manager/input:
|
|||
</text>
|
||||
|
||||
<text>
|
||||
<row>0</row>
|
||||
<col>3</col>
|
||||
<halign>right</halign>
|
||||
<label>Rwy:</label>
|
||||
</text>
|
||||
<combo>
|
||||
<row>0</row>
|
||||
<col>4</col>
|
||||
<halign>left</halign>
|
||||
<name>departure-runway</name>
|
||||
<pref-width>60</pref-width>
|
||||
<property>/autopilot/route-manager/departure/runway</property>
|
||||
<editable>false</editable>
|
||||
<properties>/sim/gui/dialogs/route-manager/departure-runways</properties>
|
||||
|
@ -274,11 +286,16 @@ command interface /autopilot/route-manager/input:
|
|||
</combo>
|
||||
|
||||
<text>
|
||||
<row>0</row>
|
||||
<col>5</col>
|
||||
<halign>right</halign>
|
||||
<label>SID:</label>
|
||||
</text>
|
||||
<combo>
|
||||
<row>0</row>
|
||||
<col>6</col>
|
||||
<halign>left</halign>
|
||||
<name>sid</name>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/autopilot/route-manager/departure/sid</property>
|
||||
<editable>false</editable>
|
||||
<properties>/sim/gui/dialogs/route-manager/sids</properties>
|
||||
|
@ -288,17 +305,19 @@ command interface /autopilot/route-manager/input:
|
|||
<object-name>sid</object-name>
|
||||
</binding>
|
||||
</combo>
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<text>
|
||||
<row>1</row>
|
||||
<col>0</col>
|
||||
<halign>right</halign>
|
||||
<label>Arrival:</label>
|
||||
<pref-width>80</pref-width>
|
||||
</text>
|
||||
<input>
|
||||
<name>destination-airport</name>
|
||||
<row>1</row>
|
||||
<col>1</col>
|
||||
<halign>left</halign>
|
||||
<pref-width>60</pref-width>
|
||||
<name>destination-airport</name>
|
||||
<property>/autopilot/route-manager/destination/airport</property>
|
||||
<live>true</live>
|
||||
<binding>
|
||||
|
@ -311,7 +330,10 @@ command interface /autopilot/route-manager/input:
|
|||
</binding>
|
||||
</input>
|
||||
<text>
|
||||
<row>1</row>
|
||||
<col>2</col>
|
||||
<stretch>true</stretch>
|
||||
<pref-width>200</pref-width>
|
||||
<format>%s</format>
|
||||
<property>/autopilot/route-manager/destination/name</property>
|
||||
<live>true</live>
|
||||
|
@ -319,11 +341,16 @@ command interface /autopilot/route-manager/input:
|
|||
</text>
|
||||
|
||||
<text>
|
||||
<row>1</row>
|
||||
<col>3</col>
|
||||
<halign>right</halign>
|
||||
<label>Rwy:</label>
|
||||
</text>
|
||||
<combo>
|
||||
<row>1</row>
|
||||
<col>4</col>
|
||||
<halign>left</halign>
|
||||
<name>destination-runway</name>
|
||||
<pref-width>60</pref-width>
|
||||
<property>/autopilot/route-manager/destination/runway</property>
|
||||
<editable>false</editable>
|
||||
<properties>/sim/gui/dialogs/route-manager/destination-runways</properties>
|
||||
|
@ -340,11 +367,16 @@ command interface /autopilot/route-manager/input:
|
|||
</combo>
|
||||
|
||||
<text>
|
||||
<row>1</row>
|
||||
<col>5</col>
|
||||
<halign>right</halign>
|
||||
<label>STAR:</label>
|
||||
</text>
|
||||
<combo>
|
||||
<row>1</row>
|
||||
<col>6</col>
|
||||
<halign>left</halign>
|
||||
<name>star</name>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/autopilot/route-manager/destination/star</property>
|
||||
<editable>false</editable>
|
||||
<properties>/sim/gui/dialogs/route-manager/stars</properties>
|
||||
|
@ -375,28 +407,28 @@ command interface /autopilot/route-manager/input:
|
|||
<group>
|
||||
<layout>hbox</layout>
|
||||
<text>
|
||||
<halign>right</halign>
|
||||
<label>Cruise Speed (kts):</label>
|
||||
<pref-width>80</pref-width>
|
||||
</text>
|
||||
<input>
|
||||
<name>cruise-speed</name>
|
||||
<live>true</live>
|
||||
<halign>fill</halign>
|
||||
<halign>left</halign>
|
||||
<stretch>true</stretch>
|
||||
<pref-width>150</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/autopilot/route-manager/cruise/speed-kts</property>
|
||||
</input>
|
||||
|
||||
<text>
|
||||
<label>Cruise Altitude (ft/FL):</label>
|
||||
<pref-width>80</pref-width>
|
||||
<halign>right</halign>
|
||||
</text>
|
||||
<input>
|
||||
<name>cruise-alt</name>
|
||||
<live>true</live>
|
||||
<halign>fill</halign>
|
||||
<halign>left</halign>
|
||||
<stretch>true</stretch>
|
||||
<pref-width>150</pref-width>
|
||||
<pref-width>100</pref-width>
|
||||
<property>/autopilot/route-manager/cruise/altitude-ft</property>
|
||||
</input>
|
||||
</group>
|
||||
|
@ -582,5 +614,12 @@ command interface /autopilot/route-manager/input:
|
|||
<script>save_selector.open();</script>
|
||||
</binding>
|
||||
</button>
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
</PropertyList>
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<empty><stretch>true</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Choose active scenario(s) for the next program start</label>
|
||||
<label>AI Scenario Select</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>true</stretch></empty>
|
||||
|
@ -49,6 +49,13 @@
|
|||
|
||||
<hrule/>
|
||||
|
||||
<text>
|
||||
<label>Choose active scenario(s) for the next program start</label>
|
||||
</text>
|
||||
|
||||
<hrule/>
|
||||
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
|
||||
|
@ -64,6 +71,7 @@
|
|||
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
|
|
|
@ -8,10 +8,28 @@
|
|||
<width>400</width>
|
||||
<layout>vbox</layout>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Sound Configuration</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
|
|
20
gui/dialogs/static-lod.xml
Executable file → Normal file
20
gui/dialogs/static-lod.xml
Executable file → Normal file
|
@ -4,10 +4,28 @@
|
|||
<name>static-lod</name>
|
||||
<layout>vbox</layout>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>Static Scenery Level Of Detail</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
|
@ -57,6 +75,8 @@
|
|||
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<default-padding>10</default-padding>
|
||||
|
|
|
@ -105,4 +105,16 @@
|
|||
</text>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<default>true</default>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
|
||||
</PropertyList>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<open>
|
||||
# Code to populate the engine entries.
|
||||
var groups = cmdarg().getChildren("group");
|
||||
var group = groups[3].getChildren("group")[2];
|
||||
var group = groups[1].getChildren("group")[2];
|
||||
var engines = props.globals.getNode("/engines");
|
||||
var row = 4;
|
||||
var engine = 0;
|
||||
|
@ -30,7 +30,8 @@
|
|||
i += 1;
|
||||
|
||||
foreach (var e; engines.getChildren("engine")) {
|
||||
if ((e.getChild("starter") != nil) or (e.getChild("running") != nil)) {
|
||||
if (((e.getChild("starter") != nil) and (e.getChild("starter") != "")) or
|
||||
((e.getChild("running") != nil) and (e.getChild("running") != "")) ) {
|
||||
row = row + 1;
|
||||
|
||||
# Set up the label
|
||||
|
@ -71,23 +72,34 @@
|
|||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>System Failures</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<hrule/>
|
||||
</group>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<halign>left</halign>
|
||||
<text>
|
||||
<halign>left</halign>
|
||||
<label>Uncheck a system to fail it, or set the Mean Time/Cycles Between Failures.</label>
|
||||
</text>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
|
@ -364,6 +376,8 @@
|
|||
</group>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<default>1</default>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
|
@ -158,14 +157,6 @@
|
|||
</button>
|
||||
</group>
|
||||
|
||||
<empty>
|
||||
<pref-height>6</pref-height>
|
||||
</empty>
|
||||
<hrule/>
|
||||
<empty>
|
||||
<pref-height>6</pref-height>
|
||||
</empty>
|
||||
|
||||
<empty>
|
||||
<stretch>true</stretch>
|
||||
</empty>
|
||||
|
@ -261,4 +252,15 @@
|
|||
</group>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<default>true</default>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
</PropertyList>
|
||||
|
|
|
@ -5,15 +5,37 @@
|
|||
<modal>false</modal>
|
||||
<layout>vbox</layout>
|
||||
|
||||
<group>
|
||||
<layout>hbox</layout>
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<text>
|
||||
<label>View Options</label>
|
||||
</text>
|
||||
|
||||
<empty><stretch>1</stretch></empty>
|
||||
|
||||
<button>
|
||||
<pref-width>16</pref-width>
|
||||
<pref-height>16</pref-height>
|
||||
<legend></legend>
|
||||
<keynum>27</keynum>
|
||||
<border>2</border>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<text>
|
||||
<label>Choose Active Views</label>
|
||||
</text>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<nasal>
|
||||
<open>
|
||||
var group = cmdarg().getNode("group");
|
||||
var group = cmdarg().getChildren("group")[1];
|
||||
var ac = getprop("/sim/aircraft");
|
||||
group.removeChildren("checkbox");
|
||||
group.removeChildren("hrule");
|
||||
|
@ -64,6 +86,8 @@
|
|||
</checkbox-template>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<default>true</default>
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
</binding>
|
||||
</button>
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<group>
|
||||
|
@ -442,7 +443,7 @@
|
|||
<col>0</col>
|
||||
<live>true</live>
|
||||
<halign>fill</halign>
|
||||
<property>/environment/metar/rain-norm</property>
|
||||
<property>/environment/rain-norm</property>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
</binding>
|
||||
|
@ -459,7 +460,7 @@
|
|||
<row>1</row>
|
||||
<col>1</col>
|
||||
<halign>fill</halign>
|
||||
<property>/environment/metar/snow-norm</property>
|
||||
<property>/environment/snow-norm</property>
|
||||
<live>true</live>
|
||||
<pref-height>30</pref-height>
|
||||
<binding>
|
||||
|
@ -1551,6 +1552,17 @@
|
|||
|
||||
</group>
|
||||
|
||||
<hrule/>
|
||||
|
||||
<button>
|
||||
<legend>Close</legend>
|
||||
<default>true</default>
|
||||
<key>Esc</key>
|
||||
<binding>
|
||||
<command>dialog-close</command>
|
||||
</binding>
|
||||
</button>
|
||||
|
||||
<nasal>
|
||||
<open><![CDATA[
|
||||
var normalize_string = func(src) {
|
||||
|
@ -1601,7 +1613,7 @@
|
|||
combo.getChild("value", i, 1).setValue(scenarios[i].getNode("name").getValue());
|
||||
}
|
||||
|
||||
me.scenarioListenerId = setlistener( me.base ~ "/source-selection", func(n) { me.scenarioListener(n); } );
|
||||
me.scenarioListenerId = setlistener( me.base ~ "/source-selection", func(n) { me.scenarioListener(n); }, 1, 1 );
|
||||
me.metarListenerId = setlistener( "environment/metar/valid", func(n) { me.metarListener(n); }, 1, 1 );
|
||||
},
|
||||
|
||||
|
|
|
@ -207,7 +207,7 @@
|
|||
<label>Location</label>
|
||||
|
||||
<item>
|
||||
<label>Position Aircraft (on ground)</label>
|
||||
<label>Position Aircraft On Ground</label>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>location-on-ground</dialog-name>
|
||||
|
@ -215,7 +215,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label>Position Aircraft (in air)</label>
|
||||
<label>Position Aircraft In Air</label>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>location-in-air</dialog-name>
|
||||
|
@ -223,7 +223,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label>Select Airport from List</label>
|
||||
<label>Select Airport From List</label>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>airports</dialog-name>
|
||||
|
@ -231,7 +231,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label>Random Attitude</label>H
|
||||
<label>Random Attitude</label>
|
||||
<binding>
|
||||
<command>property-assign</command>
|
||||
<property>/sim/presets/trim</property>
|
||||
|
@ -258,7 +258,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label>Tower position</label>
|
||||
<label>Tower Position</label>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>location-of-tower</dialog-name>
|
||||
|
@ -273,6 +273,7 @@
|
|||
|
||||
<item>
|
||||
<label>Autopilot Settings (F11)</label>
|
||||
<name>autopilot-settings</name>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>autopilot</dialog-name>
|
||||
|
@ -378,6 +379,7 @@
|
|||
|
||||
<item>
|
||||
<label>Map</label>
|
||||
<name>map</name>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>map</dialog-name>
|
||||
|
@ -393,7 +395,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label>Fuel and Payload</label>
|
||||
<label>Fuel And Payload</label>
|
||||
<name>fuel-and-payload</name>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
|
@ -403,6 +405,7 @@
|
|||
|
||||
<item>
|
||||
<label>Radio Settings (F12)</label>
|
||||
<name>radio</name>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>radios</dialog-name>
|
||||
|
@ -411,6 +414,7 @@
|
|||
|
||||
<item>
|
||||
<label>GPS Settings</label>
|
||||
<name>gps</name>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>gps</dialog-name>
|
||||
|
@ -458,13 +462,6 @@
|
|||
|
||||
<menu>
|
||||
<label>AI</label>
|
||||
<item>
|
||||
<label>AI Options</label>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>ai</dialog-name>
|
||||
</binding>
|
||||
</item>
|
||||
<!-- Not working at present
|
||||
<item>
|
||||
<label>ATC Services in range</label>
|
||||
|
@ -475,7 +472,7 @@
|
|||
|
||||
-->
|
||||
<item>
|
||||
<label>AI Formation</label>
|
||||
<label>Wingman Controls</label>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>formation</dialog-name>
|
||||
|
@ -483,7 +480,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label>AI Tanker</label>
|
||||
<label>Tanker Controls</label>
|
||||
<name>tanker</name>
|
||||
<enabled>false</enabled>
|
||||
<binding>
|
||||
|
@ -493,7 +490,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label>AI Carrier Options</label>
|
||||
<label>Carrier Controls</label>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>AIcarrier</dialog-name>
|
||||
|
@ -501,7 +498,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label>AI Scenario Select - takes effect on next run </label>
|
||||
<label>Scenario Select (requires restart)</label>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>scenario</dialog-name>
|
||||
|
@ -525,7 +522,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label>Chat Menu</label>
|
||||
<label>Chat Menu (-)</label>
|
||||
<binding>
|
||||
<command>dialog-show</command>
|
||||
<dialog-name>chat-menu</dialog-name>
|
||||
|
@ -541,7 +538,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label>MPCarrier selection</label>
|
||||
<label>MPCarrier Selection</label>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>
|
||||
|
@ -702,6 +699,14 @@
|
|||
</binding>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<label>Aircraft Help (?)</label>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>gui.showHelpDialog("/sim/help")</script>
|
||||
</binding>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<label>Joystick Information</label>
|
||||
<name>joystick-info</name>
|
||||
|
@ -711,10 +716,6 @@
|
|||
</binding>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<label> --- Key Reference ---</label>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<label>Basic Simulator Keys</label>
|
||||
<binding>
|
||||
|
@ -732,15 +733,7 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<label> Current Aircraft Keys (?)</label>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>gui.showHelpDialog("/sim/help")</script>
|
||||
</binding>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<label> ---------------------</label>
|
||||
<label>------------------</label>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
|
|
@ -328,7 +328,10 @@ top down before the key bindings are parsed.
|
|||
<name>'</name>
|
||||
<desc>Display a dialog relevant to the tuned in ATC service (if any)</desc>
|
||||
<binding>
|
||||
<!-- At the moment, we have no working interactive ATC, so this is
|
||||
disabled for v2.2.0.
|
||||
<command>ATC-dialog</command>
|
||||
-->
|
||||
</binding>
|
||||
</key>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue