2010-09-18 13:28:14 +00:00
|
|
|
<?xml version="1.0"?>
|
2003-01-16 18:17:28 +00:00
|
|
|
<PropertyList>
|
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
<menu>
|
2010-09-22 21:26:10 +00:00
|
|
|
<label>File</label>
|
|
|
|
<!--
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>Load Flight (Shift-F1)</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.load_flight()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>Save Flight (Shift-F2)</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.save_flight()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-22 21:26:10 +00:00
|
|
|
|
2010-09-18 13:28:14 +00:00
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>Scenario</label>
|
2010-09-18 13:28:14 +00:00
|
|
|
<binding>
|
2010-09-07 18:59:00 +00:00
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>scenario</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-07 23:12:24 +00:00
|
|
|
-->
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
2010-09-09 22:34:23 +00:00
|
|
|
<label>Reset (Shift-Esc)</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>reset</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2010-09-18 13:28:14 +00:00
|
|
|
<!-- <item>
|
2010-09-07 23:12:24 +00:00
|
|
|
<label>Set Lat/Lon Format</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>
|
|
|
|
var f = getprop(var d = "/sim/lon-lat-format") + 1;
|
|
|
|
setprop(d, f < 0 ? 0 : f > 2 ? 0 : f);
|
|
|
|
</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2009-05-04 20:56:32 +00:00
|
|
|
<label>High-Res Snapshot</label>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
<binding>
|
|
|
|
<command>hires-screen-capture</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-18 13:28:14 +00:00
|
|
|
-->
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
2010-09-09 22:34:23 +00:00
|
|
|
<label>Screenshot (F3)</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>
|
2010-09-18 13:28:14 +00:00
|
|
|
gui.popdown();
|
2009-05-04 20:56:32 +00:00
|
|
|
var success = fgcommand("screen-capture");
|
|
|
|
var path = getprop("/sim/paths/screenshot-last");
|
|
|
|
if (success)
|
|
|
|
gui.popupTip("Screenshot written to '" ~ path ~ "'");
|
|
|
|
else
|
|
|
|
gui.popupTip("Error writing screenshot '" ~ path ~ "'");
|
|
|
|
</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<!--
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>Last snapshot</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
2010-09-07 18:59:00 +00:00
|
|
|
<command>nasal</command>
|
|
|
|
<script>
|
|
|
|
var path = getprop("/sim/paths/screenshot-last");
|
|
|
|
if (path != nil) gui.popupTip(...) else gui.popupTip("no screenshots yet in this session")
|
2009-05-04 20:56:32 +00:00
|
|
|
|
2010-09-07 18:59:00 +00:00
|
|
|
gui.popupTip("Screenshot written to '" ~ path ~ "'");
|
|
|
|
</script>
|
2009-05-04 20:56:32 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>Print Screen (F3)</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>old-print-dialog</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-09 22:34:23 +00:00
|
|
|
-->
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
|
|
|
<label>Sound Configuration</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>sound-dialog</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2010-09-09 22:34:23 +00:00
|
|
|
<label>Quit (Esc)</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>exit</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
|
|
|
<label>View</label>
|
|
|
|
|
|
|
|
<item>
|
2009-10-15 03:25:05 +00:00
|
|
|
<label>Display Options</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
2009-10-15 03:25:05 +00:00
|
|
|
<dialog-name>display</dialog-name>
|
2009-05-04 20:56:32 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Rendering Options</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>rendering</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2009-12-05 23:09:12 +00:00
|
|
|
<item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<!-- <item>
|
2010-09-07 23:12:24 +00:00
|
|
|
<label>Set Lat/Lon Format</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>
|
|
|
|
var f = getprop(var d = "/sim/lon-lat-format") + 1;
|
|
|
|
setprop(d, f < 0 ? 0 : f > 2 ? 0 : f);
|
|
|
|
</script>
|
|
|
|
</binding>
|
|
|
|
</item> -->
|
2009-12-05 23:09:12 +00:00
|
|
|
<label>View Options</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>view</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
|
|
|
<label>Cockpit View Options</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>cockpit-view</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<label>Adjust LOD Ranges</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
2010-09-18 13:28:14 +00:00
|
|
|
<dialog-name>static-lod</dialog-name>
|
2009-05-04 20:56:32 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2009-11-22 17:32:06 +00:00
|
|
|
<label>Adjust View Position</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>pilot_offset</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Adjust HUD Properties</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>hud</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<label>Toggle Glide Slope Tunnel</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
2010-09-18 13:28:14 +00:00
|
|
|
<command>nasal</command>
|
|
|
|
<script>
|
|
|
|
var p = "/sim/rendering/glide-slope-tunnel";
|
|
|
|
setprop(p, var i = !getprop(p));
|
|
|
|
gui.popupTip("Glide slope tunnel " ~ (i ? "enabled" : "disabled"));
|
|
|
|
</script>
|
2009-05-04 20:56:32 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-05 09:54:59 +00:00
|
|
|
|
|
|
|
<item>
|
2010-09-07 19:07:53 +00:00
|
|
|
<label>Instant Replay (Ctrl-R)</label>
|
2010-09-05 09:54:59 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
2010-09-07 18:59:00 +00:00
|
|
|
<dialog-name>replay</dialog-name>
|
2010-09-05 09:54:59 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-23 17:59:18 +00:00
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Stereoscopic View Options</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>stereoscopic-view-options</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2009-05-04 20:56:32 +00:00
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
|
|
|
<label>Location</label>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Position Aircraft (on ground)</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>location-on-ground</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Position Aircraft (in air)</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>location-in-air</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Select Airport from List</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>airports</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>Random Attitude</label>H
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>property-assign</command>
|
|
|
|
<property>/sim/presets/trim</property>
|
|
|
|
<value>false</value>
|
|
|
|
</binding>
|
|
|
|
<binding>
|
|
|
|
<command>property-randomize</command>
|
|
|
|
<property>/orientation/pitch-deg</property>
|
|
|
|
<min>0</min>
|
|
|
|
<max>360</max>
|
|
|
|
</binding>
|
|
|
|
<binding>
|
|
|
|
<command>property-randomize</command>
|
|
|
|
<property>/orientation/roll-deg</property>
|
|
|
|
<min>0</min>
|
|
|
|
<max>360</max>
|
|
|
|
</binding>
|
|
|
|
<binding>
|
|
|
|
<command>property-randomize</command>
|
|
|
|
<property>/orientation/heading-deg</property>
|
|
|
|
<min>0</min>
|
|
|
|
<max>360</max>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Tower position</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>location-of-tower</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
|
|
|
<label>Autopilot</label>
|
|
|
|
<name>autopilot</name>
|
|
|
|
|
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>Autopilot Settings (F11)</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>autopilot</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Route Manager</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>route-manager</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2010-09-18 13:28:14 +00:00
|
|
|
<item>
|
2010-03-27 17:16:01 +00:00
|
|
|
<label>Previous Waypoint</label>
|
2010-09-20 08:41:42 +00:00
|
|
|
<binding>
|
2009-05-04 20:56:32 +00:00
|
|
|
<command>nasal</command>
|
2010-03-27 17:16:01 +00:00
|
|
|
<script>setprop("/autopilot/route-manager/input", "@previous")</script>
|
2009-05-04 20:56:32 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-18 13:28:14 +00:00
|
|
|
|
|
|
|
<item>
|
2010-03-27 17:16:01 +00:00
|
|
|
<label>Next Waypoint</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
2010-03-27 17:16:01 +00:00
|
|
|
<script>setprop("/autopilot/route-manager/input", "@next")</script>
|
2009-05-04 20:56:32 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
|
|
|
<label>Environment</label>
|
|
|
|
|
2010-09-18 13:28:14 +00:00
|
|
|
<!--<item>
|
2009-05-04 20:56:32 +00:00
|
|
|
<label>Weather Scenario</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>weather_scenario</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2010-09-20 08:41:42 +00:00
|
|
|
<item>
|
2009-05-04 20:56:32 +00:00
|
|
|
<label>Weather Conditions</label>
|
2010-03-27 16:52:21 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
2009-05-04 20:56:32 +00:00
|
|
|
<dialog-name>weather</dialog-name>
|
2010-03-27 16:52:21 +00:00
|
|
|
</binding>
|
2010-09-18 13:28:14 +00:00
|
|
|
</item>-->
|
2009-05-04 20:56:32 +00:00
|
|
|
|
|
|
|
<item>
|
2010-09-11 14:15:49 +00:00
|
|
|
<label>Global Weather</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>weather</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2010-04-12 21:21:43 +00:00
|
|
|
<item>
|
|
|
|
<label>Local Weather</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
2010-04-12 21:21:43 +00:00
|
|
|
<dialog-name>local_weather</dialog-name>
|
2009-05-04 20:56:32 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2010-04-12 21:21:43 +00:00
|
|
|
<item>
|
|
|
|
<label>Local Weather Tiles</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>local_weather_tiles</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-07 18:59:00 +00:00
|
|
|
|
2010-09-25 13:12:34 +00:00
|
|
|
<item>
|
|
|
|
<label>Local Weather Config</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>local_weather_config</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2010-09-19 10:07:40 +00:00
|
|
|
<item>
|
|
|
|
<label>Time Settings</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>timeofday</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-07 18:59:00 +00:00
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
|
|
|
<label>Wildfire Settings</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>wildfire.dialog.show()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-04-12 21:21:43 +00:00
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
|
|
|
<label>Equipment</label>
|
|
|
|
|
2010-09-18 13:28:14 +00:00
|
|
|
<item>
|
|
|
|
<label>Map</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>map</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Stopwatch</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>stopwatch-dialog</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
|
|
|
<label>Fuel and Payload</label>
|
|
|
|
<name>fuel-and-payload</name>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.showWeightDialog()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>Radio Settings (F12)</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>radios</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>GPS Settings</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>gps</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Instrument Settings</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>instruments</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2009-12-05 14:36:51 +00:00
|
|
|
|
2010-09-07 18:59:00 +00:00
|
|
|
|
2009-12-05 14:36:51 +00:00
|
|
|
<item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<label> --- Failures ---</label>
|
2009-12-05 14:36:51 +00:00
|
|
|
</item>
|
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
|
|
|
<label>Random Failures</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>random-failures</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>System Failures</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>system-failures</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Instrument Failures</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>instrument-failures</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
|
|
|
<label>ATC/AI</label>
|
|
|
|
<item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<label>ATC Options</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
2010-09-18 13:28:14 +00:00
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>ai</dialog-name>
|
2009-05-04 20:56:32 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-20 08:41:42 +00:00
|
|
|
<!-- Not working at present
|
|
|
|
<item>
|
|
|
|
<label>ATC Services in range</label>
|
|
|
|
<binding>
|
|
|
|
<command>ATC-freq-search</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2009-05-04 20:56:32 +00:00
|
|
|
|
2010-09-20 08:41:42 +00:00
|
|
|
-->
|
2010-10-01 15:36:32 +00:00
|
|
|
<item>
|
|
|
|
<label>AI Formation</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>formation</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2009-05-04 20:56:32 +00:00
|
|
|
|
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>AI Tanker</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<name>tanker</name>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>tanker</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-04-09 09:45:25 +00:00
|
|
|
|
|
|
|
<item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<label>AI Carrier Options</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>AIcarrier</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-07 18:59:00 +00:00
|
|
|
|
2010-09-18 13:28:14 +00:00
|
|
|
<item>
|
|
|
|
<label>AI Scenario Select - takes effect on next run </label>
|
2010-04-09 09:45:25 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>scenario</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-07 23:12:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
2010-09-07 11:12:32 +00:00
|
|
|
<label>Multiplayer</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<name>multiplayer</name>
|
|
|
|
|
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>Chat Dialog</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>chat-full</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Chat Menu</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>chat-menu</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Pilot List</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>multiplayer.dialog.show()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>MPCarrier selection</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>
|
|
|
|
if (contains(globals, "MPCarriers")) {
|
2010-09-18 13:28:14 +00:00
|
|
|
MPCarriers.carrier_dialog.show();
|
2009-05-04 20:56:32 +00:00
|
|
|
} else {
|
2010-09-18 13:28:14 +00:00
|
|
|
gui.popupTip("No MPCarriers around at the moment.");
|
2009-05-04 20:56:32 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-07 18:59:00 +00:00
|
|
|
|
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
|
|
|
<label>Debug</label>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Reload GUI</label>
|
|
|
|
<binding>
|
|
|
|
<command>reinit</command>
|
|
|
|
<subsystem>gui</subsystem>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Reload Input</label>
|
|
|
|
<binding>
|
|
|
|
<command>reinit</command>
|
|
|
|
<subsystem>input</subsystem>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2010-10-24 05:56:05 +00:00
|
|
|
<item>
|
|
|
|
<label>Reload HUD</label>
|
|
|
|
<binding>
|
|
|
|
<command>reinit</command>
|
|
|
|
<subsystem>hud</subsystem>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
|
|
|
<label>Reload Panel</label>
|
|
|
|
<binding>
|
|
|
|
<command>panel-load</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Reload Autopilot</label>
|
|
|
|
<binding>
|
|
|
|
<command>reinit</command>
|
|
|
|
<subsystem>xml-autopilot</subsystem>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2010-09-18 13:28:14 +00:00
|
|
|
<item>
|
|
|
|
<label>Reload Network</label>
|
|
|
|
<binding>
|
|
|
|
<command>reinit</command>
|
|
|
|
<subsystem>io</subsystem>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2009-09-07 07:33:15 +00:00
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
|
|
|
<label>Nasal Console</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>nasal-console</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Development Keys</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.showHelpDialog("/sim/help/debug")</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Configure Development Extensions</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>devel-extensions</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2009-12-05 14:36:51 +00:00
|
|
|
<item>
|
|
|
|
<label>Display Tutorial Marker</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>tutorial.dialog()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
<item>
|
|
|
|
<label>Dump Scene Graph</label>
|
|
|
|
<binding>
|
|
|
|
<command>dump-scenegraph</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Print Statistics</label>
|
|
|
|
<binding>
|
|
|
|
<command>property-assign</command>
|
|
|
|
<property>/sim/rendering/print-statistics</property>
|
|
|
|
<value>true</value>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Cycle On-Screen Statistics</label>
|
|
|
|
<binding>
|
|
|
|
<command>property-adjust</command>
|
|
|
|
<property>/sim/rendering/on-screen-statistics</property>
|
|
|
|
<step type="int">1</step>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2010-09-18 13:28:14 +00:00
|
|
|
<item>
|
2010-09-20 08:41:42 +00:00
|
|
|
<label>Browse Internal Properties</label>
|
2010-09-18 13:28:14 +00:00
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.property_browser()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2009-05-04 20:56:32 +00:00
|
|
|
|
2010-03-18 08:23:23 +00:00
|
|
|
<item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<label>Logging</label>
|
2010-03-18 08:23:23 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
2010-09-18 13:28:14 +00:00
|
|
|
<dialog-name>logging</dialog-name>
|
2010-03-18 08:23:23 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-07 18:59:00 +00:00
|
|
|
|
2010-09-18 13:28:14 +00:00
|
|
|
</menu>
|
|
|
|
|
2009-05-04 20:56:32 +00:00
|
|
|
|
|
|
|
<menu>
|
|
|
|
<label>Help</label>
|
|
|
|
|
2010-09-07 18:59:00 +00:00
|
|
|
|
2010-03-18 08:23:23 +00:00
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label>Help (opens in browser)</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>old-help-dialog</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Joystick Information</label>
|
|
|
|
<name>joystick-info</name>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>joystick-info</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<label> --- Key Reference ---</label>
|
|
|
|
</item>
|
2010-09-07 18:59:00 +00:00
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Basic Simulator Keys</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.showHelpDialog("/sim/help/basic")</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Common Aircraft Keys</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.showHelpDialog("/sim/help/common")</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2010-09-07 18:59:00 +00:00
|
|
|
<label> Current Aircraft Keys (?)</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.showHelpDialog("/sim/help")</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<label> ---------------------</label>
|
2009-05-04 20:56:32 +00:00
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Start Tutorial</label>
|
|
|
|
<name>tutorial-start</name>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>tutorial</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>End Tutorial</label>
|
|
|
|
<name>tutorial-stop</name>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>tutorial.stopTutorial()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2010-09-07 18:59:00 +00:00
|
|
|
|
|
|
|
<item>
|
2010-09-18 13:28:14 +00:00
|
|
|
<label>About</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>about</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2009-05-04 20:56:32 +00:00
|
|
|
</menu>
|
2003-01-16 18:17:28 +00:00
|
|
|
|
2003-03-29 15:01:56 +00:00
|
|
|
</PropertyList>
|