2005-10-08 11:55:18 +00:00
|
|
|
// Wx Radar background texture
|
|
|
|
//
|
|
|
|
// Written by Harald JOHNSEN, started May 2005.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2005 Harald JOHNSEN - hjohnsen@evc.net
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-10-08 11:55:18 +00:00
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef _INST_WXRADAR_HXX
|
|
|
|
#define _INST_WXRADAR_HXX
|
|
|
|
|
|
|
|
#include <simgear/props/props.hxx>
|
|
|
|
#include <simgear/structure/subsystem_mgr.hxx>
|
2005-10-16 17:31:06 +00:00
|
|
|
#include <simgear/environment/visual_enviro.hxx>
|
2006-02-08 10:25:56 +00:00
|
|
|
#include <simgear/structure/ssgSharedPtr.hxx>
|
2005-10-08 11:55:18 +00:00
|
|
|
|
|
|
|
class ssgTexture;
|
|
|
|
class FGODGauge;
|
|
|
|
|
|
|
|
class wxRadarBg : public SGSubsystem {
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
wxRadarBg ( SGPropertyNode *node );
|
|
|
|
wxRadarBg ();
|
|
|
|
virtual ~wxRadarBg ();
|
|
|
|
|
|
|
|
virtual void init ();
|
|
|
|
virtual void update (double dt);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
string name;
|
|
|
|
int num;
|
|
|
|
|
|
|
|
SGPropertyNode_ptr _serviceable_node;
|
|
|
|
SGPropertyNode_ptr _Instrument;
|
2006-02-08 10:25:56 +00:00
|
|
|
ssgSharedPtr<ssgTexture> resultTexture;
|
|
|
|
ssgSharedPtr<ssgTexture> wxEcho;
|
2005-10-08 11:55:18 +00:00
|
|
|
string last_switchKnob;
|
|
|
|
bool sim_init_done;
|
|
|
|
FGODGauge *odg;
|
2005-10-16 17:31:06 +00:00
|
|
|
list_of_SGWxRadarEcho radarEchoBuffer;
|
2005-10-08 11:55:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _INST_WXRADAR_HXX
|