]> git.mxchange.org Git - flightgear.git/blob - src/Autopilot/route_mgr.cxx
0da9c28dc38623a744a1c037c6ca0f926aaf71de
[flightgear.git] / src / Autopilot / route_mgr.cxx
1 // route_mgr.cxx - manage a route (i.e. a collection of waypoints)
2 //
3 // Written by Curtis Olson, started January 2004.
4 //            Norman Vine
5 //            Melchior FRANZ
6 //
7 // Copyright (C) 2004  Curtis L. Olson  - http://www.flightgear.org/~curt
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22 //
23 // $Id$
24
25
26 #ifdef HAVE_CONFIG_H
27 #  include <config.h>
28 #endif
29
30 #include <simgear/compiler.h>
31
32 #include <Airports/simple.hxx>
33 #include <FDM/flight.hxx>
34 #include <Main/fg_props.hxx>
35 #include <Navaids/fixlist.hxx>
36 #include <Navaids/navlist.hxx>
37
38 #include "route_mgr.hxx"
39
40 #define RM "/autopilot/route-manager/"
41
42
43 FGRouteMgr::FGRouteMgr() :
44     route( new SGRoute ),
45     lon( NULL ),
46     lat( NULL ),
47     alt( NULL ),
48     true_hdg_deg( NULL ),
49     target_altitude_ft( NULL ),
50     altitude_lock( NULL ),
51     wp0_id( NULL ),
52     wp0_dist( NULL ),
53     wp0_eta( NULL ),
54     wp1_id( NULL ),
55     wp1_dist( NULL ),
56     wp1_eta( NULL ),
57     wpn_id( NULL ),
58     wpn_dist( NULL ),
59     wpn_eta( NULL ),
60     input(fgGetNode( RM "input", true )),
61     listener(new Listener(this)),
62     mirror(fgGetNode( RM "route", true )),
63     altitude_set( false )
64 {
65     input->setStringValue("");
66     input->addChangeListener(listener);
67 }
68
69
70 FGRouteMgr::~FGRouteMgr() {
71     delete route;
72     input->removeChangeListener(listener);
73 }
74
75
76 void FGRouteMgr::init() {
77     lon = fgGetNode( "/position/longitude-deg", true );
78     lat = fgGetNode( "/position/latitude-deg", true );
79     alt = fgGetNode( "/position/altitude-ft", true );
80
81     true_hdg_deg = fgGetNode( "/autopilot/settings/true-heading-deg", true );
82     target_altitude_ft = fgGetNode( "/autopilot/settings/target-altitude-ft", true );
83     altitude_lock = fgGetNode( "/autopilot/locks/altitude", true );
84
85     wp0_id = fgGetNode( RM "wp[0]/id", true );
86     wp0_dist = fgGetNode( RM "wp[0]/dist", true );
87     wp0_eta = fgGetNode( RM "wp[0]/eta", true );
88
89     wp1_id = fgGetNode( RM "wp[1]/id", true );
90     wp1_dist = fgGetNode( RM "wp[1]/dist", true );
91     wp1_eta = fgGetNode( RM "wp[1]/eta", true );
92
93     wpn_id = fgGetNode( RM "wp-last/id", true );
94     wpn_dist = fgGetNode( RM "wp-last/dist", true );
95     wpn_eta = fgGetNode( RM "wp-last/eta", true );
96
97     route->clear();
98     update_mirror();
99 }
100
101
102 void FGRouteMgr::postinit() {
103     string_list *waypoints = globals->get_initial_waypoints();
104     if (!waypoints)
105         return;
106
107     vector<string>::iterator it;
108     for (it = waypoints->begin(); it != waypoints->end(); ++it)
109         new_waypoint(*it);
110 }
111
112
113 void FGRouteMgr::bind() { }
114 void FGRouteMgr::unbind() { }
115
116
117 static double get_ground_speed() {
118     // starts in ft/s so we convert to kts
119     static const SGPropertyNode * speedup_node = fgGetNode("/sim/speed-up");
120
121     double ft_s = cur_fdm_state->get_V_ground_speed()
122         * speedup_node->getIntValue();
123     double kts = ft_s * SG_FEET_TO_METER * 3600 * SG_METER_TO_NM;
124
125     return kts;
126 }
127
128
129 void FGRouteMgr::update( double dt ) {
130     double accum = 0.0;
131     double wp_course, wp_distance;
132     char eta_str[128];
133
134     // first way point
135     if ( route->size() > 0 ) {
136         SGWayPoint wp = route->get_waypoint( 0 );
137         wp.CourseAndDistance( lon->getDoubleValue(), lat->getDoubleValue(),
138                               alt->getDoubleValue(), &wp_course, &wp_distance );
139
140         true_hdg_deg->setDoubleValue( wp_course );
141         double target_alt = wp.get_target_alt();
142
143         // activate altitude lock only once per route (this can't be done in
144         // new_waypoint() because the first wp might not have an altitude defined at all)
145         if (!altitude_set && target_alt > -9990) {
146             target_altitude_ft->setDoubleValue( target_alt * SG_METER_TO_FEET );
147             altitude_lock->setStringValue( "altitude-hold" );
148             altitude_set = true;
149         }
150
151         if ( wp_distance < 200.0 ) {
152             pop_waypoint();
153             altitude_set = false;
154         }
155     }
156
157     // next way point
158     if ( route->size() > 0 ) {
159         SGWayPoint wp = route->get_waypoint( 0 );
160         // update the property tree info
161
162         wp0_id->setStringValue( wp.get_id().c_str() );
163
164         accum += wp_distance;
165         wp0_dist->setDoubleValue( accum * SG_METER_TO_NM );
166
167         double eta = accum * SG_METER_TO_NM / get_ground_speed();
168         if ( eta >= 100.0 ) { eta = 99.999; }
169         int major, minor;
170         if ( eta < (1.0/6.0) ) {
171             // within 10 minutes, bump up to min/secs
172             eta *= 60.0;
173         }
174         major = (int)eta;
175         minor = (int)((eta - (int)eta) * 60.0);
176         snprintf( eta_str, 128, "%d:%02d", major, minor );
177         wp0_eta->setStringValue( eta_str );
178     }
179
180     // next way point
181     if ( route->size() > 1 ) {
182         SGWayPoint wp = route->get_waypoint( 1 );
183
184         // update the property tree info
185
186         wp1_id->setStringValue( wp.get_id().c_str() );
187
188         accum += wp.get_distance();
189         wp1_dist->setDoubleValue( accum * SG_METER_TO_NM );
190
191         double eta = accum * SG_METER_TO_NM / get_ground_speed();
192         if ( eta >= 100.0 ) { eta = 99.999; }
193         int major, minor;
194         if ( eta < (1.0/6.0) ) {
195             // within 10 minutes, bump up to min/secs
196             eta *= 60.0;
197         }
198         major = (int)eta;
199         minor = (int)((eta - (int)eta) * 60.0);
200         snprintf( eta_str, 128, "%d:%02d", major, minor );
201         wp1_eta->setStringValue( eta_str );
202     }
203
204     // summarize remaining way points
205     if ( route->size() > 2 ) {
206         SGWayPoint wp;
207         for ( int i = 2; i < route->size(); ++i ) {
208             wp = route->get_waypoint( i );
209             accum += wp.get_distance();
210         }
211
212         // update the property tree info
213
214         wpn_id->setStringValue( wp.get_id().c_str() );
215
216         wpn_dist->setDoubleValue( accum * SG_METER_TO_NM );
217
218         double eta = accum * SG_METER_TO_NM / get_ground_speed();
219         if ( eta >= 100.0 ) { eta = 99.999; }
220         int major, minor;
221         if ( eta < (1.0/6.0) ) {
222             // within 10 minutes, bump up to min/secs
223             eta *= 60.0;
224         }
225         major = (int)eta;
226         minor = (int)((eta - (int)eta) * 60.0);
227         snprintf( eta_str, 128, "%d:%02d", major, minor );
228         wpn_eta->setStringValue( eta_str );
229     }
230 }
231
232
233 void FGRouteMgr::add_waypoint( const SGWayPoint& wp, int n ) {
234     route->add_waypoint( wp, n );
235     update_mirror();
236 }
237
238
239 SGWayPoint FGRouteMgr::pop_waypoint( int n ) {
240     SGWayPoint wp;
241
242     if ( route->size() > 0 ) {
243         if ( n < 0 )
244             n = route->size() - 1;
245         wp = route->get_waypoint(n);
246         route->delete_waypoint(n);
247     }
248
249     if ( route->size() <= 2 ) {
250         wpn_id->setStringValue( "" );
251         wpn_dist->setDoubleValue( 0.0 );
252         wpn_eta->setStringValue( "" );
253     }
254
255     if ( route->size() <= 1 ) {
256         wp1_id->setStringValue( "" );
257         wp1_dist->setDoubleValue( 0.0 );
258         wp1_eta->setStringValue( "" );
259     }
260
261     if ( route->size() <= 0 ) {
262         wp0_id->setStringValue( "" );
263         wp0_dist->setDoubleValue( 0.0 );
264         wp0_eta->setStringValue( "" );
265     }
266
267     update_mirror();
268     return wp;
269 }
270
271
272 bool FGRouteMgr::build() {
273     return true;
274 }
275
276
277
278 int FGRouteMgr::new_waypoint( const string& Tgt_Alt, int n ) {
279     string target = Tgt_Alt;
280
281     // make upper case
282     for (unsigned int i = 0; i < target.size(); i++)
283         if (target[i] >= 'a' && target[i] <= 'z')
284             target[i] -= 'a' - 'A';
285
286     SGWayPoint *wp = 0;
287     int type = make_waypoint( &wp, target );
288
289     if (wp) {
290         fgSetString( "/autopilot/locks/heading", "true-heading-hold" );
291         add_waypoint( *wp, n );
292         delete wp;
293     }
294     return type;
295 }
296
297
298
299 int FGRouteMgr::make_waypoint(SGWayPoint **wp, string& target) {
300     double alt = -9999.0;
301
302     // extract altitude
303     unsigned int pos = target.find( '@' );
304     if ( pos != string::npos ) {
305         alt = atof( target.c_str() + pos + 1 );
306         target = target.substr( 0, pos );
307         if ( !strcmp(fgGetString("/sim/startup/units"), "feet") )
308             alt *= SG_FEET_TO_METER;
309     }
310
311     // check for lon,lat
312     pos = target.find(',');
313     if ( pos != string::npos ) {
314         double lon = atof( target.substr(0, pos).c_str());
315         double lat = atof( target.c_str() + pos + 1);
316
317         SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint lon = " << lon << ", lat = " << lat );
318         *wp = new SGWayPoint( lon, lat, alt, SGWayPoint::WGS84, target );
319         return 1;
320     }
321
322     // check for airport id
323     const FGAirport *apt = fgFindAirportID( target );
324     if (apt) {
325         SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint (airport) = " << target );
326         *wp = new SGWayPoint( apt->getLongitude(), apt->getLatitude(), alt, SGWayPoint::WGS84, target );
327         return 2;
328     }
329
330     // check for fix id
331     FGFix f;
332     if ( globals->get_fixlist()->query( target, &f ) ) {
333         SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint (fix) = " << target );
334         *wp = new SGWayPoint( f.get_lon(), f.get_lat(), alt, SGWayPoint::WGS84, target );
335         return 3;
336     }
337
338     // Try finding a nav matching the ID
339     double lat, lon;
340     // The base lon/lat are determined by the last WP,
341     // or the current pos if the WP list is empty.
342     const int wps = this->size();
343
344     if (wps > 0) {
345         SGWayPoint wp = get_waypoint(wps-1);
346         lat = wp.get_target_lat();
347         lon = wp.get_target_lon();
348     } else {
349         lat = fgGetNode("/position/latitude-deg")->getDoubleValue();
350         lon = fgGetNode("/position/longitude-deg")->getDoubleValue();
351     }
352
353     lat *= SGD_DEGREES_TO_RADIANS;
354     lon *= SGD_DEGREES_TO_RADIANS;
355
356     SG_LOG( SG_GENERAL, SG_INFO, "Looking for nav " << target << " at " << lon << " " << lat);
357
358     if (FGNavRecord* nav = globals->get_navlist()->findByIdent(target.c_str(), lon, lat)) {
359         SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint (nav) = " << target );
360         *wp = new SGWayPoint( nav->get_lon(), nav->get_lat(), alt, SGWayPoint::WGS84, target );
361         return 4;
362     }
363
364     // target not identified
365     return 0;
366 }
367
368
369 // mirror internal route to the property system for inspection by other subsystems
370 void FGRouteMgr::update_mirror() {
371     mirror->removeChildren("wp");
372     for (int i = 0; i < route->size(); i++) {
373         SGWayPoint wp = route->get_waypoint(i);
374         SGPropertyNode *prop = mirror->getChild("wp", i, 1);
375
376         prop->setStringValue("id", wp.get_id().c_str());
377         prop->setStringValue("name", wp.get_name().c_str());
378         prop->setDoubleValue("longitude-deg", wp.get_target_lon());
379         prop->setDoubleValue("latitude-deg", wp.get_target_lat());
380         prop->setDoubleValue("altitude-m", wp.get_target_alt());
381         prop->setDoubleValue("altitude-ft", wp.get_target_alt() * SG_METER_TO_FEET);
382     }
383     // set number as listener attachment point
384     mirror->setIntValue("num", route->size());
385 }
386
387
388 // command interface /autopilot/route-manager/input:
389 //
390 //   @clear             ... clear route
391 //   @pop               ... remove first entry
392 //   @delete3           ... delete 4th entry
393 //   @insert2:ksfo@900  ... insert "ksfo@900" as 3rd entry
394 //   ksfo@900           ... append "ksfo@900"
395 //
396 void FGRouteMgr::Listener::valueChanged(SGPropertyNode *prop)
397 {
398     const char *s = prop->getStringValue();
399     if (!strcmp(s, "@clear"))
400         mgr->init();
401     else if (!strcmp(s, "@pop"))
402         mgr->pop_waypoint(0);
403     else if (!strncmp(s, "@delete", 7))
404         mgr->pop_waypoint(atoi(s + 7));
405     else if (!strncmp(s, "@insert", 7)) {
406         char *r;
407         int pos = strtol(s + 7, &r, 10);
408         if (*r++ != ':')
409             return;
410         while (isspace(*r))
411             r++;
412         if (*r)
413             mgr->new_waypoint(r, pos);
414     } else
415         mgr->new_waypoint(s);
416 }
417
418