2007-09-09 23:22:14 +00:00
|
|
|
// groundradar.hxx - Background layer for the ATC radar.
|
|
|
|
//
|
2007-09-10 05:08:57 +00:00
|
|
|
// Copyright (C) 2007 Csaba Halasz.
|
2007-09-09 23:22:14 +00:00
|
|
|
//
|
|
|
|
// 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.
|
2008-06-01 18:08:01 +00:00
|
|
|
//
|
2007-09-09 23:22:14 +00:00
|
|
|
// 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
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __INST_GROUNDRADAR_HXX
|
|
|
|
#define __INST_GROUNDRADAR_HXX
|
|
|
|
|
|
|
|
#include <osg/ref_ptr>
|
|
|
|
#include <osg/Geometry>
|
|
|
|
#include <simgear/props/props.hxx>
|
|
|
|
#include "od_gauge.hxx"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Built-in layer for the atc radar.
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class GroundRadar : public SGPropertyChangeListener, public FGODGauge
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GroundRadar(SGPropertyNode* node);
|
|
|
|
virtual ~GroundRadar();
|
|
|
|
void updateTexture();
|
|
|
|
virtual void valueChanged(SGPropertyNode*);
|
|
|
|
|
|
|
|
protected:
|
2008-06-01 18:08:01 +00:00
|
|
|
void createTexture(const char* texture_name);
|
|
|
|
|
2007-09-09 23:22:14 +00:00
|
|
|
osg::ref_ptr<osg::Geometry> _geom;
|
|
|
|
SGPropertyNode_ptr _airport_node;
|
2008-06-01 18:08:01 +00:00
|
|
|
SGPropertyNode_ptr _range_node;
|
2007-09-09 23:22:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __INST_GROUNDRADAR_HXX
|