]> git.mxchange.org Git - flightgear.git/blob - src/Radio/antenna.hxx
Merge branch 'next' of gitorious.org:fg/flightgear into next
[flightgear.git] / src / Radio / antenna.hxx
1 // antenna.hxx -- FGRadioAntenna: class to represent antenna properties
2 //
3 // Written by Adrian Musceac, started December 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 #ifndef __cplusplus
20 # error This library requires C++
21 #endif
22
23 #include <simgear/compiler.h>
24 #include <simgear/structure/subsystem_mgr.hxx>
25 #include <Main/fg_props.hxx>
26
27 #include <simgear/math/sg_geodesy.hxx>
28 #include <simgear/debug/logstream.hxx>
29
30 class FGRadioAntenna
31 {
32 private:
33         void load_antenna_pattern();
34         int _mirror_y;
35         int _mirror_z;
36         int _invert_ground;
37         double _heading_deg;
38         double _elevation_angle_deg;
39         struct AntennaGain {
40                 double azimuth;
41                 double elevation;
42                 double gain;
43         };
44         
45         typedef std::vector<AntennaGain> AntennaPattern;
46         AntennaPattern _pattern;
47         
48 public:
49         
50         FGRadioAntenna();
51     ~FGRadioAntenna();
52         double calculate_gain(double azimuth, double elevation);
53         
54         
55 };