]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGFDMExec.h
bfed56142ca2a6e0de43a852a319bd847569b64e
[flightgear.git] / src / FDM / JSBSim / FGFDMExec.h
1 /*******************************************************************************
2
3  Header:       FGFDMExec.h
4  Author:       Jon Berndt
5  Date started: 11/17/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 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 11/17/98   JSB   Created
29 7/31/99     TP   Added RunIC function that runs the sim so that every frame
30                  begins with the IC values from the given FGInitialCondition 
31                                  object and dt=0. 
32
33 ********************************************************************************
34 SENTRY
35 *******************************************************************************/
36
37 #ifndef FGFDMEXEC_HEADER_H
38 #define FGFDMEXEC_HEADER_H
39
40 /*******************************************************************************
41 INCLUDES
42 *******************************************************************************/
43
44 #include "FGModel.h"
45 #include "FGInitialCondition.h"
46
47 using namespace std;
48
49 /*******************************************************************************
50 CLASS DECLARATION
51 *******************************************************************************/
52
53 class FGState;
54 class FGAtmosphere;
55 class FGFCS;
56 class FGAircraft;
57 class FGTranslation;
58 class FGRotation;
59 class FGPosition;
60 class FGAuxiliary;
61 class FGOutput;
62 class FGInitialCondition;
63
64 class FGFDMExec
65 {
66 public:
67   FGFDMExec(void);
68   ~FGFDMExec(void);
69
70   FGModel* FirstModel;
71
72   bool Initialize(void);
73   int  Schedule(FGModel* model, int rate);
74   bool Run(void);
75   bool RunIC(FGInitialCondition *fgic); 
76   void Freeze(void) {frozen = true;}
77   void Resume(void) {frozen = false;}
78
79   inline FGState* GetState(void)             {return State;}
80   inline FGAtmosphere* GetAtmosphere(void)   {return Atmosphere;}
81   inline FGFCS* GetFCS(void)                 {return FCS;}
82   inline FGAircraft* GetAircraft(void)       {return Aircraft;}
83   inline FGTranslation* GetTranslation(void) {return Translation;}
84   inline FGRotation* GetRotation(void)       {return Rotation;}
85   inline FGPosition* GetPosition(void)       {return Position;}
86   inline FGAuxiliary* GetAuxiliary(void)     {return Auxiliary;}
87   inline FGOutput* GetOutput(void)           {return Output;}
88
89 private:
90   bool frozen;
91   bool terminate;
92   int Error;
93
94   FGState*       State;
95   FGAtmosphere*  Atmosphere;
96   FGFCS*         FCS;
97   FGAircraft*    Aircraft;
98   FGTranslation* Translation;
99   FGRotation*    Rotation;
100   FGPosition*    Position;
101   FGAuxiliary*   Auxiliary;
102   FGOutput*      Output;
103
104 protected:
105 };
106
107 /******************************************************************************/
108 #endif