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