]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/models/FGOutput.h
Sync. w. JSBSim cvs
[flightgear.git] / src / FDM / JSBSim / models / FGOutput.h
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Header:       FGOutput.h
4  Author:       Jon Berndt
5  Date started: 12/2/98
6
7  ------------- Copyright (C) 1999  Jon S. Berndt (jsb@hal-pc.org) -------------
8
9  This program is free software; you can redistribute it and/or modify it under
10  the terms of the GNU Lesser General Public License as published by the Free Software
11  Foundation; either version 2 of the License, or (at your option) any later
12  version.
13
14  This program is distributed in the hope that it will be useful, but WITHOUT
15  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
17  details.
18
19  You should have received a copy of the GNU Lesser General Public License along with
20  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21  Place - Suite 330, Boston, MA  02111-1307, USA.
22
23  Further information about the GNU Lesser General Public License can also be found on
24  the world wide web at http://www.gnu.org.
25
26 HISTORY
27 --------------------------------------------------------------------------------
28 12/02/98   JSB   Created
29 11/09/07   HDW   Added FlightGear Socket Interface
30
31 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32 SENTRY
33 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
34
35 #ifndef FGOUTPUT_H
36 #define FGOUTPUT_H
37
38 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39 INCLUDES
40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
41
42 #include "FGModel.h"
43
44 #include <iostream>
45 #include <fstream>
46
47 #include "input_output/FGfdmSocket.h"
48 #include "input_output/FGXMLFileRead.h"
49 #include "input_output/net_fdm.hxx"
50
51
52 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
53 DEFINITIONS
54 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
55
56 #define ID_OUTPUT "$Id$"
57
58 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
59 FORWARD DECLARATIONS
60 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
61
62 namespace JSBSim {
63
64 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
65 CLASS DOCUMENTATION
66 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
67
68 /** Handles simulation output.
69     OUTPUT section definition
70
71     The following specifies the way that JSBSim writes out data.
72 <pre>
73     NAME is the filename you want the output to go to
74
75     TYPE can be:
76       CSV         Comma separated data. If a filename is supplied then the
77                   data goes to that file. If "COUT" or "cout" is specified, the
78                   data goes to stdout. If the filename is a null filename the
79                   data goes to stdout, as well.
80       SOCKET      Will eventually send data to a socket output, where NAME
81                   would then be the IP address of the machine the data should
82                   be sent to. DON'T USE THIS YET!
83       FLIGHTGEAR  A socket is created for sending binary data packets to
84                   an external instance of FlightGear for visuals.  Parameters
85                   defining the socket are given on the \<output> line.
86       TABULAR     Columnar data. NOT IMPLEMENTED YET!
87       TERMINAL    Output to terminal. NOT IMPLEMENTED YET!
88       NONE        Specifies to do nothing. This setting makes it easy to turn on and
89                   off the data output without having to mess with anything else.
90
91       Examples:
92 </pre>
93 @code
94         <output name="localhost" type="FLIGHTGEAR" port="5500" protocol="tcp" rate="10"></output>
95 @endcode
96 @code
97         <output name="B737_datalog.csv" type="CSV" rate="20">
98            <property> velocities/vc-kts </property>
99            <velocities> ON </velocities>
100         </output>
101 @endcode
102 <br>
103 <pre>
104     The arguments that can be supplied, currently, are:
105
106     RATE_IN_HZ  An integer rate in times-per-second that the data is output. This
107                 value may not be *exactly* what you want, due to the dependence
108                 on dt, the cycle rate for the FDM.
109
110     The following parameters tell which subsystems of data to output:
111
112     simulation       ON|OFF
113     atmosphere       ON|OFF
114     massprops        ON|OFF
115     aerosurfaces     ON|OFF
116     rates            ON|OFF
117     velocities       ON|OFF
118     forces           ON|OFF
119     moments          ON|OFF
120     position         ON|OFF
121     coefficients     ON|OFF
122     ground_reactions ON|OFF
123     fcs              ON|OFF
124     propulsion       ON|OFF
125 </pre>
126     NOTE that Time is always output with the data.
127     @version $Id$
128  */
129
130 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
131 CLASS DECLARATION
132 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
133
134 class FGOutput : public FGModel, public FGXMLFileRead
135 {
136 public:
137   FGOutput(FGFDMExec*);
138   ~FGOutput();
139
140   bool InitModel(void);
141   bool Run(void);
142
143   void DelimitedOutput(string);
144   void SocketOutput(void);
145   void FlightGearSocketOutput(void);
146   void SocketStatusOutput(string);
147   void SocketDataFill(FGNetFDM* net);
148
149
150   void SetType(string);
151   void SetSubsystems(int tt) {SubSystems = tt;}
152   inline void Enable(void) { enabled = true; }
153   inline void Disable(void) { enabled = false; }
154   inline bool Toggle(void) {enabled = !enabled; return enabled;}
155   bool Load(Element* el);
156   void SetOutputFileName(string fname) {Filename = fname;}
157   void SetDirectivesFile(string fname) {DirectivesFile = fname;}
158   string GetOutputFileName(void) const {return Filename;}
159
160   /// Subsystem types for specifying which will be output in the FDM data logging
161   enum  eSubSystems {
162     /** Subsystem: Simulation (= 1)          */ ssSimulation      = 1,
163     /** Subsystem: Aerosurfaces (= 2)        */ ssAerosurfaces    = 2,
164     /** Subsystem: Body rates (= 4)          */ ssRates           = 4,
165     /** Subsystem: Velocities (= 8)          */ ssVelocities      = 8,
166     /** Subsystem: Forces (= 16)             */ ssForces          = 16,
167     /** Subsystem: Moments (= 32)            */ ssMoments         = 32,
168     /** Subsystem: Atmosphere (= 64)         */ ssAtmosphere      = 64,
169     /** Subsystem: Mass Properties (= 128)   */ ssMassProps       = 128,
170     /** Subsystem: Coefficients (= 256)      */ ssCoefficients    = 256,
171     /** Subsystem: Propagate (= 512)         */ ssPropagate       = 512,
172     /** Subsystem: Ground Reactions (= 1024) */ ssGroundReactions = 1024,
173     /** Subsystem: FCS (= 2048)              */ ssFCS             = 2048,
174     /** Subsystem: Propulsion (= 4096)       */ ssPropulsion      = 4096
175   } subsystems;
176
177
178   FGNetFDM fgSockBuf;
179
180 private:
181   enum {otNone, otCSV, otTab, otSocket, otTerminal, otFlightGear, otUnknown} Type;
182   bool sFirstPass, dFirstPass, enabled;
183   int SubSystems;
184   string output_file_name, delimeter, Filename, DirectivesFile;
185   ofstream datafile;
186   FGfdmSocket* socket;
187   FGfdmSocket* flightGearSocket;
188   vector <FGPropertyManager*> OutputProperties;
189
190   void Debug(int from);
191 };
192 }
193 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
194 #endif
195