-/******************************************************************************
+/****************************************************************************
* AIFlightPlanCreatePushBack.cxx
* Written by Durk Talsma, started August 1, 2007.
*
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();
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;
// //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");
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,