]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/wxradar.hxx
initialize variables before using them
[flightgear.git] / src / Instrumentation / wxradar.hxx
1 // Wx Radar background texture
2 //
3 // Written by Harald JOHNSEN, started May 2005.
4 //
5 // Copyright (C) 2005  Harald JOHNSEN - hjohnsen@evc.net
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 //
22
23 #ifndef _INST_WXRADAR_HXX
24 #define _INST_WXRADAR_HXX
25
26 #include <osg/ref_ptr>
27 #include <osg/Texture2D>
28
29 #include <simgear/props/props.hxx>
30 #include <simgear/structure/subsystem_mgr.hxx>
31 #include <simgear/environment/visual_enviro.hxx>
32
33 class FGODGauge;
34
35 class wxRadarBg : public SGSubsystem {
36
37
38 public:
39
40     wxRadarBg ( SGPropertyNode *node );
41     wxRadarBg ();
42     virtual ~wxRadarBg ();
43
44     virtual void init ();
45     virtual void update (double dt);
46
47 private:
48
49     string _name;
50     int _num;
51
52     SGPropertyNode_ptr _serviceable_node;
53     SGPropertyNode_ptr _Instrument;
54     osg::ref_ptr<osg::Texture2D> resultTexture;
55     osg::ref_ptr<osg::Texture2D> wxEcho;
56     string last_switchKnob;
57     bool sim_init_done;
58     FGODGauge *odg;
59     list_of_SGWxRadarEcho radarEchoBuffer;
60 };
61
62 #endif // _INST_WXRADAR_HXX