rlh   img   mp3   nfo   pro  
./nfo/linux/flightgear/flightgear.settings.txt
-------------------
FlightGear Settings
-------------------

You may fly online over Google Maps :) 
--multiplay=out,10,mpserver02.flightgear.org,5000

To fetch realtime METAR weather conditions:
--enable-real-weather-fetch

Fullscreen mode:
--enable-game-mode

Send in-flight position data to Atlas navigation utility:
--nmea=socket,out,0.5,localhost,5500,udp

Start Atlas with:
Atlas --udp=5500

Generate maps for Atlas:
Map --atlas=/usr/share/FlightGear/data/Atlas --jpeg --enable-airports
--enable-navaids --smooth-color --size=512 --glutfonts

To send communication through Festival text-to-speech synthesis: 
--prop:/sim/sound/voices/enabled=true

To enable software sound mixing:
~/.openalrc:
define devices '(alsa))
(define alsa-out-device "plug:dmix")
~/.festivalrc:
Parameter.set 'Audio_Command "aplay -D plug:dmix -q -c 1
-t raw -f s16 -r $SR $FILE")
(Parameter.set 'Audio_Method 'Audio_Command)(Parameter.set
'Audio_Command "aplay -D plug:dmix -q -c 1 -t raw -f s16 -r $SR $FILE")
(Parameter.set 'Audio_Method 'Audio_Command)


RLH FlightGear startup script:
======================================================================
GEOMETRY=1280x800
CONTROL=mouse
AIRCRAFT=Bravo
AIRPORT=ENGM # Gardermoen,Oslo
CALLSIGN=RLH
MPSERVER=mpserver02.flightgear.org

Atlas \
--airport=$AIRPORT \
--udp=5500 &

fgfs \
--nmea=socket,out,0.5,localhost,5500,udp \
--callsign=$CALLSIGN \
--aircraft=$AIRCRAFT \
--geometry=$GEOMETRY \
--control=$CONTROL \
--browser-app=/usr/bin/firefox \
--airport=$AIRPORT \
--enable-real-weather-fetch \
--multiplay=out,10,$MPSERVER,5000
======================================================================