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