]> git.mxchange.org Git - flightgear.git/blob - src/Radio/radio.hxx
Merge branch 'next' into comm-subsystem
[flightgear.git] / src / Radio / radio.hxx
1 // radio.hxx -- FGRadio: class to manage radio propagation
2 //
3 // Written by Adrian Musceac, started August 2011.
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
20 #ifndef __cplusplus
21 # error This library requires C++
22 #endif
23
24 #include <simgear/compiler.h>
25 #include <simgear/structure/subsystem_mgr.hxx>
26
27 #include <Main/fg_props.hxx>
28
29 #include <simgear/math/sg_geodesy.hxx>
30 #include <simgear/debug/logstream.hxx>
31
32
33 using std::string;
34
35
36 class FGRadio 
37 {
38 private:
39         bool isOperable() const
40                 { return _operable; }
41         bool _operable; ///< is the unit serviceable, on, powered, etc
42         
43         double _receiver_sensitivity;
44         double _transmitter_power;
45         double _antenna_gain;
46         
47         int _propagation_model; /// 0 none, 1 round Earth, 2 ITM
48         double ITM_calculate_attenuation(SGGeod tx_pos, double freq, int ground_to_air);
49         
50 public:
51
52     FGRadio();
53     ~FGRadio();
54
55     
56     void setFrequency(double freq, int radio);
57     double getFrequency(int radio);
58     void setTxPower(double txpower) { _transmitter_power = txpower; };
59     // transmission_type: 1 for ground to air, 2 for air to air, 3 for pilot to ground, 4 for pilot to air
60     void receiveText(SGGeod tx_pos, double freq, string text, int transmission_type);
61     void setPropagationModel(int model) { _propagation_model = model; };
62     
63 };
64
65