]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGJSBBase.h
Remove std::
[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
91 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
92 COMMENTS, REFERENCES, and NOTES [use "class documentation" below for API docs]
93 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
94
95 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
96 CLASS DOCUMENTATION
97 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
98
99 /** JSBSim Base class.
100     @author Jon S. Berndt
101     @version $Id$
102 */
103
104 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
105 CLASS DECLARATION
106 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
107
108 namespace JSBSim {
109
110 class FGJSBBase {
111 public:
112   /// Constructor for FGJSBBase.
113   FGJSBBase();
114
115   /// Destructor for FGJSBBase.
116   virtual ~FGJSBBase() {};
117
118   /// JSBSim Message structure
119   typedef struct Msg {
120     unsigned int fdmId;
121     unsigned int messageId;
122     string text;
123     string subsystem;
124     enum mType {eText, eInteger, eDouble, eBool} type;
125     bool bVal;
126     int  iVal;
127     double dVal;
128   } Message;
129
130   ///@name JSBSim Enums.
131   //@{
132   /// Moments L, M, N
133   enum {eL     = 1, eM,     eN    };
134   /// Rates P, Q, R
135   enum {eP     = 1, eQ,     eR    };
136   /// Velocities U, V, W
137   enum {eU     = 1, eV,     eW    };
138   /// Positions X, Y, Z
139   enum {eX     = 1, eY,     eZ    };
140   /// Euler angles Phi, Theta, Psi
141   enum {ePhi   = 1, eTht,   ePsi  };
142   /// Stability axis forces, Drag, Side force, Lift
143   enum {eDrag  = 1, eSide,  eLift };
144   /// Local frame orientation Roll, Pitch, Yaw
145   enum {eRoll  = 1, ePitch, eYaw  };
146   /// Local frame position North, East, Down
147   enum {eNorth = 1, eEast,  eDown };
148   //@}
149   
150   ///@name JSBSim console output highlighting terms.
151   //@{
152   /// highlights text
153   static char highint[5];
154   /// low intensity text
155   static char halfint[5];
156   /// normal intensity text
157   static char normint[6];
158   /// resets text properties
159   static char reset[5];
160   /// underlines text
161   static char underon[5];
162   /// underline off
163   static char underoff[6];
164   /// blue text
165   static char fgblue[6];
166   /// cyan text
167   static char fgcyan[6];
168   /// red text
169   static char fgred[6];
170   /// green text
171   static char fggreen[6];
172   /// default text
173   static char fgdef[6];
174   //@}
175
176   ///@name JSBSim Messaging functions
177   //@{
178   /** Places a Message structure on the Message queue.
179       @param msg pointer to a Message structure
180       @return pointer to a Message structure */
181   Message* PutMessage(Message* msg);
182   /** Creates a message with the given text and places it on the queue.
183       @param text message text
184       @return pointer to a Message structure */
185   Message* PutMessage(string text);
186   /** Creates a message with the given text and boolean value and places it on the queue.
187       @param text message text
188       @param bVal boolean value associated with the message
189       @return pointer to a Message structure */
190   Message* PutMessage(string text, bool bVal);
191   /** Creates a message with the given text and integer value and places it on the queue.
192       @param text message text
193       @param iVal integer value associated with the message
194       @return pointer to a Message structure */
195   Message* PutMessage(string text, int iVal);
196   /** Creates a message with the given text and double value and places it on the queue.
197       @param text message text
198       @param dVal double value associated with the message
199       @return pointer to a Message structure */
200   Message* PutMessage(string text, double dVal);
201   /** Reads the message on the queue (but does not delete it).
202       @return pointer to a Message structure (or NULL if no mesage) */
203   Message* ReadMessage(void);
204   /** Reads the message on the queue and removes it from the queue.
205       @return pointer to a Message structure (or NULL if no mesage) */
206   Message* ProcessMessage(void);
207   //@}
208   string GetVersion(void) {return JSBSim_version;}
209   
210   void disableHighLighting(void);
211
212 protected:
213   static Message localMsg;
214   
215   static queue <Message*> Messages;
216
217   virtual void Debug(int from) {};
218
219   static short debug_lvl;
220   static unsigned int frame;
221   static unsigned int messageId;
222   
223   static const double radtodeg;
224   static const double degtorad;
225   static const double hptoftlbssec;
226   static const double psftoinhg;
227   static const double fpstokts;
228   static const double ktstofps;
229   static const double inchtoft;
230   static const double in3tom3;
231   static const double Reng;         // Specific Gas Constant,ft^2/(sec^2*R)
232   static const double SHRatio;
233   static const string needed_cfg_version;
234   static const string JSBSim_version;
235 };
236 }
237 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
238 #endif
239