1
0
Fork 0
flightgear/src/FDM/JSBSim/FGJSBBase.h

250 lines
7.1 KiB
C
Raw Normal View History

2001-10-05 20:16:16 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Header: FGJSBBase.h
Author: Jon S. Berndt
Date started: 07/01/01
------------- Copyright (C) 2001 Jon S. Berndt (jsb@hal-pc.org) -------------
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., 59 Temple
Place - Suite 330, Boston, MA 02111-1307, USA.
Further information about the GNU General Public License can also be found on
the world wide web at http://www.gnu.org.
HISTORY
--------------------------------------------------------------------------------
07/01/01 JSB Created
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SENTRY
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
#ifndef FGJSBBASE_H
#define FGJSBBASE_H
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
INCLUDES
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
#ifdef FGFS
# include <simgear/compiler.h>
# include <math.h>
2001-11-12 16:06:29 +00:00
# include <queue>
# include STL_STRING
2001-11-20 22:34:24 +00:00
SG_USING_STD(string);
# ifndef M_PI
# include <simgear/constants.h>
# define M_PI SG_PI
# endif
2001-10-05 20:16:16 +00:00
#else
2001-11-20 22:34:24 +00:00
# include <queue>
# include <string>
2001-10-05 20:16:16 +00:00
# if defined(sgi) && !defined(__GNUC__)
# include <math.h>
# else
# include <cmath>
# endif
2001-11-20 22:34:24 +00:00
using std::string;
2001-10-05 20:16:16 +00:00
# ifndef M_PI
# define M_PI 3.14159265358979323846
# endif
2001-10-05 20:16:16 +00:00
#endif
2003-04-13 21:25:46 +00:00
#if !defined(WIN32) || defined(__GNUC__)
using std::max;
2003-04-13 21:25:46 +00:00
#endif
2002-02-13 23:57:49 +00:00
#ifdef __FreeBSD__ // define gcvt on FreeBSD
#include <stdio.h>
static char *gcvt(double number, size_t ndigit, char *buf)
{
sprintf(buf, "%f", number);
return buf;
2002-02-13 23:57:49 +00:00
}
#endif
2001-10-05 20:16:16 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
DEFINITIONS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
#define ID_JSBBASE "$Id$"
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
FORWARD DECLARATIONS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
2003-10-19 09:48:44 +00:00
namespace JSBSim {
2001-11-12 16:06:29 +00:00
2001-10-05 20:16:16 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CLASS DOCUMENTATION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
/** JSBSim Base class.
@author Jon S. Berndt
@version $Id$
*/
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CLASS DECLARATION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
class FGJSBBase {
public:
/// Constructor for FGJSBBase.
2001-11-12 16:06:29 +00:00
FGJSBBase();
2001-10-05 20:16:16 +00:00
2001-11-12 16:06:29 +00:00
/// Destructor for FGJSBBase.
2001-10-05 20:16:16 +00:00
virtual ~FGJSBBase() {};
2001-11-12 16:06:29 +00:00
/// JSBSim Message structure
2001-11-30 17:49:37 +00:00
typedef struct Msg {
2001-11-12 16:06:29 +00:00
unsigned int fdmId;
unsigned int messageId;
string text;
string subsystem;
enum mType {eText, eInteger, eDouble, eBool} type;
bool bVal;
int iVal;
double dVal;
2001-11-30 17:49:37 +00:00
} Message;
2001-11-12 16:06:29 +00:00
///@name JSBSim Enums.
//@{
/// Moments L, M, N
2001-10-05 20:16:16 +00:00
enum {eL = 1, eM, eN };
2001-11-12 16:06:29 +00:00
/// Rates P, Q, R
2001-10-05 20:16:16 +00:00
enum {eP = 1, eQ, eR };
2001-11-12 16:06:29 +00:00
/// Velocities U, V, W
2001-10-05 20:16:16 +00:00
enum {eU = 1, eV, eW };
2001-11-12 16:06:29 +00:00
/// Positions X, Y, Z
2001-10-05 20:16:16 +00:00
enum {eX = 1, eY, eZ };
2001-11-12 16:06:29 +00:00
/// Euler angles Phi, Theta, Psi
2001-10-05 20:16:16 +00:00
enum {ePhi = 1, eTht, ePsi };
2001-11-12 16:06:29 +00:00
/// Stability axis forces, Drag, Side force, Lift
2001-10-05 20:16:16 +00:00
enum {eDrag = 1, eSide, eLift };
2001-11-12 16:06:29 +00:00
/// Local frame orientation Roll, Pitch, Yaw
2001-10-05 20:16:16 +00:00
enum {eRoll = 1, ePitch, eYaw };
2001-11-12 16:06:29 +00:00
/// Local frame position North, East, Down
2001-10-05 20:16:16 +00:00
enum {eNorth = 1, eEast, eDown };
2001-11-12 16:06:29 +00:00
//@}
///@name JSBSim console output highlighting terms.
//@{
/// highlights text
2001-10-05 20:16:16 +00:00
static char highint[5];
2001-11-12 16:06:29 +00:00
/// low intensity text
2001-10-05 20:16:16 +00:00
static char halfint[5];
2001-11-12 16:06:29 +00:00
/// normal intensity text
2001-10-05 20:16:16 +00:00
static char normint[6];
2001-11-12 16:06:29 +00:00
/// resets text properties
2001-10-05 20:16:16 +00:00
static char reset[5];
2001-11-12 16:06:29 +00:00
/// underlines text
2001-10-05 20:16:16 +00:00
static char underon[5];
2001-11-12 16:06:29 +00:00
/// underline off
2001-10-05 20:16:16 +00:00
static char underoff[6];
2001-11-12 16:06:29 +00:00
/// blue text
2001-10-05 20:16:16 +00:00
static char fgblue[6];
2001-11-12 16:06:29 +00:00
/// cyan text
2001-10-05 20:16:16 +00:00
static char fgcyan[6];
2001-11-12 16:06:29 +00:00
/// red text
2001-10-05 20:16:16 +00:00
static char fgred[6];
2001-11-12 16:06:29 +00:00
/// green text
2001-10-05 20:16:16 +00:00
static char fggreen[6];
2001-11-12 16:06:29 +00:00
/// default text
2001-10-05 20:16:16 +00:00
static char fgdef[6];
2001-11-12 16:06:29 +00:00
//@}
///@name JSBSim Messaging functions
//@{
/** Places a Message structure on the Message queue.
@param msg pointer to a Message structure
@return pointer to a Message structure */
2001-11-30 17:49:37 +00:00
Message* PutMessage(Message* msg);
2001-11-12 16:06:29 +00:00
/** Creates a message with the given text and places it on the queue.
@param text message text
@return pointer to a Message structure */
2001-11-30 17:49:37 +00:00
Message* PutMessage(string text);
2001-11-12 16:06:29 +00:00
/** Creates a message with the given text and boolean value and places it on the queue.
@param text message text
@param bVal boolean value associated with the message
@return pointer to a Message structure */
2001-11-30 17:49:37 +00:00
Message* PutMessage(string text, bool bVal);
2001-11-12 16:06:29 +00:00
/** Creates a message with the given text and integer value and places it on the queue.
@param text message text
@param iVal integer value associated with the message
@return pointer to a Message structure */
2001-11-30 17:49:37 +00:00
Message* PutMessage(string text, int iVal);
2001-11-12 16:06:29 +00:00
/** Creates a message with the given text and double value and places it on the queue.
@param text message text
@param dVal double value associated with the message
@return pointer to a Message structure */
2001-11-30 17:49:37 +00:00
Message* PutMessage(string text, double dVal);
2001-11-12 16:06:29 +00:00
/** Reads the message on the queue (but does not delete it).
@return pointer to a Message structure (or NULL if no mesage) */
2001-11-30 17:49:37 +00:00
Message* ReadMessage(void);
2001-11-12 16:06:29 +00:00
/** Reads the message on the queue and removes it from the queue.
@return pointer to a Message structure (or NULL if no mesage) */
2001-11-30 17:49:37 +00:00
Message* ProcessMessage(void);
2001-11-12 16:06:29 +00:00
//@}
string GetVersion(void) {return JSBSim_version;}
void disableHighLighting(void);
2001-10-05 20:16:16 +00:00
2003-11-24 17:59:41 +00:00
static short debug_lvl;
double KelvinToFahrenheit (double kelvin) {
return 1.8*kelvin - 459.4;
}
double RankineToCelsius (double rankine) {
return (rankine - 491.67)/1.8;
}
2003-11-24 17:59:41 +00:00
2001-10-05 20:16:16 +00:00
protected:
2001-11-30 17:49:37 +00:00
static Message localMsg;
2001-11-12 16:06:29 +00:00
2003-07-01 16:12:21 +00:00
static std::queue <Message*> Messages;
2001-11-12 16:06:29 +00:00
2001-12-13 04:48:34 +00:00
virtual void Debug(int from) {};
2001-10-05 20:16:16 +00:00
2001-11-24 22:13:04 +00:00
static unsigned int frame;
2001-11-12 16:06:29 +00:00
static unsigned int messageId;
static const double radtodeg;
static const double degtorad;
static const double hptoftlbssec;
2002-08-28 13:46:42 +00:00
static const double psftoinhg;
2001-11-12 16:06:29 +00:00
static const double fpstokts;
static const double ktstofps;
static const double inchtoft;
2002-08-28 13:46:42 +00:00
static const double in3tom3;
static double Reng; // Specific Gas Constant,ft^2/(sec^2*R)
2001-11-12 16:06:29 +00:00
static const double SHRatio;
static const string needed_cfg_version;
static const string JSBSim_version;
2001-10-05 20:16:16 +00:00
};
}
2001-10-05 20:16:16 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#endif