2007-09-09 23:22:14 +00:00
|
|
|
// groundradar.cxx - 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.
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <osg/Node>
|
|
|
|
#include <osg/Geode>
|
|
|
|
#include <osg/Geometry>
|
|
|
|
#include <osg/Camera>
|
|
|
|
#include <osg/Texture2D>
|
|
|
|
#include <osgViewer/Viewer>
|
|
|
|
|
|
|
|
#include <osgText/Text>
|
|
|
|
#include <osgDB/Registry>
|
|
|
|
#include <osgDB/ReaderWriter>
|
|
|
|
|
|
|
|
#include <Main/fg_props.hxx>
|
|
|
|
#include <Main/globals.hxx>
|
|
|
|
#include <Main/renderer.hxx>
|
|
|
|
#include <Cockpit/panel.hxx>
|
|
|
|
#include <Airports/simple.hxx>
|
|
|
|
#include <Airports/runways.hxx>
|
|
|
|
#include <simgear/math/sg_geodesy.hxx>
|
|
|
|
|
|
|
|
#include "groundradar.hxx"
|
|
|
|
|
2008-06-01 18:08:01 +00:00
|
|
|
static const char* airport_source_node_name = "airport-id-source";
|
|
|
|
static const char* default_airport_node_name = "/sim/tower/airport-id";
|
|
|
|
static const char* texture_node_name = "texture-name";
|
|
|
|
static const char* default_texture_name = "Aircraft/Instruments/Textures/od_groundradar.rgb";
|
|
|
|
static const char* range_source_node_name = "range-source";
|
|
|
|
static const char* default_range_node_name = "/instrumentation/radar/range";
|
2007-09-09 23:22:14 +00:00
|
|
|
|
|
|
|
struct SingleFrameCallback : public osg::Camera::DrawCallback
|
|
|
|
{
|
|
|
|
virtual void operator () (const osg::Camera& camera) const
|
|
|
|
{
|
|
|
|
const_cast<osg::Camera&>(camera).setNodeMask(0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
GroundRadar::GroundRadar(SGPropertyNode *node)
|
|
|
|
{
|
2008-06-01 18:08:01 +00:00
|
|
|
_airport_node = fgGetNode(node->getStringValue(airport_source_node_name, default_airport_node_name), true);
|
|
|
|
_range_node = fgGetNode(node->getStringValue(range_source_node_name, default_range_node_name), true);
|
|
|
|
createTexture(node->getStringValue(texture_node_name, default_texture_name));
|
2007-09-09 23:22:14 +00:00
|
|
|
updateTexture();
|
|
|
|
_airport_node->addChangeListener(this);
|
2008-06-01 18:08:01 +00:00
|
|
|
_range_node->addChangeListener(this);
|
2007-09-09 23:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GroundRadar::~GroundRadar()
|
|
|
|
{
|
|
|
|
_airport_node->removeChangeListener(this);
|
2008-06-01 18:08:01 +00:00
|
|
|
_range_node->removeChangeListener(this);
|
2007-09-09 23:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GroundRadar::valueChanged(SGPropertyNode*)
|
|
|
|
{
|
2008-06-01 18:08:01 +00:00
|
|
|
updateTexture();
|
2007-09-09 23:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static osg::Vec3 fromPolar(double fi, double r)
|
|
|
|
{
|
|
|
|
return osg::Vec3(sin(fi * SGD_DEGREES_TO_RADIANS) * r, cos(fi * SGD_DEGREES_TO_RADIANS) * r, 0);
|
|
|
|
}
|
|
|
|
|
2008-06-01 18:08:01 +00:00
|
|
|
void GroundRadar::createTexture(const char* texture_name)
|
|
|
|
{
|
2007-09-09 23:22:14 +00:00
|
|
|
setSize(512);
|
|
|
|
allocRT();
|
2008-06-01 18:08:01 +00:00
|
|
|
|
2007-09-09 23:22:14 +00:00
|
|
|
osg::Vec4Array* colors = new osg::Vec4Array;
|
2008-06-01 18:08:01 +00:00
|
|
|
colors->push_back(osg::Vec4(0.0f, 0.5f, 0.0f, 1.0f));
|
|
|
|
colors->push_back(osg::Vec4(0.0f, 0.5f, 0.5f, 1.0f));
|
|
|
|
|
2007-09-09 23:22:14 +00:00
|
|
|
_geom = new osg::Geometry();
|
|
|
|
_geom->setColorArray(colors);
|
|
|
|
_geom->setColorBinding(osg::Geometry::BIND_PER_PRIMITIVE_SET);
|
|
|
|
_geom->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::QUADS, 0, 0));
|
|
|
|
_geom->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::QUADS, 0, 0));
|
|
|
|
|
2008-06-01 18:08:01 +00:00
|
|
|
osg::Geode* geode = new osg::Geode();
|
2007-09-09 23:22:14 +00:00
|
|
|
osg::StateSet* stateset = geode->getOrCreateStateSet();
|
|
|
|
stateset->setMode(GL_BLEND, osg::StateAttribute::OFF);
|
|
|
|
geode->addDrawable(_geom.get());
|
|
|
|
|
2008-06-01 18:08:01 +00:00
|
|
|
osg::Camera* camera = getCamera();
|
2007-09-09 23:22:14 +00:00
|
|
|
camera->setPostDrawCallback(new SingleFrameCallback());
|
|
|
|
camera->addChild(geode);
|
|
|
|
camera->setNodeMask(0);
|
|
|
|
camera->setProjectionMatrixAsOrtho2D(0, getTexture()->getTextureWidth(), 0, getTexture()->getTextureHeight());
|
|
|
|
|
|
|
|
// Texture in the 2D panel system
|
|
|
|
FGTextureManager::addTexture(texture_name, getTexture());
|
|
|
|
}
|
|
|
|
|
James Turner:
Convert FGRunway to be heap-based, and inherit FGPositioned. This is a large, ugly change, since FGRunway was essentially a plain struct, with no accessors or abstraction. This change adds various helpers and accessors to FGRunway, but doesn't change many places to use them - that will be a follow up series of patches. It's still a large patch, but outside of FGAirport and FGRunway, mostly mechanical search-and-replace.
An interesting part of this change is that reciprocal runways now exist as independent objects, rather than being created on the fly by the search methods. This simplifies some pieces of code that search for and iterate runways. For users who only want one 'end' of a runway, the new 'isReciprocal' predicate allows them to ignore the 'other' end. Current the only user of this is the 'ground-radar' ATC feature. If we had data on which runways are truly 'single-ended', it would now be trivial to use this in the airport loader to *not* create the reciprocal.
2008-09-11 08:38:09 +00:00
|
|
|
void GroundRadar::addRunwayVertices(const FGRunway* aRunway, double aTowerLat, double aTowerLon, double aScale, osg::Vec3Array* aVertices)
|
2008-08-14 18:13:39 +00:00
|
|
|
{
|
|
|
|
double az1, az2, dist_m;
|
James Turner:
Convert FGRunway to be heap-based, and inherit FGPositioned. This is a large, ugly change, since FGRunway was essentially a plain struct, with no accessors or abstraction. This change adds various helpers and accessors to FGRunway, but doesn't change many places to use them - that will be a follow up series of patches. It's still a large patch, but outside of FGAirport and FGRunway, mostly mechanical search-and-replace.
An interesting part of this change is that reciprocal runways now exist as independent objects, rather than being created on the fly by the search methods. This simplifies some pieces of code that search for and iterate runways. For users who only want one 'end' of a runway, the new 'isReciprocal' predicate allows them to ignore the 'other' end. Current the only user of this is the 'ground-radar' ATC feature. If we had data on which runways are truly 'single-ended', it would now be trivial to use this in the airport loader to *not* create the reciprocal.
2008-09-11 08:38:09 +00:00
|
|
|
geo_inverse_wgs_84(aTowerLat, aTowerLon, aRunway->latitude(), aRunway->longitude(), &az1, &az2, &dist_m);
|
2008-08-14 18:13:39 +00:00
|
|
|
|
|
|
|
osg::Vec3 center = fromPolar(az1, dist_m * aScale) + osg::Vec3(256, 256, 0);
|
James Turner:
Convert FGRunway to be heap-based, and inherit FGPositioned. This is a large, ugly change, since FGRunway was essentially a plain struct, with no accessors or abstraction. This change adds various helpers and accessors to FGRunway, but doesn't change many places to use them - that will be a follow up series of patches. It's still a large patch, but outside of FGAirport and FGRunway, mostly mechanical search-and-replace.
An interesting part of this change is that reciprocal runways now exist as independent objects, rather than being created on the fly by the search methods. This simplifies some pieces of code that search for and iterate runways. For users who only want one 'end' of a runway, the new 'isReciprocal' predicate allows them to ignore the 'other' end. Current the only user of this is the 'ground-radar' ATC feature. If we had data on which runways are truly 'single-ended', it would now be trivial to use this in the airport loader to *not* create the reciprocal.
2008-09-11 08:38:09 +00:00
|
|
|
osg::Vec3 leftcenter = fromPolar(aRunway->headingDeg(), aRunway->lengthM() * aScale / 2) + center;
|
|
|
|
osg::Vec3 lefttop = fromPolar(aRunway->headingDeg() - 90, aRunway->widthM() * aScale / 2) + leftcenter;
|
2008-08-14 18:13:39 +00:00
|
|
|
osg::Vec3 leftbottom = leftcenter * 2 - lefttop;
|
|
|
|
osg::Vec3 rightbottom = center * 2 - lefttop;
|
|
|
|
osg::Vec3 righttop = center * 2 - leftbottom;
|
|
|
|
|
|
|
|
aVertices->push_back(lefttop);
|
|
|
|
aVertices->push_back(leftbottom);
|
|
|
|
aVertices->push_back(rightbottom);
|
|
|
|
aVertices->push_back(righttop);
|
|
|
|
}
|
|
|
|
|
2007-09-09 23:22:14 +00:00
|
|
|
void GroundRadar::updateTexture()
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Vec3Array> rwy_vertices = new osg::Vec3Array;
|
|
|
|
osg::ref_ptr<osg::Vec3Array> taxi_vertices = new osg::Vec3Array;
|
|
|
|
|
|
|
|
const string airport_name = _airport_node->getStringValue();
|
|
|
|
|
|
|
|
const FGAirport* airport = fgFindAirportID(airport_name);
|
2008-06-01 18:08:01 +00:00
|
|
|
if (airport == 0)
|
|
|
|
return;
|
|
|
|
|
2007-09-09 23:22:14 +00:00
|
|
|
const SGGeod& tower_location = airport->getTowerLocation();
|
|
|
|
const double tower_lat = tower_location.getLatitudeDeg();
|
|
|
|
const double tower_lon = tower_location.getLongitudeDeg();
|
2008-06-01 18:08:01 +00:00
|
|
|
double scale = SG_METER_TO_NM * 200 / _range_node->getDoubleValue();
|
2008-08-14 18:13:39 +00:00
|
|
|
|
|
|
|
const FGAirport* apt = fgFindAirportID(airport_name);
|
|
|
|
assert(apt);
|
2007-09-09 23:22:14 +00:00
|
|
|
|
2008-08-14 18:13:39 +00:00
|
|
|
for (unsigned int i=0; i<apt->numRunways(); ++i)
|
2007-09-09 23:22:14 +00:00
|
|
|
{
|
James Turner:
Convert FGRunway to be heap-based, and inherit FGPositioned. This is a large, ugly change, since FGRunway was essentially a plain struct, with no accessors or abstraction. This change adds various helpers and accessors to FGRunway, but doesn't change many places to use them - that will be a follow up series of patches. It's still a large patch, but outside of FGAirport and FGRunway, mostly mechanical search-and-replace.
An interesting part of this change is that reciprocal runways now exist as independent objects, rather than being created on the fly by the search methods. This simplifies some pieces of code that search for and iterate runways. For users who only want one 'end' of a runway, the new 'isReciprocal' predicate allows them to ignore the 'other' end. Current the only user of this is the 'ground-radar' ATC feature. If we had data on which runways are truly 'single-ended', it would now be trivial to use this in the airport loader to *not* create the reciprocal.
2008-09-11 08:38:09 +00:00
|
|
|
FGRunway* runway(apt->getRunwayByIndex(i));
|
|
|
|
if (runway->isReciprocal()) continue;
|
|
|
|
|
2008-08-14 18:13:39 +00:00
|
|
|
addRunwayVertices(runway, tower_lat, tower_lon, scale, rwy_vertices.get());
|
2007-09-09 23:22:14 +00:00
|
|
|
}
|
2008-08-14 18:13:39 +00:00
|
|
|
|
|
|
|
for (unsigned int i=0; i<apt->numTaxiways(); ++i)
|
|
|
|
{
|
James Turner:
Convert FGRunway to be heap-based, and inherit FGPositioned. This is a large, ugly change, since FGRunway was essentially a plain struct, with no accessors or abstraction. This change adds various helpers and accessors to FGRunway, but doesn't change many places to use them - that will be a follow up series of patches. It's still a large patch, but outside of FGAirport and FGRunway, mostly mechanical search-and-replace.
An interesting part of this change is that reciprocal runways now exist as independent objects, rather than being created on the fly by the search methods. This simplifies some pieces of code that search for and iterate runways. For users who only want one 'end' of a runway, the new 'isReciprocal' predicate allows them to ignore the 'other' end. Current the only user of this is the 'ground-radar' ATC feature. If we had data on which runways are truly 'single-ended', it would now be trivial to use this in the airport loader to *not* create the reciprocal.
2008-09-11 08:38:09 +00:00
|
|
|
FGRunway* runway(apt->getTaxiwayByIndex(i));
|
2008-08-14 18:13:39 +00:00
|
|
|
addRunwayVertices(runway, tower_lat, tower_lon, scale, taxi_vertices.get());
|
|
|
|
}
|
|
|
|
|
2007-09-09 23:22:14 +00:00
|
|
|
osg::Vec3Array* vertices = new osg::Vec3Array(*taxi_vertices.get());
|
|
|
|
vertices->insert(vertices->end(), rwy_vertices->begin(), rwy_vertices->end());
|
|
|
|
_geom->setVertexArray(vertices);
|
|
|
|
osg::DrawArrays* taxi = dynamic_cast<osg::DrawArrays*>(_geom->getPrimitiveSet(0));
|
|
|
|
osg::DrawArrays* rwy = dynamic_cast<osg::DrawArrays*>(_geom->getPrimitiveSet(1));
|
|
|
|
taxi->setCount(taxi_vertices->size());
|
|
|
|
rwy->setFirst(taxi_vertices->size());
|
|
|
|
rwy->setCount(rwy_vertices->size());
|
2008-06-01 18:08:01 +00:00
|
|
|
|
2007-09-09 23:22:14 +00:00
|
|
|
getCamera()->setNodeMask(0xffffffff);
|
|
|
|
}
|
|
|
|
|
|
|
|
// end of GroundRadar.cxx
|