#include <Astro/solarsystem.hxx>
#include <Autopilot/autopilot.hxx>
#include <Cockpit/cockpit.hxx>
+// #include <FDM/Balloon.h>
#include <FDM/LaRCsim.hxx>
#include <FDM/JSBsim.hxx>
#include <Include/fg_constants.h>
cur_fdm_state = new FGLaRCsim;
} else if ( current_options.get_flight_model() == FGInterface::FG_JSBSIM ) {
cur_fdm_state = new FGJSBsim;
+ // } else if ( current_options.get_flight_model() ==
+ // FGInterface::FG_BALLOONSIM ) {
+ // cur_fdm_state = new FGBalloonSim;
} else {
FG_LOG( FG_GENERAL, FG_ALERT,
"No flight model, can't init aircraft" );
return FGInterface::FG_SLEW;
} else if ( fm == "jsb" ) {
return FGInterface::FG_JSBSIM;
+ } else if ( fm == "balloon" ) {
+ return FGInterface::FG_BALLOONSIM;
} else if ( (fm == "larcsim") || (fm == "LaRCsim") ) {
return FGInterface::FG_LARCSIM;
} else if ( fm == "external" ) {