2001-04-02 03:12:38 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
Header: FGFDMExec.h
|
|
|
|
Author: Jon Berndt
|
|
|
|
Date started: 11/17/98
|
|
|
|
|
|
|
|
------------- Copyright (C) 1999 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
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
11/17/98 JSB Created
|
|
|
|
7/31/99 TP Added RunIC function that runs the sim so that every frame
|
|
|
|
begins with the IC values from the given FGInitialCondition
|
|
|
|
object and dt=0.
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
SENTRY
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
#ifndef FGFDMEXEC_HEADER_H
|
|
|
|
#define FGFDMEXEC_HEADER_H
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
INCLUDES
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
#include "FGModel.h"
|
2002-09-22 15:31:09 +00:00
|
|
|
#include "FGTrim.h"
|
2001-04-02 03:12:38 +00:00
|
|
|
#include "FGInitialCondition.h"
|
2001-10-05 20:19:59 +00:00
|
|
|
#include "FGJSBBase.h"
|
2002-03-20 12:45:02 +00:00
|
|
|
#include "FGPropertyManager.h"
|
2001-04-02 03:12:38 +00:00
|
|
|
|
2002-09-22 15:31:09 +00:00
|
|
|
|
2002-03-20 12:45:02 +00:00
|
|
|
#include <vector>
|
2001-04-02 03:12:38 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
DEFINITIONS
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
#define ID_FDMEXEC "$Id$"
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
FORWARD DECLARATIONS
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
COMMENTS, REFERENCES, and NOTES [use "class documentation" below for API docs]
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
CLASS DOCUMENTATION
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
/** Encapsulates the JSBSim simulation executive.
|
|
|
|
@author Jon S. Berndt
|
|
|
|
@version $Id$
|
2002-04-16 13:15:29 +00:00
|
|
|
@see <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jsbsim/JSBSim/FGFDMExec.h?rev=HEAD&content-type=text/vnd.viewcvs-markup">
|
|
|
|
Header File </a>
|
|
|
|
@see <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jsbsim/JSBSim/FGFDMExec.cpp?rev=HEAD&content-type=text/vnd.viewcvs-markup">
|
|
|
|
Source File </a>
|
2001-04-02 03:12:38 +00:00
|
|
|
|
|
|
|
@doc This class is the interface class through which all other simulation classes
|
|
|
|
are instantiated, initialized, and run. When integrated with FlightGear (or
|
|
|
|
other flight simulator) this class is typically instantiated by an interface
|
|
|
|
class on the simulator side.
|
|
|
|
|
2001-12-24 13:54:55 +00:00
|
|
|
When an aircraft model is loaded the config file is parsed and for each of the
|
|
|
|
sections of the config file (propulsion, flight control, etc.) the
|
|
|
|
corresponding "ReadXXX()" method is called. From within this method the
|
|
|
|
"Load()" method of that system is called (e.g. LoadFCS).
|
2001-04-02 03:12:38 +00:00
|
|
|
|
|
|
|
<h4>JSBSim Debugging Directives</h4>
|
|
|
|
|
|
|
|
This describes to any interested entity the debug level
|
|
|
|
requested by setting the JSBSIM_DEBUG environment variable.
|
|
|
|
The bitmasked value choices are as follows:<ol>
|
|
|
|
<li><b>unset</b>: In this case (the default) JSBSim would only print
|
|
|
|
out the normally expected messages, essentially echoing
|
|
|
|
the config files as they are read. If the environment
|
|
|
|
variable is not set, debug_lvl is set to 1 internally</li>
|
|
|
|
<li><b>0</b>: This requests JSBSim not to output any messages
|
|
|
|
whatsoever.</li>
|
|
|
|
<li><b>1</b>: This value explicity requests the normal JSBSim
|
|
|
|
startup messages</li>
|
|
|
|
<li><b>2</b>: This value asks for a message to be printed out when
|
|
|
|
a class is instantiated</li>
|
|
|
|
<li><b>4</b>: When this value is set, a message is displayed when a
|
|
|
|
FGModel object executes its Run() method</li>
|
|
|
|
<li><b>8</b>: When this value is set, various runtime state variables
|
|
|
|
are printed out periodically</li>
|
2001-06-05 20:58:48 +00:00
|
|
|
<li><b>16</b>: When set various parameters are sanity checked and
|
|
|
|
a message is printed out when they go out of bounds</li>
|
2001-04-02 03:12:38 +00:00
|
|
|
</ol>
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
CLASS DECLARATION
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
2001-10-05 20:19:59 +00:00
|
|
|
class FGFDMExec : public FGJSBBase
|
2001-04-02 03:12:38 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2002-03-20 12:45:02 +00:00
|
|
|
/// Default constructor
|
|
|
|
FGFDMExec(FGPropertyManager* root = 0);
|
|
|
|
|
2001-04-02 03:12:38 +00:00
|
|
|
/// Default destructor
|
|
|
|
~FGFDMExec();
|
|
|
|
|
|
|
|
/** This routine places a model into the runlist at the specified rate. The
|
|
|
|
"rate" is not really a clock rate. It represents how many calls to the
|
|
|
|
FGFDMExec::Run() method must be made before the model is executed. A
|
|
|
|
value of 1 means that the model will be executed for each call to the
|
|
|
|
exec's Run() method. A value of 5 means that the model will only be
|
|
|
|
executed every 5th call to the exec's Run() method.
|
|
|
|
@param model A pointer to the model being scheduled.
|
|
|
|
@param rate The rate at which to execute the model as described above.
|
|
|
|
@return Currently returns 0 always. */
|
|
|
|
int Schedule(FGModel* model, int rate);
|
|
|
|
|
2001-12-24 13:54:55 +00:00
|
|
|
/** This executes each scheduled model in succession.
|
2001-04-02 03:12:38 +00:00
|
|
|
@return true if successful, false if sim should be ended */
|
|
|
|
bool Run(void);
|
|
|
|
|
2002-09-22 15:31:09 +00:00
|
|
|
/** Initializes the sim from the initial condition object and executes
|
|
|
|
each scheduled model without integrating i.e. dt=0.
|
2001-04-02 03:12:38 +00:00
|
|
|
@return true if successful
|
|
|
|
*/
|
2002-09-22 15:31:09 +00:00
|
|
|
bool RunIC(void);
|
2001-04-02 03:12:38 +00:00
|
|
|
|
|
|
|
/// Freezes the sim
|
|
|
|
void Freeze(void) {frozen = true;}
|
|
|
|
|
|
|
|
/// Resumes the sim
|
|
|
|
void Resume(void) {frozen = false;}
|
2002-09-22 15:31:09 +00:00
|
|
|
|
|
|
|
/** Loads an aircraft model.
|
2001-04-02 03:12:38 +00:00
|
|
|
@param AircraftPath path to the aircraft directory. For instance:
|
|
|
|
"aircraft". Under aircraft, then, would be directories for various
|
|
|
|
modeled aircraft such as C172/, x15/, etc.
|
|
|
|
@param EnginePath path to the directory under which engine config
|
|
|
|
files are kept, for instance "engine"
|
|
|
|
@param model the name of the aircraft model itself. This file will
|
|
|
|
be looked for in the directory specified in the AircraftPath variable,
|
|
|
|
and in turn under the directory with the same name as the model. For
|
|
|
|
instance: "aircraft/x15/x15.xml"
|
|
|
|
@return true if successful*/
|
|
|
|
bool LoadModel(string AircraftPath, string EnginePath, string model);
|
2002-09-22 15:31:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** Loads an aircraft model. The paths to the aircraft and engine
|
|
|
|
config file directories must be set prior to calling this. See
|
|
|
|
below.
|
|
|
|
@param model the name of the aircraft model itself. This file will
|
|
|
|
be looked for in the directory specified in the AircraftPath variable,
|
|
|
|
and in turn under the directory with the same name as the model. For
|
|
|
|
instance: "aircraft/x15/x15.xml"
|
|
|
|
@return true if successful*/
|
|
|
|
bool LoadModel(string model);
|
|
|
|
|
2001-04-02 03:12:38 +00:00
|
|
|
|
2002-09-22 15:31:09 +00:00
|
|
|
/** Sets the path to the engine config file directories.
|
|
|
|
@param EnginePath path to the directory under which engine config
|
|
|
|
files are kept, for instance "engine"
|
|
|
|
*/
|
|
|
|
bool SetEnginePath(string path) { EnginePath = path; return true; }
|
2001-04-02 03:12:38 +00:00
|
|
|
|
2002-09-22 15:31:09 +00:00
|
|
|
/** Sets the path to the aircraft config file directories.
|
|
|
|
@param AircraftPath path to the aircraft directory. For instance:
|
|
|
|
"aircraft". Under aircraft, then, would be directories for various
|
|
|
|
modeled aircraft such as C172/, x15/, etc.
|
|
|
|
*/
|
|
|
|
bool SetAircraftPath(string path) { AircraftPath = path; return true; }
|
|
|
|
|
|
|
|
/** Sets the path to the autopilot config file directories.
|
|
|
|
@param ControlPath path to the control directory. For instance:
|
|
|
|
"control".
|
|
|
|
*/
|
|
|
|
bool SetControlPath(string path) { ControlPath = path; return true; }
|
|
|
|
|
|
|
|
|
2001-04-02 03:12:38 +00:00
|
|
|
/// @name Top-level executive State and Model retrieval mechanism
|
|
|
|
//@{
|
|
|
|
/// Returns the FGState pointer.
|
|
|
|
inline FGState* GetState(void) {return State;}
|
|
|
|
/// Returns the FGAtmosphere pointer.
|
|
|
|
inline FGAtmosphere* GetAtmosphere(void) {return Atmosphere;}
|
|
|
|
/// Returns the FGFCS pointer.
|
|
|
|
inline FGFCS* GetFCS(void) {return FCS;}
|
|
|
|
/// Returns the FGPropulsion pointer.
|
|
|
|
inline FGPropulsion* GetPropulsion(void) {return Propulsion;}
|
|
|
|
/// Returns the FGAircraft pointer.
|
2001-06-05 20:58:48 +00:00
|
|
|
inline FGMassBalance* GetMassBalance(void) {return MassBalance;}
|
|
|
|
/// Returns the FGAerodynamics pointer
|
|
|
|
inline FGAerodynamics* GetAerodynamics(void){return Aerodynamics;}
|
|
|
|
/// Returns the FGInertial pointer.
|
|
|
|
inline FGInertial* GetInertial(void) {return Inertial;}
|
2001-10-05 20:19:59 +00:00
|
|
|
/// Returns the FGGroundReactions pointer.
|
|
|
|
inline FGGroundReactions* GetGroundReactions(void) {return GroundReactions;}
|
2001-06-05 20:58:48 +00:00
|
|
|
/// Returns the FGAircraft pointer.
|
2001-04-02 03:12:38 +00:00
|
|
|
inline FGAircraft* GetAircraft(void) {return Aircraft;}
|
|
|
|
/// Returns the FGTranslation pointer.
|
|
|
|
inline FGTranslation* GetTranslation(void) {return Translation;}
|
|
|
|
/// Returns the FGRotation pointer.
|
|
|
|
inline FGRotation* GetRotation(void) {return Rotation;}
|
|
|
|
/// Returns the FGPosition pointer.
|
|
|
|
inline FGPosition* GetPosition(void) {return Position;}
|
|
|
|
/// Returns the FGAuxiliary pointer.
|
|
|
|
inline FGAuxiliary* GetAuxiliary(void) {return Auxiliary;}
|
|
|
|
/// Returns the FGOutput pointer.
|
|
|
|
inline FGOutput* GetOutput(void) {return Output;}
|
2002-09-22 15:31:09 +00:00
|
|
|
// Returns a pointer to the FGInitialCondition object
|
|
|
|
inline FGInitialCondition* GetIC(void) {return IC;}
|
|
|
|
// Returns a pointer to the FGTrim object
|
|
|
|
FGTrim* GetTrim(void);
|
2001-04-02 03:12:38 +00:00
|
|
|
//@}
|
2002-09-22 15:31:09 +00:00
|
|
|
|
2001-04-02 03:12:38 +00:00
|
|
|
/// Retrieves the engine path.
|
|
|
|
inline string GetEnginePath(void) {return EnginePath;}
|
|
|
|
/// Retrieves the aircraft path.
|
|
|
|
inline string GetAircraftPath(void) {return AircraftPath;}
|
2002-09-22 15:31:09 +00:00
|
|
|
/// Retrieves the control path.
|
|
|
|
inline string GetControlPath(void) {return ControlPath;}
|
|
|
|
|
|
|
|
string GetModelName(void) { return modelName; }
|
2002-03-20 12:45:02 +00:00
|
|
|
|
|
|
|
FGPropertyManager* GetPropertyManager(void);
|
2002-03-23 00:29:21 +00:00
|
|
|
vector <string> EnumerateFDMs(void);
|
|
|
|
void SetSlave(void) {IsSlave = true;}
|
2002-04-30 13:42:26 +00:00
|
|
|
|
2001-04-02 03:12:38 +00:00
|
|
|
private:
|
|
|
|
FGModel* FirstModel;
|
|
|
|
|
|
|
|
bool frozen;
|
|
|
|
bool terminate;
|
|
|
|
int Error;
|
2001-11-12 16:06:29 +00:00
|
|
|
unsigned int Frame;
|
|
|
|
unsigned int IdFDM;
|
|
|
|
static unsigned int FDMctr;
|
2001-04-02 03:12:38 +00:00
|
|
|
bool modelLoaded;
|
2002-09-22 15:31:09 +00:00
|
|
|
string modelName;
|
2002-03-23 00:29:21 +00:00
|
|
|
bool IsSlave;
|
|
|
|
static FGPropertyManager *master;
|
2002-03-20 12:45:02 +00:00
|
|
|
FGPropertyManager *instance;
|
2002-04-30 13:42:26 +00:00
|
|
|
|
2002-03-23 00:29:21 +00:00
|
|
|
struct slaveData {
|
|
|
|
FGFDMExec* exec;
|
|
|
|
string info;
|
|
|
|
double x, y, z;
|
|
|
|
double roll, pitch, yaw;
|
|
|
|
bool mated;
|
|
|
|
|
|
|
|
slaveData(void) {
|
|
|
|
info = "";
|
|
|
|
x = y = z = 0.0;
|
|
|
|
roll = pitch = yaw = 0.0;
|
|
|
|
mated = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
~slaveData(void) {
|
|
|
|
delete exec;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2001-04-02 03:12:38 +00:00
|
|
|
string AircraftPath;
|
|
|
|
string EnginePath;
|
2002-09-22 15:31:09 +00:00
|
|
|
string ControlPath;
|
|
|
|
|
2001-12-24 13:54:55 +00:00
|
|
|
string CFGVersion;
|
2001-04-02 03:12:38 +00:00
|
|
|
|
2001-10-05 20:19:59 +00:00
|
|
|
FGState* State;
|
|
|
|
FGAtmosphere* Atmosphere;
|
|
|
|
FGFCS* FCS;
|
|
|
|
FGPropulsion* Propulsion;
|
|
|
|
FGMassBalance* MassBalance;
|
|
|
|
FGAerodynamics* Aerodynamics;
|
|
|
|
FGInertial* Inertial;
|
|
|
|
FGGroundReactions* GroundReactions;
|
|
|
|
FGAircraft* Aircraft;
|
|
|
|
FGTranslation* Translation;
|
|
|
|
FGRotation* Rotation;
|
|
|
|
FGPosition* Position;
|
|
|
|
FGAuxiliary* Auxiliary;
|
|
|
|
FGOutput* Output;
|
2002-09-22 15:31:09 +00:00
|
|
|
|
|
|
|
FGInitialCondition* IC;
|
|
|
|
FGTrim *Trim;
|
2001-04-02 03:12:38 +00:00
|
|
|
|
2002-03-23 00:29:21 +00:00
|
|
|
vector <slaveData*> SlaveFDMList;
|
|
|
|
|
2001-12-24 13:54:55 +00:00
|
|
|
bool ReadMetrics(FGConfigFile*);
|
2002-03-23 00:29:21 +00:00
|
|
|
bool ReadSlave(FGConfigFile*);
|
2001-12-24 13:54:55 +00:00
|
|
|
bool ReadPropulsion(FGConfigFile*);
|
|
|
|
bool ReadFlightControls(FGConfigFile*);
|
|
|
|
bool ReadAerodynamics(FGConfigFile*);
|
|
|
|
bool ReadUndercarriage(FGConfigFile*);
|
|
|
|
bool ReadPrologue(FGConfigFile*);
|
|
|
|
bool ReadOutput(FGConfigFile*);
|
|
|
|
|
2001-04-02 03:12:38 +00:00
|
|
|
bool Allocate(void);
|
|
|
|
bool DeAllocate(void);
|
2001-12-13 04:48:34 +00:00
|
|
|
void Debug(int from);
|
2001-04-02 03:12:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
#endif
|
|
|
|
|