]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/wxradar.hxx
Change from Dave Perry:
[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 <simgear/props/props.hxx>
27 #include <simgear/structure/subsystem_mgr.hxx>
28 #include <simgear/environment/visual_enviro.hxx>
29 #include <simgear/structure/ssgSharedPtr.hxx>
30
31 class ssgTexture;
32 class FGODGauge;
33
34 class wxRadarBg : public SGSubsystem {
35
36
37 public:
38
39     wxRadarBg ( SGPropertyNode *node );
40     wxRadarBg ();
41     virtual ~wxRadarBg ();
42
43     virtual void init ();
44     virtual void update (double dt);
45
46 private:
47
48     string name;
49     int num;
50
51     SGPropertyNode_ptr _serviceable_node;
52     SGPropertyNode_ptr _Instrument;
53     ssgSharedPtr<ssgTexture> resultTexture;
54     ssgSharedPtr<ssgTexture> wxEcho;
55     string last_switchKnob;
56     bool sim_init_done;
57     FGODGauge *odg;
58     list_of_SGWxRadarEcho radarEchoBuffer;
59 };
60
61 #endif // _INST_WXRADAR_HXX