===================================================================== This is fgpanel - basically the stripped down 2D-Panel code from FlightGear. It is designed as a standalone lightweight panel rendering engine to draw 2d panels on a lowcost computer/graphic card without 3d acceleration at reasonablel framerates. ===================================================================== This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ===================================================================== Usage start fgpanel with fgpanel --fg-root=/path/to/fg/data --panel=Aircraft/MyAircraft/Panels/MyPanel.xml with the command args set to --fg-root shall point to the directory where your FGDATA lives NOTE: you don't need a full copy of FGDATA, just the panel definition files for your aircraft, e.g. - Aircraft/MyAircraft/Panels/* - Aircraft/Instruments/* (if referenced) -panel shall point to a panel-configuration file, relative to FGDATA start flightgear with fgfs --generic=socket,out,10,239.24.10.64,5432,udp,../Aircraft/MyAircraft/Panels/SampleProtocol ===================================================================== Sample: Create the sample files within your aicraft directory, preferrable under Panels MyPanel.xml sample-2d-panel.xml SampleProtocol.xml ===================================================================== Sample panel configuration file (MyPanel.xml) false false true 239.24.10.64 5432 ===================================================================== Sampe 2d-panel configuration file sample-2d-panel.xml To be included from the panel configuration file Sample Instrument Panel 375 305 Attitude Gyro 80 80 ===================================================================== Sample protocol configuration file to drive the AI (SampleProtocol.xml) newline , float %.2f /position/altitude-agl-ft float %.2f /instrumentation/attitude-indicator/indicated-roll-deg float %.2f /instrumentation/attitude-indicator/indicated-pitch-deg float %.2f /instrumentation/attitude-indicator/horizon-offset-deg float %.4e /instrumentation/attitude-indicator/spin =====================================================================