]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/JSBSim.cpp
Check return value of FDM::init().
[flightgear.git] / src / FDM / JSBSim / JSBSim.cpp
1 /*******************************************************************************
2
3  Module:       JSBSim.cpp
4  Author:       Jon S. Berndt
5  Date started: 08/17/99
6  Purpose:      Standalone version of JSBSim.
7  Called by:    The USER.
8
9  ------------- Copyright (C) 1999  Jon S. Berndt (jsb@hal-pc.org) -------------
10
11  This program is free software; you can redistribute it and/or modify it under
12  the terms of the GNU General Public License as published by the Free Software
13  Foundation; either version 2 of the License, or (at your option) any later
14  version.
15
16  This program is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  details.
20
21  You should have received a copy of the GNU General Public License along with
22  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
23  Place - Suite 330, Boston, MA  02111-1307, USA.
24
25  Further information about the GNU General Public License can also be found on
26  the world wide web at http://www.gnu.org.
27
28 FUNCTIONAL DESCRIPTION
29 --------------------------------------------------------------------------------
30
31 This class Handles calling JSBSim standalone. It is set up for compilation under
32 Borland C+Builder or other compiler.
33
34 HISTORY
35 --------------------------------------------------------------------------------
36 08/17/99   JSB   Created
37
38 ********************************************************************************
39 INCLUDES
40 *******************************************************************************/
41
42 #if __BCPLUSPLUS__  == 0x0540   // If compiling under Borland C++Builder
43 #pragma hdrstop
44 #include <condefs.h>
45 USEUNIT("FGUtility.cpp");
46 USEUNIT("FGAtmosphere.cpp");
47 USEUNIT("FGAuxiliary.cpp");
48 USEUNIT("FGCoefficient.cpp");
49 USEUNIT("FGConfigFile.cpp");
50 USEUNIT("FGControls.cpp");
51 USEUNIT("FGEngine.cpp");
52 USEUNIT("FGFCS.cpp");
53 USEUNIT("FGFDMExec.cpp");
54 USEUNIT("FGfdmSocket.cpp");
55 USEUNIT("FGInitialCondition.cpp");
56 USEUNIT("FGLGear.cpp");
57 USEUNIT("FGMatrix.cpp");
58 USEUNIT("FGModel.cpp");
59 USEUNIT("FGOutput.cpp");
60 USEUNIT("FGPosition.cpp");
61 USEUNIT("FGRotation.cpp");
62 USEUNIT("FGState.cpp");
63 USEUNIT("FGTank.cpp");
64 USEUNIT("FGTranslation.cpp");
65 USEUNIT("FGAircraft.cpp");
66 USERES("JSBSim.res");
67 USEUNIT("filtersjb\FGfcsComponent.cpp");
68 USEUNIT("filtersjb\FGSwitch.cpp");
69 USEUNIT("filtersjb\FGFilter.cpp");
70 USEUNIT("filtersjb\FGGain.cpp");
71 USEUNIT("filtersjb\FGGradient.cpp");
72 USEUNIT("filtersjb\FGSummer.cpp");
73 USEUNIT("filtersjb\FGDeadBand.cpp");
74 USEUNIT("filtersjb\FGFlaps.cpp");
75 USEFILE("JSBSim.cxx");
76 USEUNIT("FGForce.cpp");
77 USEUNIT("FGInertial.cpp");
78 USEUNIT("FGNozzle.cpp");
79 USEUNIT("FGPropeller.cpp");
80 USEUNIT("FGRotor.cpp");
81 USEUNIT("FGThruster.cpp");
82 USEUNIT("FGMassBalance.cpp");
83 USEUNIT("FGRocket.cpp");
84 USEUNIT("FGTurboJet.cpp");
85 USEUNIT("FGPiston.cpp");
86 USEUNIT("FGTurboShaft.cpp");
87 USEUNIT("FGPropulsion.cpp");
88 USEUNIT("FGGroundReactions.cpp");
89 USEUNIT("FGAerodynamics.cpp");
90 //---------------------------------------------------------------------------
91 #pragma argsused
92 #endif
93
94 #include "FGFDMExec.h"
95 #include "FGRotation.h"
96 #include "FGAtmosphere.h"
97 #include "FGState.h"
98 #include "FGFCS.h"
99 #include "FGAircraft.h"
100 #include "FGTranslation.h"
101 #include "FGPosition.h"
102 #include "FGAuxiliary.h"
103 #include "FGOutput.h"
104
105 #ifdef FGFS
106 #include <simgear/compiler.h>
107 #include STL_IOSTREAM
108 #  ifdef FG_HAVE_STD_INCLUDES
109 #    include <ctime>
110 #  else
111 #    include <time.h>
112 #  endif
113 #else
114 #include <iostream>
115 #include <ctime>
116 #endif
117
118 static const char *IdSrc = "$Header$";
119
120 int main(int argc, char** argv)
121 {
122   FGFDMExec* FDMExec;
123   bool result = false;
124
125   if (argc != 3) {
126     cout << endl
127          << "  You must enter the name of a registered aircraft and reset point:"
128          << endl << endl << "  FDM <aircraft name> <reset file>" << endl;
129     exit(0);
130   }
131
132   FDMExec = new FGFDMExec();
133
134   result = FDMExec->LoadModel("aircraft", "engine", string(argv[1]));
135   
136   if (!result) {
137         cerr << "Aircraft file " << argv[1] << " was not found" << endl;
138           exit(-1);
139   }
140   
141   if ( ! FDMExec->GetState()->Reset("aircraft", string(argv[1]), string(argv[2])))
142     FDMExec->GetState()->Initialize(2000,0,0,0,0,0,0.5,0.5,40000);
143
144   float cmd = 0.0;
145
146   while (FDMExec->GetState()->Getsim_time() <= 10.0)
147   {
148     // Fake an elevator ramp here after 1 second, hold for one second, ramp down
149     
150     if (FDMExec->GetState()->Getsim_time() >= 1.00 &&
151         FDMExec->GetState()->Getsim_time() < 2.0)
152     {
153       cmd = -(FDMExec->GetState()->Getsim_time() - 1.00)/2.0;
154     } else if (FDMExec->GetState()->Getsim_time() >= 2.00 &&
155         FDMExec->GetState()->Getsim_time() < 6.0)
156     {
157       cmd = -1.00/2.0;
158     } else if (FDMExec->GetState()->Getsim_time() >= 6.00 &&
159         FDMExec->GetState()->Getsim_time() < 7.0)
160     {
161       cmd = -(7.0 - FDMExec->GetState()->Getsim_time())/2.0;
162     } else {
163       cmd = 0.00;
164     }
165     FDMExec->GetFCS()->SetDeCmd(cmd);    // input between -1 and 1
166     
167     FDMExec->Run();
168   }
169
170   delete FDMExec;
171
172   return 0;
173 }
174
175