X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FBalloon.cxx;h=dd5bc016d8f8580432532adc857e9bcbb6daa138;hb=938d006188e70e891bc04e91610c7b8caaca87b6;hp=06ea98db02fd374237cb7f7d2d36e29ddceb1ba7;hpb=d346e53aeec57c83bcfb560b5ef8b7de465741c9;p=flightgear.git diff --git a/src/FDM/Balloon.cxx b/src/FDM/Balloon.cxx index 06ea98db0..dd5bc016d 100644 --- a/src/FDM/Balloon.cxx +++ b/src/FDM/Balloon.cxx @@ -39,7 +39,7 @@ HISTORY #include -#ifdef FG_MATH_EXCEPTION_CLASH +#ifdef SG_MATH_EXCEPTION_CLASH # include #endif @@ -48,7 +48,7 @@ HISTORY #include #include #include -#include +#include #include #include @@ -75,17 +75,23 @@ FGBalloonSim::~FGBalloonSim() { // Initialize the BalloonSim flight model, dt is the time increment for // each subsequent iteration through the EOM void FGBalloonSim::init() { + + //do init common to all the FDM's + common_init(); + + //now do init specific to the Balloon + sgVec3 temp; - FG_LOG( FG_FLIGHT, FG_INFO, "Starting initializing BalloonSim" ); + SG_LOG( SG_FLIGHT, SG_INFO, "Starting initializing BalloonSim" ); - FG_LOG( FG_FLIGHT, FG_INFO, " created a balloon" ); + SG_LOG( SG_FLIGHT, SG_INFO, " created a balloon" ); //set position sgSetVec3( temp, get_Latitude(), get_Longitude(), - get_Altitude() * FEET_TO_METER); + get_Altitude() * SG_FEET_TO_METER); current_balloon.setPosition( temp ); //set Euler angles (?) @@ -97,17 +103,17 @@ void FGBalloonSim::init() { //set velocities sgSetVec3( temp, - fgGetDouble("/velocities/uBody"), - fgGetDouble("/velocities/vBody"), - fgGetDouble("/velocities/wBody") ); + fgGetDouble("/velocities/uBody-fps"), + fgGetDouble("/velocities/vBody-fps"), + fgGetDouble("/velocities/wBody-fps") ); current_balloon.setVelocity( temp ); - FG_LOG( FG_FLIGHT, FG_INFO, "Finished initializing BalloonSim" ); + SG_LOG( SG_FLIGHT, SG_INFO, "Finished initializing BalloonSim" ); } // Run an iteration of the EOM (equations of motion) -bool FGBalloonSim::update( int multiloop ) { +void FGBalloonSim::update( int multiloop ) { double save_alt = 0.0; // lets try to avoid really screwing up the BalloonSim model @@ -117,11 +123,11 @@ bool FGBalloonSim::update( int multiloop ) { } // set control positions - current_balloon.set_burner_strength ( controls.get_throttle(0) ); + current_balloon.set_burner_strength ( globals->get_controls()->get_throttle(0) ); //not more implemented yet // Inform BalloonSim of the local terrain altitude - current_balloon.setGroundLevel ( get_Runway_altitude() * FEET_TO_METER); + current_balloon.setGroundLevel ( get_Runway_altitude() * SG_FEET_TO_METER); // old -- FGInterface_2_JSBsim() not needed except for Init() // translate FG to JSBsim structure @@ -146,7 +152,7 @@ bool FGBalloonSim::update( int multiloop ) { /*sgVec3 temp, temp2; current_balloon.getPosition( temp ); current_balloon.getVelocity( temp2 ); - FG_LOG( FG_FLIGHT, FG_INFO, "T: " << current_balloon.getTemperature() << + SG_LOG( SG_FLIGHT, SG_INFO, "T: " << current_balloon.getTemperature() << " alt: " << temp[2] << " gr_alt: " << get_Runway_altitude() << " burner: " << controls.get_elevator() << @@ -156,8 +162,6 @@ bool FGBalloonSim::update( int multiloop ) { if ( save_alt < -9000.0 ) { set_Altitude( save_alt ); } - - return true; } @@ -186,7 +190,7 @@ bool FGBalloonSim::copy_from_BalloonSim() { //temp[1]: longitude //temp[2]: altitude (meters) - _updatePosition( temp[0], temp[1], temp[2] * METER_TO_FEET ); + _updateGeocentricPosition( temp[0], temp[1], temp[2] * SG_METER_TO_FEET ); current_balloon.getHPR( temp ); set_Euler_Angles( temp[0], temp[1], temp[2] );