]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/wxradar.hxx
Vivian MEAZZA:
[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, 59 Temple Place, Suite 330, Boston, MA 02111-1307, 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
30 class ssgTexture;
31 class FGODGauge;
32
33 class wxRadarBg : public SGSubsystem {
34
35
36 public:
37
38     wxRadarBg ( SGPropertyNode *node );
39     wxRadarBg ();
40     virtual ~wxRadarBg ();
41
42     virtual void init ();
43     virtual void update (double dt);
44
45 private:
46
47     string name;
48     int num;
49
50     SGPropertyNode_ptr _serviceable_node;
51     SGPropertyNode_ptr _Instrument;
52     ssgTexture *resultTexture;
53     ssgTexture *wxEcho;
54     string last_switchKnob;
55     bool sim_init_done;
56     FGODGauge *odg;
57     list_of_SGWxRadarEcho radarEchoBuffer;
58 };
59
60 #endif // _INST_WXRADAR_HXX