2010-06-25 19:38:03 +02:00
|
|
|
|
/**
|
|
|
|
|
******************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* @file pfdgadgetwidget.cpp
|
|
|
|
|
* @author Edouard Lafargue Copyright (C) 2010.
|
2010-07-16 18:01:53 +02:00
|
|
|
|
* @addtogroup GCSPlugins GCS Plugins
|
2010-06-25 19:38:03 +02:00
|
|
|
|
* @{
|
2010-07-16 18:01:53 +02:00
|
|
|
|
* @addtogroup OPMapPlugin Primary Flight Display Plugin
|
|
|
|
|
* @{
|
|
|
|
|
* @brief The Primary Flight Display Gadget
|
2010-06-25 19:38:03 +02: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 3 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.,
|
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "pfdgadgetwidget.h"
|
2010-07-18 00:47:42 +02:00
|
|
|
|
#include <utils/stylehelper.h>
|
2010-06-25 19:38:03 +02:00
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <QDebug>
|
2010-08-06 00:12:19 +02:00
|
|
|
|
#include <QPainter>
|
|
|
|
|
#include <QtOpenGL/QGLWidget>
|
2010-07-01 00:28:07 +02:00
|
|
|
|
#include <cmath>
|
2010-06-25 19:38:03 +02:00
|
|
|
|
|
|
|
|
|
PFDGadgetWidget::PFDGadgetWidget(QWidget *parent) : QGraphicsView(parent)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
setMinimumSize(64,64);
|
|
|
|
|
setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
|
|
|
|
|
setScene(new QGraphicsScene(this));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
// setRenderHint(QPainter::SmoothPixmapTransform);
|
|
|
|
|
|
|
|
|
|
setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
|
|
|
|
|
//setRenderHints(QPainter::Antialiasing | QPainter::TextAntialiasing);
|
2010-07-20 14:50:47 +02:00
|
|
|
|
//setRenderHints(QPainter::TextAntialiasing);
|
2010-08-06 00:12:19 +02:00
|
|
|
|
//setRenderHints(QPainter::HighQualityAntialiasing);
|
2010-06-25 19:38:03 +02:00
|
|
|
|
|
|
|
|
|
m_renderer = new QSvgRenderer();
|
|
|
|
|
|
|
|
|
|
attitudeObj = NULL;
|
|
|
|
|
headingObj = NULL;
|
2010-07-12 00:04:11 +02:00
|
|
|
|
gcsBatteryObj = NULL;
|
2010-08-31 18:56:17 +02:00
|
|
|
|
gpsObj = NULL;
|
2010-06-25 19:38:03 +02:00
|
|
|
|
compassBandWidth = 0;
|
2010-07-14 14:36:22 +02:00
|
|
|
|
pfdError = true;
|
2010-08-06 00:12:19 +02:00
|
|
|
|
hqFonts = false;
|
2010-07-14 14:36:22 +02:00
|
|
|
|
rollTarget = 0;
|
|
|
|
|
rollValue = 0;
|
|
|
|
|
pitchTarget = 0;
|
|
|
|
|
pitchValue = 0;
|
|
|
|
|
headingTarget = 0;
|
|
|
|
|
headingValue = 0;
|
|
|
|
|
groundspeedTarget = 0;
|
|
|
|
|
groundspeedValue = 0;
|
|
|
|
|
altitudeTarget = 0;
|
|
|
|
|
altitudeValue = 0;
|
|
|
|
|
|
2010-06-25 19:38:03 +02:00
|
|
|
|
// This timer mechanism makes needles rotate smoothly
|
2010-07-01 16:17:46 +02:00
|
|
|
|
connect(&dialTimer, SIGNAL(timeout()), this, SLOT(moveNeedles()));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
dialTimer.start(30);
|
|
|
|
|
|
|
|
|
|
connect(&skyDialTimer, SIGNAL(timeout()), this, SLOT(moveSky()));
|
|
|
|
|
skyDialTimer.start(30);
|
2010-06-25 19:38:03 +02:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PFDGadgetWidget::~PFDGadgetWidget()
|
|
|
|
|
{
|
2010-08-06 00:12:19 +02:00
|
|
|
|
skyDialTimer.stop();
|
|
|
|
|
dialTimer.stop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Enables/Disables OpenGL
|
|
|
|
|
*/
|
|
|
|
|
void PFDGadgetWidget::enableOpenGL(bool flag) {
|
|
|
|
|
if (flag) {
|
|
|
|
|
setViewport(new QGLWidget(QGLFormat(QGL::SampleBuffers)));
|
|
|
|
|
} else {
|
|
|
|
|
setViewport(new QWidget);
|
|
|
|
|
}
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Connects the widget to the relevant UAVObjects
|
|
|
|
|
|
2010-07-14 14:36:22 +02:00
|
|
|
|
Should only be called after the PFD artwork is loaded.
|
|
|
|
|
We want: AttitudeActual, FlightBattery, Location.
|
2010-06-25 19:38:03 +02:00
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
void PFDGadgetWidget::connectNeedles() {
|
|
|
|
|
if (attitudeObj != NULL)
|
|
|
|
|
disconnect(attitudeObj,SIGNAL(objectUpdated(UAVObject*)),this,SLOT(updateAttitude(UAVObject*)));
|
|
|
|
|
|
|
|
|
|
if (headingObj != NULL)
|
|
|
|
|
disconnect(headingObj,SIGNAL(objectUpdated(UAVObject*)),this,SLOT(updateHeading(UAVObject*)));
|
|
|
|
|
|
2010-07-11 23:21:48 +02:00
|
|
|
|
if (gcsBatteryObj != NULL)
|
|
|
|
|
disconnect(gcsBatteryObj,SIGNAL(objectUpdated(UAVObject*)),this,SLOT(updateBattery(UAVObject*)));
|
|
|
|
|
|
2010-08-31 18:56:17 +02:00
|
|
|
|
if (gpsObj != NULL)
|
|
|
|
|
disconnect(gpsObj,SIGNAL(objectUpdated(UAVObject*)), this, SLOT(updateGPS(UAVObject*)));
|
|
|
|
|
|
2010-07-12 00:04:11 +02:00
|
|
|
|
// Safeguard: if artwork did not load properly, don't go further
|
|
|
|
|
if (pfdError)
|
|
|
|
|
return;
|
2010-06-25 19:38:03 +02:00
|
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
|
|
|
|
UAVObjectManager *objManager = pm->getObject<UAVObjectManager>();
|
|
|
|
|
|
2010-09-04 05:20:40 +02:00
|
|
|
|
airspeedObj = dynamic_cast<UAVDataObject*>(objManager->getObject("PositionActual"));
|
|
|
|
|
if (attitudeObj != NULL ) {
|
|
|
|
|
connect(airspeedObj, SIGNAL(objectUpdated(UAVObject*)), this, SLOT(updateAirspeed(UAVObject*)));
|
|
|
|
|
} else {
|
|
|
|
|
qDebug() << "Error: Object is unknown (PositionActual).";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
altitudeObj = dynamic_cast<UAVDataObject*>(objManager->getObject("PositionActual"));
|
|
|
|
|
if (attitudeObj != NULL ) {
|
|
|
|
|
connect(altitudeObj, SIGNAL(objectUpdated(UAVObject*)), this, SLOT(updateAltitude(UAVObject*)));
|
|
|
|
|
} else {
|
|
|
|
|
qDebug() << "Error: Object is unknown (PositionActual).";
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-25 19:38:03 +02:00
|
|
|
|
attitudeObj = dynamic_cast<UAVDataObject*>(objManager->getObject("AttitudeActual"));
|
|
|
|
|
if (attitudeObj != NULL ) {
|
|
|
|
|
connect(attitudeObj, SIGNAL(objectUpdated(UAVObject*)), this, SLOT(updateAttitude(UAVObject*)));
|
|
|
|
|
} else {
|
2010-07-10 09:15:37 +02:00
|
|
|
|
qDebug() << "Error: Object is unknown (AttitudeActual).";
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
headingObj = dynamic_cast<UAVDataObject*>(objManager->getObject("PositionActual"));
|
|
|
|
|
if (headingObj != NULL ) {
|
|
|
|
|
connect(headingObj, SIGNAL(objectUpdated(UAVObject*)), this, SLOT(updateHeading(UAVObject*)));
|
|
|
|
|
} else {
|
2010-07-10 09:15:37 +02:00
|
|
|
|
qDebug() << "Error: Object is unknown (PositionActual).";
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-08-31 18:56:17 +02:00
|
|
|
|
if (gcsGPSStats) {
|
|
|
|
|
gpsObj = dynamic_cast<UAVDataObject*>(objManager->getObject("GPSPosition"));
|
|
|
|
|
if (gpsObj != NULL) {
|
|
|
|
|
connect(gpsObj, SIGNAL(objectUpdated(UAVObject*)), this, SLOT(updateGPS(UAVObject*)));
|
|
|
|
|
} else {
|
|
|
|
|
qDebug() << "Error: Object is unknown (GPSPosition).";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-14 14:36:22 +02:00
|
|
|
|
if (gcsTelemetryArrow || gcsTelemetryStats ) {
|
|
|
|
|
// Only register if the PFD wants link stats/status
|
|
|
|
|
gcsTelemetryObj = dynamic_cast<UAVDataObject*>(objManager->getObject("GCSTelemetryStats"));
|
|
|
|
|
if (gcsTelemetryObj != NULL ) {
|
|
|
|
|
connect(gcsTelemetryObj, SIGNAL(objectUpdated(UAVObject*)), this, SLOT(updateLinkStatus(UAVObject*)));
|
|
|
|
|
} else {
|
|
|
|
|
qDebug() << "Error: Object is unknown (GCSTelemetryStats).";
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-07-10 00:30:49 +02:00
|
|
|
|
|
2010-07-14 14:36:22 +02:00
|
|
|
|
if (gcsBatteryStats) { // Only register if the PFD wants battery display
|
|
|
|
|
gcsBatteryObj = dynamic_cast<UAVDataObject*>(objManager->getObject("FlightBatteryState"));
|
|
|
|
|
if (gcsBatteryObj != NULL ) {
|
|
|
|
|
connect(gcsBatteryObj, SIGNAL(objectUpdated(UAVObject*)), this, SLOT(updateBattery(UAVObject*)));
|
|
|
|
|
} else {
|
|
|
|
|
qDebug() << "Error: Object is unknown (FlightBatteryState).";
|
|
|
|
|
}
|
2010-07-11 23:21:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-07-10 00:30:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-08-31 18:56:17 +02:00
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Updates the GPS stats
|
|
|
|
|
*/
|
|
|
|
|
void PFDGadgetWidget::updateGPS(UAVObject *object1) {
|
|
|
|
|
UAVObjectField* field = object1->getField(QString("Satellites"));
|
2010-09-04 18:42:56 +02:00
|
|
|
|
UAVObjectField* field1 = object1->getField(QString("PDOP"));
|
2010-08-31 18:56:17 +02:00
|
|
|
|
if (field && field1) {
|
2010-09-04 18:42:56 +02:00
|
|
|
|
QString s = QString("GPS: ") + field->getValue().toString() + "\nPDP: "
|
2010-08-31 18:56:17 +02:00
|
|
|
|
+ field1->getValue().toString();
|
|
|
|
|
if (s != satString) {
|
|
|
|
|
gcsGPSStats->setPlainText(s);
|
|
|
|
|
satString = s;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-10 00:30:49 +02:00
|
|
|
|
/*!
|
2010-07-12 00:04:11 +02:00
|
|
|
|
\brief Updates the link stats
|
2010-07-10 00:30:49 +02:00
|
|
|
|
*/
|
|
|
|
|
void PFDGadgetWidget::updateLinkStatus(UAVObject *object1) {
|
2010-07-20 14:50:47 +02:00
|
|
|
|
// TODO: find a way to avoid updating the graphics if the value
|
|
|
|
|
// has not changed since the last update
|
2010-07-10 00:30:49 +02:00
|
|
|
|
// Double check that the field exists:
|
|
|
|
|
QString st = QString("Status");
|
|
|
|
|
QString tdr = QString("TxDataRate");
|
|
|
|
|
QString rdr = QString("RxDataRate");
|
|
|
|
|
UAVObjectField* field = object1->getField(st);
|
|
|
|
|
UAVObjectField* field2 = object1->getField(tdr);
|
|
|
|
|
UAVObjectField* field3 = object1->getField(rdr);
|
|
|
|
|
if (field && field2 && field3) {
|
2010-07-10 01:04:35 +02:00
|
|
|
|
QString s = field->getValue().toString();
|
2010-07-14 14:36:22 +02:00
|
|
|
|
if (m_renderer->elementExists("gcstelemetry-" + s) && gcsTelemetryArrow) {
|
2010-07-10 00:30:49 +02:00
|
|
|
|
gcsTelemetryArrow->setElementId("gcstelemetry-" + s);
|
|
|
|
|
} else { // Safeguard
|
|
|
|
|
gcsTelemetryArrow->setElementId("gcstelemetry-Disconnected");
|
|
|
|
|
}
|
2010-07-10 01:04:35 +02:00
|
|
|
|
double v1 = field2->getDouble();
|
|
|
|
|
double v2 = field3->getDouble();
|
|
|
|
|
s.sprintf("%.0f/%.0f",v1,v2);
|
2010-07-14 14:36:22 +02:00
|
|
|
|
if (gcsTelemetryStats) gcsTelemetryStats->setPlainText(s);
|
2010-07-10 00:30:49 +02:00
|
|
|
|
} else {
|
2010-07-10 09:15:37 +02:00
|
|
|
|
qDebug() << "UpdateLinkStatus: Wrong field, maybe an issue with object disconnection ?";
|
2010-07-10 00:30:49 +02:00
|
|
|
|
}
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Reads the updated attitude and computes the new display position
|
2010-08-22 00:52:38 +02:00
|
|
|
|
|
|
|
|
|
Resolution is 1 degree roll & 1/7.5 degree pitch.
|
2010-06-25 19:38:03 +02:00
|
|
|
|
*/
|
|
|
|
|
void PFDGadgetWidget::updateAttitude(UAVObject *object1) {
|
2010-09-04 05:20:40 +02:00
|
|
|
|
UAVObjectField * rollField = object1->getField(QString("Roll"));
|
|
|
|
|
UAVObjectField * yawField = object1->getField(QString("Yaw"));
|
|
|
|
|
UAVObjectField * pitchField = object1->getField(QString("Pitch"));
|
|
|
|
|
if(rollField && yawField && pitchField) {
|
2010-06-25 19:38:03 +02:00
|
|
|
|
// These factors assume some things about the PFD SVG, namely:
|
2010-09-04 05:20:40 +02:00
|
|
|
|
// - Roll, Pitch and Heading value in degrees
|
2010-06-25 19:38:03 +02:00
|
|
|
|
// - Pitch lines are 300px high for a +20/-20 range, which means
|
|
|
|
|
// 7.5 pixels per pitch degree.
|
2010-09-04 05:20:40 +02:00
|
|
|
|
// TODO: loosen this constraint and only require a +/- 20 deg range,
|
|
|
|
|
// and compute the height from the SVG element.
|
2010-08-22 00:52:38 +02:00
|
|
|
|
// Also: keep the integer value only, to avoid unnecessary redraws
|
2010-09-04 05:20:40 +02:00
|
|
|
|
rollTarget = -floor(pitchField->getDouble()*10)/10;
|
2010-08-22 00:52:38 +02:00
|
|
|
|
if ((rollTarget - rollValue) > 180) {
|
|
|
|
|
rollValue += 360;
|
|
|
|
|
} else if (((rollTarget - rollValue) < -180)) {
|
|
|
|
|
rollValue -= 360;
|
|
|
|
|
}
|
2010-09-04 05:20:40 +02:00
|
|
|
|
pitchTarget = floor(object1->getField(QString("Pitch"))->getDouble()*7.5);
|
2010-07-20 14:50:47 +02:00
|
|
|
|
|
2010-09-04 09:21:13 +02:00
|
|
|
|
// These factors assume some things about the PFD SVG, namely:
|
|
|
|
|
// - Heading value in degrees
|
|
|
|
|
// - "Scale" element is 540 degrees wide
|
|
|
|
|
|
2010-07-20 14:50:47 +02:00
|
|
|
|
// Corvus Corax: "If you want a smooth transition between two angles, It is usually solved that by substracting
|
|
|
|
|
// one from another, and if the result is >180 or <-180 I substract (respectively add) 360 degrees
|
|
|
|
|
// to it. That way you always get the "shorter difference" to turn in."
|
|
|
|
|
double fac = compassBandWidth/540;
|
2010-09-04 09:21:13 +02:00
|
|
|
|
headingTarget = yawField->getDouble()*(-fac);
|
2010-07-20 14:50:47 +02:00
|
|
|
|
if ((headingValue - headingTarget)/fac > 180) {
|
|
|
|
|
headingTarget += 360*fac;
|
|
|
|
|
} else if (((headingValue - headingTarget)/fac < -180)) {
|
|
|
|
|
headingTarget -= 360*fac;
|
|
|
|
|
}
|
2010-08-06 00:12:19 +02:00
|
|
|
|
headingTarget = floor(headingTarget*10)/10; // Avoid stupid redraws
|
2010-09-04 05:20:40 +02:00
|
|
|
|
|
|
|
|
|
if (!dialTimer.isActive())
|
|
|
|
|
dialTimer.start(); // Rearm the dial Timer which might be stopped.
|
|
|
|
|
|
2010-06-25 19:38:03 +02:00
|
|
|
|
} else {
|
2010-09-04 05:20:40 +02:00
|
|
|
|
qDebug() << "Unable to get one of the fields for attitude update";
|
2010-07-02 00:28:19 +02:00
|
|
|
|
}
|
2010-09-04 05:20:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Updates the compass reading and speed dial.
|
|
|
|
|
|
|
|
|
|
This also updates speed & altitude according to PositionActual data.
|
2010-07-02 00:28:19 +02:00
|
|
|
|
|
2010-09-04 05:20:40 +02:00
|
|
|
|
Note: the speed dial shows the ground speed at the moment, because
|
|
|
|
|
there is no airspeed by default. Should become configurable in a future
|
|
|
|
|
gadget release (TODO)
|
|
|
|
|
*/
|
|
|
|
|
void PFDGadgetWidget::updateHeading(UAVObject *object) {
|
|
|
|
|
Q_UNUSED(object);
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2010-09-04 05:20:40 +02:00
|
|
|
|
\brief Called by updates to @PositionActual to compute airspeed from velocity
|
2010-06-25 19:38:03 +02:00
|
|
|
|
*/
|
2010-09-04 05:20:40 +02:00
|
|
|
|
void PFDGadgetWidget::updateAirspeed(UAVObject *object) {
|
|
|
|
|
UAVObjectField* velField = object->getField("Vel");
|
|
|
|
|
if (velField) {
|
|
|
|
|
double val = floor(sqrt(pow(velField->getDouble(0),2) + pow(velField->getDouble(1),2))*10)/10;
|
|
|
|
|
groundspeedTarget = 3.6*val*speedScaleHeight/30;
|
2010-07-20 14:50:47 +02:00
|
|
|
|
|
2010-09-04 05:20:40 +02:00
|
|
|
|
} else {
|
|
|
|
|
qDebug() << "UpdateHeading: Wrong field, maybe an issue with object disconnection ?";
|
|
|
|
|
}
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
2010-09-04 05:20:40 +02:00
|
|
|
|
\brief Called by the @ref PositionActual updates to show altitude
|
2010-06-25 19:38:03 +02:00
|
|
|
|
*/
|
2010-09-04 05:20:40 +02:00
|
|
|
|
void PFDGadgetWidget::updateAltitude(UAVObject *object) {
|
|
|
|
|
UAVObjectField* posField = object->getField("NED");
|
|
|
|
|
if (posField) {
|
|
|
|
|
// The altitude scale represents 30 meters
|
|
|
|
|
altitudeTarget = floor(posField->getDouble(3)*10)/10*altitudeScaleHeight/30;
|
|
|
|
|
} else {
|
|
|
|
|
qDebug() << "Unable to get field for altitude update. Obj: " << object->getName();
|
|
|
|
|
}
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\brief Called by the UAVObject which got updated
|
|
|
|
|
*/
|
2010-07-11 23:21:48 +02:00
|
|
|
|
void PFDGadgetWidget::updateBattery(UAVObject *object1) {
|
|
|
|
|
// Double check that the field exists:
|
|
|
|
|
QString voltage = QString("Voltage");
|
|
|
|
|
QString current = QString("Current");
|
|
|
|
|
QString energy = QString("ConsumedEnergy");
|
|
|
|
|
UAVObjectField* field = object1->getField(voltage);
|
|
|
|
|
UAVObjectField* field2 = object1->getField(current);
|
|
|
|
|
UAVObjectField* field3 = object1->getField(energy);
|
|
|
|
|
if (field && field2 && field3) {
|
|
|
|
|
QString s = QString();
|
|
|
|
|
double v0 = field->getDouble();
|
|
|
|
|
double v1 = field2->getDouble();
|
|
|
|
|
double v2 = field3->getDouble();
|
|
|
|
|
s.sprintf("%.2fV\n%.2fA\n%.0fmAh",v0,v1,v2);
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (s != batString) {
|
|
|
|
|
gcsBatteryStats->setPlainText(s);
|
|
|
|
|
batString = s;
|
|
|
|
|
}
|
2010-07-11 23:21:48 +02:00
|
|
|
|
} else {
|
|
|
|
|
qDebug() << "UpdateBattery: Wrong field, maybe an issue with object disconnection ?";
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-07-01 00:28:07 +02:00
|
|
|
|
/*!
|
|
|
|
|
\brief Sets up the PFD from the SVG master file.
|
|
|
|
|
|
|
|
|
|
Initializes the display, and does all the one-time calculations.
|
2010-06-25 19:38:03 +02:00
|
|
|
|
*/
|
|
|
|
|
void PFDGadgetWidget::setDialFile(QString dfn)
|
|
|
|
|
{
|
2010-07-12 00:04:11 +02:00
|
|
|
|
QGraphicsScene *l_scene = scene();
|
2010-07-18 00:47:42 +02:00
|
|
|
|
setBackgroundBrush(QBrush(Utils::StyleHelper::baseColor()));
|
2010-07-12 00:04:11 +02:00
|
|
|
|
if (QFile::exists(dfn) && m_renderer->load(dfn) && m_renderer->isValid())
|
2010-06-25 19:38:03 +02:00
|
|
|
|
{
|
|
|
|
|
/* The PFD element IDs are fixed, not like with the analog dial.
|
|
|
|
|
- Background: background
|
|
|
|
|
- Foreground: foreground (contains all fixed elements, including plane)
|
|
|
|
|
- earth/sky : world
|
|
|
|
|
- Roll scale: rollscale
|
|
|
|
|
- compass frame: compass (part of the foreground)
|
|
|
|
|
- compass band : compass-band
|
|
|
|
|
- Home point: homewaypoint
|
|
|
|
|
- Next point: nextwaypoint
|
|
|
|
|
- Home point bearing: homewaypoint-bearing
|
|
|
|
|
- Next point bearing: nextwaypoint-bearing
|
2010-07-01 16:17:46 +02:00
|
|
|
|
- Speed rectangle (left side): speed-bg
|
2010-07-01 00:28:07 +02:00
|
|
|
|
- Speed scale: speed-scale.
|
|
|
|
|
- Black speed window: speed-window.
|
2010-07-02 00:28:19 +02:00
|
|
|
|
- Altitude rectangle (right site): altitude-bg.
|
|
|
|
|
- Altitude scale: altitude-scale.
|
2010-07-10 00:30:49 +02:00
|
|
|
|
- Black altitude window: altitude-window.
|
|
|
|
|
- GCS Telemetry status arrow: gcstelemetry-XXXX
|
2010-07-11 23:21:48 +02:00
|
|
|
|
- Telemetry link rate: linkrate
|
|
|
|
|
- GPS status text: gps-txt
|
|
|
|
|
- Battery stats: battery-txt
|
2010-06-25 19:38:03 +02:00
|
|
|
|
*/
|
|
|
|
|
l_scene->clear(); // Deletes all items contained in the scene as well.
|
|
|
|
|
m_background = new QGraphicsSvgItem();
|
|
|
|
|
// All other items will be clipped to the shape of the background
|
|
|
|
|
m_background->setFlags(QGraphicsItem::ItemClipsChildrenToShape|
|
|
|
|
|
QGraphicsItem::ItemClipsToShape);
|
|
|
|
|
m_background->setSharedRenderer(m_renderer);
|
|
|
|
|
m_background->setElementId("background");
|
|
|
|
|
l_scene->addItem(m_background);
|
|
|
|
|
|
|
|
|
|
m_world = new QGraphicsSvgItem();
|
|
|
|
|
m_world->setParentItem(m_background);
|
|
|
|
|
m_world->setSharedRenderer(m_renderer);
|
|
|
|
|
m_world->setElementId("world");
|
|
|
|
|
l_scene->addItem(m_world);
|
|
|
|
|
|
|
|
|
|
// red Roll scale: rollscale
|
|
|
|
|
m_rollscale = new QGraphicsSvgItem();
|
|
|
|
|
m_rollscale->setSharedRenderer(m_renderer);
|
|
|
|
|
m_rollscale->setElementId("rollscale");
|
|
|
|
|
l_scene->addItem(m_rollscale);
|
|
|
|
|
|
|
|
|
|
// Home point:
|
|
|
|
|
m_homewaypoint = new QGraphicsSvgItem();
|
|
|
|
|
// Next point:
|
|
|
|
|
m_nextwaypoint = new QGraphicsSvgItem();
|
|
|
|
|
// Home point bearing:
|
|
|
|
|
m_homepointbearing = new QGraphicsSvgItem();
|
|
|
|
|
// Next point bearing:
|
|
|
|
|
m_nextpointbearing = new QGraphicsSvgItem();
|
|
|
|
|
|
2010-07-04 12:29:43 +02:00
|
|
|
|
QGraphicsSvgItem *m_foreground = new QGraphicsSvgItem();
|
2010-06-25 19:38:03 +02:00
|
|
|
|
m_foreground->setParentItem(m_background);
|
|
|
|
|
m_foreground->setSharedRenderer(m_renderer);
|
|
|
|
|
m_foreground->setElementId("foreground");
|
|
|
|
|
l_scene->addItem(m_foreground);
|
|
|
|
|
|
2010-07-02 00:28:19 +02:00
|
|
|
|
////////////////////
|
|
|
|
|
// Compass
|
|
|
|
|
////////////////////
|
2010-06-25 19:38:03 +02:00
|
|
|
|
// Get the default location of the Compass:
|
|
|
|
|
QMatrix compassMatrix = m_renderer->matrixForElement("compass");
|
|
|
|
|
qreal startX = compassMatrix.mapRect(m_renderer->boundsOnElement("compass")).x();
|
|
|
|
|
qreal startY = compassMatrix.mapRect(m_renderer->boundsOnElement("compass")).y();
|
|
|
|
|
// Then once we have the initial location, we can put it
|
|
|
|
|
// into a QGraphicsSvgItem which we will display at the same
|
|
|
|
|
// place: we do this so that the heading scale can be clipped to
|
|
|
|
|
// the compass dial region.
|
|
|
|
|
m_compass = new QGraphicsSvgItem();
|
|
|
|
|
m_compass->setSharedRenderer(m_renderer);
|
|
|
|
|
m_compass->setElementId("compass");
|
|
|
|
|
m_compass->setFlags(QGraphicsItem::ItemClipsChildrenToShape|
|
|
|
|
|
QGraphicsItem::ItemClipsToShape);
|
|
|
|
|
l_scene->addItem(m_compass);
|
|
|
|
|
QTransform matrix;
|
|
|
|
|
matrix.translate(startX,startY);
|
|
|
|
|
m_compass->setTransform(matrix,false);
|
|
|
|
|
|
|
|
|
|
// Now place the compass scale inside:
|
|
|
|
|
m_compassband = new QGraphicsSvgItem();
|
|
|
|
|
m_compassband->setSharedRenderer(m_renderer);
|
|
|
|
|
m_compassband->setElementId("compass-band");
|
|
|
|
|
m_compassband->setParentItem(m_compass);
|
|
|
|
|
l_scene->addItem(m_compassband);
|
|
|
|
|
matrix.reset();
|
|
|
|
|
// Note: the compass band has to be a path, which means all text elements have to be
|
|
|
|
|
// converted, ortherwise boundsOnElement does not compute the height correctly
|
|
|
|
|
// if the highest element is a text element. This is a Qt Bug as far as I can tell.
|
|
|
|
|
|
|
|
|
|
// compass-scale is the while bottom line inside the band: using the band's width
|
|
|
|
|
// includes half the width of the letters, which causes errors:
|
|
|
|
|
compassBandWidth = m_renderer->boundsOnElement("compass-scale").width();
|
|
|
|
|
|
2010-07-02 00:28:19 +02:00
|
|
|
|
////////////////////
|
|
|
|
|
// Speed
|
|
|
|
|
////////////////////
|
2010-07-01 00:28:07 +02:00
|
|
|
|
// Speedometer on the left hand:
|
2010-07-04 12:29:43 +02:00
|
|
|
|
//
|
2010-07-01 00:28:07 +02:00
|
|
|
|
compassMatrix = m_renderer->matrixForElement("speed-bg");
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("speed-bg")).x();
|
|
|
|
|
startY = compassMatrix.mapRect(m_renderer->boundsOnElement("speed-bg")).y();
|
2010-07-02 00:28:19 +02:00
|
|
|
|
QGraphicsSvgItem *verticalbg = new QGraphicsSvgItem();
|
|
|
|
|
verticalbg->setSharedRenderer(m_renderer);
|
|
|
|
|
verticalbg->setElementId("speed-bg");
|
|
|
|
|
verticalbg->setFlags(QGraphicsItem::ItemClipsChildrenToShape|
|
2010-07-01 00:28:07 +02:00
|
|
|
|
QGraphicsItem::ItemClipsToShape);
|
2010-07-02 00:28:19 +02:00
|
|
|
|
l_scene->addItem(verticalbg);
|
2010-07-01 00:28:07 +02:00
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,startY);
|
2010-07-02 00:28:19 +02:00
|
|
|
|
verticalbg->setTransform(matrix,false);
|
2010-07-01 00:28:07 +02:00
|
|
|
|
|
|
|
|
|
// Note: speed-scale should contain exactly 6 major ticks
|
|
|
|
|
// for 30km/h
|
2010-07-01 16:17:46 +02:00
|
|
|
|
m_speedscale = new QGraphicsItemGroup();
|
2010-07-02 00:28:19 +02:00
|
|
|
|
m_speedscale->setParentItem(verticalbg);
|
2010-07-01 16:17:46 +02:00
|
|
|
|
|
|
|
|
|
QGraphicsSvgItem *speedscalelines = new QGraphicsSvgItem();
|
|
|
|
|
speedscalelines->setSharedRenderer(m_renderer);
|
|
|
|
|
speedscalelines->setElementId("speed-scale");
|
|
|
|
|
speedScaleHeight = m_renderer->matrixForElement("speed-scale").mapRect(
|
|
|
|
|
m_renderer->boundsOnElement("speed-scale")).height();
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("speed-bg")).width();
|
|
|
|
|
startX -= m_renderer->matrixForElement("speed-scale").mapRect(
|
|
|
|
|
m_renderer->boundsOnElement("speed-scale")).width();
|
2010-07-01 00:28:07 +02:00
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,0);
|
2010-07-01 16:17:46 +02:00
|
|
|
|
speedscalelines->setTransform(matrix,false);
|
|
|
|
|
// Quick way to reposition the item before putting it in the group:
|
2010-07-02 00:28:19 +02:00
|
|
|
|
speedscalelines->setParentItem(verticalbg);
|
2010-07-01 16:17:46 +02:00
|
|
|
|
m_speedscale->addToGroup(speedscalelines); // (reparents the item)
|
2010-07-01 00:28:07 +02:00
|
|
|
|
|
|
|
|
|
// Add the scale text elements:
|
2010-07-01 16:17:46 +02:00
|
|
|
|
QGraphicsTextItem *speed0 = new QGraphicsTextItem("0");
|
|
|
|
|
speed0->setDefaultTextColor(QColor("White"));
|
|
|
|
|
speed0->setFont(QFont("Arial",(int) speedScaleHeight/30));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (hqFonts) speed0->setCacheMode(QGraphicsItem::DeviceCoordinateCache);
|
2010-07-01 00:28:07 +02:00
|
|
|
|
matrix.reset();
|
2010-07-01 16:17:46 +02:00
|
|
|
|
matrix.translate(compassMatrix.mapRect(m_renderer->boundsOnElement("speed-bg")).width()/10,-speedScaleHeight/30);
|
2010-07-01 00:28:07 +02:00
|
|
|
|
speed0->setTransform(matrix,false);
|
2010-07-02 00:28:19 +02:00
|
|
|
|
speed0->setParentItem(verticalbg);
|
2010-07-01 16:17:46 +02:00
|
|
|
|
m_speedscale->addToGroup(speed0);
|
2010-07-01 00:28:07 +02:00
|
|
|
|
for (int i=0; i<6;i++) {
|
2010-07-01 16:17:46 +02:00
|
|
|
|
speed0 = new QGraphicsTextItem("");
|
|
|
|
|
speed0->setDefaultTextColor(QColor("White"));
|
|
|
|
|
speed0->setFont(QFont("Arial",(int) speedScaleHeight/30));
|
|
|
|
|
speed0->setPlainText(QString().setNum(i*5+1));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (hqFonts) speed0->setCacheMode(QGraphicsItem::DeviceCoordinateCache);
|
2010-07-01 00:28:07 +02:00
|
|
|
|
matrix.translate(0,speedScaleHeight/6);
|
|
|
|
|
speed0->setTransform(matrix,false);
|
2010-07-02 00:28:19 +02:00
|
|
|
|
speed0->setParentItem(verticalbg);
|
2010-07-01 16:17:46 +02:00
|
|
|
|
m_speedscale->addToGroup(speed0);
|
2010-07-01 00:28:07 +02:00
|
|
|
|
}
|
2010-07-01 16:17:46 +02:00
|
|
|
|
// Now vertically center the speed scale on the speed background
|
2010-07-02 00:28:19 +02:00
|
|
|
|
QRectF rectB = verticalbg->boundingRect();
|
2010-07-01 16:17:46 +02:00
|
|
|
|
QRectF rectN = speedscalelines->boundingRect();
|
2010-07-02 00:28:19 +02:00
|
|
|
|
m_speedscale->setPos(0,rectB.height()/2-rectN.height()/2-rectN.height()/6);
|
|
|
|
|
|
2010-07-04 12:29:43 +02:00
|
|
|
|
// Isolate the speed window and put it above the speed scale
|
|
|
|
|
compassMatrix = m_renderer->matrixForElement("speed-window");
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("speed-window")).x();
|
|
|
|
|
startY = compassMatrix.mapRect(m_renderer->boundsOnElement("speed-window")).y();
|
|
|
|
|
qreal speedWindowHeight = compassMatrix.mapRect(m_renderer->boundsOnElement("speed-window")).height();
|
|
|
|
|
QGraphicsSvgItem *speedwindow = new QGraphicsSvgItem();
|
|
|
|
|
speedwindow->setSharedRenderer(m_renderer);
|
|
|
|
|
speedwindow->setElementId("speed-window");
|
|
|
|
|
speedwindow->setFlags(QGraphicsItem::ItemClipsChildrenToShape|
|
|
|
|
|
QGraphicsItem::ItemClipsToShape);
|
|
|
|
|
l_scene->addItem(speedwindow);
|
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,startY);
|
|
|
|
|
speedwindow->setTransform(matrix,false);
|
|
|
|
|
|
|
|
|
|
// Last create a Text Item at the location of the speed window
|
|
|
|
|
// and save it for future updates:
|
|
|
|
|
m_speedtext = new QGraphicsTextItem("0000");
|
|
|
|
|
m_speedtext->setDefaultTextColor(QColor("White"));
|
|
|
|
|
m_speedtext->setFont(QFont("Arial",(int) speedWindowHeight/2));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (hqFonts) m_speedtext->setCacheMode(QGraphicsItem::DeviceCoordinateCache);
|
2010-07-04 12:29:43 +02:00
|
|
|
|
m_speedtext->setParentItem(speedwindow);
|
|
|
|
|
|
2010-07-02 00:28:19 +02:00
|
|
|
|
////////////////////
|
|
|
|
|
// Altitude
|
|
|
|
|
////////////////////
|
|
|
|
|
// Right hand, very similar to speed
|
|
|
|
|
compassMatrix = m_renderer->matrixForElement("altitude-bg");
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("altitude-bg")).x();
|
|
|
|
|
startY = compassMatrix.mapRect(m_renderer->boundsOnElement("altitude-bg")).y();
|
|
|
|
|
verticalbg = new QGraphicsSvgItem();
|
|
|
|
|
verticalbg->setSharedRenderer(m_renderer);
|
|
|
|
|
verticalbg->setElementId("altitude-bg");
|
|
|
|
|
verticalbg->setFlags(QGraphicsItem::ItemClipsChildrenToShape|
|
|
|
|
|
QGraphicsItem::ItemClipsToShape);
|
|
|
|
|
l_scene->addItem(verticalbg);
|
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,startY);
|
|
|
|
|
verticalbg->setTransform(matrix,false);
|
|
|
|
|
|
|
|
|
|
// Note: altitude-scale should contain exactly 6 major ticks
|
|
|
|
|
// for 30 meters
|
|
|
|
|
m_altitudescale = new QGraphicsItemGroup();
|
|
|
|
|
m_altitudescale->setParentItem(verticalbg);
|
|
|
|
|
|
|
|
|
|
QGraphicsSvgItem *altitudescalelines = new QGraphicsSvgItem();
|
|
|
|
|
altitudescalelines->setSharedRenderer(m_renderer);
|
|
|
|
|
altitudescalelines->setElementId("altitude-scale");
|
|
|
|
|
altitudeScaleHeight = m_renderer->matrixForElement("altitude-scale").mapRect(
|
|
|
|
|
m_renderer->boundsOnElement("altitude-scale")).height();
|
|
|
|
|
// Quick way to reposition the item before putting it in the group:
|
|
|
|
|
altitudescalelines->setParentItem(verticalbg);
|
|
|
|
|
m_altitudescale->addToGroup(altitudescalelines); // (reparents the item)
|
|
|
|
|
|
|
|
|
|
// Add the scale text elements:
|
|
|
|
|
speed0 = new QGraphicsTextItem("XXXX");
|
|
|
|
|
speed0->setDefaultTextColor(QColor("White"));
|
|
|
|
|
speed0->setFont(QFont("Arial",(int) altitudeScaleHeight/30));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (hqFonts) speed0->setCacheMode(QGraphicsItem::DeviceCoordinateCache);
|
2010-07-02 00:28:19 +02:00
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(m_renderer->matrixForElement("altitude-scale").mapRect(m_renderer->boundsOnElement("altitude-scale")).width()
|
|
|
|
|
+ m_renderer->matrixForElement("altitude-bg").mapRect(m_renderer->boundsOnElement("altitude-bg")).width()/10,-altitudeScaleHeight/30);
|
|
|
|
|
speed0->setTransform(matrix,false);
|
|
|
|
|
speed0->setParentItem(verticalbg);
|
|
|
|
|
m_altitudescale->addToGroup(speed0);
|
|
|
|
|
for (int i=0; i<6;i++) {
|
|
|
|
|
speed0 = new QGraphicsTextItem("XXXX");
|
|
|
|
|
speed0->setDefaultTextColor(QColor("White"));
|
|
|
|
|
speed0->setFont(QFont("Arial",(int) altitudeScaleHeight/30));
|
|
|
|
|
speed0->setPlainText(QString().setNum(i*5+1));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (hqFonts) speed0->setCacheMode(QGraphicsItem::DeviceCoordinateCache);
|
2010-07-02 00:28:19 +02:00
|
|
|
|
matrix.translate(0,altitudeScaleHeight/6);
|
|
|
|
|
speed0->setTransform(matrix,false);
|
|
|
|
|
speed0->setParentItem(verticalbg);
|
|
|
|
|
m_altitudescale->addToGroup(speed0);
|
|
|
|
|
}
|
|
|
|
|
// Now vertically center the speed scale on the speed background
|
|
|
|
|
rectB = verticalbg->boundingRect();
|
|
|
|
|
rectN = altitudescalelines->boundingRect();
|
|
|
|
|
m_altitudescale->setPos(0,rectB.height()/2-rectN.height()/2-rectN.height()/6);
|
2010-07-01 00:28:07 +02:00
|
|
|
|
|
2010-07-04 12:29:43 +02:00
|
|
|
|
// Isolate the Altitude window and put it above the altitude scale
|
|
|
|
|
compassMatrix = m_renderer->matrixForElement("altitude-window");
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("altitude-window")).x();
|
|
|
|
|
startY = compassMatrix.mapRect(m_renderer->boundsOnElement("altitude-window")).y();
|
|
|
|
|
qreal altitudeWindowHeight = compassMatrix.mapRect(m_renderer->boundsOnElement("altitude-window")).height();
|
|
|
|
|
QGraphicsSvgItem *altitudewindow = new QGraphicsSvgItem();
|
|
|
|
|
altitudewindow->setSharedRenderer(m_renderer);
|
|
|
|
|
altitudewindow->setElementId("altitude-window");
|
|
|
|
|
altitudewindow->setFlags(QGraphicsItem::ItemClipsChildrenToShape|
|
|
|
|
|
QGraphicsItem::ItemClipsToShape);
|
|
|
|
|
l_scene->addItem(altitudewindow);
|
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,startY);
|
|
|
|
|
altitudewindow->setTransform(matrix,false);
|
|
|
|
|
|
|
|
|
|
// Last create a Text Item at the location of the speed window
|
|
|
|
|
// and save it for future updates:
|
|
|
|
|
m_altitudetext = new QGraphicsTextItem("0000");
|
|
|
|
|
m_altitudetext->setDefaultTextColor(QColor("White"));
|
|
|
|
|
m_altitudetext->setFont(QFont("Arial",(int) altitudeWindowHeight/2));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (hqFonts) m_altitudetext->setCacheMode(QGraphicsItem::DeviceCoordinateCache);
|
2010-07-04 12:29:43 +02:00
|
|
|
|
m_altitudetext->setParentItem(altitudewindow);
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("altitude-window")).width()/10;
|
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,0);
|
|
|
|
|
m_altitudetext->setTransform(matrix,false);
|
|
|
|
|
|
2010-07-10 00:30:49 +02:00
|
|
|
|
////////////////
|
|
|
|
|
// GCS Telemetry Indicator
|
|
|
|
|
////////////////
|
2010-07-14 14:36:22 +02:00
|
|
|
|
if (m_renderer->elementExists("gcstelemetry-Disconnected")) {
|
|
|
|
|
compassMatrix = m_renderer->matrixForElement("gcstelemetry-Disconnected");
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("gcstelemetry-Disconnected")).x();
|
|
|
|
|
startY = compassMatrix.mapRect(m_renderer->boundsOnElement("gcstelemetry-Disconnected")).y();
|
|
|
|
|
gcsTelemetryArrow = new QGraphicsSvgItem();
|
|
|
|
|
gcsTelemetryArrow->setSharedRenderer(m_renderer);
|
|
|
|
|
gcsTelemetryArrow->setElementId("gcstelemetry-Disconnected");
|
|
|
|
|
l_scene->addItem(gcsTelemetryArrow);
|
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,startY);
|
|
|
|
|
gcsTelemetryArrow->setTransform(matrix,false);
|
|
|
|
|
} else {
|
|
|
|
|
gcsTelemetryArrow = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_renderer->elementExists("linkrate")) {
|
|
|
|
|
compassMatrix = m_renderer->matrixForElement("linkrate");
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("linkrate")).x();
|
|
|
|
|
startY = compassMatrix.mapRect(m_renderer->boundsOnElement("linkrate")).y();
|
|
|
|
|
qreal linkRateHeight = compassMatrix.mapRect(m_renderer->boundsOnElement("linkrate")).height();
|
|
|
|
|
gcsTelemetryStats = new QGraphicsTextItem();
|
|
|
|
|
gcsTelemetryStats->setDefaultTextColor(QColor("White"));
|
|
|
|
|
gcsTelemetryStats->setFont(QFont("Arial",(int) linkRateHeight));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (hqFonts) gcsTelemetryStats->setCacheMode(QGraphicsItem::DeviceCoordinateCache);
|
2010-07-14 14:36:22 +02:00
|
|
|
|
l_scene->addItem(gcsTelemetryStats);
|
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,startY-linkRateHeight/2);
|
|
|
|
|
gcsTelemetryStats->setTransform(matrix,false);
|
|
|
|
|
} else {
|
|
|
|
|
gcsTelemetryStats = NULL;
|
|
|
|
|
}
|
2010-07-04 12:29:43 +02:00
|
|
|
|
|
2010-07-10 01:04:35 +02:00
|
|
|
|
|
2010-07-11 23:21:48 +02:00
|
|
|
|
////////////////
|
|
|
|
|
// GCS Battery Indicator
|
|
|
|
|
////////////////
|
2010-07-12 00:04:11 +02:00
|
|
|
|
/* (to be used the day I add a green/yellow/red indicator)
|
2010-07-11 23:21:48 +02:00
|
|
|
|
compassMatrix = m_renderer->matrixForElement("gcstelemetry-Disconnected");
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("gcstelemetry-Disconnected")).x();
|
|
|
|
|
startY = compassMatrix.mapRect(m_renderer->boundsOnElement("gcstelemetry-Disconnected")).y();
|
|
|
|
|
gcsTelemetryArrow = new QGraphicsSvgItem();
|
|
|
|
|
gcsTelemetryArrow->setSharedRenderer(m_renderer);
|
|
|
|
|
gcsTelemetryArrow->setElementId("gcstelemetry-Disconnected");
|
|
|
|
|
l_scene->addItem(gcsTelemetryArrow);
|
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,startY);
|
|
|
|
|
gcsTelemetryArrow->setTransform(matrix,false);
|
|
|
|
|
*/
|
|
|
|
|
|
2010-07-14 14:36:22 +02:00
|
|
|
|
if (m_renderer->elementExists("battery-txt")) {
|
|
|
|
|
compassMatrix = m_renderer->matrixForElement("battery-txt");
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("battery-txt")).x();
|
|
|
|
|
startY = compassMatrix.mapRect(m_renderer->boundsOnElement("battery-txt")).y();
|
|
|
|
|
qreal batStatHeight = compassMatrix.mapRect(m_renderer->boundsOnElement("battery-txt")).height();
|
2010-08-06 00:12:19 +02:00
|
|
|
|
gcsBatteryStats = new QGraphicsTextItem("Battery");
|
2010-07-14 14:36:22 +02:00
|
|
|
|
gcsBatteryStats->setDefaultTextColor(QColor("White"));
|
|
|
|
|
gcsBatteryStats->setFont(QFont("Arial",(int) batStatHeight));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (hqFonts) gcsBatteryStats->setCacheMode(QGraphicsItem::DeviceCoordinateCache);
|
2010-07-14 14:36:22 +02:00
|
|
|
|
l_scene->addItem(gcsBatteryStats);
|
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,startY-batStatHeight/2);
|
|
|
|
|
gcsBatteryStats->setTransform(matrix,false);
|
|
|
|
|
} else {
|
|
|
|
|
gcsBatteryStats = NULL;
|
|
|
|
|
}
|
2010-07-11 23:21:48 +02:00
|
|
|
|
|
2010-07-12 00:04:11 +02:00
|
|
|
|
////////////////
|
|
|
|
|
// GCS GPS Indicator
|
|
|
|
|
////////////////
|
|
|
|
|
/* (to be used the day I add a green/yellow/red indicator)
|
|
|
|
|
compassMatrix = m_renderer->matrixForElement("gcstelemetry-Disconnected");
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("gcstelemetry-Disconnected")).x();
|
|
|
|
|
startY = compassMatrix.mapRect(m_renderer->boundsOnElement("gcstelemetry-Disconnected")).y();
|
|
|
|
|
gcsTelemetryArrow = new QGraphicsSvgItem();
|
|
|
|
|
gcsTelemetryArrow->setSharedRenderer(m_renderer);
|
|
|
|
|
gcsTelemetryArrow->setElementId("gcstelemetry-Disconnected");
|
|
|
|
|
l_scene->addItem(gcsTelemetryArrow);
|
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,startY);
|
|
|
|
|
gcsTelemetryArrow->setTransform(matrix,false);
|
|
|
|
|
*/
|
|
|
|
|
|
2010-07-14 14:36:22 +02:00
|
|
|
|
if (m_renderer->elementExists("gps-txt")) {
|
|
|
|
|
compassMatrix = m_renderer->matrixForElement("gps-txt");
|
|
|
|
|
startX = compassMatrix.mapRect(m_renderer->boundsOnElement("gps-txt")).x();
|
|
|
|
|
startY = compassMatrix.mapRect(m_renderer->boundsOnElement("gps-txt")).y();
|
|
|
|
|
qreal gpsStatHeight = compassMatrix.mapRect(m_renderer->boundsOnElement("gps-txt")).height();
|
2010-08-06 00:12:19 +02:00
|
|
|
|
gcsGPSStats = new QGraphicsTextItem("GPS");
|
2010-07-14 14:36:22 +02:00
|
|
|
|
gcsGPSStats->setDefaultTextColor(QColor("White"));
|
|
|
|
|
gcsGPSStats->setFont(QFont("Arial",(int) gpsStatHeight));
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (hqFonts) gcsGPSStats->setCacheMode(QGraphicsItem::DeviceCoordinateCache);
|
2010-07-14 14:36:22 +02:00
|
|
|
|
l_scene->addItem(gcsGPSStats);
|
|
|
|
|
matrix.reset();
|
|
|
|
|
matrix.translate(startX,startY-gpsStatHeight/2);
|
|
|
|
|
gcsGPSStats->setTransform(matrix,false);
|
|
|
|
|
} else {
|
|
|
|
|
gcsGPSStats = NULL;
|
|
|
|
|
}
|
2010-07-11 23:21:48 +02:00
|
|
|
|
|
2010-06-25 19:38:03 +02:00
|
|
|
|
l_scene->setSceneRect(m_background->boundingRect());
|
|
|
|
|
|
2010-07-10 00:30:49 +02:00
|
|
|
|
/////////////////
|
|
|
|
|
// Item placement
|
|
|
|
|
/////////////////
|
|
|
|
|
|
2010-06-25 19:38:03 +02:00
|
|
|
|
// Now Initialize the center for all transforms of the relevant elements to the
|
|
|
|
|
// center of the background:
|
|
|
|
|
|
|
|
|
|
// 1) Move the center of the needle to the center of the background.
|
2010-07-01 16:17:46 +02:00
|
|
|
|
rectB = m_background->boundingRect();
|
|
|
|
|
rectN = m_world->boundingRect();
|
2010-06-25 19:38:03 +02:00
|
|
|
|
m_world->setPos(rectB.width()/2-rectN.width()/2,rectB.height()/2-rectN.height()/2);
|
|
|
|
|
// 2) Put the transform origin point of the needle at its center.
|
|
|
|
|
m_world->setTransformOriginPoint(rectN.width()/2,rectN.height()/2);
|
|
|
|
|
|
|
|
|
|
rectN = m_rollscale->boundingRect();
|
|
|
|
|
m_rollscale->setPos(rectB.width()/2-rectN.width()/2,rectB.height()/2-rectN.height()/2);
|
|
|
|
|
m_rollscale->setTransformOriginPoint(rectN.width()/2,rectN.height()/2);
|
|
|
|
|
|
|
|
|
|
// Also to the same init for the compass:
|
|
|
|
|
rectB = m_compass->boundingRect();
|
|
|
|
|
rectN = m_compassband->boundingRect();
|
|
|
|
|
m_compassband->setPos(rectB.width()/2-rectN.width()/2,rectB.height()/2-rectN.height()/2);
|
|
|
|
|
m_compassband->setTransformOriginPoint(rectN.width()/2,rectN.height()/2);
|
|
|
|
|
|
|
|
|
|
// Last: we just loaded the dial file which is by default valid for a "zero" value
|
|
|
|
|
// of the needles, so we have to reset the needles too upon dial file loading, otherwise
|
|
|
|
|
// we would end up with an offset when we change a dial file and the needle value
|
|
|
|
|
// is not zero at that time.
|
|
|
|
|
rollValue = 0;
|
|
|
|
|
pitchValue = 0;
|
|
|
|
|
headingValue = 0;
|
2010-07-01 00:28:07 +02:00
|
|
|
|
groundspeedValue = 0;
|
2010-07-02 00:28:19 +02:00
|
|
|
|
altitudeValue = 0;
|
2010-07-12 00:04:11 +02:00
|
|
|
|
pfdError = false;
|
2010-06-25 19:38:03 +02:00
|
|
|
|
if (!dialTimer.isActive())
|
|
|
|
|
dialTimer.start(); // Rearm the dial Timer which might be stopped.
|
|
|
|
|
}
|
|
|
|
|
else
|
2010-07-12 00:04:11 +02:00
|
|
|
|
{ qDebug()<<"Error on PFD artwork file.";
|
|
|
|
|
m_renderer->load(QString(":/pfd/images/pfd-default.svg"));
|
|
|
|
|
l_scene->clear(); // This also deletes all items contained in the scene.
|
|
|
|
|
m_background = new QGraphicsSvgItem();
|
|
|
|
|
m_background->setSharedRenderer(m_renderer);
|
|
|
|
|
l_scene->addItem(m_background);
|
|
|
|
|
pfdError = true;
|
|
|
|
|
}
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PFDGadgetWidget::paint()
|
|
|
|
|
{
|
2010-08-06 00:12:19 +02:00
|
|
|
|
// update();
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PFDGadgetWidget::paintEvent(QPaintEvent *event)
|
|
|
|
|
{
|
|
|
|
|
// Skip painting until the dial file is loaded
|
|
|
|
|
if (! m_renderer->isValid()) {
|
2010-07-10 09:15:37 +02:00
|
|
|
|
qDebug() << "Dial file not loaded, not rendering";
|
2010-06-25 19:38:03 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
QGraphicsView::paintEvent(event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This event enables the dial to be dynamically resized
|
|
|
|
|
// whenever the gadget is resized, taking advantage of the vector
|
|
|
|
|
// nature of SVG dials.
|
|
|
|
|
void PFDGadgetWidget::resizeEvent(QResizeEvent *event)
|
|
|
|
|
{
|
2010-07-20 14:50:47 +02:00
|
|
|
|
Q_UNUSED(event);
|
2010-06-25 19:38:03 +02:00
|
|
|
|
fitInView(m_background, Qt::KeepAspectRatio );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-07-01 16:17:46 +02:00
|
|
|
|
/*!
|
|
|
|
|
\brief Update method for the vertical scales
|
|
|
|
|
*/
|
|
|
|
|
void PFDGadgetWidget::moveVerticalScales() {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-06 00:12:19 +02:00
|
|
|
|
void PFDGadgetWidget::moveSky() {
|
|
|
|
|
int dialCount = 2; // Gets decreased by one for each element
|
2010-06-25 19:38:03 +02:00
|
|
|
|
// which has finished moving
|
2010-08-06 00:12:19 +02:00
|
|
|
|
// qDebug() << "MoveSky";
|
2010-07-01 00:28:07 +02:00
|
|
|
|
/// TODO: optimize!!!
|
2010-07-12 00:04:11 +02:00
|
|
|
|
if (pfdError) {
|
2010-08-06 00:12:19 +02:00
|
|
|
|
//skyDialTimer.stop();
|
|
|
|
|
return;
|
2010-07-12 00:04:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-08-26 14:58:57 +02:00
|
|
|
|
// In some instances, it can happen that the rollValue & target are
|
|
|
|
|
// invalid inside the UAVObjects, and become a "nan" value, which freezes
|
|
|
|
|
// the PFD and the whole GCS: for this reason, we check this here.
|
|
|
|
|
// The strange check below works, it is a workaround because "isnan(double)"
|
|
|
|
|
// is not supported on every compiler.
|
|
|
|
|
if (rollTarget != rollTarget || pitchTarget != pitchTarget)
|
|
|
|
|
return;
|
2010-07-01 00:28:07 +02:00
|
|
|
|
//////
|
|
|
|
|
// Roll
|
|
|
|
|
//////
|
2010-07-20 14:50:47 +02:00
|
|
|
|
if (rollValue != rollTarget) {
|
|
|
|
|
double rollDiff;
|
|
|
|
|
if ((abs((rollValue-rollTarget)*10) > 5)) {
|
2010-08-22 00:52:38 +02:00
|
|
|
|
rollDiff =(rollTarget - rollValue)/2;
|
2010-07-20 14:50:47 +02:00
|
|
|
|
} else {
|
|
|
|
|
rollDiff = rollTarget - rollValue;
|
|
|
|
|
dialCount--;
|
|
|
|
|
}
|
|
|
|
|
m_world->setRotation(m_world->rotation()+rollDiff);
|
|
|
|
|
m_rollscale->setRotation(m_rollscale->rotation()+rollDiff);
|
|
|
|
|
rollValue += rollDiff;
|
2010-06-25 19:38:03 +02:00
|
|
|
|
} else {
|
|
|
|
|
dialCount--;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-01 00:28:07 +02:00
|
|
|
|
//////
|
|
|
|
|
// Pitch
|
|
|
|
|
//////
|
2010-07-20 14:50:47 +02:00
|
|
|
|
if (pitchValue != pitchTarget) {
|
|
|
|
|
double pitchDiff;
|
|
|
|
|
if ((abs((pitchValue-pitchTarget)*10) > 5)) {
|
2010-08-06 00:12:19 +02:00
|
|
|
|
// if (0) {
|
2010-08-22 00:52:38 +02:00
|
|
|
|
pitchDiff = (pitchTarget - pitchValue)/2;
|
2010-07-20 14:50:47 +02:00
|
|
|
|
} else {
|
|
|
|
|
pitchDiff = pitchTarget - pitchValue;
|
|
|
|
|
dialCount--;
|
|
|
|
|
}
|
|
|
|
|
QPointF opd = QPointF(0,pitchDiff);
|
|
|
|
|
m_world->setTransform(QTransform::fromTranslate(opd.x(),opd.y()), true);
|
|
|
|
|
QPointF oop = m_world->transformOriginPoint();
|
|
|
|
|
m_world->setTransformOriginPoint((oop.x()-opd.x()),(oop.y()-opd.y()));
|
|
|
|
|
pitchValue += pitchDiff;
|
2010-06-25 19:38:03 +02:00
|
|
|
|
} else {
|
|
|
|
|
dialCount--;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-06 00:12:19 +02:00
|
|
|
|
if (dialCount)
|
|
|
|
|
scene()->update(sceneRect());
|
|
|
|
|
// if (!dialCount)
|
|
|
|
|
// skyDialTimer.stop();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Take an input value and move the elements accordingly.
|
|
|
|
|
// Movement is smooth, starts fast and slows down when
|
|
|
|
|
// approaching the target.
|
|
|
|
|
//
|
|
|
|
|
void PFDGadgetWidget::moveNeedles()
|
|
|
|
|
{
|
|
|
|
|
int dialCount = 3; // Gets decreased by one for each element
|
|
|
|
|
// which has finished moving
|
|
|
|
|
|
|
|
|
|
// qDebug() << "MoveNeedles";
|
|
|
|
|
/// TODO: optimize!!!
|
|
|
|
|
|
|
|
|
|
if (pfdError) {
|
|
|
|
|
dialTimer.stop();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-01 00:28:07 +02:00
|
|
|
|
//////
|
|
|
|
|
// Heading
|
2010-07-20 14:50:47 +02:00
|
|
|
|
//
|
|
|
|
|
// If you want a smooth transition between two angles, It is usually solved that by substracting
|
|
|
|
|
// one from another, and if the result is >180 or <-180 I substract (respectively add) 360 degrees
|
|
|
|
|
// to it. That way you always get the "shorter difference" to turn in.
|
2010-07-01 00:28:07 +02:00
|
|
|
|
//////
|
2010-07-20 14:50:47 +02:00
|
|
|
|
if (headingValue != headingTarget) {
|
|
|
|
|
double headingDiff;
|
|
|
|
|
if ((abs((headingValue-headingTarget)*10) > 5)) {
|
|
|
|
|
headingDiff = (headingTarget - headingValue)/5;
|
|
|
|
|
} else {
|
|
|
|
|
headingDiff = headingTarget-headingValue;
|
|
|
|
|
dialCount--;
|
|
|
|
|
}
|
2010-07-20 17:01:22 +02:00
|
|
|
|
double threshold = 180*compassBandWidth/540;
|
2010-07-20 14:50:47 +02:00
|
|
|
|
// Note: rendering can jump oh so very slightly when crossing the 180 degree
|
|
|
|
|
// boundary, should not impact actual useability of the display.
|
2010-07-20 17:01:22 +02:00
|
|
|
|
if ((headingValue+headingDiff)>=threshold) {
|
|
|
|
|
// We went over 180<38>: activate a -360 degree offset
|
|
|
|
|
headingDiff -= 2*threshold;
|
|
|
|
|
headingTarget -= 2*threshold;
|
|
|
|
|
} else if ((headingValue+headingDiff)<-threshold) {
|
|
|
|
|
// We went under -180<38>: remove the -360 degree offset
|
|
|
|
|
headingDiff += 2*threshold;
|
|
|
|
|
headingTarget += 2*threshold;
|
2010-07-20 14:50:47 +02:00
|
|
|
|
}
|
2010-09-04 09:21:13 +02:00
|
|
|
|
QPointF opd = QPointF(headingDiff,0);
|
2010-07-20 14:50:47 +02:00
|
|
|
|
m_compassband->setTransform(QTransform::fromTranslate(opd.x(),opd.y()), true);
|
|
|
|
|
headingValue += headingDiff;
|
|
|
|
|
} else {
|
2010-06-25 19:38:03 +02:00
|
|
|
|
dialCount--;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-01 00:28:07 +02:00
|
|
|
|
//////
|
|
|
|
|
// Speed
|
|
|
|
|
//////
|
2010-07-20 14:50:47 +02:00
|
|
|
|
if (groundspeedValue != groundspeedTarget) {
|
2010-08-22 00:52:38 +02:00
|
|
|
|
if (abs(groundspeedValue-groundspeedTarget) > speedScaleHeight/100) {
|
|
|
|
|
groundspeedValue += (groundspeedTarget-groundspeedValue)/2;
|
2010-07-20 14:50:47 +02:00
|
|
|
|
} else {
|
|
|
|
|
groundspeedValue = groundspeedTarget;
|
|
|
|
|
dialCount--;
|
|
|
|
|
}
|
|
|
|
|
qreal x = m_speedscale->transform().dx();
|
|
|
|
|
//opd = QPointF(x,fmod(groundspeedValue,speedScaleHeight/6));
|
|
|
|
|
// fmod does rounding errors!! the formula below works better:
|
|
|
|
|
QPointF opd = QPointF(x,groundspeedValue-floor(groundspeedValue/speedScaleHeight*6)*speedScaleHeight/6);
|
|
|
|
|
m_speedscale->setTransform(QTransform::fromTranslate(opd.x(),opd.y()), false);
|
|
|
|
|
|
|
|
|
|
double speedText = groundspeedValue/speedScaleHeight*30;
|
|
|
|
|
QString s = QString().sprintf("%.0f",speedText);
|
|
|
|
|
m_speedtext->setPlainText(s);
|
|
|
|
|
|
|
|
|
|
// Now update the text elements inside the scale:
|
|
|
|
|
// (Qt documentation states that the list has the same order
|
|
|
|
|
// as the item add order in the QGraphicsItemGroup)
|
|
|
|
|
QList <QGraphicsItem *> textList = m_speedscale->childItems();
|
|
|
|
|
qreal val = 5*floor(groundspeedValue/speedScaleHeight*6)+20;
|
|
|
|
|
foreach( QGraphicsItem * item, textList) {
|
|
|
|
|
if (QGraphicsTextItem *text = qgraphicsitem_cast<QGraphicsTextItem *>(item)) {
|
|
|
|
|
QString s = (val<0) ? QString() : QString().sprintf("%.0f",val);
|
2010-08-22 00:52:38 +02:00
|
|
|
|
if (text->toPlainText() == s)
|
|
|
|
|
break; // This should happen at element one if is has not changed, indicating
|
|
|
|
|
// that it's not necessary to do the rest of the list
|
2010-07-20 14:50:47 +02:00
|
|
|
|
text->setPlainText(s);
|
|
|
|
|
val -= 5;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-07-01 00:28:07 +02:00
|
|
|
|
} else {
|
|
|
|
|
dialCount--;
|
|
|
|
|
}
|
2010-07-02 00:28:19 +02:00
|
|
|
|
|
|
|
|
|
//////
|
|
|
|
|
// Altitude
|
|
|
|
|
//////
|
2010-07-20 14:50:47 +02:00
|
|
|
|
if (altitudeValue != altitudeTarget) {
|
2010-08-22 00:52:38 +02:00
|
|
|
|
if (abs(altitudeValue-altitudeTarget) > altitudeScaleHeight/100) {
|
|
|
|
|
altitudeValue += (altitudeTarget-altitudeValue)/2;
|
2010-07-20 14:50:47 +02:00
|
|
|
|
} else {
|
|
|
|
|
altitudeValue = altitudeTarget;
|
|
|
|
|
dialCount--;
|
|
|
|
|
}
|
|
|
|
|
qreal x = m_altitudescale->transform().dx();
|
|
|
|
|
//opd = QPointF(x,fmod(altitudeValue,altitudeScaleHeight/6));
|
|
|
|
|
// fmod does rounding errors!! the formula below works better:
|
|
|
|
|
QPointF opd = QPointF(x,altitudeValue-floor(altitudeValue/altitudeScaleHeight*6)*altitudeScaleHeight/6);
|
|
|
|
|
m_altitudescale->setTransform(QTransform::fromTranslate(opd.x(),opd.y()), false);
|
|
|
|
|
double altitudeText = altitudeValue/altitudeScaleHeight*30;
|
|
|
|
|
QString s = QString().sprintf("%.0f",altitudeText);
|
|
|
|
|
m_altitudetext->setPlainText(s);
|
|
|
|
|
|
|
|
|
|
// Now update the text elements inside the scale:
|
|
|
|
|
// (Qt documentation states that the list has the same order
|
|
|
|
|
// as the item add order in the QGraphicsItemGroup)
|
|
|
|
|
QList <QGraphicsItem *> textList = m_altitudescale->childItems();
|
|
|
|
|
qreal val = 5*floor(altitudeValue/altitudeScaleHeight*6)+20;
|
|
|
|
|
foreach( QGraphicsItem * item, textList) {
|
|
|
|
|
if (QGraphicsTextItem *text = qgraphicsitem_cast<QGraphicsTextItem *>(item)) {
|
|
|
|
|
QString s = (val<0) ? QString() : QString().sprintf("%.0f",val);
|
2010-08-22 00:52:38 +02:00
|
|
|
|
if (text->toPlainText() == s)
|
|
|
|
|
break; // This should happen at element one if is has not changed, indicating
|
|
|
|
|
// that it's not necessary to do the rest of the list
|
2010-07-20 14:50:47 +02:00
|
|
|
|
text->setPlainText(s);
|
|
|
|
|
val -= 5;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-07-02 00:28:19 +02:00
|
|
|
|
} else {
|
|
|
|
|
dialCount--;
|
|
|
|
|
}
|
2010-07-01 00:28:07 +02:00
|
|
|
|
|
2010-06-25 19:38:03 +02:00
|
|
|
|
if (!dialCount)
|
|
|
|
|
dialTimer.stop();
|
2010-08-06 00:12:19 +02:00
|
|
|
|
else
|
|
|
|
|
scene()->update(sceneRect());
|
2010-06-25 19:38:03 +02:00
|
|
|
|
}
|
2010-08-22 00:52:38 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@}
|
|
|
|
|
@}
|
|
|
|
|
*/
|