2015-11-03 21:28:36 +00:00
|
|
|
// BaseDiagram.cxx - part of GUI launcher using Qt5
|
|
|
|
//
|
|
|
|
// Written by James Turner, started December 2014.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2014 James Turner <zakalawe@mac.com>
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
#include "BaseDiagram.hxx"
|
|
|
|
|
|
|
|
#include <limits>
|
|
|
|
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QVector2D>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
|
2015-11-10 22:54:57 +00:00
|
|
|
#include <Navaids/navrecord.hxx>
|
|
|
|
#include <Navaids/positioned.hxx>
|
|
|
|
#include <Airports/airport.hxx>
|
|
|
|
|
2015-11-03 21:28:36 +00:00
|
|
|
/* equatorial and polar earth radius */
|
|
|
|
const float rec = 6378137; // earth radius, equator (?)
|
|
|
|
const float rpol = 6356752.314f; // earth radius, polar (?)
|
|
|
|
|
|
|
|
//Returns Earth radius at a given latitude (Ellipsoide equation with two equal axis)
|
|
|
|
static float earth_radius_lat( float lat )
|
|
|
|
{
|
|
|
|
double a = cos(lat)/rec;
|
|
|
|
double b = sin(lat)/rpol;
|
|
|
|
return 1.0f / sqrt( a * a + b * b );
|
|
|
|
}
|
|
|
|
|
|
|
|
BaseDiagram::BaseDiagram(QWidget* pr) :
|
|
|
|
QWidget(pr),
|
|
|
|
m_autoScalePan(true),
|
|
|
|
m_wheelAngleDeltaAccumulator(0)
|
|
|
|
{
|
|
|
|
setSizePolicy(QSizePolicy::MinimumExpanding,
|
|
|
|
QSizePolicy::MinimumExpanding);
|
|
|
|
setMinimumSize(100, 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
QTransform BaseDiagram::transform() const
|
|
|
|
{
|
|
|
|
QTransform t;
|
|
|
|
t.translate(width() / 2, height() / 2); // center projection origin in the widget
|
|
|
|
t.scale(m_scale, m_scale);
|
|
|
|
|
|
|
|
// apply any pan offset that exists
|
|
|
|
t.translate(m_panOffset.x(), m_panOffset.y());
|
|
|
|
// center the bounding box (may not be at the origin)
|
|
|
|
t.translate(-m_bounds.center().x(), -m_bounds.center().y());
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
2015-11-12 00:10:06 +00:00
|
|
|
void BaseDiagram::clearIgnoredNavaids()
|
|
|
|
{
|
|
|
|
m_ignored.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseDiagram::addIgnoredNavaid(FGPositionedRef pos)
|
|
|
|
{
|
|
|
|
if (isNavaidIgnored(pos))
|
|
|
|
return;
|
|
|
|
m_ignored.push_back(pos);
|
|
|
|
}
|
|
|
|
|
2015-11-10 22:54:57 +00:00
|
|
|
void BaseDiagram::extendRect(QRectF &r, const QPointF &p)
|
|
|
|
{
|
|
|
|
if (p.x() < r.left()) {
|
|
|
|
r.setLeft(p.x());
|
|
|
|
} else if (p.x() > r.right()) {
|
|
|
|
r.setRight(p.x());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p.y() < r.top()) {
|
|
|
|
r.setTop(p.y());
|
|
|
|
} else if (p.y() > r.bottom()) {
|
|
|
|
r.setBottom(p.y());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-03 21:28:36 +00:00
|
|
|
void BaseDiagram::paintEvent(QPaintEvent* pe)
|
|
|
|
{
|
|
|
|
QPainter p(this);
|
|
|
|
p.setRenderHints(QPainter::Antialiasing);
|
|
|
|
p.fillRect(rect(), QColor(0x3f, 0x3f, 0x3f));
|
|
|
|
|
|
|
|
if (m_autoScalePan) {
|
|
|
|
// fit bounds within our available space, allowing for a margin
|
|
|
|
const int MARGIN = 32; // pixels
|
|
|
|
double ratioInX = (width() - MARGIN * 2) / m_bounds.width();
|
|
|
|
double ratioInY = (height() - MARGIN * 2) / m_bounds.height();
|
|
|
|
m_scale = std::min(ratioInX, ratioInY);
|
|
|
|
}
|
|
|
|
|
|
|
|
QTransform t(transform());
|
|
|
|
p.setTransform(t);
|
|
|
|
|
2015-11-10 22:54:57 +00:00
|
|
|
paintNavaids(&p);
|
|
|
|
|
2015-11-03 21:28:36 +00:00
|
|
|
paintContents(&p);
|
|
|
|
}
|
|
|
|
|
2015-11-14 16:46:28 +00:00
|
|
|
void BaseDiagram::paintAirplaneIcon(QPainter* painter, const SGGeod& geod, int headingDeg)
|
|
|
|
{
|
|
|
|
QPointF pos = project(geod);
|
|
|
|
QPixmap pix(":/airplane-icon");
|
|
|
|
pos = painter->transform().map(pos);
|
|
|
|
painter->resetTransform();
|
|
|
|
painter->translate(pos.x(), pos.y());
|
|
|
|
painter->rotate(headingDeg);
|
|
|
|
|
|
|
|
painter->setRenderHint(QPainter::SmoothPixmapTransform, true);
|
|
|
|
QRect airplaneIconRect = pix.rect();
|
|
|
|
airplaneIconRect.moveCenter(QPoint(0,0));
|
|
|
|
painter->drawPixmap(airplaneIconRect, pix);
|
|
|
|
}
|
|
|
|
|
2015-11-10 22:54:57 +00:00
|
|
|
class MapFilter : public FGPositioned::TypeFilter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MapFilter()
|
|
|
|
{
|
|
|
|
// addType(FGPositioned::FIX);
|
|
|
|
addType(FGPositioned::AIRPORT);
|
|
|
|
addType(FGPositioned::NDB);
|
|
|
|
addType(FGPositioned::VOR);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool pass(FGPositioned* aPos) const
|
|
|
|
{
|
|
|
|
bool ok = TypeFilter::pass(aPos);
|
|
|
|
if (ok && (aPos->type() == FGPositioned::FIX)) {
|
|
|
|
// ignore fixes which end in digits
|
|
|
|
if (aPos->ident().length() > 4 && isdigit(aPos->ident()[3]) && isdigit(aPos->ident()[4])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void BaseDiagram::paintNavaids(QPainter* painter)
|
|
|
|
{
|
|
|
|
QTransform xf = painter->transform();
|
|
|
|
painter->setTransform(QTransform()); // reset to identity
|
|
|
|
QTransform invT = xf.inverted();
|
|
|
|
SGGeod topLeft = unproject(invT.map(QPointF(0,0)), m_projectionCenter);
|
|
|
|
|
|
|
|
double minRunwayLengthFt = (16 / m_scale) * SG_METER_TO_FEET;
|
|
|
|
// add 10nm fudge factor
|
|
|
|
double drawRangeNm = SGGeodesy::distanceNm(m_projectionCenter, topLeft) + 10.0;
|
|
|
|
//qDebug() << "draw range computed as:" << drawRangeNm;
|
|
|
|
|
|
|
|
MapFilter f;
|
|
|
|
FGPositionedList items = FGPositioned::findWithinRange(m_projectionCenter, drawRangeNm, &f);
|
|
|
|
|
|
|
|
// pass 0 - icons
|
|
|
|
|
|
|
|
FGPositionedList::const_iterator it;
|
|
|
|
for (it = items.begin(); it != items.end(); ++it) {
|
2015-11-12 00:10:06 +00:00
|
|
|
FGPositionedRef pos(*it);
|
2015-11-10 22:54:57 +00:00
|
|
|
bool drawAsIcon = true;
|
2015-11-12 00:10:06 +00:00
|
|
|
if (isNavaidIgnored(pos))
|
|
|
|
continue;
|
2015-11-10 22:54:57 +00:00
|
|
|
|
2015-11-12 00:10:06 +00:00
|
|
|
FGPositioned::Type ty(pos->type());
|
|
|
|
if (ty == FGPositioned::AIRPORT) {
|
|
|
|
FGAirport* apt = static_cast<FGAirport*>(pos.ptr());
|
2015-11-10 22:54:57 +00:00
|
|
|
if (apt->hasHardRunwayOfLengthFt(minRunwayLengthFt)) {
|
|
|
|
|
|
|
|
drawAsIcon = false;
|
|
|
|
painter->setTransform(xf);
|
|
|
|
QVector<QLineF> lines = projectAirportRuwaysWithCenter(apt, m_projectionCenter);
|
|
|
|
|
|
|
|
QPen pen(QColor(0x03, 0x83, 0xbf), 8);
|
|
|
|
pen.setCosmetic(true);
|
|
|
|
painter->setPen(pen);
|
|
|
|
painter->drawLines(lines);
|
|
|
|
|
|
|
|
QPen linePen(Qt::white, 2);
|
|
|
|
linePen.setCosmetic(true);
|
|
|
|
painter->setPen(linePen);
|
|
|
|
painter->drawLines(lines);
|
|
|
|
|
|
|
|
painter->resetTransform();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (drawAsIcon) {
|
2015-11-12 00:10:06 +00:00
|
|
|
QPixmap pm = iconForPositioned(pos, false);
|
|
|
|
QPointF loc = xf.map(project(pos->geod()));
|
|
|
|
|
|
|
|
QPointF iconLoc = loc - QPointF(pm.width() >> 1, pm.height() >> 1);
|
|
|
|
painter->drawPixmap(iconLoc, pm);
|
|
|
|
|
|
|
|
painter->setPen(QColor(0x03, 0x83, 0xbf));
|
|
|
|
|
|
|
|
QString label;
|
|
|
|
if (FGAirport::isAirportType(pos.ptr())) {
|
|
|
|
label = QString::fromStdString((*it)->name());
|
|
|
|
} else {
|
|
|
|
label = QString::fromStdString((*it)->ident());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ty == FGPositioned::NDB) {
|
|
|
|
FGNavRecord* nav = static_cast<FGNavRecord*>(pos.ptr());
|
|
|
|
label.append("\n").append(QString::number(nav->get_freq() / 100));
|
|
|
|
} else if (ty == FGPositioned::VOR) {
|
|
|
|
FGNavRecord* nav = static_cast<FGNavRecord*>(pos.ptr());
|
|
|
|
label.append("\n").append(QString::number(nav->get_freq() / 100.0, 'f', 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect labelBox(loc.x() + (pm.width()/2) + 4, loc.y() - 50, 100, 100);
|
|
|
|
painter->drawText(labelBox, Qt::AlignVCenter | Qt::AlignLeft | Qt::TextWordWrap,
|
|
|
|
label);
|
2015-11-10 22:54:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// restore transform
|
|
|
|
painter->setTransform(xf);
|
|
|
|
}
|
|
|
|
|
2015-11-12 00:10:06 +00:00
|
|
|
bool BaseDiagram::isNavaidIgnored(const FGPositionedRef &pos) const
|
|
|
|
{
|
|
|
|
return m_ignored.contains(pos);
|
|
|
|
}
|
|
|
|
|
2015-11-03 21:28:36 +00:00
|
|
|
void BaseDiagram::mousePressEvent(QMouseEvent *me)
|
|
|
|
{
|
|
|
|
m_lastMousePos = me->pos();
|
|
|
|
m_didPan = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseDiagram::mouseMoveEvent(QMouseEvent *me)
|
|
|
|
{
|
|
|
|
m_autoScalePan = false;
|
|
|
|
|
|
|
|
QPointF delta = me->pos() - m_lastMousePos;
|
|
|
|
m_lastMousePos = me->pos();
|
|
|
|
|
|
|
|
// offset is stored in metres so we don't have to modify it when
|
|
|
|
// zooming
|
|
|
|
m_panOffset += (delta / m_scale);
|
|
|
|
m_didPan = true;
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
int intSign(int v)
|
|
|
|
{
|
|
|
|
return (v == 0) ? 0 : (v < 0) ? -1 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseDiagram::wheelEvent(QWheelEvent *we)
|
|
|
|
{
|
|
|
|
m_autoScalePan = false;
|
|
|
|
|
|
|
|
int delta = we->angleDelta().y();
|
2015-11-06 05:47:49 +00:00
|
|
|
if (delta == 0)
|
|
|
|
return;
|
|
|
|
|
2015-11-03 21:28:36 +00:00
|
|
|
if (intSign(m_wheelAngleDeltaAccumulator) != intSign(delta)) {
|
|
|
|
m_wheelAngleDeltaAccumulator = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_wheelAngleDeltaAccumulator += delta;
|
|
|
|
if (m_wheelAngleDeltaAccumulator > 120) {
|
|
|
|
m_wheelAngleDeltaAccumulator = 0;
|
|
|
|
m_scale *= 2.0;
|
2015-11-06 05:47:49 +00:00
|
|
|
} else if (m_wheelAngleDeltaAccumulator < -120) {
|
2015-11-03 21:28:36 +00:00
|
|
|
m_wheelAngleDeltaAccumulator = 0;
|
|
|
|
m_scale *= 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2015-11-10 22:54:57 +00:00
|
|
|
void BaseDiagram::paintContents(QPainter* painter)
|
2015-11-03 21:28:36 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseDiagram::recomputeBounds(bool resetZoom)
|
|
|
|
{
|
|
|
|
m_bounds = QRectF();
|
|
|
|
doComputeBounds();
|
|
|
|
|
|
|
|
if (resetZoom) {
|
|
|
|
m_autoScalePan = true;
|
|
|
|
m_scale = 1.0;
|
|
|
|
m_panOffset = QPointF();
|
|
|
|
}
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseDiagram::doComputeBounds()
|
|
|
|
{
|
|
|
|
// no-op in the base class
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseDiagram::extendBounds(const QPointF& p)
|
|
|
|
{
|
2015-11-10 22:54:57 +00:00
|
|
|
extendRect(m_bounds, p);
|
2015-11-03 21:28:36 +00:00
|
|
|
}
|
|
|
|
|
2015-11-10 22:54:57 +00:00
|
|
|
QPointF BaseDiagram::project(const SGGeod& geod, const SGGeod& center)
|
2015-11-03 21:28:36 +00:00
|
|
|
{
|
|
|
|
double r = earth_radius_lat(geod.getLatitudeRad());
|
2015-11-10 22:54:57 +00:00
|
|
|
double ref_lat = center.getLatitudeRad(),
|
|
|
|
ref_lon = center.getLongitudeRad(),
|
2015-11-03 21:28:36 +00:00
|
|
|
lat = geod.getLatitudeRad(),
|
|
|
|
lon = geod.getLongitudeRad(),
|
|
|
|
lonDiff = lon - ref_lon;
|
|
|
|
|
|
|
|
double c = acos( sin(ref_lat) * sin(lat) + cos(ref_lat) * cos(lat) * cos(lonDiff) );
|
|
|
|
if (c == 0.0) {
|
|
|
|
// angular distance from center is 0
|
|
|
|
return QPointF(0.0, 0.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
double k = c / sin(c);
|
|
|
|
double x, y;
|
|
|
|
if (ref_lat == (90 * SG_DEGREES_TO_RADIANS))
|
|
|
|
{
|
|
|
|
x = (SGD_PI / 2 - lat) * sin(lonDiff);
|
|
|
|
y = -(SGD_PI / 2 - lat) * cos(lonDiff);
|
|
|
|
}
|
|
|
|
else if (ref_lat == -(90 * SG_DEGREES_TO_RADIANS))
|
|
|
|
{
|
|
|
|
x = (SGD_PI / 2 + lat) * sin(lonDiff);
|
|
|
|
y = (SGD_PI / 2 + lat) * cos(lonDiff);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x = k * cos(lat) * sin(lonDiff);
|
|
|
|
y = k * ( cos(ref_lat) * sin(lat) - sin(ref_lat) * cos(lat) * cos(lonDiff) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return QPointF(x, -y) * r;
|
|
|
|
}
|
2015-11-10 22:54:57 +00:00
|
|
|
|
|
|
|
SGGeod BaseDiagram::unproject(const QPointF& xy, const SGGeod& center)
|
|
|
|
{
|
|
|
|
double r = earth_radius_lat(center.getLatitudeRad());
|
|
|
|
double lat = 0,
|
|
|
|
lon = 0,
|
|
|
|
ref_lat = center.getLatitudeRad(),
|
|
|
|
ref_lon = center.getLongitudeRad(),
|
|
|
|
rho = QVector2D(xy).length(),
|
|
|
|
c = rho/r;
|
|
|
|
|
|
|
|
if (rho == 0) {
|
|
|
|
return center;
|
|
|
|
}
|
|
|
|
|
|
|
|
double x = xy.x(), y = xy.y();
|
|
|
|
lat = asin( cos(c) * sin(ref_lat) + (y * sin(c) * cos(ref_lat)) / rho);
|
|
|
|
|
|
|
|
if (ref_lat == (90 * SG_DEGREES_TO_RADIANS)) // north pole
|
|
|
|
{
|
|
|
|
lon = ref_lon + atan(-x/y);
|
|
|
|
}
|
|
|
|
else if (ref_lat == -(90 * SG_DEGREES_TO_RADIANS)) // south pole
|
|
|
|
{
|
|
|
|
lon = ref_lon + atan(x/y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lon = ref_lon + atan(x* sin(c) / (rho * cos(ref_lat) * cos(c) - y * sin(ref_lat) * sin(c)));
|
|
|
|
}
|
|
|
|
|
|
|
|
return SGGeod::fromRad(lon, lat);
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF BaseDiagram::project(const SGGeod& geod) const
|
|
|
|
{
|
|
|
|
return project(geod, m_projectionCenter);
|
|
|
|
}
|
|
|
|
|
2015-11-12 00:10:06 +00:00
|
|
|
QPixmap BaseDiagram::iconForPositioned(const FGPositionedRef& pos, bool small)
|
2015-11-10 22:54:57 +00:00
|
|
|
{
|
|
|
|
// if airport type, check towered or untowered
|
|
|
|
|
|
|
|
bool isTowered = false;
|
|
|
|
if (FGAirport::isAirportType(pos)) {
|
|
|
|
FGAirport* apt = static_cast<FGAirport*>(pos.ptr());
|
|
|
|
isTowered = apt->hasTower();
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (pos->type()) {
|
|
|
|
case FGPositioned::VOR:
|
2015-11-12 00:10:06 +00:00
|
|
|
if (static_cast<FGNavRecord*>(pos.ptr())->isVORTAC())
|
|
|
|
return QPixmap(":/vortac-icon");
|
2015-11-10 22:54:57 +00:00
|
|
|
|
|
|
|
if (static_cast<FGNavRecord*>(pos.ptr())->hasDME())
|
|
|
|
return QPixmap(":/vor-dme-icon");
|
|
|
|
|
|
|
|
return QPixmap(":/vor-icon");
|
|
|
|
|
|
|
|
case FGPositioned::AIRPORT:
|
|
|
|
return iconForAirport(static_cast<FGAirport*>(pos.ptr()));
|
|
|
|
|
|
|
|
case FGPositioned::HELIPORT:
|
|
|
|
return QPixmap(":/heliport-icon");
|
|
|
|
case FGPositioned::SEAPORT:
|
|
|
|
return QPixmap(isTowered ? ":/seaport-tower-icon" : ":/seaport-icon");
|
|
|
|
case FGPositioned::NDB:
|
2015-11-12 00:10:06 +00:00
|
|
|
return QPixmap(small ? ":/ndb-small-icon" : ":/ndb-icon");
|
2015-11-10 22:54:57 +00:00
|
|
|
case FGPositioned::FIX:
|
|
|
|
return QPixmap(":/waypoint-icon");
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return QPixmap();
|
|
|
|
}
|
|
|
|
|
|
|
|
QPixmap BaseDiagram::iconForAirport(FGAirport* apt)
|
|
|
|
{
|
|
|
|
if (!apt->hasHardRunwayOfLengthFt(1500)) {
|
|
|
|
return QPixmap(apt->hasTower() ? ":/airport-tower-icon" : ":/airport-icon");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (apt->hasHardRunwayOfLengthFt(8500)) {
|
|
|
|
QPixmap result(32, 32);
|
|
|
|
result.fill(Qt::transparent);
|
|
|
|
{
|
|
|
|
QPainter p(&result);
|
|
|
|
p.setRenderHint(QPainter::Antialiasing, true);
|
|
|
|
QRectF b = result.rect().adjusted(4, 4, -4, -4);
|
|
|
|
QVector<QLineF> lines = projectAirportRuwaysIntoRect(apt, b);
|
|
|
|
|
|
|
|
p.setPen(QPen(QColor(0x03, 0x83, 0xbf), 8));
|
|
|
|
p.drawLines(lines);
|
|
|
|
|
|
|
|
p.setPen(QPen(Qt::white, 2));
|
|
|
|
p.drawLines(lines);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
QPixmap result(25, 25);
|
|
|
|
result.fill(Qt::transparent);
|
|
|
|
|
|
|
|
{
|
|
|
|
QPainter p(&result);
|
|
|
|
p.setRenderHint(QPainter::Antialiasing, true);
|
|
|
|
p.setPen(Qt::NoPen);
|
|
|
|
|
|
|
|
p.setBrush(apt->hasTower() ? QColor(0x03, 0x83, 0xbf) :
|
|
|
|
QColor(0x9b, 0x5d, 0xa2));
|
|
|
|
p.drawEllipse(QPointF(13, 13), 10, 10);
|
|
|
|
|
|
|
|
FGRunwayRef r = apt->longestRunway();
|
|
|
|
|
|
|
|
p.setPen(QPen(Qt::white, 2));
|
|
|
|
p.translate(13, 13);
|
|
|
|
p.rotate(r->headingDeg());
|
|
|
|
p.drawLine(0, -8, 0, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
QVector<QLineF> BaseDiagram::projectAirportRuwaysWithCenter(FGAirportRef apt, const SGGeod& c)
|
|
|
|
{
|
|
|
|
QVector<QLineF> r;
|
|
|
|
|
|
|
|
const FGRunwayList& runways(apt->getRunwaysWithoutReciprocals());
|
|
|
|
FGRunwayList::const_iterator it;
|
|
|
|
|
|
|
|
for (it = runways.begin(); it != runways.end(); ++it) {
|
|
|
|
FGRunwayRef rwy = *it;
|
|
|
|
QPointF p1 = project(rwy->geod(), c);
|
|
|
|
QPointF p2 = project(rwy->end(), c);
|
|
|
|
r.append(QLineF(p1, p2));
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
QVector<QLineF> BaseDiagram::projectAirportRuwaysIntoRect(FGAirportRef apt, const QRectF &bounds)
|
|
|
|
{
|
|
|
|
QVector<QLineF> r = projectAirportRuwaysWithCenter(apt, apt->geod());
|
|
|
|
|
|
|
|
QRectF extent;
|
|
|
|
Q_FOREACH(const QLineF& l, r) {
|
|
|
|
extendRect(extent, l.p1());
|
|
|
|
extendRect(extent, l.p2());
|
|
|
|
}
|
|
|
|
|
|
|
|
// find constraining scale factor
|
|
|
|
double ratioInX = bounds.width() / extent.width();
|
|
|
|
double ratioInY = bounds.height() / extent.height();
|
|
|
|
|
|
|
|
QTransform t;
|
|
|
|
t.translate(bounds.left(), bounds.top());
|
|
|
|
t.scale(std::min(ratioInX, ratioInY),
|
|
|
|
std::min(ratioInX, ratioInY));
|
|
|
|
t.translate(-extent.left(), -extent.top()); // move unscaled to 0,0
|
|
|
|
|
|
|
|
for (int i=0; i<r.size(); ++i) {
|
|
|
|
r[i] = t.map(r[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|