The generic communication protocol for FlightGear provides a powerfull way of adding a simple ASCII based output only protocol, just by defining an XML encoded configuration file and placing it in the $FG_ROOT/data/Protocols directory. The definition of the protocol consists of variable separators, line separators, and chuncks of text. Each chunck defines: for ease of use the property tree node which provides the data the value type (needed for formatting) defines the actual piece of text which should be sent. it can include formatting options like: %s string %i integer (default) %f float an optionale multiplication factor which can be used for unit conversion. (for example, radians to degrees). an optional offset which can be used for unit conversion. (for example, degrees Celsius to degrees Fahrenheit). The output section also could define the variable separator and line separator. The separators can be either a control character such as a tab or newline, or a user specified string or other single charachter. The currently supported control charachters are: : : Name Charachter newline '\n' tab '\t' formfeed '\f' carriagereturn '\r' verticaltab '\v' any other charachters just need to be added to "Network/generic.cxx" The var_separator is placed between each variable, while the line_separator is placed at the end of each lot of variables. A simple protocol configuration file then could look something like the following: newline newline speed V=%d /velocities/airspeed-kt heading (rad) H=%02d /orientation/heading-deg 57.29578 pitch angle (deg) P=%05.1f float /orientation/pitch-deg