]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/groundradar.hxx
Allow instruments/systems to reset on sim reset
[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 #include <simgear/structure/subsystem_mgr.hxx>
28
29 // forward decls
30 class FGRunwayBase;
31
32 ////////////////////////////////////////////////////////////////////////
33 // Built-in layer for the atc radar.
34 ////////////////////////////////////////////////////////////////////////
35
36 class GroundRadar : public SGSubsystem, public SGPropertyChangeListener, private FGODGauge
37 {
38 public:
39     static const int TextureHalfSize = 256;
40     GroundRadar(SGPropertyNode* node);
41     virtual ~GroundRadar();
42     void updateTexture();
43     virtual void valueChanged(SGPropertyNode*);
44     virtual void update (double dt);
45 protected:
46     void createTexture(const char* texture_name);
47     
48     void addRunwayVertices(const FGRunwayBase* aRunway, double aTowerLat, double aTowerLon, double aScale, osg::Vec3Array* aVertices);
49     osg::Geometry *addPavementGeometry(const FGPavement* aPavement, double aTowerLat, double aTowerLon, double aScale);
50     
51     osg::ref_ptr<osg::Geode> _geode;
52     SGPropertyNode_ptr _airport_node;
53     SGPropertyNode_ptr _range_node;
54 };
55
56 #endif // __INST_GROUNDRADAR_HXX