]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIAircraft.cxx
0a8c1d5460ff0f3217ba64ad41208e3678ad0c6b
[flightgear.git] / src / AIModel / AIAircraft.cxx
1 // // // FGAIAircraft - FGAIBase-derived class creates an AI airplane
2 //
3 // Written by David Culp, started October 2003.
4 //
5 // Copyright (C) 2003  David P. Culp - davidculp2@comcast.net
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 #ifdef HAVE_CONFIG_H
22 #  include <config.h>
23 #endif
24
25 #include <simgear/route/waypoint.hxx>
26 #include <Main/fg_props.hxx>
27 #include <Main/globals.hxx>
28 #include <Main/viewer.hxx>
29 #include <Scenery/scenery.hxx>
30 #include <Scenery/tilemgr.hxx>
31 #include <Airports/dynamics.hxx>
32
33 #include <string>
34 #include <math.h>
35 #include <time.h>
36
37 #ifdef _MSC_VER
38 #  include <float.h>
39 #  define finite _finite
40 #elif defined(__sun) || defined(sgi)
41 #  include <ieeefp.h>
42 #endif
43
44 using std::string;
45
46 #include "AIAircraft.hxx"
47 #include "performancedata.hxx"
48 #include "performancedb.hxx"
49
50 //#include <Airports/trafficcontroller.hxx>
51
52 static string tempReg;
53
54 FGAIAircraft::FGAIAircraft(FGAISchedule *ref) : FGAIBase(otAircraft) {
55     trafficRef = ref;
56     if (trafficRef) {
57         groundOffset = trafficRef->getGroundOffset();
58         setCallSign(trafficRef->getCallSign());
59     }
60     else
61         groundOffset = 0;
62
63     fp = 0;
64     controller = 0;
65     prevController = 0;
66     dt_count = 0;
67     dt_elev_count = 0;
68     use_perf_vs = true;
69
70     no_roll = false;
71     tgt_speed = 0;
72     speed = 0;
73     groundTargetSpeed = 0;
74
75     // set heading and altitude locks
76     hdg_lock = false;
77     alt_lock = false;
78     roll = 0;
79     headingChangeRate = 0.0;
80     headingError = 0;
81
82     holdPos = false;
83     needsTaxiClearance = false;
84
85     _performance = 0; //TODO initialize to JET_TRANSPORT from PerformanceDB
86     dt = 0;
87 }
88
89
90 FGAIAircraft::~FGAIAircraft() {
91     //delete fp;
92     if (controller)
93         controller->signOff(getID());
94 }
95
96
97 void FGAIAircraft::readFromScenario(SGPropertyNode* scFileNode) {
98     if (!scFileNode)
99         return;
100
101     FGAIBase::readFromScenario(scFileNode);
102
103     setPerformance(scFileNode->getStringValue("class", "jet_transport"));
104     setFlightPlan(scFileNode->getStringValue("flightplan"),
105                   scFileNode->getBoolValue("repeat", false));
106     setCallSign(scFileNode->getStringValue("callsign"));
107 }
108
109
110 void FGAIAircraft::bind() {
111     FGAIBase::bind();
112
113     props->tie("controls/gear/gear-down",
114                SGRawValueMethods<FGAIAircraft,bool>(*this,
115                                                     &FGAIAircraft::_getGearDown));
116     props->tie("transponder-id",
117                SGRawValueMethods<FGAIAircraft,const char*>(*this,
118                                                     &FGAIAircraft::_getTransponderCode));
119 }
120
121
122 void FGAIAircraft::unbind() {
123     FGAIBase::unbind();
124
125     props->untie("controls/gear/gear-down");
126     props->untie("transponder-id");
127 }
128
129
130 void FGAIAircraft::update(double dt) {
131     FGAIBase::update(dt);
132     Run(dt);
133     Transform();
134 }
135
136 void FGAIAircraft::setPerformance(const std::string& acclass) {
137      static PerformanceDB perfdb; //TODO make it a global service
138      setPerformance(perfdb.getDataFor(acclass));
139   }
140
141
142  void FGAIAircraft::setPerformance(PerformanceData *ps) {
143      _performance = ps;
144   }
145
146
147  void FGAIAircraft::Run(double dt) {
148       FGAIAircraft::dt = dt;
149     
150      bool outOfSight = false, 
151         flightplanActive = true;
152      updatePrimaryTargetValues(flightplanActive, outOfSight); // target hdg, alt, speed
153      if (outOfSight) {
154         return;
155      }
156
157      if (!flightplanActive) {
158         groundTargetSpeed = 0;
159      }
160
161      handleATCRequests(); // ATC also has a word to say
162      updateSecondaryTargetValues(); // target roll, vertical speed, pitch
163      updateActualState(); 
164      UpdateRadar(manager);
165      checkVisibility();
166   }
167
168 void FGAIAircraft::checkVisibility() 
169 {
170   double visibility_meters = fgGetDouble("/environment/visibility-m");
171   FGViewer* vw = globals->get_current_view();
172   invisible = (SGGeodesy::distanceM(vw->getPosition(), pos) > visibility_meters);
173 }
174
175
176
177 void FGAIAircraft::AccelTo(double speed) {
178     tgt_speed = speed;
179 }
180
181
182 void FGAIAircraft::PitchTo(double angle) {
183     tgt_pitch = angle;
184     alt_lock = false;
185 }
186
187
188 void FGAIAircraft::RollTo(double angle) {
189     tgt_roll = angle;
190     hdg_lock = false;
191 }
192
193
194 void FGAIAircraft::YawTo(double angle) {
195     tgt_yaw = angle;
196 }
197
198
199 void FGAIAircraft::ClimbTo(double alt_ft ) {
200     tgt_altitude_ft = alt_ft;
201     alt_lock = true;
202 }
203
204
205 void FGAIAircraft::TurnTo(double heading) {
206     tgt_heading = heading;
207     hdg_lock = true;
208 }
209
210
211 double FGAIAircraft::sign(double x) {
212     if (x == 0.0)
213         return x;
214     else
215         return x/fabs(x);
216 }
217
218
219 void FGAIAircraft::setFlightPlan(const std::string& flightplan, bool repeat) {
220     if (!flightplan.empty()) {
221         FGAIFlightPlan* fp = new FGAIFlightPlan(flightplan);
222         fp->setRepeat(repeat);
223         SetFlightPlan(fp);
224     }
225 }
226
227
228 void FGAIAircraft::SetFlightPlan(FGAIFlightPlan *f) {
229     delete fp;
230     fp = f;
231 }
232
233
234 void FGAIAircraft::ProcessFlightPlan( double dt, time_t now ) {
235
236     // the one behind you
237     FGAIFlightPlan::waypoint* prev = 0;
238     // the one ahead
239     FGAIFlightPlan::waypoint* curr = 0;
240     // the next plus 1
241     FGAIFlightPlan::waypoint* next = 0;
242
243     prev = fp->getPreviousWaypoint();
244     curr = fp->getCurrentWaypoint();
245     next = fp->getNextWaypoint();
246
247     dt_count += dt;
248
249     ///////////////////////////////////////////////////////////////////////////
250     // Initialize the flightplan
251     //////////////////////////////////////////////////////////////////////////
252     if (!prev) {
253         handleFirstWaypoint();
254         return;
255     }                            // end of initialization
256     if (! fpExecutable(now))
257           return;
258     dt_count = 0;
259
260     if (! leadPointReached(curr)) {
261         controlHeading(curr);
262         controlSpeed(curr, next);
263     } else {
264         if (curr->finished)      //end of the flight plan
265         {
266             if (fp->getRepeat())
267                 fp->restart();
268             else
269                 setDie(true);
270             return;
271         }
272
273         if (next) {
274             //TODO more intelligent method in AIFlightPlan, no need to send data it already has :-)
275             tgt_heading = fp->getBearing(curr, next);
276             spinCounter = 0;
277         }
278
279         //TODO let the fp handle this (loading of next leg)
280         fp->IncrementWaypoint( trafficRef != 0 );
281         if (!(fp->getNextWaypoint()) && trafficRef != 0)
282             if (!loadNextLeg()) {
283                 setDie(true);
284                 return;
285             }
286
287         prev = fp->getPreviousWaypoint();
288         curr = fp->getCurrentWaypoint();
289         next = fp->getNextWaypoint();
290
291         // Now that we have incremented the waypoints, excute some traffic manager specific code
292         if (trafficRef) {
293             //TODO isn't this best executed right at the beginning?
294             if (! aiTrafficVisible()) {
295                 setDie(true);
296                 return;
297             }
298
299             if (! handleAirportEndPoints(prev, now)) {
300                 setDie(true);
301                 return;
302             }
303
304             announcePositionToController();
305
306         }
307
308         if (next) {
309             fp->setLeadDistance(tgt_speed, tgt_heading, curr, next);
310         }
311
312         if (!(prev->on_ground))  // only update the tgt altitude from flightplan if not on the ground
313         {
314             tgt_altitude_ft = prev->altitude;
315             if (curr->crossat > -1000.0) {
316                 use_perf_vs = false;
317                 tgt_vs = (curr->crossat - altitude_ft) / (fp->getDistanceToGo(pos.getLatitudeDeg(), pos.getLongitudeDeg(), curr)
318                          / 6076.0 / speed*60.0);
319                 tgt_altitude_ft = curr->crossat;
320             } else {
321                 use_perf_vs = true;
322             }
323         }
324         tgt_speed = prev->speed;
325         hdg_lock = alt_lock = true;
326         no_roll = prev->on_ground;
327     }
328 }
329
330
331 void FGAIAircraft::initializeFlightPlan() {
332 }
333
334
335 bool FGAIAircraft::_getGearDown() const {
336     return _performance->gearExtensible(this);
337 }
338
339
340 const char * FGAIAircraft::_getTransponderCode() const {
341   return transponderCode.c_str();
342 }
343
344
345 bool FGAIAircraft::loadNextLeg() {
346
347     int leg;
348     if ((leg = fp->getLeg())  == 10) {
349         if (!trafficRef->next()) {
350             return false;
351         }
352         setCallSign(trafficRef->getCallSign());
353         leg = 1;
354         fp->setLeg(leg);
355     }
356
357     FGAirport *dep = trafficRef->getDepartureAirport();
358     FGAirport *arr = trafficRef->getArrivalAirport();
359     if (!(dep && arr)) {
360         setDie(true);
361
362     } else {
363         double cruiseAlt = trafficRef->getCruiseAlt() * 100;
364
365         fp->create (this,
366                     dep,
367                     arr,
368                     leg,
369                     cruiseAlt,
370                     trafficRef->getSpeed(),
371                     _getLatitude(),
372                     _getLongitude(),
373                     false,
374                     trafficRef->getRadius(),
375                     trafficRef->getFlightType(),
376                     acType,
377                     company);
378        //cerr << "created  leg " << leg << " for " << trafficRef->getCallSign() << endl;
379     }
380     return true;
381 }
382
383
384 // Note: This code is copied from David Luff's AILocalTraffic
385 // Warning - ground elev determination is CPU intensive
386 // Either this function or the logic of how often it is called
387 // will almost certainly change.
388
389 void FGAIAircraft::getGroundElev(double dt) {
390     dt_elev_count += dt;
391
392     // Update minimally every three secs, but add some randomness
393     // to prevent all AI objects doing this in synchrony
394     if (dt_elev_count < (3.0) + (rand() % 10))
395         return;
396
397     dt_elev_count = 0;
398
399     // Only do the proper hitlist stuff if we are within visible range of the viewer.
400     if (!invisible) {
401         double visibility_meters = fgGetDouble("/environment/visibility-m");
402         FGViewer* vw = globals->get_current_view();
403         
404         if (SGGeodesy::distanceM(vw->getPosition(), pos) > visibility_meters) {
405             return;
406         }
407
408         double range = 500.0;
409         if (!globals->get_tile_mgr()->scenery_available(pos, range)) {
410             // Try to shedule tiles for that position.
411             globals->get_tile_mgr()->update( pos, range );
412         }
413
414         double alt;
415         if (getGroundElevationM(SGGeod::fromGeodM(pos, 20000), alt, 0))
416             tgt_altitude_ft = alt * SG_METER_TO_FEET;
417     }
418 }
419
420
421 void FGAIAircraft::doGroundAltitude() {
422     if (fabs(altitude_ft - (tgt_altitude_ft+groundOffset)) > 1000.0)
423         altitude_ft = (tgt_altitude_ft + groundOffset);
424     else
425         altitude_ft += 0.1 * ((tgt_altitude_ft+groundOffset) - altitude_ft);
426 }
427
428
429 void FGAIAircraft::announcePositionToController() {
430     if (trafficRef) {
431         int leg = fp->getLeg();
432
433         // Note that leg has been incremented after creating the current leg, so we should use
434         // leg numbers here that are one higher than the number that is used to create the leg
435         //
436         switch (leg) {
437           case 2:              // Startup and Push back
438             if (trafficRef->getDepartureAirport()->getDynamics())
439                 controller = trafficRef->getDepartureAirport()->getDynamics()->getStartupController();
440             break;
441         case 3:              // Taxiing to runway
442             if (trafficRef->getDepartureAirport()->getDynamics()->getGroundNetwork()->exists())
443                 controller = trafficRef->getDepartureAirport()->getDynamics()->getGroundNetwork();
444             break;
445         case 4:              //Take off tower controller
446             if (trafficRef->getDepartureAirport()->getDynamics()) {
447                 controller = trafficRef->getDepartureAirport()->getDynamics()->getTowerController();
448             } else {
449                 cerr << "Error: Could not find Dynamics at airport : " << trafficRef->getDepartureAirport()->getId() << endl;
450             }
451             break;
452         case 9:              // Taxiing for parking
453             if (trafficRef->getArrivalAirport()->getDynamics()->getGroundNetwork()->exists())
454                 controller = trafficRef->getArrivalAirport()->getDynamics()->getGroundNetwork();
455             break;
456         default:
457             controller = 0;
458             break;
459         }
460
461         if ((controller != prevController) && (prevController != 0)) {
462             prevController->signOff(getID());
463         }
464         prevController = controller;
465         if (controller) {
466             controller->announcePosition(getID(), fp, fp->getCurrentWaypoint()->routeIndex,
467                                          _getLatitude(), _getLongitude(), hdg, speed, altitude_ft,
468                                          trafficRef->getRadius(), leg, this);
469         }
470     }
471 }
472
473 // Process ATC instructions and report back
474
475 void FGAIAircraft::processATC(FGATCInstruction instruction) {
476     if (instruction.getCheckForCircularWait()) {
477         // This is not exactly an elegant solution, 
478         // but at least it gives me a chance to check
479         // if circular waits are resolved.
480         // For now, just take the offending aircraft 
481         // out of the scene
482         setDie(true);
483         // a more proper way should be - of course - to
484         // let an offending aircraft take an evasive action
485         // for instance taxi back a little bit.
486     }
487     //cerr << "Processing ATC instruction (not Implimented yet)" << endl;
488     if (instruction.getHoldPattern   ()) {}
489
490     // Hold Position
491     if (instruction.getHoldPosition  ()) {
492         if (!holdPos) {
493             holdPos = true;
494         }
495         AccelTo(0.0);
496     } else {
497         if (holdPos) {
498             //if (trafficRef)
499             //  cerr << trafficRef->getCallSign() << " Resuming Taxi." << endl;
500             holdPos = false;
501         }
502         // Change speed Instruction. This can only be excecuted when there is no
503         // Hold position instruction.
504         if (instruction.getChangeSpeed   ()) {
505             //  if (trafficRef)
506             //cerr << trafficRef->getCallSign() << " Changing Speed " << endl;
507             AccelTo(instruction.getSpeed());
508         } else {
509             if (fp) AccelTo(fp->getPreviousWaypoint()->speed);
510         }
511     }
512     if (instruction.getChangeHeading ()) {
513         hdg_lock = false;
514         TurnTo(instruction.getHeading());
515     } else {
516         if (fp) {
517             hdg_lock = true;
518         }
519     }
520     if (instruction.getChangeAltitude()) {}
521
522 }
523
524
525 void FGAIAircraft::handleFirstWaypoint() {
526     bool eraseWaypoints;         //TODO YAGNI
527     headingError = 0;
528     if (trafficRef) {
529         eraseWaypoints = true;
530     } else {
531         eraseWaypoints = false;
532     }
533
534     FGAIFlightPlan::waypoint* prev = 0; // the one behind you
535     FGAIFlightPlan::waypoint* curr = 0; // the one ahead
536     FGAIFlightPlan::waypoint* next = 0;// the next plus 1
537
538     spinCounter = 0;
539     tempReg = "";
540
541     //TODO fp should handle this
542     fp->IncrementWaypoint(eraseWaypoints);
543     if (!(fp->getNextWaypoint()) && trafficRef)
544         if (!loadNextLeg()) {
545             setDie(true);
546             return;
547         }
548
549     prev = fp->getPreviousWaypoint();   //first waypoint
550     curr = fp->getCurrentWaypoint();    //second waypoint
551     next = fp->getNextWaypoint();       //third waypoint (might not exist!)
552
553     setLatitude(prev->latitude);
554     setLongitude(prev->longitude);
555     setSpeed(prev->speed);
556     setAltitude(prev->altitude);
557
558     if (prev->speed > 0.0)
559         setHeading(fp->getBearing(prev->latitude, prev->longitude, curr));
560     else
561         setHeading(fp->getBearing(curr->latitude, curr->longitude, prev));
562
563     // If next doesn't exist, as in incrementally created flightplans for
564     // AI/Trafficmanager created plans,
565     // Make sure lead distance is initialized otherwise
566     if (next)
567         fp->setLeadDistance(speed, hdg, curr, next);
568
569     if (curr->crossat > -1000.0) //use a calculated descent/climb rate
570     {
571         use_perf_vs = false;
572         tgt_vs = (curr->crossat - prev->altitude)
573                  / (fp->getDistanceToGo(pos.getLatitudeDeg(), pos.getLongitudeDeg(), curr)
574                     / 6076.0 / prev->speed*60.0);
575         tgt_altitude_ft = curr->crossat;
576     } else {
577         use_perf_vs = true;
578         tgt_altitude_ft = prev->altitude;
579     }
580     alt_lock = hdg_lock = true;
581     no_roll = prev->on_ground;
582     if (no_roll) {
583         Transform();             // make sure aip is initialized.
584         getGroundElev(60.1);     // make sure it's executed first time around, so force a large dt value
585         doGroundAltitude();
586     }
587     // Make sure to announce the aircraft's position
588     announcePositionToController();
589     prevSpeed = 0;
590 }
591
592
593 /**
594  * Check Execution time (currently once every 100 ms)
595  * Add a bit of randomization to prevent the execution of all flight plans
596  * in synchrony, which can add significant periodic framerate flutter.
597  *
598  * @param now
599  * @return
600  */
601 bool FGAIAircraft::fpExecutable(time_t now) {
602     double rand_exec_time = (rand() % 100) / 100;
603     return (dt_count > (0.1+rand_exec_time)) && (fp->isActive(now));
604 }
605
606
607 /**
608  * Check to see if we've reached the lead point for our next turn
609  *
610  * @param curr
611  * @return
612  */
613 bool FGAIAircraft::leadPointReached(FGAIFlightPlan::waypoint* curr) {
614     double dist_to_go = fp->getDistanceToGo(pos.getLatitudeDeg(), pos.getLongitudeDeg(), curr);
615
616     //cerr << "2" << endl;
617     double lead_dist = fp->getLeadDistance();
618     // experimental: Use fabs, because speed can be negative (I hope) during push_back.
619
620     if (lead_dist < fabs(2*speed)) {
621       //don't skip over the waypoint
622       lead_dist = fabs(2*speed);
623       //cerr << "Extending lead distance to " << lead_dist << endl;
624     }
625
626     //prev_dist_to_go = dist_to_go;
627     //if (dist_to_go < lead_dist)
628     //     cerr << trafficRef->getCallSign() << " Distance : " 
629     //          << dist_to_go << ": Lead distance " 
630     //          << lead_dist << " " << curr->name 
631     //          << " Ground target speed " << groundTargetSpeed << endl;
632          
633     return dist_to_go < lead_dist;
634 }
635
636
637 bool FGAIAircraft::aiTrafficVisible() {
638   SGGeod userPos(SGGeod::fromDeg(fgGetDouble("/position/longitude-deg"), 
639     fgGetDouble("/position/latitude-deg")));
640   
641   return (SGGeodesy::distanceNm(userPos, pos) <= TRAFFICTOAIDISTTODIE);
642 }
643
644
645 /**
646  * Handle release of parking gate, once were taxiing. Also ensure service time at the gate
647  * in the case of an arrival.
648  *
649  * @param prev
650  * @return
651  */
652
653 //TODO the trafficRef is the right place for the method
654 bool FGAIAircraft::handleAirportEndPoints(FGAIFlightPlan::waypoint* prev, time_t now) {
655     // prepare routing from one airport to another
656     FGAirport * dep = trafficRef->getDepartureAirport();
657     FGAirport * arr = trafficRef->getArrivalAirport();
658
659     if (!( dep && arr))
660         return false;
661
662     // This waypoint marks the fact that the aircraft has passed the initial taxi
663     // departure waypoint, so it can release the parking.
664     //cerr << trafficRef->getCallSign() << " has passed waypoint " << prev->name << " at speed " << speed << endl;
665     if (prev->name == "PushBackPoint") {
666         dep->getDynamics()->releaseParking(fp->getGate());
667         AccelTo(0.0);
668         setTaxiClearanceRequest(true);
669     }
670
671     // This is the last taxi waypoint, and marks the the end of the flight plan
672     // so, the schedule should update and wait for the next departure time.
673     if (prev->name == "END") {
674         time_t nextDeparture = trafficRef->getDepartureTime();
675         // make sure to wait at least 20 minutes at parking to prevent "nervous" taxi behavior
676         if (nextDeparture < (now+1200)) {
677             nextDeparture = now + 1200;
678         }
679         fp->setTime(nextDeparture); // should be "next departure"
680     }
681
682     return true;
683 }
684
685
686 /**
687  * Check difference between target bearing and current heading and correct if necessary.
688  *
689  * @param curr
690  */
691 void FGAIAircraft::controlHeading(FGAIFlightPlan::waypoint* curr) {
692     double calc_bearing = fp->getBearing(pos.getLatitudeDeg(), pos.getLongitudeDeg(), curr);
693     //cerr << "Bearing = " << calc_bearing << endl;
694     if (speed < 0) {
695         calc_bearing +=180;
696         if (calc_bearing > 360)
697             calc_bearing -= 360;
698     }
699
700     if (finite(calc_bearing)) {
701         double hdg_error = calc_bearing - tgt_heading;
702         if (fabs(hdg_error) > 0.01) {
703             TurnTo( calc_bearing );
704         }
705
706     } else {
707         cerr << "calc_bearing is not a finite number : "
708         << "Speed " << speed
709         << "pos : " << pos.getLatitudeDeg() << ", " << pos.getLongitudeDeg()
710         << "waypoint " << curr->latitude << ", " << curr->longitude << endl;
711         cerr << "waypoint name " << curr->name;
712         exit(1);                 // FIXME
713     }
714 }
715
716
717 /**
718  * Update the lead distance calculation if speed has changed sufficiently
719  * to prevent spinning (hopefully);
720  *
721  * @param curr
722  * @param next
723  */
724 void FGAIAircraft::controlSpeed(FGAIFlightPlan::waypoint* curr, FGAIFlightPlan::waypoint* next) {
725     double speed_diff = speed - prevSpeed;
726
727     if (fabs(speed_diff) > 10) {
728         prevSpeed = speed;
729         if (next) {
730             fp->setLeadDistance(speed, tgt_heading, curr, next);
731         }
732     }
733 }
734
735
736 /**
737  * Update target values (heading, alt, speed) depending on flight plan or control properties
738  */
739 void FGAIAircraft::updatePrimaryTargetValues(bool& flightplanActive, bool& aiOutOfSight) {
740     if (fp)                      // AI object has a flightplan
741     {
742         //TODO make this a function of AIBase
743         time_t now = time(NULL) + fgGetLong("/sim/time/warp");
744         //cerr << "UpateTArgetValues() " << endl;
745         ProcessFlightPlan(dt, now);
746
747         // Do execute Ground elev for inactive aircraft, so they
748         // Are repositioned to the correct ground altitude when the user flies within visibility range.
749         // In addition, check whether we are out of user range, so this aircraft
750         // can be deleted.
751         if (onGround()) {
752                 Transform();     // make sure aip is initialized.
753                 getGroundElev(dt);
754                 doGroundAltitude();
755                 // Transform();
756                 pos.setElevationFt(altitude_ft);
757         }
758         if (trafficRef) {
759            //cerr << trafficRef->getRegistration() << " Setting altitude to " << altitude_ft;
760             aiOutOfSight = !aiTrafficVisible();
761             if (aiOutOfSight) {
762                 setDie(true);
763                 //cerr << trafficRef->getRegistration() << " is set to die " << endl;
764                 aiOutOfSight = true;
765                 return;
766             }
767         }
768         timeElapsed = now - fp->getStartTime();
769         flightplanActive = fp->isActive(now);
770     } else {
771         // no flight plan, update target heading, speed, and altitude
772         // from control properties.  These default to the initial
773         // settings in the config file, but can be changed "on the
774         // fly".
775         string lat_mode = props->getStringValue("controls/flight/lateral-mode");
776         if ( lat_mode == "roll" ) {
777             double angle
778             = props->getDoubleValue("controls/flight/target-roll" );
779             RollTo( angle );
780         } else {
781             double angle
782             = props->getDoubleValue("controls/flight/target-hdg" );
783             TurnTo( angle );
784         }
785
786         string lon_mode
787         = props->getStringValue("controls/flight/longitude-mode");
788         if ( lon_mode == "alt" ) {
789             double alt = props->getDoubleValue("controls/flight/target-alt" );
790             ClimbTo( alt );
791         } else {
792             double angle
793             = props->getDoubleValue("controls/flight/target-pitch" );
794             PitchTo( angle );
795         }
796
797         AccelTo( props->getDoubleValue("controls/flight/target-spd" ) );
798     }
799 }
800
801 void FGAIAircraft::updatePosition() {
802     // convert speed to degrees per second
803     double speed_north_deg_sec = cos( hdg * SGD_DEGREES_TO_RADIANS )
804                                  * speed * 1.686 / ft_per_deg_lat;
805     double speed_east_deg_sec  = sin( hdg * SGD_DEGREES_TO_RADIANS )
806                                  * speed * 1.686 / ft_per_deg_lon;
807
808     // set new position
809     pos.setLatitudeDeg( pos.getLatitudeDeg() + speed_north_deg_sec * dt);
810     pos.setLongitudeDeg( pos.getLongitudeDeg() + speed_east_deg_sec * dt);
811 }
812
813
814 void FGAIAircraft::updateHeading() {
815     // adjust heading based on current bank angle
816     if (roll == 0.0)
817         roll = 0.01;
818
819     if (roll != 0.0) {
820         // double turnConstant;
821         //if (no_roll)
822         //  turnConstant = 0.0088362;
823         //else
824         //  turnConstant = 0.088362;
825         // If on ground, calculate heading change directly
826         if (onGround()) {
827             double headingDiff = fabs(hdg-tgt_heading);
828             double bank_sense = 0.0;
829         /*
830         double diff = fabs(hdg - tgt_heading);
831         if (diff > 180)
832             diff = fabs(diff - 360);
833
834         double sum = hdg + diff;
835         if (sum > 360.0)
836             sum -= 360.0;
837         if (fabs(sum - tgt_heading) < 1.0) {
838             bank_sense = 1.0;    // right turn
839         } else {
840             bank_sense = -1.0;   // left turn
841         }*/
842             if (headingDiff > 180)
843                 headingDiff = fabs(headingDiff - 360);
844             double sum = hdg + headingDiff;
845             if (sum > 360.0) 
846                 sum -= 360.0;
847             if (fabs(sum - tgt_heading) > 0.0001) {
848                 bank_sense = -1.0;
849             } else {
850                 bank_sense = 1.0;
851             }
852             //if (trafficRef)
853                 //cerr << trafficRef->getCallSign() << " Heading " 
854                 //     << hdg << ". Target " << tgt_heading <<  ". Diff " << fabs(sum - tgt_heading) << ". Speed " << speed << endl;
855             //if (headingDiff > 60) {
856             groundTargetSpeed = tgt_speed; // * cos(headingDiff * SG_DEGREES_TO_RADIANS);
857                 //groundTargetSpeed = tgt_speed - tgt_speed * (headingDiff/180);
858             //} else {
859             //    groundTargetSpeed = tgt_speed;
860             //}
861             if (sign(groundTargetSpeed) != sign(tgt_speed))
862                 groundTargetSpeed = 0.21 * sign(tgt_speed); // to prevent speed getting stuck in 'negative' mode
863
864             if (headingDiff > 30.0) {
865                 // invert if pushed backward
866                 headingChangeRate += 10.0 * dt * sign(roll);
867
868                 // Clamp the maximum steering rate to 30 degrees per second,
869                 // But only do this when the heading error is decreasing.
870                 if ((headingDiff < headingError)) {
871                     if (headingChangeRate > 30)
872                         headingChangeRate = 30;
873                     else if (headingChangeRate < -30)
874                         headingChangeRate = -30;
875                 }
876             } else {
877                    if (fabs(headingChangeRate) > headingDiff)
878                        headingChangeRate = headingDiff*sign(roll);
879                    else
880                        headingChangeRate += dt * sign(roll);
881             }
882
883             hdg += headingChangeRate * dt * (fabs(speed) / 15);
884             headingError = headingDiff;
885         } else {
886             if (fabs(speed) > 1.0) {
887                 turn_radius_ft = 0.088362 * speed * speed
888                                  / tan( fabs(roll) / SG_RADIANS_TO_DEGREES );
889             } else {
890                 // Check if turn_radius_ft == 0; this might lead to a division by 0.
891                 turn_radius_ft = 1.0;
892             }
893             double turn_circum_ft = SGD_2PI * turn_radius_ft;
894             double dist_covered_ft = speed * 1.686 * dt;
895             double alpha = dist_covered_ft / turn_circum_ft * 360.0;
896             hdg += alpha * sign(roll);
897         }
898         while ( hdg > 360.0 ) {
899             hdg -= 360.0;
900             spinCounter++;
901         }
902         while ( hdg < 0.0) {
903             hdg += 360.0;
904             spinCounter--;
905         }
906     }
907 }
908
909
910 void FGAIAircraft::updateBankAngleTarget() {
911     // adjust target bank angle if heading lock engaged
912     if (hdg_lock) {
913         double bank_sense = 0.0;
914         double diff = fabs(hdg - tgt_heading);
915         if (diff > 180)
916             diff = fabs(diff - 360);
917
918         double sum = hdg + diff;
919         if (sum > 360.0)
920             sum -= 360.0;
921         if (fabs(sum - tgt_heading) < 1.0) {
922             bank_sense = 1.0;    // right turn
923         } else {
924             bank_sense = -1.0;   // left turn
925         }
926         if (diff < _performance->maximumBankAngle()) {
927             tgt_roll = diff * bank_sense;
928         } else {
929             tgt_roll = _performance->maximumBankAngle() * bank_sense;
930         }
931         if ((fabs((double) spinCounter) > 1) && (diff > _performance->maximumBankAngle())) {
932             tgt_speed *= 0.999;  // Ugly hack: If aircraft get stuck, they will continually spin around.
933             // The only way to resolve this is to make them slow down.
934         }
935     }
936 }
937
938
939 void FGAIAircraft::updateVerticalSpeedTarget() {
940     // adjust target Altitude, based on ground elevation when on ground
941     if (onGround()) {
942         getGroundElev(dt);
943         doGroundAltitude();
944     } else if (alt_lock) {
945         // find target vertical speed
946         if (use_perf_vs) {
947             if (altitude_ft < tgt_altitude_ft) {
948                 tgt_vs = tgt_altitude_ft - altitude_ft;
949                 if (tgt_vs > _performance->climbRate())
950                     tgt_vs = _performance->climbRate();
951             } else {
952                 tgt_vs = tgt_altitude_ft - altitude_ft;
953                 if (tgt_vs  < (-_performance->descentRate()))
954                     tgt_vs = -_performance->descentRate();
955             }
956         } else {
957             double max_vs = 4*(tgt_altitude_ft - altitude_ft);
958             double min_vs = 100;
959             if (tgt_altitude_ft < altitude_ft)
960                 min_vs = -100.0;
961             if ((fabs(tgt_altitude_ft - altitude_ft) < 1500.0)
962                     && (fabs(max_vs) < fabs(tgt_vs)))
963                 tgt_vs = max_vs;
964
965             if (fabs(tgt_vs) < fabs(min_vs))
966                 tgt_vs = min_vs;
967         }
968     } //else 
969     //    tgt_vs = 0.0;
970 }
971
972 void FGAIAircraft::updatePitchAngleTarget() {
973     // if on ground and above vRotate -> initial rotation
974     if (onGround() && (speed > _performance->vRotate()))
975         tgt_pitch = 8.0; // some rough B737 value 
976
977     //TODO pitch angle on approach and landing
978     
979     // match pitch angle to vertical speed
980     else if (tgt_vs > 0) {
981         tgt_pitch = tgt_vs * 0.005;
982     } else {
983         tgt_pitch = tgt_vs * 0.002;
984     }
985 }
986
987 string FGAIAircraft::atGate() {
988      string tmp("");
989      if (fp->getLeg() < 3) {
990          if (trafficRef) {
991              if (fp->getGate() > 0) {
992                  FGParking *park =
993                      trafficRef->getDepartureAirport()->getDynamics()->getParking(fp->getGate());
994                  tmp = park->getName();
995              }
996          }
997      }
998      return tmp;
999 }
1000
1001 void FGAIAircraft::handleATCRequests() {
1002     //TODO implement NullController for having no ATC to save the conditionals
1003     if (controller) {
1004         controller->update(getID(),
1005                            pos.getLatitudeDeg(),
1006                            pos.getLongitudeDeg(),
1007                            hdg,
1008                            speed,
1009                            altitude_ft, dt);
1010         processATC(controller->getInstruction(getID()));
1011     }
1012 }
1013
1014 void FGAIAircraft::updateActualState() {
1015     //update current state
1016     //TODO have a single tgt_speed and check speed limit on ground on setting tgt_speed
1017     updatePosition();
1018
1019     if (onGround())
1020         speed = _performance->actualSpeed(this, groundTargetSpeed, dt);
1021     else
1022         speed = _performance->actualSpeed(this, tgt_speed, dt);
1023
1024     updateHeading();
1025     roll = _performance->actualBankAngle(this, tgt_roll, dt);
1026
1027     // adjust altitude (meters) based on current vertical speed (fpm)
1028     altitude_ft += vs / 60.0 * dt;
1029     pos.setElevationFt(altitude_ft);
1030
1031     vs = _performance->actualVerticalSpeed(this, tgt_vs, dt);
1032     pitch = _performance->actualPitch(this, tgt_pitch, dt);
1033 }
1034
1035 void FGAIAircraft::updateSecondaryTargetValues() {
1036     // derived target state values
1037     updateBankAngleTarget();
1038     updateVerticalSpeedTarget();
1039     updatePitchAngleTarget();
1040
1041     //TODO calculate wind correction angle (tgt_yaw)
1042 }