]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGJSBBase.h
Moved JSBSim.hxx to src/FDM/JSBSim/
[flightgear.git] / src / FDM / JSBSim / FGJSBBase.h
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Header:       FGJSBBase.h
4  Author:       Jon S. Berndt
5  Date started: 07/01/01
6
7  ------------- Copyright (C) 2001  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 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 General Public License for more
17  details.
18
19  You should have received a copy of the GNU 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 General Public License can also be found on
24  the world wide web at http://www.gnu.org.
25
26 HISTORY
27 --------------------------------------------------------------------------------
28 07/01/01  JSB  Created
29
30 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31 SENTRY
32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34 #ifndef FGJSBBASE_H
35 #define FGJSBBASE_H
36
37 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38 INCLUDES
39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41 #ifdef FGFS
42 #  include <simgear/compiler.h>
43 #  include <math.h>
44 #  include <queue>
45 #  include STL_STRING
46
47 SG_USING_STD(string);
48 SG_USING_STD(queue);
49
50 #else
51
52 #  include <queue>
53 #  include <string>
54 #  if defined(sgi) && !defined(__GNUC__)
55 #    include <math.h>
56 #  else
57 #    include <cmath>
58 #  endif
59
60 using std::string;
61 using std::queue;
62 #endif
63
64 #ifndef M_PI 
65 #  include <simgear/constants.h>
66 #  define M_PI SG_PI
67 #endif
68
69 #ifdef __FreeBSD__ // define gcvt on FreeBSD
70
71 #include <stdio.h>
72
73 static char *gcvt(double number, size_t ndigit, char *buf)
74 {
75      sprintf(buf, "%f", number);
76      return buf;
77 }
78 #endif
79
80 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
81 DEFINITIONS
82 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
83
84 #define ID_JSBBASE "$Id$"
85
86 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
87 FORWARD DECLARATIONS
88 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
89
90 enum eParam {
91   FG_UNDEF = 0,
92   FG_TIME,
93   FG_QBAR,
94   FG_WINGAREA,
95   FG_WINGSPAN,
96   FG_CBAR,
97   FG_ALPHA,
98   FG_ALPHADOT,
99   FG_BETA,
100   FG_ABETA,
101   FG_BETADOT,
102   FG_PHI,
103   FG_THT,
104   FG_PSI,
105   FG_PITCHRATE,
106   FG_ROLLRATE,
107   FG_YAWRATE,
108   FG_AEROP,
109   FG_AEROQ,
110   FG_AEROR,
111   FG_CL_SQRD,
112   FG_MACH,
113   FG_ALTITUDE,
114   FG_BI2VEL,
115   FG_CI2VEL,
116   FG_ELEVATOR_POS,
117   FG_AELEVATOR_POS,
118   FG_AILERON_POS,
119   FG_AAILERON_POS,
120   FG_RUDDER_POS,
121   FG_ARUDDER_POS,
122   FG_SPDBRAKE_POS,
123   FG_SPOILERS_POS,
124   FG_FLAPS_POS,
125   FG_ELEVATOR_CMD,
126   FG_AILERON_CMD,
127   FG_RUDDER_CMD,
128   FG_SPDBRAKE_CMD,
129   FG_SPOILERS_CMD,
130   FG_FLAPS_CMD,
131   FG_THROTTLE_CMD,
132   FG_THROTTLE_POS,
133   FG_MIXTURE_CMD,
134   FG_MIXTURE_POS,
135   FG_MAGNETO_CMD,
136   FG_STARTER_CMD,
137   FG_ACTIVE_ENGINE,
138   FG_HOVERB,
139   FG_PITCH_TRIM_CMD,
140   FG_YAW_TRIM_CMD,
141   FG_ROLL_TRIM_CMD,
142   FG_LEFT_BRAKE_CMD,
143   FG_CENTER_BRAKE_CMD,
144   FG_RIGHT_BRAKE_CMD,
145   FG_SET_LOGGING,
146   FG_ALPHAH,
147   FG_ALPHAW,
148   FG_LBARH,     //normalized horizontal tail arm
149   FG_LBARV,     //normalized vertical tail arm
150   FG_HTAILAREA,
151   FG_VTAILAREA,
152   FG_VBARH,    //horizontal tail volume 
153   FG_VBARV,     //vertical tail volume 
154   FG_GEAR_CMD,
155   FG_GEAR_POS
156 };
157
158 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
159 COMMENTS, REFERENCES, and NOTES [use "class documentation" below for API docs]
160 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
161
162 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
163 CLASS DOCUMENTATION
164 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
165
166 /** JSBSim Base class.
167     @author Jon S. Berndt
168     @version $Id$
169 */
170
171 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
172 CLASS DECLARATION
173 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
174
175 class FGJSBBase {
176 public:
177   /// Constructor for FGJSBBase.
178   FGJSBBase();
179
180   /// Destructor for FGJSBBase.
181   virtual ~FGJSBBase() {};
182
183   /// JSBSim Message structure
184   typedef struct Msg {
185     unsigned int fdmId;
186     unsigned int messageId;
187     string text;
188     string subsystem;
189     enum mType {eText, eInteger, eDouble, eBool} type;
190     bool bVal;
191     int  iVal;
192     double dVal;
193   } Message;
194
195   ///@name JSBSim Enums.
196   //@{
197   /// Moments L, M, N
198   enum {eL     = 1, eM,     eN    };
199   /// Rates P, Q, R
200   enum {eP     = 1, eQ,     eR    };
201   /// Velocities U, V, W
202   enum {eU     = 1, eV,     eW    };
203   /// Positions X, Y, Z
204   enum {eX     = 1, eY,     eZ    };
205   /// Euler angles Phi, Theta, Psi
206   enum {ePhi   = 1, eTht,   ePsi  };
207   /// Stability axis forces, Drag, Side force, Lift
208   enum {eDrag  = 1, eSide,  eLift };
209   /// Local frame orientation Roll, Pitch, Yaw
210   enum {eRoll  = 1, ePitch, eYaw  };
211   /// Local frame position North, East, Down
212   enum {eNorth = 1, eEast,  eDown };
213   //@}
214   
215   ///@name JSBSim console output highlighting terms.
216   //@{
217   /// highlights text
218   static char highint[5];
219   /// low intensity text
220   static char halfint[5];
221   /// normal intensity text
222   static char normint[6];
223   /// resets text properties
224   static char reset[5];
225   /// underlines text
226   static char underon[5];
227   /// underline off
228   static char underoff[6];
229   /// blue text
230   static char fgblue[6];
231   /// cyan text
232   static char fgcyan[6];
233   /// red text
234   static char fgred[6];
235   /// green text
236   static char fggreen[6];
237   /// default text
238   static char fgdef[6];
239   //@}
240
241   ///@name JSBSim Messaging functions
242   //@{
243   /** Places a Message structure on the Message queue.
244       @param msg pointer to a Message structure
245       @return pointer to a Message structure */
246   Message* PutMessage(Message* msg);
247   /** Creates a message with the given text and places it on the queue.
248       @param text message text
249       @return pointer to a Message structure */
250   Message* PutMessage(string text);
251   /** Creates a message with the given text and boolean value and places it on the queue.
252       @param text message text
253       @param bVal boolean value associated with the message
254       @return pointer to a Message structure */
255   Message* PutMessage(string text, bool bVal);
256   /** Creates a message with the given text and integer value and places it on the queue.
257       @param text message text
258       @param iVal integer value associated with the message
259       @return pointer to a Message structure */
260   Message* PutMessage(string text, int iVal);
261   /** Creates a message with the given text and double value and places it on the queue.
262       @param text message text
263       @param dVal double value associated with the message
264       @return pointer to a Message structure */
265   Message* PutMessage(string text, double dVal);
266   /** Reads the message on the queue (but does not delete it).
267       @return pointer to a Message structure (or NULL if no mesage) */
268   Message* ReadMessage(void);
269   /** Reads the message on the queue and removes it from the queue.
270       @return pointer to a Message structure (or NULL if no mesage) */
271   Message* ProcessMessage(void);
272   //@}
273   string GetVersion(void) {return JSBSim_version;}
274
275 protected:
276   static Message localMsg;
277   
278   static queue <Message*> Messages;
279
280   virtual void Debug(int from) {};
281
282   static short debug_lvl;
283   static unsigned int frame;
284   static unsigned int messageId;
285   
286   static const double radtodeg;
287   static const double degtorad;
288   static const double hptoftlbssec;
289   static const double fpstokts;
290   static const double ktstofps;
291   static const double inchtoft;
292   static const double Reng;         // Specific Gas Constant,ft^2/(sec^2*R)
293   static const double SHRatio;
294   static const string needed_cfg_version;
295   static const string JSBSim_version;
296 };
297
298 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
299 #endif
300