ComplexMissionItem.h 2.09 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/
9

10 11 12
#ifndef ComplexMissionItem_H
#define ComplexMissionItem_H

13
#include "VisualMissionItem.h"
14
#include "QGCGeo.h"
15

16
class ComplexMissionItem : public VisualMissionItem
17 18
{
    Q_OBJECT
19

20
public:
21
    ComplexMissionItem(Vehicle* vehicle, bool flyView, QObject* parent);
22

23 24
    const ComplexMissionItem& operator=(const ComplexMissionItem& other);

25
    Q_PROPERTY(double   complexDistance     READ complexDistance    NOTIFY complexDistanceChanged)
26

27
    /// @return The distance covered the complex mission item in meters.
28
    /// Signals complexDistanceChanged
29
    virtual double complexDistance(void) const = 0;
30

31 32
    /// Load the complex mission item from Json
    ///     @param complexObject Complex mission item json object
Don Gagne's avatar
Don Gagne committed
33
    ///     @param sequenceNumber Sequence number for first MISSION_ITEM in survey
34 35
    ///     @param[out] errorString Error if load fails
    /// @return true: load success, false: load failed, errorString set
Don Gagne's avatar
Don Gagne committed
36
    virtual bool load(const QJsonObject& complexObject, int sequenceNumber, QString& errorString) = 0;
37

38 39 40
    /// Get the point of complex mission item furthest away from a coordinate
    ///     @param other QGeoCoordinate to which distance is calculated
    /// @return the greatest distance from any point of the complex item to some coordinate
41
    /// Signals greatestDistanceToChanged
42
    virtual double greatestDistanceTo(const QGeoCoordinate &other) const = 0;
43

Don Gagne's avatar
Don Gagne committed
44 45 46
    /// This mission item attribute specifies the type of the complex item.
    static const char* jsonComplexItemTypeKey;

47 48 49 50
    // Overrides from VisualMissionItem
    double additionalTimeDelay(void) const final { return 0; }


51
signals:
52
    void complexDistanceChanged     (void);
53
    void boundingCubeChanged        (void);
54
    void greatestDistanceToChanged  (void);
55 56 57
};

#endif