1
0
Fork 0
fgdata/preferences.xml
david 2c2238c296 Added keybindings for selecting a current engine, for changing magneto
position, and for engaging the starter.  Here's how it works:

1. To select an engine, use '!' (shift-1) for engine 1, '@' (shift-2)
   for engine 2, '#' (shift-3) for engine 3, '$' (shift-4) for engine
   4, or '~' to select all engines.  These bindings set the bool
   properties /sim/input/selected/engine[0],
   /sim/input/selected/engine[1], etc.

2. To decrease the magneto for the selected engine(s), use '{'.

3. To increase the magneto for the selected engine(s), use '}'.

4. To engage the starter for the selected engine(s), use SPACE.

Eventually, I'll extend this so that the throttle uses the selected
engine as well, and will perhaps even support engine selection in the
joystick bindings.  Right now, only engine 1 (engines[0]) is selected
by default.
2001-12-18 12:37:21 +00:00

219 lines
4.3 KiB
XML

<?xml version="1.0"?>
<!--
************************************************************************
Global defaults for FlightGear property values.
Started September 2000 by David Megginson, david@megginson.com
************************************************************************
-->
<PropertyList>
<!-- General simulation preferences -->
<sim>
<aircraft>c172</aircraft>
<startup>
<xsize>800</xsize>
<ysize>600</ysize>
<splash-screen>true</splash-screen>
<intro-music>true</intro-music>
<game-mode>false</game-mode>
<airport-id>KSFO</airport-id>
<fullscreen>false</fullscreen>
<units>feet</units>
<trim>true</trim>
<browser-app>netscape</browser-app><!-- help viewer -->
</startup>
<model-hz>120</model-hz>
<sound>true</sound>
<speed-up>1.0</speed-up>
<field-of-view>55.0</field-of-view>
<panel>
<path>Aircraft/c172/Panels/c172-vfr-panel.xml</path>
<visibility>false</visibility>
</panel>
<hud>
<path>Huds/Default/default.xml</path>
<visibility>false</visibility>
</hud>
<instrument-options>
<nav n="0">
<has-gs-needle>1</has-gs-needle>
<needles-pivot>1</needles-pivot>
</nav>
<nav n="1">
<has-gs-needle>0</has-gs-needle>
<needles-pivot>1</needles-pivot>
</nav>
<hsi n="0">
<has-gs-needle>1</has-gs-needle>
</hsi>
<dg>
<style>0</style>
</dg>
</instrument-options>
<input>
<selected>
<engine n="0">true</engine>
<engine n="1">false</engine>
<engine n="2">false</engine>
<engine n="3">false</engine>
</selected>
</input>
</sim>
<!-- Position -->
<position>
<altitude-ft>-9999</altitude-ft>
</position>
<!-- Velocities -->
<velocities>
<speed-north-fps>0.0</speed-north-fps>
<speed-east-fps>0.0</speed-east-fps>
<speed-down-fps>0.0</speed-down-fps>
</velocities>
<!-- Orientation -->
<orientation>
<heading-deg>270</heading-deg>
<roll-deg>0.0</roll-deg>
<pitch-deg>0.424</pitch-deg>
</orientation>
<!-- Environment -->
<environment>
<visibility-m>16000</visibility-m>
</environment>
<!-- Controls -->
<controls>
<aileron>0.0</aileron>
<aileron-trim>0.0</aileron-trim>
<elevator>0.0</elevator>
<elevator-trim>0.0</elevator-trim>
<rudder>0.0</rudder>
<rudder-trim>0.0</rudder-trim>
<flaps>0.0</flaps>
<starter n="0">false</starter>
<magnetos n="0">0</magnetos>
<throttle n="0">0.0</throttle>
<mixture n="0">1.0</mixture>
<propeller-pitch n="0">1.0</propeller-pitch>
<starter n="1">false</starter>
<magnetos n="1">0</magnetos>
<throttle n="1">0.0</throttle>
<mixture n="1">1.0</mixture>
<propeller-pitch n="1">1.0</propeller-pitch>
<starter n="2">false</starter>
<magnetos n="2">0</magnetos>
<throttle n="2">0.0</throttle>
<mixture n="2">1.0</mixture>
<propeller-pitch n="2">1.0</propeller-pitch>
<starter n="3">false</starter>
<magnetos n="3">0</magnetos>
<throttle n="3">0.0</throttle>
<mixture n="3">1.0</mixture>
<propeller-pitch n="3">1.0</propeller-pitch>
<brakes n="0">0.0</brakes>
<brakes n="1">0.0</brakes>
<brakes n="2">0.0</brakes>
<gear-down>1.0</gear-down>
</controls>
<!-- User input devices -->
<input>
<!-- included externally -->
<keyboard include="keyboard.xml"/>
<!-- included externally -->
<joysticks include="joysticks.xml"/>
</input>
<!-- Radio settings -->
<radios>
<comm n="0">
<frequencies>
<selected-mhz>117.4</selected-mhz>
<standby-mhz>115.8</standby-mhz>
</frequencies>
</comm>
<comm n="1">
<frequencies>
<selected-mhz>111.80</selected-mhz>
<standby-mhz>115.70</standby-mhz>
</frequencies>
</comm>
<nav n="0">
<frequencies>
<selected-mhz>117.3</selected-mhz>
<standby-mhz>110.3</standby-mhz>
</frequencies>
<radials>
<selected-deg>119.0</selected-deg>
</radials>
</nav>
<nav n="1">
<frequencies>
<selected-mhz>111.80</selected-mhz>
<standby-mhz>115.70</standby-mhz>
</frequencies>
<radials>
<selected-deg>029.0</selected-deg>
</radials>
</nav>
<adf>
<frequencies>
<selected-khz>266.0</selected-khz>
<standby-khz>300.0</standby-khz>
</frequencies>
<rotation-deg>90</rotation-deg>
</adf>
</radios>
<!-- Instruments -->
<!-- this is here because the datum isn't retained on a reset -->
<steam>
<altimeter-datum-mb>1013.25</altimeter-datum-mb>
</steam>
</PropertyList>
<!-- end of preferences.xml -->