]> git.mxchange.org Git - flightgear.git/blob - src/Radio/antenna.hxx
Expose a radio function (receiveBeacon) to the Nasal subsystem
[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 using std::string;
31
32 class FGRadioAntenna
33 {
34 private:
35         void load_antenna_pattern(string type);
36         int _mirror_y;
37         int _mirror_z;
38         int _invert_ground;
39         double _heading_deg;
40         double _elevation_angle_deg;
41         struct AntennaGain {
42                 double azimuth;
43                 double elevation;
44                 double gain;
45         };
46         SGPath _pattern_file;
47         typedef std::vector<AntennaGain*> AntennaPattern;
48         AntennaPattern _pattern;
49         
50 public:
51         
52         FGRadioAntenna(string type);
53     ~FGRadioAntenna();
54         double calculate_gain(double bearing, double angle);
55         void set_heading(double heading_deg) {_heading_deg = heading_deg ;};
56         void set_elevation_angle(double elevation_angle_deg) {_elevation_angle_deg = elevation_angle_deg ;};
57 };