]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/models/FGModel.h
3260d22cc76d579cf18e83cc05e1c4214d8796a4
[flightgear.git] / src / FDM / JSBSim / models / 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 Lesser 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 Lesser General Public License for more
17  details.
18
19  You should have received a copy of the GNU Lesser 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 Lesser 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 <FGJSBBase.h>
42 #include <input_output/FGPropertyManager.h>
43 #include <input_output/FGXMLElement.h>
44
45 #ifdef FGFS
46 #  include <simgear/compiler.h>
47 #  ifdef SG_HAVE_STD_INCLUDES
48 #    include <iostream>
49 #  else
50 #    include <iostream.h>
51 #  endif
52 #else
53 #  if defined(sgi) && !defined(__GNUC__) && (_COMPILER_VERSION < 740)
54 #    include <iostream.h>
55 #  else
56 #    include <iostream>
57 #  endif
58 #endif
59
60 #include <string>
61
62 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
63 DEFINITIONS
64 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
65
66 #define ID_MODEL "$Id$"
67
68 using namespace std;
69
70 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
71 FORWARD DECLARATIONS
72 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
73
74 namespace JSBSim {
75
76 class FGFDMExec;
77 class FGState;
78 class FGAtmosphere;
79 class FGFCS;
80 class FGPropulsion;
81 class FGMassBalance;
82 class FGAerodynamics;
83 class FGInertial;
84 class FGGroundReactions;
85 class FGExternalReactions;
86 class FGBuoyantForces;
87 class FGAircraft;
88 class FGPropagate;
89 class FGAuxiliary;
90
91 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
92 CLASS DOCUMENTATION
93 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
94
95 /** Base class for all scheduled JSBSim models
96     @author Jon S. Berndt
97   */
98
99 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
100 CLASS DECLARATION
101 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
102
103 class FGModel : public FGJSBBase
104 {
105 public:
106
107   /// Constructor
108   FGModel(FGFDMExec*);
109   /// Destructor
110   virtual ~FGModel();
111
112   /** Loads this model.
113       @param el a pointer to the element
114       @return true if model is successfully loaded*/
115   virtual bool Load(Element* el) {return true;}
116
117   FGModel* NextModel;
118   string Name;
119
120   /** Runs the model; called by the Executive
121       @see JSBSim.cpp documentation
122       @return false if no error */
123   virtual bool Run(void);
124   virtual bool InitModel(void);
125   virtual void SetRate(int tt) {rate = tt;}
126   virtual int  GetRate(void)   {return rate;}
127
128   void SetPropertyManager(FGPropertyManager *fgpm) { PropertyManager=fgpm;}
129
130 protected:
131   int exe_ctr;
132   int rate;
133
134   virtual void Debug(int from);
135
136   FGFDMExec*         FDMExec;
137   FGState*           State;
138   FGAtmosphere*      Atmosphere;
139   FGFCS*             FCS;
140   FGPropulsion*      Propulsion;
141   FGMassBalance*     MassBalance;
142   FGAerodynamics*    Aerodynamics;
143   FGInertial*        Inertial;
144   FGGroundReactions* GroundReactions;
145   FGExternalReactions* ExternalReactions;
146   FGBuoyantForces*   BuoyantForces;
147   FGAircraft*        Aircraft;
148   FGPropagate*       Propagate;
149   FGAuxiliary*       Auxiliary;
150   FGPropertyManager* PropertyManager;
151 };
152 }
153 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
154 #endif
155