]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/radiostack.cxx
Beginning work on integrating radiostack model into fgfs.
[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     // nav1
49     FGILS ils;
50     if ( current_ilslist->query( lon, lat, elev, nav1_freq,
51                                  &ils, &nav1_heading, &nav1_dist) ) {
52         nav1_inrange = true;
53         nav1_lon = ils.get_loclon();
54         nav1_lat = ils.get_loclat();
55         nav1_elev = ils.get_gselev();
56         cout << "Found a vor station in range" << endl;
57         cout << " id = " << ils.get_locident() << endl;
58         cout << " heading = " << nav1_heading
59              << " dist = " << nav1_dist << endl;
60     } else {
61         nav1_inrange = false;
62         cout << "not picking up vor. :-(" << endl;
63     }
64
65     // nav1
66     FGNav nav;
67     if ( current_navlist->query( lon, lat, elev, nav2_freq,
68                                  &nav, &nav2_heading, &nav2_dist) ) {
69         nav2_inrange = true;
70         nav2_lon = nav.get_lon();
71         nav2_lat = nav.get_lat();
72         nav2_elev = nav.get_elev();
73         cout << "Found a vor station in range" << endl;
74         cout << " id = " << nav.get_ident() << endl;
75         cout << " heading = " << nav2_heading
76              << " dist = " << nav2_dist << endl;
77     } else {
78         nav2_inrange = false;
79         cout << "not picking up vor. :-(" << endl;
80     }
81
82     // adf
83     double junk;
84     if ( current_navlist->query( lon, lat, elev, adf_freq,
85                                  &nav, &adf_heading, &junk) ) {
86         adf_inrange = true;
87         adf_lon = nav.get_lon();
88         adf_lat = nav.get_lat();
89         adf_elev = nav.get_elev();
90         cout << "Found an adf station in range" << endl;
91         cout << " id = " << nav.get_ident() << endl;
92         cout << " heading = " << adf_heading
93              << " dist = " << junk << endl;
94     } else {
95         adf_inrange = false;
96         cout << "not picking up adf. :-(" << endl;
97     }
98 }
99