From: daveluff Date: Wed, 4 Dec 2002 20:04:26 +0000 (+0000) Subject: Minor changes to variable name and comments X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2a1c00b8e47f8f7a57878c7678449d4f5a07073e;p=flightgear.git Minor changes to variable name and comments --- diff --git a/src/ATC/AIPlane.cxx b/src/ATC/AIPlane.cxx index c3a25ece0..e175a33ba 100644 --- a/src/ATC/AIPlane.cxx +++ b/src/ATC/AIPlane.cxx @@ -48,30 +48,31 @@ void FGAIPlane::Update(double dt) { } void FGAIPlane::Bank(double angle) { - // This *should* bank us smoothly to any angle - if(fabs(roll - angle) > 0.6) { - roll -= ((roll - angle)/fabs(roll - angle)); - } + // This *should* bank us smoothly to any angle + if(fabs(roll - angle) > 0.6) { + roll -= ((roll - angle)/fabs(roll - angle)); + } } // Duplication of Bank(0.0) really - should I cut this? void FGAIPlane::LevelWings(void) { - // bring the plane back to level smoothly (this should work to come out of either bank) - if(fabs(roll) > 0.6) { - roll -= (roll/fabs(roll)); - } + // bring the plane back to level smoothly (this should work to come out of either bank) + if(fabs(roll) > 0.6) { + roll -= (roll/fabs(roll)); + } } void FGAIPlane::Transmit(string msg) { - double user_freq0 = fgGetDouble("/radios/comm[0]/frequencies/selected-mhz"); - //double user_freq0 = ("/radios/comm[0]/frequencies/selected-mhz"); - //comm1 is not used yet. - - if(freq == user_freq0) { - // we are on the same frequency, so check distance to the user plane - if(1) { - // For now (testing) assume in range !!! - globals->get_ATC_display()->RegisterSingleMessage(msg, 0); + double user_freq0 = fgGetDouble("/radios/comm[0]/frequencies/selected-mhz"); + //double user_freq0 = ("/radios/comm[0]/frequencies/selected-mhz"); + //comm1 is not used yet. + + if(freq == user_freq0) { + // we are on the same frequency, so check distance to the user plane + if(1) { + // For now (testing) assume in range !!! + // TODO - implement range checking + globals->get_ATC_display()->RegisterSingleMessage(msg, 0); + } } - } } diff --git a/src/ATC/AIPlane.hxx b/src/ATC/AIPlane.hxx index bb58f20cb..82eef86ef 100644 --- a/src/ATC/AIPlane.hxx +++ b/src/ATC/AIPlane.hxx @@ -59,7 +59,7 @@ protected: double mag_hdg; // degrees - the heading that the physical aircraft is *pointing* double track; // track that the physical aircraft is *following* - degrees relative to *true* north - double yaw; + double crab; // Difference between heading and track due to wind. double mag_var; // degrees double IAS; // Indicated airspeed in knots double vel; // velocity along track in knots