Skip to content
Snippets Groups Projects
ADSBVehicle.cc 2.8 KiB
Newer Older
  • Learn to ignore specific revisions
  • /****************************************************************************
     *
     *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
     *
     * QGroundControl is licensed according to the terms in the file
     * COPYING.md in the root of the source code directory.
     *
     ****************************************************************************/
    
    #include "ADSBVehicle.h"
    
    #include <QDebug>
    #include <QtMath>
    
    ADSBVehicle::ADSBVehicle(mavlink_adsb_vehicle_t& adsbVehicle, QObject* parent)
        : QObject       (parent)
        , _icaoAddress  (adsbVehicle.ICAO_address)
    
        , _callsign     (adsbVehicle.callsign)
    
        , _altitude     (NAN)
        , _heading      (NAN)
    
    Gus Grubba's avatar
    Gus Grubba committed
        , _alert        (false)
    
    Don Gagne's avatar
     
    Don Gagne committed
        if (!(adsbVehicle.flags & ADSB_FLAGS_VALID_COORDS)) {
    
            qWarning() << "At least coords must be valid";
            return;
        }
        update(adsbVehicle);
    }
    
    
    Gus Grubba's avatar
    Gus Grubba committed
    ADSBVehicle::ADSBVehicle(const QGeoCoordinate& location, float heading, bool alert, QObject* parent)
        : QObject(parent)
        , _icaoAddress(0)
        , _alert(alert)
    
    Gus Grubba's avatar
    Gus Grubba committed
        update(alert, location, heading);
    
    Gus Grubba's avatar
    Gus Grubba committed
    void ADSBVehicle::update(bool alert, const QGeoCoordinate& location, float heading)
    
    Gus Grubba's avatar
    Gus Grubba committed
        _altitude   = location.altitude();
        _heading    = heading;
        _alert      = alert;
        emit coordinateChanged();
        emit altitudeChanged();
        emit headingChanged();
        emit alertChanged();
    
    void ADSBVehicle::update(mavlink_adsb_vehicle_t& adsbVehicle)
    {
        if (_icaoAddress != adsbVehicle.ICAO_address) {
            qWarning() << "ICAO address mismatch expected:actual" << _icaoAddress << adsbVehicle.ICAO_address;
            return;
        }
    
    
    Don Gagne's avatar
     
    Don Gagne committed
        if (!(adsbVehicle.flags & ADSB_FLAGS_VALID_COORDS)) {
    
        QString currCallsign(adsbVehicle.callsign);
    
        if (currCallsign != _callsign) {
            _callsign = currCallsign;
    
    Gus Grubba's avatar
    Gus Grubba committed
            emit callsignChanged();
    
        }
    
        QGeoCoordinate newCoordinate(adsbVehicle.lat / 1e7, adsbVehicle.lon / 1e7);
    
        if (newCoordinate != _coordinate) {
            _coordinate = newCoordinate;
    
    Gus Grubba's avatar
    Gus Grubba committed
            emit coordinateChanged();
    
        }
    
        double newAltitude = NAN;
    
    Don Gagne's avatar
     
    Don Gagne committed
        if (adsbVehicle.flags & ADSB_FLAGS_VALID_ALTITUDE) {
    
            newAltitude = (double)adsbVehicle.altitude / 1e3;
    
        }
        if (!(qIsNaN(newAltitude) && qIsNaN(_altitude)) && !qFuzzyCompare(newAltitude, _altitude)) {
            _altitude = newAltitude;
    
    Gus Grubba's avatar
    Gus Grubba committed
            emit altitudeChanged();
    
        }
    
        double newHeading = NAN;
    
    Don Gagne's avatar
     
    Don Gagne committed
        if (adsbVehicle.flags & ADSB_FLAGS_VALID_HEADING) {
    
            newHeading = (double)adsbVehicle.heading / 100.0;
        }
        if (!(qIsNaN(newHeading) && qIsNaN(_heading)) && !qFuzzyCompare(newHeading, _heading)) {
            _heading = newHeading;
    
    Gus Grubba's avatar
    Gus Grubba committed
            emit headingChanged();
    
        _lastUpdateTimer.restart();
    }
    
    bool ADSBVehicle::expired()
    {
        return _lastUpdateTimer.hasExpired(expirationTimeoutMs);