]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/groundradar.hxx
Added copyright to ground radar files
[flightgear.git] / src / Instrumentation / groundradar.hxx
1 //  groundradar.hxx - Background layer for the ATC radar.
2 //
3 //  Copyright (C) 2007 Csaba Halasz.
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 __INST_GROUNDRADAR_HXX
21 #define __INST_GROUNDRADAR_HXX
22
23 #include <osg/ref_ptr>
24 #include <osg/Geometry>
25 #include <simgear/props/props.hxx>
26 #include "od_gauge.hxx"
27
28 ////////////////////////////////////////////////////////////////////////
29 // Built-in layer for the atc radar.
30 ////////////////////////////////////////////////////////////////////////
31
32 class GroundRadar : public SGPropertyChangeListener, public FGODGauge
33 {
34 public:
35     GroundRadar(SGPropertyNode* node);
36     virtual ~GroundRadar();
37     void updateTexture();
38     virtual void valueChanged(SGPropertyNode*);
39
40 protected:
41     osg::ref_ptr<osg::Geometry> _geom;
42     SGPropertyNode_ptr _airport_node;
43     SGPropertyNode_ptr _radar_node;
44
45     void createTexture();
46 };
47
48 #endif // __INST_GROUNDRADAR_HXX