]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGModel.h
Initial revision
[flightgear.git] / src / FDM / JSBSim / FGModel.h
1 /*******************************************************************************
2
3  Header:       FGModel.h
4  Author:       Jon Berndt
5  Date started: 11/21/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/22/98   JSB   Created
29
30 ********************************************************************************
31 SENTRY
32 *******************************************************************************/
33
34 #ifndef FGMODEL_H
35 #define FGMODEL_H
36
37 /*******************************************************************************
38 INCLUDES
39 *******************************************************************************/
40
41 #include "FGDefs.h"
42
43 #ifdef FGFS
44 #  include <Include/compiler.h>
45 #  include STL_STRING
46 #  ifdef FG_HAVE_STD_INCLUDES
47 #    include <iostream>
48 #  else
49 #    include <iostream.h>
50 #  endif
51    FG_USING_STD(string);
52 #else
53 #  include <string>
54 #  include <iostream>
55 #endif
56
57 /*******************************************************************************
58 DEFINES
59 *******************************************************************************/
60
61 using namespace std;
62
63 /*******************************************************************************
64 CLASS DECLARATION
65 *******************************************************************************/
66
67 class FGFDMExec;
68 class FGState;
69 class FGAtmosphere;
70 class FGFCS;
71 class FGAircraft;
72 class FGTranslation;
73 class FGRotation;
74 class FGPosition;
75 class FGAuxiliary;
76 class FGOutput;
77
78 class FGModel
79 {
80 public:
81   FGModel(FGFDMExec*);
82   ~FGModel(void);
83
84   FGModel* NextModel;
85   string Name;
86   virtual bool Run(void);
87   virtual bool InitModel(void);
88   void SetRate(int tt) {rate = tt;};
89
90 protected:
91   int exe_ctr;
92   int rate;
93   
94   FGFDMExec*      FDMExec;
95   FGState*        State;
96   FGAtmosphere*   Atmosphere;
97   FGFCS*          FCS;
98   FGAircraft*     Aircraft;
99   FGTranslation*  Translation;
100   FGRotation*     Rotation;
101   FGPosition*     Position;
102   FGAuxiliary*    Auxiliary;
103   FGOutput*       Output;
104
105 private:
106 };
107
108 /******************************************************************************/
109 #endif