]> git.mxchange.org Git - flightgear.git/blob - src/ATC/approach.cxx
Formatting changes
[flightgear.git] / src / ATC / approach.cxx
1 // FGApproach - a class to provide approach control at larger airports.
2 //
3 // Written by Alexander Kappes, started March 2002.
4 //
5 // Copyright (C) 2002  Alexander Kappes
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 #include "approach.hxx"
22 #include "transmission.hxx"
23 #include "transmissionlist.hxx"
24 #include "ATCdisplay.hxx"
25 #include "ATCDialog.hxx"
26
27 #include <Airports/runways.hxx>
28 #include <simgear/misc/sg_path.hxx>
29
30 #ifdef FG_WEATHERCM
31 # include <WeatherCM/FGLocalWeatherDatabase.h>
32 #else
33 # include <Environment/environment_mgr.hxx>
34 # include <Environment/environment.hxx>
35 #endif
36
37
38 #include <GUI/gui.h>
39
40 //Constructor
41 FGApproach::FGApproach(){
42   comm1_node = fgGetNode("/radios/comm[0]/frequencies/selected-mhz", true);
43   comm2_node = fgGetNode("/radios/comm[1]/frequencies/selected-mhz", true);
44
45   num_planes = 0;
46   lon_node   = fgGetNode("/position/longitude-deg", true);
47   lat_node   = fgGetNode("/position/latitude-deg", true);
48   elev_node  = fgGetNode("/position/altitude-ft", true);
49   hdg_node   = fgGetNode("/orientation/heading-deg", true);
50   speed_node = fgGetNode("/velocities/airspeed-kt", true);
51   etime_node = fgGetNode("/sim/time/elapsed-ms", true);
52
53   first = true;
54   active_runway = "";
55   int i;
56   for ( i=0; i<max_planes; i++) {
57     planes[i].contact   = 0;
58     planes[i].wpn       = 0;
59     planes[i].dnwp      = -999.;
60     planes[i].on_crs    = true;
61     planes[i].turn_rate = 10.0;
62     planes[i].desc_rate = 1000.0;
63     planes[i].clmb_rate = 500.0;
64     planes[i].tlm       = 0.0;
65     planes[i].lmc.c1    = 0;
66     planes[i].lmc.c2    = 0;
67     planes[i].lmc.c3    = -1;
68     planes[i].wp_change = false;
69   }
70 }
71
72 //Destructor
73 FGApproach::~FGApproach(){
74 }
75
76 void FGApproach::Init() {
77   display    = false;
78 }
79
80
81
82 // ============================================================================
83 // the main update function
84 // ============================================================================
85 void FGApproach::Update(double dt) {
86         
87         const int max_trans = 20;
88         FGTransmission tmissions[max_trans];
89         int    wpn;
90         int    station = 1;
91         TransCode code;
92         TransPar TPar;
93         int    i,j;
94         //double course, d, 
95         double adif, datp;
96         //char   buf[10];
97         string message;
98         //static string atcmsg1[10];
99         //static string atcmsg2[10];
100         string mentry;
101         string transm;
102         TransPar tpars;
103         //static bool TransDisplayed = false;
104         
105         update_plane_dat();
106         if ( active_runway == "" ) get_active_runway();
107         
108         double comm1_freq = comm1_node->getDoubleValue();
109         
110         //bool DisplayTransmissions = true;
111         
112         for (i=0; i<num_planes; i++) {
113                 if ( planes[i].ident == "Player") { 
114                         station = 1;
115                         tpars.station = name;
116                         tpars.callsign = "Player";
117                         tpars.airport = ident;
118                         
119                         int num_trans = 0;
120                         // is the frequency of the station tuned in?
121                         if ( freq == (int)(comm1_freq*100.0 + 0.5) ) {
122                                 current_transmissionlist->query_station( station, tmissions, max_trans, num_trans );
123                                 // loop over all transmissions for station
124                                 for ( j=0; j<=num_trans-1; j++ ) {
125                                         code = tmissions[j].get_code();
126                                         // select proper transmissions
127                                         if ( ( code.c2 == -1 && planes[i].lmc.c3 == 0 ) || 
128                                                 ( code.c1 == 0  && code.c2 == planes[i].lmc.c2 ) ) {
129                                                 mentry = current_transmissionlist->gen_text(station, code, tpars, false);
130                                                 transm = current_transmissionlist->gen_text(station, code, tpars, true);
131                                                 // is the transmission already registered?
132                                                 if (!current_atcdialog->trans_reg( ident, transm )) {
133                                                         current_atcdialog->add_entry( ident, transm, mentry );
134                                                 }
135                                         }
136                                 }
137                         }
138                 }
139         }
140         
141         for ( i=0; i<num_planes; i++ ) {
142                 
143                 if ( planes[i].ident == TPar.callsign && name == TPar.airport && TPar.station == "approach" ) {
144                         
145                         if ( TPar.request && TPar.intention == "landing" && ident == TPar.intid) {
146                                 planes[i].wpn = 0; 
147                                 // ===========================
148                                 // === calculate waypoints ===
149                                 // ===========================
150                                 calc_wp( i );  
151                                 update_param( i );
152                                 wpn = planes[i].wpn-1;
153                                 planes[i].aalt = planes[i].wpts[wpn-1][2];
154                                 planes[i].ahdg = planes[i].wpts[wpn][4];
155                                 
156                                 // generate the message
157                                 code.c1 = 1;
158                                 code.c2 = 1;
159                                 code.c3 = 0;
160                                 adif = angle_diff_deg( planes[i].hdg, planes[i].ahdg );
161                                 tpars.station = name;
162                                 tpars.callsign = "Player";
163                                 if ( adif < 0 ) tpars.tdir = 1;
164                                 else            tpars.tdir = 2;
165                                 tpars.heading = planes[i].ahdg;
166                                 if      (planes[i].alt-planes[i].aalt > 100.0)  tpars.VDir = 1;
167                                 else if (planes[i].alt-planes[i].aalt < -100.0) tpars.VDir = 3;
168                                 else tpars.VDir = 2;
169                                 tpars.alt = planes[i].aalt;
170                                 message = current_transmissionlist->gen_text(station, code, tpars, true );
171                                 globals->get_ATC_display()->RegisterSingleMessage( message, 0 );
172                                 planes[i].lmc = code;
173                                 planes[i].tlm = etime_node->getDoubleValue();
174                                 planes[i].on_crs = true;
175                                 planes[i].contact = 1;
176                         }
177                 }
178                 
179                 if ( planes[i].contact == 1 ) {
180                         // =========================
181                         // === update parameters ===
182                         // =========================
183                         update_param( i );
184                         //cout << planes[i].brg << " " << planes[i].dist << " " << planes[i].wpts[wpn+1][0] 
185                         //<< " " << planes[i].wpts[wpn+1][1] << " " << planes[i].wpts[wpn+1][4] 
186                         //cout << wpn << " distance to current course = " << planes[i].dcc << endl;
187                         //cout << etime_node->getDoubleValue() << endl;
188                         
189                         // =========================
190                         // === reached waypoint? ===
191                         // =========================
192                         wpn = planes[i].wpn-2;
193                         adif = angle_diff_deg( planes[i].hdg, planes[i].wpts[wpn][4] ) 
194                         * SGD_DEGREES_TO_RADIANS;
195                         datp = 2*sin(fabs(adif)/2.0)*sin(fabs(adif)/2.0) *
196                         planes[i].spd/3600. * planes[i].turn_rate + 
197                         planes[i].spd/3600. * 3.0;
198                         //cout << adif/SGD_DEGREES_TO_RADIANS << " " 
199                         //     << datp << " " << planes[i].dnc << " " << planes[i].dcc <<endl;
200                         if ( fabs(planes[i].dnc) < datp ) {
201                         //if ( fabs(planes[i].dnc) < 0.3 && planes[i].dnwp < 1.0 ) {
202                                 planes[i].wpn -= 1;
203                                 wpn = planes[i].wpn-1;
204                                 planes[i].ahdg = planes[i].wpts[wpn][4];
205                                 planes[i].aalt = planes[i].wpts[wpn-1][2];
206                                 planes[i].wp_change = true;
207                                 
208                                 // generate the message
209                                 adif = angle_diff_deg( planes[i].hdg, planes[i].ahdg );
210                                 tpars.station = name;
211                                 tpars.callsign = "Player";
212                                 if ( adif < 0 ) tpars.tdir = 1;
213                                 else            tpars.tdir = 2;
214                                 tpars.heading = planes[i].ahdg;
215                                 
216                                 if ( wpn-1 != 0) { 
217                                         code.c1 = 1;
218                                         code.c2 = 1;
219                                         code.c3 = 0;
220                                         if      (planes[i].alt-planes[i].aalt > 100.0)  tpars.VDir = 1;
221                                         else if (planes[i].alt-planes[i].aalt < -100.0) tpars.VDir = 3;
222                                         else tpars.VDir = 2;
223                                         tpars.alt = planes[i].aalt;
224                                         message = current_transmissionlist->gen_text(station, code, tpars, true );
225                                         globals->get_ATC_display()->RegisterSingleMessage( message, 0 );
226                                         
227                                 }
228                                 else {
229                                         code.c1 = 1;
230                                         code.c2 = 3;
231                                         code.c3 = 0;
232                                         tpars.runway = active_runway;
233                                         message = current_transmissionlist->gen_text(station, code, tpars, true);
234                                         globals->get_ATC_display()->RegisterSingleMessage( message, 0 );
235                                 }
236                                 planes[i].lmc = code;
237                                 planes[i].tlm = etime_node->getDoubleValue();
238                                 planes[i].on_crs = true;
239                                 
240                                 update_param( i );
241                         }
242                         
243                         // =========================
244                         // === come off course ? ===
245                         // =========================
246                         if ( fabs(planes[i].dcc) > 1.0 && 
247                                 ( !planes[i].wp_change || 
248                         etime_node->getDoubleValue() - planes[i].tlm > tbm ) ) {
249                                 if ( planes[i].on_crs ) {
250                                         if ( planes[i].dcc < 0) {
251                                                 planes[i].ahdg += 30.0;
252                                         }
253                                         else {
254                                                 planes[i].ahdg -= 30.0;
255                                         }
256                                         if (planes[i].ahdg > 360.0) planes[i].ahdg -= 360.0;
257                                         else if (planes[i].ahdg < 0.0) planes[i].ahdg += 360.0;
258                                 }
259                                 //cout << planes[i].on_crs << " " 
260                                 //     << angle_diff_deg( planes[i].hdg, planes[i].ahdg) << " "
261                                 //     << etime_node->getDoubleValue() << " "
262                                 //     << planes[i].tlm << endl;
263                                 // generate the message
264                                 if ( planes[i].on_crs || 
265                                         ( fabs(angle_diff_deg( planes[i].hdg, planes[i].ahdg )) >  30.0  && 
266                                 etime_node->getDoubleValue() - planes[i].tlm > tbm) ) {
267                                         // generate the message
268                                         code.c1 = 1;
269                                         code.c2 = 4;
270                                         code.c3 = 0;
271                                         adif = angle_diff_deg( planes[i].hdg, planes[i].ahdg );
272                                         tpars.station = name;
273                                         tpars.callsign = "Player";
274                                         tpars.miles   = fabs(planes[i].dcc);
275                                         if ( adif < 0 ) tpars.tdir = 1;
276                                         else            tpars.tdir = 2;
277                                         tpars.heading = planes[i].ahdg;
278                                         message = current_transmissionlist->gen_text(station, code, tpars, true);
279                                         globals->get_ATC_display()->RegisterSingleMessage( message, 0 );
280                                         planes[i].lmc = code;
281                                         planes[i].tlm = etime_node->getDoubleValue();
282                                 }
283                                 
284                                 planes[i].on_crs = false;
285                         }
286                         else if ( !planes[i].on_crs ) {
287                                 wpn = planes[i].wpn-1;
288                                 adif = angle_diff_deg( planes[i].hdg, planes[i].wpts[wpn][4] ) 
289                                        * SGD_DEGREES_TO_RADIANS;
290                                 datp = 2*sin(fabs(adif)/2.0)*sin(fabs(adif)/2.0) *
291                                 planes[i].spd/3600. * planes[i].turn_rate + 
292                                 planes[i].spd/3600. * 3.0;
293                                 if ( fabs(planes[i].dcc) < datp ) { 
294                                         planes[i].ahdg = fabs(planes[i].wpts[wpn][4]);
295                                         
296                                         // generate the message
297                                         code.c1 = 1;
298                                         code.c2 = 2;
299                                         code.c3 = 0;
300                                         tpars.station = name;
301                                         tpars.callsign = "Player";
302                                         if ( adif < 0 ) tpars.tdir = 1;
303                                         else            tpars.tdir = 2;
304                                         tpars.heading = planes[i].ahdg;
305                                         message = current_transmissionlist->gen_text(station, code, tpars, true);
306                                         globals->get_ATC_display()->RegisterSingleMessage( message, 0 );
307                                         planes[i].lmc = code;
308                                         planes[i].tlm = etime_node->getDoubleValue();
309                                         
310                                         planes[i].on_crs = true;          
311                                 } 
312                         }
313                         else if ( planes[i].wp_change  ) {
314                                 planes[i].wp_change = false;
315                         }
316                         
317                         // ===================================================================
318                         // === Less than two minutes away from touchdown? -> Contact Tower ===
319                         // ===================================================================
320                         if ( planes[i].wpn == 2 && planes[i].dnwp < planes[i].spd/60.*2.0 ) {
321                                 
322                                 double freq = 121.95;   // Hardwired - FIXME
323                                 // generate message
324                                 code.c1 = 1;
325                                 code.c2 = 5;
326                                 code.c3 = 0;
327                                 tpars.station = name;
328                                 tpars.callsign = "Player";
329                                 tpars.freq    = freq;
330                                 message = current_transmissionlist->gen_text(station, code, tpars, true);
331                                 globals->get_ATC_display()->RegisterSingleMessage( message, 0 );
332                                 planes[i].lmc = code;
333                                 planes[i].tlm = etime_node->getDoubleValue();
334                                 
335                                 planes[i].contact = 2;
336                         }
337                 }
338         }
339         
340 }
341
342
343 // ============================================================================
344 // update course parameters
345 // ============================================================================
346 void FGApproach::update_param( const int &i ) {
347   
348   double course, d;
349
350   int wpn = planes[i].wpn-1;            // this is the current waypoint
351
352   planes[i].dcc  = calc_psl_dist(planes[i].brg, planes[i].dist,
353                                  planes[i].wpts[wpn][0], planes[i].wpts[wpn][1],
354                                  planes[i].wpts[wpn][4]);
355   planes[i].dnc  = calc_psl_dist(planes[i].brg, planes[i].dist,
356                                  planes[i].wpts[wpn-1][0], planes[i].wpts[wpn-1][1],
357                                  planes[i].wpts[wpn-1][4]);
358   calc_hd_course_dist(planes[i].brg, planes[i].dist, 
359                       planes[i].wpts[wpn-1][0], planes[i].wpts[wpn-1][1],
360                       &course, &d);
361   planes[i].dnwp = d;
362
363 }
364
365 // ============================================================================
366 // smallest difference between two angles in degree
367 // difference is negative if a1 > a2 and positive if a2 > a1
368 // ===========================================================================
369 double FGApproach::angle_diff_deg( const double &a1, const double &a2) {
370   
371   double a3 = a2 - a1;
372   if (a3 < 180.0) a3 += 360.0;
373   if (a3 > 180.0) a3 -= 360.0;
374
375   return a3;
376 }
377
378 // ============================================================================
379 // calculate waypoints
380 // ============================================================================
381 void FGApproach::calc_wp( const int &i ) {
382         
383         int j;
384         double course, d, cd, a1;
385         
386         int wpn = planes[i].wpn;
387         // waypoint 0: Threshold of active runway
388         calc_gc_course_dist(Point3D(lon*SGD_DEGREES_TO_RADIANS, lat*SGD_DEGREES_TO_RADIANS, 0.0),
389                             Point3D(active_rw_lon*SGD_DEGREES_TO_RADIANS,active_rw_lat*SGD_DEGREES_TO_RADIANS, 0.0 ),
390                             &course, &d);
391         double d1 = active_rw_hdg+180.0;
392         if ( d1 > 360.0 ) d1 -=360.0;
393         calc_cd_head_dist(360.0-course*SGD_RADIANS_TO_DEGREES, d/SG_NM_TO_METER, 
394                           d1, active_rw_len/SG_NM_TO_METER/2.0, 
395                           &planes[i].wpts[wpn][0], &planes[i].wpts[wpn][1]);
396         planes[i].wpts[wpn][2] = elev;
397         planes[i].wpts[wpn][4] = 0.0;
398         planes[i].wpts[wpn][5] = 0.0;
399         wpn += 1;
400         
401         // ======================
402         // horizontal navigation
403         // ======================
404         // waypoint 1: point for turning onto final
405         calc_cd_head_dist(planes[i].wpts[wpn-1][0], planes[i].wpts[wpn-1][1], d1, lfl,
406                           &planes[i].wpts[wpn][0], &planes[i].wpts[wpn][1]);
407         calc_hd_course_dist(planes[i].wpts[wpn][0],   planes[i].wpts[wpn][1],
408                             planes[i].wpts[wpn-1][0], planes[i].wpts[wpn-1][1],
409                             &course, &d);
410         planes[i].wpts[wpn][4] = course;
411         planes[i].wpts[wpn][5] = d;
412         wpn += 1;
413         
414         // calculate course and distance from plane position to waypoint 1
415         calc_hd_course_dist(planes[i].brg, planes[i].dist, planes[i].wpts[1][0], 
416                             planes[i].wpts[1][1], &course, &d);
417         // check if airport is not between plane and waypoint 1 and
418         // DCA to airport on course to waypoint 1 is larger than 10 miles
419         double zero = 0.0;
420         if ( fabs(angle_diff_deg( planes[i].wpts[1][0], planes[i].brg  )) < 90.0 ||
421                 calc_psl_dist( zero, zero, planes[i].brg, planes[i].dist, course ) > 10.0 ) {
422                 // check if turning angle at waypoint 1 would be > max_ta
423                 if ( fabs(angle_diff_deg( planes[i].wpts[1][4], course )) > max_ta ) {
424                         cd = calc_psl_dist(planes[i].brg, planes[i].dist,
425                              planes[i].wpts[1][0], planes[i].wpts[1][1],
426                              planes[i].wpts[1][4]);
427                         a1 = atan2(cd,planes[i].wpts[1][1]);
428                         planes[i].wpts[wpn][0] = planes[i].wpts[1][0] - a1/SGD_DEGREES_TO_RADIANS;
429                         if ( planes[i].wpts[wpn][0] < 0.0)   planes[i].wpts[wpn][0] += 360.0;   
430                         if ( planes[i].wpts[wpn][0] > 360.0) planes[i].wpts[wpn][0] -= 360.0;   
431                         planes[i].wpts[wpn][1] = fabs(cd) / sin(fabs(a1));
432                         calc_hd_course_dist(planes[i].wpts[wpn][0],   planes[i].wpts[wpn][1],
433                                             planes[i].wpts[wpn-1][0], planes[i].wpts[wpn-1][1],
434                                             &course, &d);
435                         planes[i].wpts[wpn][4] = course;
436                         planes[i].wpts[wpn][5] = d;
437                         wpn += 1;
438                         
439                         calc_hd_course_dist(planes[i].brg, planes[i].dist, planes[i].wpts[wpn-1][0], 
440                                             planes[i].wpts[wpn-1][1], &course, &d);
441                 }
442         } else {
443                 double leg = 10.0;
444                 a1 = atan2(planes[i].wpts[1][1], leg );
445                 
446                 if ( angle_diff_deg(planes[i].brg,planes[i].wpts[1][0]) < 0 ) 
447                         planes[i].wpts[wpn][0] = planes[i].wpts[1][0] + a1/SGD_DEGREES_TO_RADIANS;
448                 else planes[i].wpts[wpn][0] = planes[i].wpts[1][0] - a1/SGD_DEGREES_TO_RADIANS;
449                 
450                 planes[i].wpts[wpn][1] = sqrt( planes[i].wpts[1][1]*planes[i].wpts[1][1] + leg*leg );
451                 calc_hd_course_dist(planes[i].wpts[wpn][0],   planes[i].wpts[wpn][1],
452                                     planes[i].wpts[wpn-1][0], planes[i].wpts[wpn-1][1],
453                                     &course, &d);
454                 planes[i].wpts[wpn][4] = course;
455                 planes[i].wpts[wpn][5] = d;
456                 wpn += 1;
457                 
458                 calc_hd_course_dist(planes[i].brg, planes[i].dist,
459                                     planes[i].wpts[wpn-1][0], planes[i].wpts[wpn-1][1],
460                                     &course, &d);
461         }
462         
463         planes[i].wpts[wpn][0] = planes[i].brg;
464         planes[i].wpts[wpn][1] = planes[i].dist;
465         planes[i].wpts[wpn][2] = planes[i].alt;
466         planes[i].wpts[wpn][4] = course;
467         planes[i].wpts[wpn][5] = d;
468         wpn += 1;
469         
470         planes[i].wpn = wpn;
471         
472         // Now check if legs are too short or if legs can be shortend
473         // legs must be at least 2 flight minutes long
474         double mdist = planes[i].spd / 60.0 * 2.0;
475         for ( j=2; j<wpn-1; ++j ) {
476                 if ( planes[i].wpts[j][1] < mdist) {
477                 }
478         }
479         
480         // ====================
481         // vertical navigation
482         // ====================
483         double alt = elev+3000.0;
484         planes[i].wpts[1][2] = round_alt( true, alt );
485         for ( j=2; j<wpn-1; ++j ) {
486                 double dalt = planes[i].alt - planes[i].wpts[j-1][2];
487                 if ( dalt > 0 ) {
488                         alt = planes[i].wpts[j-1][2] + 
489                               (planes[i].wpts[j][5] / planes[i].spd) * 60.0 * planes[i].desc_rate;
490                         planes[i].wpts[j][2] = round_alt( false, alt );
491                         if ( planes[i].wpts[j][2] > planes[i].alt ) 
492                                 planes[i].wpts[j][2] = round_alt( false, planes[i].alt );
493                 }
494                 else {
495                         planes[i].wpts[j][2] = planes[i].wpts[1][2];
496                 }
497         }
498         
499         cout << "Plane position: " << planes[i].brg << " " << planes[i].dist << endl;
500         for ( j=0; j<wpn; ++j ) {
501                 cout << "Waypoint " << j << endl;
502                 cout << "------------------" << endl;
503                 cout << planes[i].wpts[j][0] << "   " << planes[i].wpts[j][1]
504                      << "   " << planes[i].wpts[j][2] << "   " << planes[i].wpts[j][5]; 
505                 cout << endl << endl;
506         }
507         
508 }
509
510
511 // ============================================================================
512 // round altitude value to next highest/lowest 500 feet
513 // ============================================================================
514 double FGApproach::round_alt( const bool hl, double alt ) {
515
516   alt = alt/1000.0;
517   if ( hl ) {
518     if ( alt > (int)(alt)+0.5 ) alt = ((int)(alt)+1)*1000.0;
519     else alt = ((int)(alt)+0.5)*1000.0;
520   }
521   else {
522     if ( alt > (int)(alt)+0.5 ) alt = ((int)(alt)+0.5)*1000.0;
523     else alt = ((int)(alt))*1000.0;
524   }
525   
526   return alt;
527 }
528
529
530 // ============================================================================
531 // get active runway
532 // ============================================================================
533 void FGApproach::get_active_runway() {
534
535 #ifdef FG_WEATHERCM
536   sgVec3 position = { lat, lon, elev };
537   FGPhysicalProperty stationweather = WeatherDatabase->get(position);
538 #else
539   FGEnvironment stationweather =
540       ((FGEnvironmentMgr *)globals->get_subsystem("environment"))
541         ->getEnvironment(lat, lon, elev);
542 #endif
543
544 #ifdef FG_WEATHERCM
545   //Set the heading to into the wind
546   double wind_x = stationweather.Wind[0];
547   double wind_y = stationweather.Wind[1];
548   
549   double speed = sqrt( wind_x*wind_x + wind_y*wind_y ) * SG_METER_TO_NM / (60.0*60.0);
550   double hdg;
551   
552   //If no wind use 270degrees
553   if(speed == 0) {
554     hdg = 270;
555   } else {
556     // //normalize the wind to get the direction
557     //wind_x /= speed; wind_y /= speed;
558     
559     hdg = - atan2 ( wind_x, wind_y ) * SG_RADIANS_TO_DEGREES ;
560     if (hdg < 0.0)
561       hdg += 360.0;
562   }
563 #else
564   double hdg = stationweather.get_wind_from_heading_deg();
565 #endif
566   
567   FGRunway runway;
568   if ( globals->get_runways()->search( ident, int(hdg), &runway) ) {
569     active_runway = runway.rwy_no;
570     active_rw_hdg = runway.heading;
571     active_rw_lon = runway.lon;
572     active_rw_lat = runway.lat;
573     active_rw_len = runway.length;
574     //cout << "Active runway is: " << active_runway << "  heading = " 
575     // << active_rw_hdg 
576     // << " lon = " << active_rw_lon 
577     // << " lat = " << active_rw_lat <<endl;
578   }
579   else cout << "FGRunways search failed\n";
580
581 }
582
583 // ========================================================================
584 // update infos about plane
585 // ========================================================================
586 void FGApproach::update_plane_dat() {
587   
588   //cout << "Update Approach " << ident << "   " << num_planes << " registered" << endl;
589   // update plane positions
590   int i;
591   for (i=0; i<num_planes; i++) {
592     planes[i].lon = lon_node->getDoubleValue();
593     planes[i].lat = lat_node->getDoubleValue();
594     planes[i].alt = elev_node->getDoubleValue();
595     planes[i].hdg = hdg_node->getDoubleValue();
596     planes[i].spd = speed_node->getDoubleValue();
597
598     /*Point3D aircraft = sgGeodToCart( Point3D(planes[i].lon*SGD_DEGREES_TO_RADIANS, 
599                                              planes[i].lat*SGD_DEGREES_TO_RADIANS, 
600                                              planes[i].alt*SG_FEET_TO_METER) );*/
601     double course, distance;
602     calc_gc_course_dist(Point3D(lon*SGD_DEGREES_TO_RADIANS, lat*SGD_DEGREES_TO_RADIANS, 0.0),
603                         Point3D(planes[i].lon*SGD_DEGREES_TO_RADIANS,planes[i].lat*SGD_DEGREES_TO_RADIANS, 0.0 ),
604                         &course, &distance);
605     planes[i].dist = distance/SG_NM_TO_METER;
606     planes[i].brg  = 360.0-course*SGD_RADIANS_TO_DEGREES;
607
608     //cout << "Plane Id: " << planes[i].ident << "  Distance to " << ident 
609     // << " is " << planes[i].dist << " miles   " << "Bearing " << planes[i].brg << endl;
610     
611   }   
612 }
613
614 // =======================================================================
615 // Add plane to Approach list
616 // =======================================================================
617 void FGApproach::AddPlane(string pid) {
618
619   int i;
620   for ( i=0; i<num_planes; i++) {
621     if ( planes[i].ident == pid) {
622       //cout << "Plane already registered: " << ident << " " << num_planes << endl;
623       return;
624     }
625   }
626   planes[num_planes].ident = pid;
627   ++num_planes;
628   //cout << "Plane added to list: " << ident << " " << num_planes << endl;
629   return;
630 }
631
632 // ================================================================================
633 // closest distance between a point (h1,d1) and a straigt line (h2,d2,h3) in 2 dim.
634 // ================================================================================
635 double FGApproach::calc_psl_dist(const double &h1, const double &d1,
636                                  const double &h2, const double &d2,
637                                  const double &h3)
638 {
639   double a1 = h1 * SGD_DEGREES_TO_RADIANS;
640   double a2 = h2 * SGD_DEGREES_TO_RADIANS;
641   double a3 = h3 * SGD_DEGREES_TO_RADIANS;
642   double x1 = cos(a1) * d1;
643   double y1 = sin(a1) * d1;
644   double x2 = cos(a2) * d2;
645   double y2 = sin(a2) * d2;
646   double x3 = cos(a3);
647   double y3 = sin(a3);
648   
649   // formula: dis = sqrt( (v1-v2)**2 - ((v1-v2)*v3)**2 ); vi = (xi,yi)
650   double val1   = (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2);
651   double val2   = ((x1-x2)*x3 + (y1-y2)*y3) * ((x1-x2)*x3 + (y1-y2)*y3);
652   double dis    = val1 - val2;
653   // now get sign for offset 
654   //cout << x1 << " " << x2 << " " << y1 << " " << y2 << " " 
655   //     << x3 << " " << y3 << " " 
656   //     << val1 << " " << val2 << " " << dis << endl;
657   x3 *= sqrt(val2);
658   y3 *= sqrt(val2);
659   double da = fabs(atan2(y3,x3) - atan2(y1-y2,x1-x2));
660   if ( da > SGD_PI ) da -= 2*SGD_PI;
661   if ( fabs(da) > SGD_PI/2.) {
662     //if ( x3*(x1-x2) < 0.0 && y3*(y1-y2) < 0.0) {
663     x3 *= -1.0;
664     y3 *= -1.0;
665   }
666   //cout << x3 << " " << y3 << endl;
667   double dis1   = x1-x2-x3;
668   double dis2   = y1-y2-y3;
669   dis = sqrt(dis);
670   da = atan2(dis2,dis1);
671   if ( da < 0.0 ) da  += 2*SGD_PI;
672   if ( da < a3 )  dis *= -1.0;
673   //cout << dis1 << " " << dis2 << " " << da*SGD_RADIANS_TO_DEGREES << " " << h3
674   //     << " " << sqrt(dis1*dis1 + dis2*dis2) << " " << dis << endl;
675   //cout << atan2(dis2,dis1)*SGD_RADIANS_TO_DEGREES << " " << dis << endl;
676
677   return dis;
678 }
679
680
681 // ========================================================================
682 // Calculate new bear/dist given starting bear/dis, and offset radial,
683 // and distance.
684 // ========================================================================
685 void FGApproach::calc_cd_head_dist(const double &h1, const double &d1, 
686                                    const double &course, const double &dist,
687                                    double *h2, double *d2)
688 {
689   double a1 = h1 * SGD_DEGREES_TO_RADIANS;
690   double a2 = course * SGD_DEGREES_TO_RADIANS;
691   double x1 = cos(a1) * d1;
692   double y1 = sin(a1) * d1;
693   double x2 = cos(a2) * dist;
694   double y2 = sin(a2) * dist;
695     
696   *d2 = sqrt((x1+x2)*(x1+x2) + (y1+y2)*(y1+y2));
697   *h2 = atan2( (y1+y2), (x1+x2) ) * SGD_RADIANS_TO_DEGREES;
698   if ( *h2 < 0 ) *h2 = *h2+360;
699 }
700
701
702
703 // ========================================================================
704 // get heading and distance between two points; point1 ---> point2
705 // ========================================================================
706 void FGApproach::calc_hd_course_dist(const double &h1, const double &d1, 
707                                      const double &h2, const double &d2,
708                                      double *course, double *dist)
709 {
710   double a1 = h1 * SGD_DEGREES_TO_RADIANS;
711   double a2 = h2 * SGD_DEGREES_TO_RADIANS;
712   double x1 = cos(a1) * d1;
713   double y1 = sin(a1) * d1;
714   double x2 = cos(a2) * d2;
715   double y2 = sin(a2) * d2;
716            
717   *dist   = sqrt( (y2-y1)*(y2-y1) + (x2-x1)*(x2-x1) );
718   *course = atan2( (y2-y1), (x2-x1) ) * SGD_RADIANS_TO_DEGREES;
719   if ( *course < 0 ) *course = *course+360;
720   //cout << x1 << " " << y1 << " " << x2 << " " << y2 << " " << *dist << " " << *course << endl;
721 }
722
723
724
725 int FGApproach::RemovePlane() {
726
727   // first check if anything has to be done
728   bool rmplane = false;
729   int i;
730
731   for (i=0; i<num_planes; i++) {
732     if (planes[i].dist > range*SG_NM_TO_METER) {
733       rmplane = true;
734       break;
735     }
736   }
737   if (!rmplane) return num_planes;
738
739   // now make a copy of the plane list
740   PlaneApp tmp[max_planes];
741   for (i=0; i<num_planes; i++) {
742     tmp[i] = planes[i];
743   }
744   
745   int np = 0;
746   // now check which planes are still in range
747   for (i=0; i<num_planes; i++) {
748     if (tmp[i].dist <= range*SG_NM_TO_METER) {
749       planes[np] = tmp[i];
750       np += 1;
751     }
752   }
753   num_planes = np;
754
755   return num_planes;
756 }