]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/radiostack.cxx
f563b1fa15f0c162a1be1dfd0624883bc61874bc
[flightgear.git] / src / Cockpit / radiostack.cxx
1 // radiostack.cxx -- class to manage an instance of the radio stack
2 //
3 // Written by Curtis Olson, started April 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson - curt@flightgear.org
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 // $Id$
22
23
24 #include <Navaids/ilslist.hxx>
25 #include <Navaids/navlist.hxx>
26
27 #include "radiostack.hxx"
28
29
30 FGRadioStack *current_radiostack;
31
32
33 // Constructor
34 FGRadioStack::FGRadioStack() {
35     need_update = true;
36 }
37
38
39 // Destructor
40 FGRadioStack::~FGRadioStack() {
41 }
42
43
44 // Update nav/adf radios based on current postition
45 void FGRadioStack::update( double lon, double lat, double elev ) {
46     need_update = false;
47
48     // Start with the selected radials.
49     nav1_radial = nav1_selected_radial;
50     nav2_radial = nav2_selected_radial;
51
52     // nav1
53     FGILS ils;
54     if ( current_ilslist->query( lon, lat, elev, nav1_freq,
55                                  &ils, &nav1_heading, &nav1_dist) ) {
56         nav1_inrange = true;
57         nav1_loc = true;
58         nav1_lon = ils.get_loclon();
59         nav1_lat = ils.get_loclat();
60         nav1_elev = ils.get_gselev();
61         nav1_target_gs = ils.get_gsangle();
62         nav1_radial = ils.get_locheading();
63         // cout << "Found a vor station in range" << endl;
64         // cout << " id = " << ils.get_locident() << endl;
65         // cout << " heading = " << nav1_heading
66         //      << " dist = " << nav1_dist << endl;
67     } else {
68         nav1_inrange = false;
69         // cout << "not picking up vor. :-(" << endl;
70     }
71
72     // nav1
73     FGNav nav;
74     if ( current_navlist->query( lon, lat, elev, nav2_freq,
75                                  &nav, &nav2_heading, &nav2_dist) ) {
76         nav2_inrange = true;
77         nav2_loc = false;
78         nav2_lon = nav.get_lon();
79         nav2_lat = nav.get_lat();
80         nav2_elev = nav.get_elev();
81         // cout << "Found a vor station in range" << endl;
82         // cout << " id = " << nav.get_ident() << endl;
83         // cout << " heading = " << nav2_heading
84         //      << " dist = " << nav2_dist << endl;
85     } else {
86         nav2_inrange = false;
87         // cout << "not picking up vor. :-(" << endl;
88     }
89
90     // adf
91     double junk;
92     if ( current_navlist->query( lon, lat, elev, adf_freq,
93                                  &nav, &adf_heading, &junk) ) {
94         adf_inrange = true;
95         adf_lon = nav.get_lon();
96         adf_lat = nav.get_lat();
97         adf_elev = nav.get_elev();
98         // cout << "Found an adf station in range" << endl;
99         // cout << " id = " << nav.get_ident() << endl;
100         // cout << " heading = " << adf_heading
101         //      << " dist = " << junk << endl;
102     } else {
103         adf_inrange = false;
104         // cout << "not picking up adf. :-(" << endl;
105     }
106 }
107