]> git.mxchange.org Git - flightgear.git/commitdiff
Removal of some debugging statements.
authorDurk Talsma <durk@localhost.(none)>
Wed, 3 Aug 2011 19:23:42 +0000 (21:23 +0200)
committerDurk Talsma <durk@localhost.(none)>
Wed, 3 Aug 2011 19:23:42 +0000 (21:23 +0200)
src/AIModel/AIFlightPlanCreatePushBack.cxx
src/ATC/atc_mgr.cxx

index 93aee3222a9c01fcfd634365490b78c897f51b75..3a7e86d70fd75255dff38a8ebb543daedaf6554b 100644 (file)
@@ -1,4 +1,4 @@
-/******************************************************************************
+/****************************************************************************
  * AIFlightPlanCreatePushBack.cxx
  * Written by Durk Talsma, started August 1, 2007.
  *
@@ -157,7 +157,7 @@ bool FGAIFlightPlan::createPushBack(FGAIAircraft *ac,
                exit(1);
            }
            double distance = (*ts)->getLength();
-           cerr << "Length of push forward route = " << distance << " and heading is " << heading << endl;
+           //cerr << "Length of push forward route = " << distance << " and heading is " << heading << endl;
            lat2 =  tn->getLatitude();
            lon2 =  tn->getLongitude();
 
@@ -167,15 +167,15 @@ bool FGAIFlightPlan::createPushBack(FGAIAircraft *ac,
                 char buffer[16];
                 snprintf(buffer, 16, "pushback-%02d", i);
                 SGGeod coord = coord.fromDeg(lon2, lat2);
-                cerr << i << endl;
+                //cerr << i << endl;
                 FGAIWaypoint *wpt = createOnGround(ac, string(buffer), coord, dep->getElevation(), vTaxiReduced);
 
                 wpt->setRouteIndex((*ts)->getIndex());
                 waypoints.push_back(wpt); 
            }
-            cerr << "Done " << endl;
+           // cerr << "Done " << endl;
            waypoints.back()->setName(string("PushBackPoint"));
-            cerr << "Done assinging new name" << endl;
+           // cerr << "Done assinging new name" << endl;
         }
     }
     return true;
index b367eeff04bf5b000a4b9dadcaa8ca04afc51548..0c30d1f8990b91ee8a2ab13a1104d0f2818f58ab 100644 (file)
@@ -190,16 +190,16 @@ void FGATCManager::update ( double time ) {
     //    //cerr << "setting intentions " ;
         for (int i = 0; i < size; i++) {
     //        int val = fp->getRouteIndex(i);
-            cerr << fp->getWayPoint(i)->getName() << " ";
+            //cerr << fp->getWayPoint(i)->getName() << " ";
             //if ((val) && (val != pos)) {
                 //intentions.push_back(val);
                 //cerr << "[done ] " << endl;
             //}
         }
     }
-    cerr << "[done ] " << endl;
+    //cerr << "[done ] " << endl;
     if (fp) {
-        cerr << "Currently at leg : " << fp->getLeg() << endl;
+        //cerr << "Currently at leg : " << fp->getLeg() << endl;
     }
     double longitude = fgGetDouble("/position/longitude-deg");
     double latitude  = fgGetDouble("/position/latitude-deg");
@@ -215,10 +215,10 @@ void FGATCManager::update ( double time ) {
     controller = ai_ac.getATCController();
     currentATCDialog->update(time);
     if (controller) {
-       cerr << "name of previous waypoint : " << fp->getPreviousWaypoint()->getName() << endl;
+       //cerr << "name of previous waypoint : " << fp->getPreviousWaypoint()->getName() << endl;
 
         //cerr << "Running FGATCManager::update()" << endl;
-        cerr << "Currently under control of " << controller->getName() << endl;
+        //cerr << "Currently under control of " << controller->getName() << endl;
         controller->updateAircraftInformation(ai_ac.getID(),
                                               latitude,
                                               longitude,