APMGeoFenceManager.h 2.43 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/

#ifndef APMGeoFenceManager_H
#define APMGeoFenceManager_H

#include "GeoFenceManager.h"
#include "QGCMAVLink.h"
#include "FactSystem.h"

class APMGeoFenceManager : public GeoFenceManager
{
    Q_OBJECT
    
public:
    APMGeoFenceManager(Vehicle* vehicle);
    ~APMGeoFenceManager();

    // Overrides from GeoFenceManager
    bool            inProgress              (void) const final;
    void            loadFromVehicle         (void) final;
28
    void            sendToVehicle           (const QGeoCoordinate& breachReturn, const QList<QGeoCoordinate>& polygon) final;
29 30 31 32 33 34 35
    bool            fenceSupported          (void) const final { return _fenceSupported; }
    bool            circleSupported         (void) const final;
    bool            polygonSupported        (void) const final;
    bool            breachReturnSupported   (void) const final { return _breachReturnSupported; }
    float           circleRadius            (void) const final;
    QVariantList    params                  (void) const final { return _params; }
    QStringList     paramLabels             (void) const final { return _paramLabels; }
36
    QString         editorQml               (void) const final;
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

private slots:
    void _mavlinkMessageReceived(const mavlink_message_t& message);
    void _updateSupportedFlags(void);
    void _circleRadiusRawValueChanged(QVariant value);
    void _parametersReady(void);
    
private:
    void _requestFencePoint(uint8_t pointIndex);
    void _sendFencePoint(uint8_t pointIndex);
    bool _geoFenceSupported(void);

private:
    bool _fenceSupported;
    bool _breachReturnSupported;
Don Gagne's avatar
Don Gagne committed
52 53
    bool _circleSupported;
    bool _polygonSupported;
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
    bool _firstParamLoadComplete;

    QVariantList    _params;
    QStringList     _paramLabels;

    Fact* _circleRadiusFact;

    bool _readTransactionInProgress;
    bool _writeTransactionInProgress;

    uint8_t _cReadFencePoints;
    uint8_t _cWriteFencePoints;
    uint8_t _currentFencePoint;

    Fact* _fenceTypeFact;

    static const char* _fenceTotalParam;
    static const char* _fenceActionParam;
    static const char* _fenceEnableParam;
};

#endif