]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIFlightPlan.cxx
Add callsign for consitency.
[flightgear.git] / src / AIModel / AIFlightPlan.cxx
1 // FGAIFlightPlan - class for loading and storing  AI flight plans
2 // Written by David Culp, started May 2004
3 // - davidculp2@comcast.net
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include <iostream>
24
25 #include <simgear/misc/sg_path.hxx>
26 #include <simgear/debug/logstream.hxx>
27 #include <simgear/route/waypoint.hxx>
28 #include <simgear/math/sg_geodesy.hxx>
29 #include <simgear/structure/exception.hxx>
30 #include <simgear/constants.h>
31 #include <simgear/props/props.hxx>
32 #include <simgear/props/props_io.hxx>
33
34 #include <Main/globals.hxx>
35 #include <Main/fg_props.hxx>
36 #include <Main/fg_init.hxx>
37 #include <Airports/simple.hxx>
38 #include <Airports/runways.hxx>
39 #include <Airports/groundnetwork.hxx>
40
41 #include <Environment/environment_mgr.hxx>
42 #include <Environment/environment.hxx>
43
44 #include "AIFlightPlan.hxx"
45 #include "AIAircraft.hxx"
46
47 using std::cerr;
48
49 FGAIFlightPlan::FGAIFlightPlan() 
50 {
51    sid = 0;
52 }
53
54 FGAIFlightPlan::FGAIFlightPlan(const string& filename)
55 {
56   int i;
57   sid = 0;
58   start_time = 0;
59   leg = 10;
60   gateId = 0;
61   taxiRoute = 0;
62   SGPath path( globals->get_fg_root() );
63   path.append( ("/AI/FlightPlans/" + filename).c_str() );
64   SGPropertyNode root;
65   repeat = false;
66
67   try {
68       readProperties(path.str(), &root);
69   } catch (const sg_exception &) {
70       SG_LOG(SG_GENERAL, SG_ALERT,
71        "Error reading AI flight plan: " << path.str());
72        // cout << path.str() << endl;
73      return;
74   }
75
76   SGPropertyNode * node = root.getNode("flightplan");
77   for (i = 0; i < node->nChildren(); i++) { 
78      //cout << "Reading waypoint " << i << endl;        
79      waypoint* wpt = new waypoint;
80      SGPropertyNode * wpt_node = node->getChild(i);
81      wpt->name      = wpt_node->getStringValue("name", "END");
82      wpt->latitude  = wpt_node->getDoubleValue("lat", 0);
83      wpt->longitude = wpt_node->getDoubleValue("lon", 0);
84      wpt->altitude  = wpt_node->getDoubleValue("alt", 0);
85      wpt->speed     = wpt_node->getDoubleValue("ktas", 0);
86      wpt->crossat   = wpt_node->getDoubleValue("crossat", -10000);
87      wpt->gear_down = wpt_node->getBoolValue("gear-down", false);
88      wpt->flaps_down= wpt_node->getBoolValue("flaps-down", false);
89      wpt->on_ground = wpt_node->getBoolValue("on-ground", false);
90      wpt->time_sec   = wpt_node->getDoubleValue("time-sec", 0);
91      wpt->time       = wpt_node->getStringValue("time", "");
92
93      if (wpt->name == "END") wpt->finished = true;
94      else wpt->finished = false;
95
96      waypoints.push_back( wpt );
97    }
98
99   wpt_iterator = waypoints.begin();
100   //cout << waypoints.size() << " waypoints read." << endl;
101 }
102
103
104 // This is a modified version of the constructor,
105 // Which not only reads the waypoints from a 
106 // Flight plan file, but also adds the current
107 // Position computed by the traffic manager, as well
108 // as setting speeds and altitude computed by the
109 // traffic manager. 
110 FGAIFlightPlan::FGAIFlightPlan(FGAIAircraft *ac,
111                                const std::string& p,
112                                double course,
113                                time_t start,
114                                FGAirport *dep,
115                                FGAirport *arr,
116                                bool firstLeg,
117                                double radius,
118                                double alt,
119                                double lat,
120                                double lon,
121                                double speed,
122                                const string& fltType,
123                                const string& acType,
124                                const string& airline)
125 {
126   sid = 0;
127   repeat = false;
128   leg = 10;
129   gateId=0;
130   taxiRoute = 0;
131   start_time = start;
132   bool useInitialWayPoint = true;
133   bool useCurrentWayPoint = false;
134   SGPath path( globals->get_fg_root() );
135   path.append( "/AI/FlightPlans" );
136   path.append( p );
137   
138   SGPropertyNode root;
139   
140   // This is a bit of a hack:
141   // Normally the value of course will be used to evaluate whether
142   // or not a waypoint will be used for midair initialization of 
143   // an AI aircraft. However, if a course value of 999 will be passed
144   // when an update request is received, which will by definition always be
145   // on the ground and should include all waypoints.
146   if (course == 999) 
147     {
148       useInitialWayPoint = false;
149       useCurrentWayPoint = true;
150     }
151
152   if (path.exists()) 
153     {
154       try 
155         {
156           readProperties(path.str(), &root);
157           
158           SGPropertyNode * node = root.getNode("flightplan");
159           
160           //waypoints.push_back( init_waypoint );
161           for (int i = 0; i < node->nChildren(); i++) { 
162             //cout << "Reading waypoint " << i << endl;
163             waypoint* wpt = new waypoint;
164             SGPropertyNode * wpt_node = node->getChild(i);
165             wpt->name      = wpt_node->getStringValue("name", "END");
166             wpt->latitude  = wpt_node->getDoubleValue("lat", 0);
167             wpt->longitude = wpt_node->getDoubleValue("lon", 0);
168             wpt->altitude  = wpt_node->getDoubleValue("alt", 0);
169             wpt->speed     = wpt_node->getDoubleValue("ktas", 0);
170             //wpt->speed     = speed;
171             wpt->crossat   = wpt_node->getDoubleValue("crossat", -10000);
172             wpt->gear_down = wpt_node->getBoolValue("gear-down", false);
173             wpt->flaps_down= wpt_node->getBoolValue("flaps-down", false);
174             
175             if (wpt->name == "END") wpt->finished = true;
176             else wpt->finished = false;
177             waypoints.push_back(wpt);
178           } // of node loop
179         } catch (const sg_exception &e) {
180       SG_LOG(SG_GENERAL, SG_WARN, "Error reading AI flight plan: " << 
181         e.getMessage() << " from " << e.getOrigin());
182     }
183   } else {
184       // cout << path.str() << endl;
185       // cout << "Trying to create this plan dynamically" << endl;
186       // cout << "Route from " << dep->id << " to " << arr->id << endl;
187       time_t now = time(NULL) + fgGetLong("/sim/time/warp");
188       time_t timeDiff = now-start; 
189       leg = 1;
190       
191       if ((timeDiff > 60) && (timeDiff < 1200))
192         leg = 2;
193       else if ((timeDiff >= 1200) && (timeDiff < 1500))
194         leg = 3;
195       else if ((timeDiff >= 1500) && (timeDiff < 2000))
196         leg = 4;
197       else if (timeDiff >= 2000)
198         leg = 5;
199       /*
200       if (timeDiff >= 2000)
201           leg = 5;
202       */
203       SG_LOG(SG_GENERAL, SG_INFO, "Route from " << dep->getId() << " to " << arr->getId() << ". Set leg to : " << leg << " " << ac->getTrafficRef()->getCallSign());
204       wpt_iterator = waypoints.begin();
205       bool dist = 0;
206       create(ac, dep,arr, leg, alt, speed, lat, lon,
207              firstLeg, radius, fltType, acType, airline, dist);
208       wpt_iterator = waypoints.begin();
209       //cerr << "after create: " << (*wpt_iterator)->name << endl;
210       //leg++;
211       // Now that we have dynamically created a flight plan,
212       // we need to add some code that pops any waypoints already past.
213       //return;
214     }
215   /*
216     waypoint* init_waypoint   = new waypoint;
217     init_waypoint->name       = string("initial position");
218     init_waypoint->latitude   = entity->latitude;
219     init_waypoint->longitude  = entity->longitude;
220     init_waypoint->altitude   = entity->altitude;
221     init_waypoint->speed      = entity->speed;
222     init_waypoint->crossat    = - 10000;
223     init_waypoint->gear_down  = false;
224     init_waypoint->flaps_down = false;
225     init_waypoint->finished   = false;
226     
227     wpt_vector_iterator i = waypoints.begin();
228     while (i != waypoints.end())
229     {
230       //cerr << "Checking status of each waypoint: " << (*i)->name << endl;
231        SGWayPoint first(init_waypoint->longitude, 
232                        init_waypoint->latitude, 
233                        init_waypoint->altitude);
234       SGWayPoint curr ((*i)->longitude, 
235                        (*i)->latitude, 
236                        (*i)->altitude);
237       double crse, crsDiff;
238       double dist;
239       curr.CourseAndDistance(first, &crse, &dist);
240       
241       dist *= SG_METER_TO_NM;
242       
243       // We're only interested in the absolute value of crsDiff
244       // wich should fall in the 0-180 deg range.
245       crsDiff = fabs(crse-course);
246       if (crsDiff > 180)
247         crsDiff = 360-crsDiff;
248       // These are the three conditions that we consider including
249       // in our flight plan:
250       // 1) current waypoint is less then 100 miles away OR
251       // 2) curren waypoint is ahead of us, at any distance
252      
253       if ((dist > 20.0) && (crsDiff > 90.0) && ((*i)->name != string ("EOF")))
254         {
255           //useWpt = false;
256           // Once we start including waypoints, we have to continue, even though
257           // one of the following way point would suffice. 
258           // so once is the useWpt flag is set to true, we cannot reset it to false.
259           //cerr << "Discarding waypoint: " << (*i)->name 
260           //   << ": Course difference = " << crsDiff
261           //  << "Course = " << course
262           // << "crse   = " << crse << endl;
263         }
264       else
265         useCurrentWayPoint = true;
266       
267       if (useCurrentWayPoint)
268         {
269           if ((dist > 100.0) && (useInitialWayPoint))
270             {
271               //waypoints.push_back(init_waypoint);;
272               waypoints.insert(i, init_waypoint);
273               //cerr << "Using waypoint : " << init_waypoint->name <<  endl;
274             }
275           //if (useInitialWayPoint)
276           // {
277           //    (*i)->speed = dist; // A hack
278           //  }
279           //waypoints.push_back( wpt );
280           //cerr << "Using waypoint : " << (*i)->name 
281           //  << ": course diff : " << crsDiff 
282           //   << "Course = " << course
283           //   << "crse   = " << crse << endl
284           //    << "distance      : " << dist << endl;
285           useInitialWayPoint = false;
286           i++;
287         }
288       else 
289         {
290           //delete wpt;
291           delete *(i);
292           i = waypoints.erase(i);
293           }
294           
295         }
296   */
297   //for (i = waypoints.begin(); i != waypoints.end(); i++)
298   //  cerr << "Using waypoint : " << (*i)->name << endl;
299   //wpt_iterator = waypoints.begin();
300   //cout << waypoints.size() << " waypoints read." << endl;
301 }
302
303
304
305
306 FGAIFlightPlan::~FGAIFlightPlan()
307 {
308   deleteWaypoints();
309   delete taxiRoute;
310 }
311
312
313 FGAIFlightPlan::waypoint* const
314 FGAIFlightPlan::getPreviousWaypoint( void ) const
315 {
316   if (wpt_iterator == waypoints.begin()) {
317     return 0;
318   } else {
319     wpt_vector_iterator prev = wpt_iterator;
320     return *(--prev);
321   }
322 }
323
324 FGAIFlightPlan::waypoint* const
325 FGAIFlightPlan::getCurrentWaypoint( void ) const
326 {
327   return *wpt_iterator;
328 }
329
330 FGAIFlightPlan::waypoint* const
331 FGAIFlightPlan::getNextWaypoint( void ) const
332 {
333   wpt_vector_iterator i = waypoints.end();
334   i--;  // end() points to one element after the last one. 
335   if (wpt_iterator == i) {
336     return 0;
337   } else {
338     wpt_vector_iterator next = wpt_iterator;
339     return *(++next);
340   }
341 }
342
343 void FGAIFlightPlan::IncrementWaypoint(bool eraseWaypoints )
344 {
345   if (eraseWaypoints)
346     {
347       if (wpt_iterator == waypoints.begin())
348         wpt_iterator++;
349       else
350         {
351           delete *(waypoints.begin());
352           waypoints.erase(waypoints.begin());
353           wpt_iterator = waypoints.begin();
354           wpt_iterator++;
355         }
356     }
357   else
358     wpt_iterator++;
359
360 }
361
362 void FGAIFlightPlan::DecrementWaypoint(bool eraseWaypoints )
363 {
364     if (eraseWaypoints)
365     {
366         if (wpt_iterator == waypoints.end())
367             wpt_iterator--;
368         else
369         {
370             delete *(waypoints.end());
371             waypoints.erase(waypoints.end());
372             wpt_iterator = waypoints.end();
373             wpt_iterator--;
374         }
375     }
376     else
377         wpt_iterator--;
378
379 }
380
381
382 // gives distance in feet from a position to a waypoint
383 double FGAIFlightPlan::getDistanceToGo(double lat, double lon, waypoint* wp) const{
384   return SGGeodesy::distanceM(SGGeod::fromDeg(lon, lat), 
385       SGGeod::fromDeg(wp->longitude, wp->latitude));
386 }
387
388 // sets distance in feet from a lead point to the current waypoint
389 void FGAIFlightPlan::setLeadDistance(double speed, double bearing, 
390                                      waypoint* current, waypoint* next){
391   double turn_radius;
392   // Handle Ground steering
393   // At a turn rate of 30 degrees per second, it takes 12 seconds to do a full 360 degree turn
394   // So, to get an estimate of the turn radius, calculate the cicumference of the circle
395   // we travel on. Get the turn radius by dividing by PI (*2).
396   if (speed < 0.5) {
397         lead_distance = 0.5;
398         return;
399   }
400   if (speed < 25) {
401        turn_radius = ((360/30)*fabs(speed)) / (2*M_PI);
402   } else 
403       turn_radius = 0.1911 * speed * speed; // an estimate for 25 degrees bank
404
405   double inbound = bearing;
406   double outbound = getBearing(current, next);
407   leadInAngle = fabs(inbound - outbound);
408   if (leadInAngle > 180.0) 
409     leadInAngle = 360.0 - leadInAngle;
410   //if (leadInAngle < 30.0) // To prevent lead_dist from getting so small it is skipped 
411   //  leadInAngle = 30.0;
412   
413   //lead_distance = turn_radius * sin(leadInAngle * SG_DEGREES_TO_RADIANS); 
414   lead_distance = turn_radius * tan((leadInAngle * SG_DEGREES_TO_RADIANS)/2);
415   /*
416   if ((lead_distance > (3*turn_radius)) && (current->on_ground == false)) {
417       // cerr << "Warning: Lead-in distance is large. Inbound = " << inbound
418       //      << ". Outbound = " << outbound << ". Lead in angle = " << leadInAngle  << ". Turn radius = " << turn_radius << endl;
419        lead_distance = 3 * turn_radius;
420        return;
421   }
422   if ((leadInAngle > 90) && (current->on_ground == true)) {
423       lead_distance = turn_radius * tan((90 * SG_DEGREES_TO_RADIANS)/2);
424       return;
425   }*/
426 }
427
428 void FGAIFlightPlan::setLeadDistance(double distance_ft){
429   lead_distance = distance_ft;
430 }
431
432
433 double FGAIFlightPlan::getBearing(waypoint* first, waypoint* second) const{
434   return getBearing(first->latitude, first->longitude, second);
435 }
436
437
438 double FGAIFlightPlan::getBearing(double lat, double lon, waypoint* wp) const{
439   return SGGeodesy::courseDeg(SGGeod::fromDeg(lon, lat), 
440       SGGeod::fromDeg(wp->longitude, wp->latitude));
441 }
442
443 void FGAIFlightPlan::deleteWaypoints()
444 {
445   for (wpt_vector_iterator i = waypoints.begin(); i != waypoints.end();i++)
446     delete (*i);
447   waypoints.clear();
448 }
449
450 // Delete all waypoints except the last, 
451 // which we will recycle as the first waypoint in the next leg;
452 void FGAIFlightPlan::resetWaypoints()
453 {
454   if (waypoints.begin() == waypoints.end())
455     return;
456   else
457     {
458       waypoint *wpt = new waypoint;
459       wpt_vector_iterator i = waypoints.end();
460       i--;
461       wpt->name      = (*i)->name;
462       wpt->latitude  = (*i)->latitude;
463       wpt->longitude =  (*i)->longitude;
464       wpt->altitude  =  (*i)->altitude;
465       wpt->speed     =  (*i)->speed;
466       wpt->crossat   =  (*i)->crossat;
467       wpt->gear_down =  (*i)->gear_down;
468       wpt->flaps_down=  (*i)->flaps_down;
469       wpt->finished  = false;
470       wpt->on_ground =  (*i)->on_ground;
471       //cerr << "Recycling waypoint " << wpt->name << endl;
472       deleteWaypoints();
473       waypoints.push_back(wpt);
474     }
475 }
476
477 // Start flightplan over from the beginning
478 void FGAIFlightPlan::restart()
479 {
480   wpt_iterator = waypoints.begin();
481 }
482
483
484 void FGAIFlightPlan::deleteTaxiRoute() 
485 {
486   delete taxiRoute;
487   taxiRoute = 0;
488 }
489
490
491 int FGAIFlightPlan::getRouteIndex(int i) {
492   if ((i > 0) && (i < (int)waypoints.size())) {
493     return waypoints[i]->routeIndex;
494   }
495   else
496     return 0;
497 }
498
499
500 double FGAIFlightPlan::checkTrackLength(string wptName) {
501     // skip the first two waypoints: first one is behind, second one is partially done;
502     double trackDistance = 0;
503     wpt_vector_iterator wptvec = waypoints.begin();
504     wptvec++;
505     wptvec++;
506     while ((wptvec != waypoints.end()) && ((*wptvec)->name != wptName)) {
507            trackDistance += (*wptvec)->trackLength;
508            wptvec++;
509     }
510     if (wptvec == waypoints.end()) {
511         trackDistance = 0; // name not found
512     }
513     return trackDistance;
514 }