]> git.mxchange.org Git - flightgear.git/blob - src/FDM/fdm_shell.cxx
Merge branch 'next' into comm-subsystem
[flightgear.git] / src / FDM / fdm_shell.cxx
1 // fdm_shell.cxx -- encapsulate FDM implementations as well-behaved subsystems
2 //
3 // Written by James Turner, started June 2010.
4 //
5 // Copyright (C) 2010  Curtis L. Olson  - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include <cassert>
28 #include <simgear/structure/exception.hxx>
29
30 #include <FDM/fdm_shell.hxx>
31 #include <FDM/flight.hxx>
32 #include <Aircraft/replay.hxx>
33 #include <Main/globals.hxx>
34 #include <Main/fg_props.hxx>
35 #include <Scenery/scenery.hxx>
36
37 // all the FDMs, since we are the factory method
38 #ifdef ENABLE_SP_FDM
39 #include <FDM/SP/ADA.hxx>
40 #include <FDM/SP/ACMS.hxx>
41 #include <FDM/SP/MagicCarpet.hxx>
42 #include <FDM/SP/Balloon.h>
43 #endif
44 #include <FDM/ExternalNet/ExternalNet.hxx>
45 #include <FDM/ExternalPipe/ExternalPipe.hxx>
46
47 #ifdef ENABLE_JSBSIM
48 #include <FDM/JSBSim/JSBSim.hxx>
49 #endif
50
51 #ifdef ENABLE_LARCSIM
52 #include <FDM/LaRCsim/LaRCsim.hxx>
53 #endif
54
55 #include <FDM/UFO.hxx>
56 #include <FDM/NullFDM.hxx>
57
58 #ifdef ENABLE_YASIM
59 #include <FDM/YASim/YASim.hxx>
60 #endif
61
62 /*
63  * Evil global variable required by Network/FGNative,
64  * see that class for more information
65  */
66 FGInterface* evil_global_fdm_state = NULL;
67
68 FDMShell::FDMShell() :
69   _tankProperties( fgGetNode("/consumables/fuel", true) ),
70   _impl(NULL),
71   _dataLogging(false)
72 {
73 }
74
75 FDMShell::~FDMShell()
76 {
77   delete _impl;
78 }
79
80 void FDMShell::init()
81 {
82   _props = globals->get_props();
83   fgSetBool("/sim/fdm-initialized", false);
84
85   _wind_north       = _props->getNode("environment/wind-from-north-fps",    true);
86   _wind_east        = _props->getNode("environment/wind-from-east-fps",     true);
87   _wind_down        = _props->getNode("environment/wind-from-down-fps",     true);
88   _control_fdm_atmo = _props->getNode("environment/params/control-fdm-atmosphere", true);
89   _temp_degc        = _props->getNode("environment/temperature-degc",       true);
90   _pressure_inhg    = _props->getNode("environment/pressure-inhg",          true);
91   _density_slugft   = _props->getNode("environment/density-slugft3",        true);
92   _data_logging     = _props->getNode("/sim/temp/fdm-data-logging",         true);
93   _replay_master    = _props->getNode("/sim/freeze/replay-state",           true);
94
95   createImplementation();
96 }
97
98 void FDMShell::reinit()
99 {
100   if (_impl) {
101     fgSetBool("/sim/fdm-initialized", false);
102     evil_global_fdm_state = NULL;
103     _impl->unbind();
104     delete _impl;
105     _impl = NULL;
106   }
107   
108   init();
109 }
110
111 void FDMShell::bind()
112 {
113   _tankProperties.bind();
114   if (_impl && _impl->get_inited()) {
115     if (_impl->get_bound()) {
116       throw sg_exception("FDMShell::bind of bound FGInterface impl");
117     }
118     _impl->bind();
119   }
120 }
121
122 void FDMShell::unbind()
123 {
124   if( _impl ) _impl->unbind();
125   _tankProperties.unbind();
126 }
127
128 void FDMShell::update(double dt)
129 {
130   if (!_impl) {
131     return;
132   }
133   
134   if (!_impl->get_inited()) {
135     // Check for scenery around the aircraft.
136     double lon = fgGetDouble("/sim/presets/longitude-deg");
137     double lat = fgGetDouble("/sim/presets/latitude-deg");
138         
139     double range = 1000.0; // in meters
140     SGGeod geod = SGGeod::fromDeg(lon, lat);
141     if (globals->get_scenery()->scenery_available(geod, range)) {
142         SG_LOG(SG_FLIGHT, SG_INFO, "Scenery loaded, will init FDM");
143         _impl->init();
144         if (_impl->get_bound()) {
145           _impl->unbind();
146         }
147         _impl->bind();
148         
149         evil_global_fdm_state = _impl;
150         fgSetBool("/sim/fdm-initialized", true);
151         fgSetBool("/sim/signals/fdm-initialized", true);
152     }
153   }
154
155   if (!_impl->get_inited()) {
156     return; // still waiting
157   }
158
159 // pull environmental data in, since the FDMs are lazy
160   _impl->set_Velocities_Local_Airmass(
161           _wind_north->getDoubleValue(),
162           _wind_east->getDoubleValue(),
163           _wind_down->getDoubleValue());
164
165   if (_control_fdm_atmo->getBoolValue()) {
166     // convert from Rankine to Celsius
167     double tempDegC = _temp_degc->getDoubleValue();
168     _impl->set_Static_temperature((9.0/5.0) * (tempDegC + 273.15));
169     
170     // convert from inHG to PSF
171     double pressureInHg = _pressure_inhg->getDoubleValue();
172     _impl->set_Static_pressure(pressureInHg * 70.726566);
173     // keep in slugs/ft^3
174     _impl->set_Density(_density_slugft->getDoubleValue());
175   }
176
177   bool doLog = _data_logging->getBoolValue();
178   if (doLog != _dataLogging) {
179     _dataLogging = doLog;
180     _impl->ToggleDataLogging(doLog);
181   }
182
183   switch(_replay_master->getIntValue())
184   {
185       case 0:
186           // normal FDM operation
187           _impl->update(dt);
188           break;
189       case 3:
190           // resume FDM operation at current replay position
191           _impl->reinit();
192           break;
193       default:
194           // replay is active
195           break;
196   }
197 }
198
199 void FDMShell::createImplementation()
200 {
201   assert(!_impl);
202   
203   double dt = 1.0 / fgGetInt("/sim/model-hz");
204   string model = fgGetString("/sim/flight-model");
205
206   if ( model == "ufo" ) {
207     _impl = new FGUFO( dt );
208   } else if ( model == "external" ) {
209     // external is a synonym for "--fdm=null" and is
210     // maintained here for backwards compatibility
211     _impl = new FGNullFDM( dt );
212   } else if ( model.find("network") == 0 ) {
213     string host = "localhost";
214     int port1 = 5501;
215     int port2 = 5502;
216     int port3 = 5503;
217     string net_options = model.substr(8);
218     string::size_type begin, end;
219     begin = 0;
220     // host
221     end = net_options.find( ",", begin );
222     if ( end != string::npos ) {
223       host = net_options.substr(begin, end - begin);
224       begin = end + 1;
225     }
226     // port1
227     end = net_options.find( ",", begin );
228     if ( end != string::npos ) {
229       port1 = atoi( net_options.substr(begin, end - begin).c_str() );
230       begin = end + 1;
231     }
232     // port2
233     end = net_options.find( ",", begin );
234     if ( end != string::npos ) {
235       port2 = atoi( net_options.substr(begin, end - begin).c_str() );
236       begin = end + 1;
237     }
238     // port3
239     end = net_options.find( ",", begin );
240     if ( end != string::npos ) {
241       port3 = atoi( net_options.substr(begin, end - begin).c_str() );
242       begin = end + 1;
243     }
244     _impl = new FGExternalNet( dt, host, port1, port2, port3 );
245   } else if ( model.find("pipe") == 0 ) {
246     // /* old */ string pipe_path = model.substr(5);
247     // /* old */ _impl = new FGExternalPipe( dt, pipe_path );
248     string pipe_path = "";
249     string pipe_protocol = "";
250     string pipe_options = model.substr(5);
251     string::size_type begin, end;
252     begin = 0;
253     // pipe file path
254     end = pipe_options.find( ",", begin );
255     if ( end != string::npos ) {
256       pipe_path = pipe_options.substr(begin, end - begin);
257       begin = end + 1;
258     }
259     // protocol (last option)
260     pipe_protocol = pipe_options.substr(begin);
261     _impl = new FGExternalPipe( dt, pipe_path, pipe_protocol );
262   } else if ( model == "null" ) {
263     _impl = new FGNullFDM( dt );
264   } 
265 #ifdef ENABLE_LARCSIM
266     else if ( model == "larcsim" ) {
267         _impl = new FGLaRCsim( dt );
268     } 
269 #endif
270 #ifdef ENABLE_JSBSIM
271     else if ( model == "jsb" ) {
272         _impl = new FGJSBsim( dt );
273     } 
274 #endif
275 #ifdef ENABLE_SP_FDM
276     else if ( model == "ada" ) {
277         _impl = new FGADA( dt );
278     } else if ( model == "acms" ) {
279         _impl = new FGACMS( dt );
280     } else if ( model == "balloon" ) {
281         _impl = new FGBalloonSim( dt );
282     } else if ( model == "magic" ) {
283         _impl = new FGMagicCarpet( dt );
284     }
285 #endif
286 #ifdef ENABLE_YASIM
287     else if ( model == "yasim" ) {
288         _impl = new YASim( dt );
289     } 
290 #endif
291     else {
292         throw sg_exception(string("Unrecognized flight model '") + model
293                + "', cannot init flight dynamics model.");
294     }
295
296 }