2007-07-29 09:34:58 +00:00
|
|
|
The generic communication protocol for FlightGear provides a powerful way
|
2007-07-29 17:16:03 +00:00
|
|
|
of adding a simple ASCII based or binary input/output protocol, just by
|
|
|
|
defining an XML encoded configuration file and placing it in the
|
|
|
|
$FG_ROOT/data/Protocols/ directory.
|
2003-08-15 16:17:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-07-29 17:16:03 +00:00
|
|
|
== file layout ================================================================
|
2003-08-15 16:17:37 +00:00
|
|
|
|
2007-07-29 17:16:03 +00:00
|
|
|
A protocol file can contain either or both of <input> and <output>
|
|
|
|
definition blocks. Which one is used depends on how the protocol
|
|
|
|
is called (e.g. --generic=file,out,1,/tmp/data.xml,myproto would
|
|
|
|
only use the <output> definitions block).
|
2003-08-15 16:17:37 +00:00
|
|
|
|
2007-07-29 17:16:03 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<PropertyList>
|
|
|
|
<generic>
|
2003-08-15 16:17:37 +00:00
|
|
|
|
2007-07-29 17:16:03 +00:00
|
|
|
<output>
|
|
|
|
<binary_mode>false</binary_mode>
|
|
|
|
<line_separator></line_separator>
|
|
|
|
<var_separator></var_separator>
|
|
|
|
<preamble></preamble>
|
|
|
|
<postamble></postamble>
|
2003-08-15 16:17:37 +00:00
|
|
|
|
2007-07-29 17:16:03 +00:00
|
|
|
<chunk>
|
|
|
|
... first chunk spec ...
|
|
|
|
</chunk>
|
2003-08-15 16:17:37 +00:00
|
|
|
|
2007-07-29 17:16:03 +00:00
|
|
|
<chunk>
|
|
|
|
... another chunk etc. ...
|
|
|
|
</chunk>
|
|
|
|
</output>
|
|
|
|
|
|
|
|
<input>
|
|
|
|
<line_separator></line_separator>
|
|
|
|
<var_separator></var_separator>
|
|
|
|
|
|
|
|
<chunk>
|
|
|
|
... chunk spec ...
|
|
|
|
</chunk>
|
|
|
|
</input>
|
|
|
|
|
|
|
|
</generic>
|
|
|
|
</PropertyList>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
== input/output parameters ====================================================
|
|
|
|
|
|
|
|
Both <output> and <input> blocks can contain information about
|
|
|
|
the data mode (ascii/binary) and about separators between fields
|
|
|
|
and data sets, as well as a list of <chunk>s. Each <chunk> defines
|
|
|
|
a property that should be written (and how), or a variable and which
|
|
|
|
property it should be written to.
|
|
|
|
|
|
|
|
output only:
|
|
|
|
<binary_mode> BOOL default: false (= ASCII mode)
|
|
|
|
<preamble> STRING default: "" file header put on top of the file
|
|
|
|
<postamble> STRING default: "" file footer put at the end of the file
|
|
|
|
|
|
|
|
input & output:
|
|
|
|
<var_separator> STRING default: "" field separator
|
|
|
|
<line_separator> STRING default: "" separator between data sets
|
|
|
|
|
|
|
|
|
|
|
|
<var_separator> are put between every two output properties, while
|
|
|
|
<line_separator> is put at the end of each data set. Both can contain
|
|
|
|
arbitrary strings or one of the following keywords:
|
|
|
|
|
|
|
|
Name Character
|
|
|
|
|
|
|
|
newline '\n'
|
|
|
|
tab '\t'
|
|
|
|
formfeed '\f'
|
|
|
|
carriagereturn '\r'
|
|
|
|
verticaltab '\v'
|
|
|
|
|
|
|
|
|
|
|
|
Typical use could be:
|
|
|
|
|
|
|
|
<var_separator>tab</var_separator>
|
|
|
|
<line_separator>newline</var_separator>
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
<var_separator>\t</var_separator>
|
|
|
|
<line_separator>\r\n</line_separator>
|
2003-08-15 16:17:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-04-29 11:15:44 +00:00
|
|
|
To enable binary mode, simply include a <binary_mode>true</binary_mode> tag in
|
|
|
|
your XML file. The format of the binary output is tightly packed, with 1 byte
|
|
|
|
for bool, 4 bytes for int, and 8 bytes for double. At this time, strings are not
|
|
|
|
supported. A configurable footer at the end of each "line" or packet of binary
|
|
|
|
output can be added using the <binary_footer> tag. Options include the length
|
|
|
|
of the packet, a magic number to simplify decoding. Examples:
|
|
|
|
|
2007-07-29 17:16:03 +00:00
|
|
|
<binary_footer>magic,0x12345678</binary_footer>
|
|
|
|
<binary_footer>length</binary_footer>
|
|
|
|
<binary_footer>none</binary_footer> <!-- default -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
== variable parameters (chunk spec) ===========================================
|
|
|
|
|
|
|
|
Both <input> and <output> block can contain a list of <chunk> specs,
|
|
|
|
each of which describes the properties of on variable to write/read.
|
|
|
|
|
|
|
|
|
|
|
|
<name> for ease of use (not tranferred)
|
|
|
|
<node> the property tree node which provides the data
|
|
|
|
<type> the value type (needed for formatting)
|
|
|
|
one of string, float, bool, int (default: int)
|
|
|
|
<format> defines the actual piece of text which should be sent.
|
|
|
|
it can include "printf" style formatting options like:
|
|
|
|
<type>
|
|
|
|
%s string
|
|
|
|
%d integer (default)
|
|
|
|
%f float
|
|
|
|
(not used or needed in binary mode)
|
|
|
|
|
|
|
|
<factor> an optional multiplication factor which can be used for
|
|
|
|
unit conversion. (for example, radians to degrees).
|
|
|
|
<offset> an optional offset which can be used for unit conversion.
|
|
|
|
(for example, degrees to radians).
|
|
|
|
|
|
|
|
|
|
|
|
Chunks can also consist of a single constant <format>, like in:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
== examples ===================================================================
|
|
|
|
|
|
|
|
Writes log of this form:
|
|
|
|
|
2007-07-29 22:18:02 +00:00
|
|
|
V=16
|
|
|
|
H=3.590505
|
|
|
|
P=3.59
|
|
|
|
V=12
|
|
|
|
H=3.589020
|
|
|
|
P=3.59
|
2007-07-29 17:16:03 +00:00
|
|
|
|
2003-08-15 16:17:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<PropertyList>
|
2007-07-29 17:16:03 +00:00
|
|
|
<generic>
|
|
|
|
|
|
|
|
<output>
|
|
|
|
<line_separator>newline</line_separator>
|
|
|
|
<var_separator>newline</var_separator>
|
|
|
|
<binary_mode>false</binary_mode>
|
|
|
|
|
|
|
|
<chunk>
|
|
|
|
<name>speed</name>
|
|
|
|
<format>V=%d</format>
|
|
|
|
<node>/velocities/airspeed-kt</node>
|
|
|
|
</chunk>
|
|
|
|
|
|
|
|
<chunk>
|
|
|
|
<name>heading (rad)</name>
|
|
|
|
<format>H=%.6f</format>
|
|
|
|
<type>float</type>
|
|
|
|
<node>/orientation/heading-deg</node>
|
|
|
|
<factor>0.0174532925199433</factor> <!-- degrees to radians -->
|
|
|
|
</chunk>
|
|
|
|
|
|
|
|
<chunk>
|
|
|
|
<name>pitch angle (deg)</name>
|
|
|
|
<format>P=%03.2f</format>
|
|
|
|
<node>/orientation/pitch-deg</node>
|
|
|
|
</chunk>
|
|
|
|
</output>
|
2003-08-15 16:17:37 +00:00
|
|
|
|
2006-04-29 11:15:44 +00:00
|
|
|
</generic>
|
2007-07-29 17:16:03 +00:00
|
|
|
</PropertyList>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- writing data in XML syntax -------------------------------------------------
|
|
|
|
|
|
|
|
Assuming the file is called $FG_ROOT/Protocols/xmltest.xml, then it could be
|
|
|
|
used as $ fgfs --generic=file,out,1,/tmp/data.xml,xmltest
|
2006-04-29 11:15:44 +00:00
|
|
|
|
2007-07-29 17:16:03 +00:00
|
|
|
|
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<PropertyList>
|
|
|
|
<generic>
|
|
|
|
<output>
|
|
|
|
<binary_mode>false</binary_mode>
|
2007-07-29 18:32:47 +00:00
|
|
|
<var_separator>\n</var_separator>
|
|
|
|
<line_separator>\n</line_separator>
|
2007-07-29 17:16:03 +00:00
|
|
|
<preamble><?xml version="1.0"?>\n\n<data>\n</preamble>
|
|
|
|
<postamble></data>\n</postamble>
|
|
|
|
|
|
|
|
<chunk>
|
2007-07-29 18:32:47 +00:00
|
|
|
<format>\t<set></format>
|
2007-07-29 17:16:03 +00:00
|
|
|
</chunk>
|
|
|
|
|
|
|
|
<chunk>
|
|
|
|
<node>/position/altitude-ft</node>
|
|
|
|
<type>float</type>
|
2007-07-29 18:32:47 +00:00
|
|
|
<format>\t\t<altitude-ft>%.8f</altitude-ft></format>
|
2007-07-29 17:16:03 +00:00
|
|
|
</chunk>
|
|
|
|
|
|
|
|
<chunk>
|
|
|
|
<node>/velocities/airspeed-kt</node>
|
|
|
|
<type>float</type>
|
2007-07-29 18:32:47 +00:00
|
|
|
<format>\t\t<airspeed-kt>%.8f</airspeed-kt></format>
|
2007-07-29 17:16:03 +00:00
|
|
|
</chunk>
|
|
|
|
|
|
|
|
<chunk>
|
2007-07-29 18:32:47 +00:00
|
|
|
<format>\t</set></format>
|
2007-07-29 17:16:03 +00:00
|
|
|
</chunk>
|
|
|
|
</output>
|
|
|
|
</generic>
|
2003-08-15 16:17:37 +00:00
|
|
|
</PropertyList>
|
2007-07-29 17:16:03 +00:00
|
|
|
|
|
|
|
|