RallyPointManager.cc 3.65 KB
Newer Older
1 2
/****************************************************************************
 *
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9 10
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

#include "RallyPointManager.h"
11
#include "ParameterManager.h"
12 13 14 15 16
#include "Vehicle.h"

QGC_LOGGING_CATEGORY(RallyPointManagerLog, "RallyPointManagerLog")

RallyPointManager::RallyPointManager(Vehicle* vehicle)
17
    : PlanManager(vehicle, MAV_MISSION_TYPE_RALLY)
18
{
19 20 21 22 23
    connect(this, &PlanManager::inProgressChanged,          this, &RallyPointManager::inProgressChanged);
    connect(this, &PlanManager::error,                      this, &RallyPointManager::error);
    connect(this, &PlanManager::removeAllComplete,          this, &RallyPointManager::removeAllComplete);
    connect(this, &PlanManager::sendComplete,               this, &RallyPointManager::_sendComplete);
    connect(this, &PlanManager::newMissionItemsAvailable,   this, &RallyPointManager::_planManagerLoadComplete);
24 25
}

26

27 28 29 30 31 32 33 34 35 36 37 38 39 40
RallyPointManager::~RallyPointManager()
{

}

void RallyPointManager::_sendError(ErrorCode_t errorCode, const QString& errorMsg)
{
    qCDebug(RallyPointManagerLog) << "Sending error" << errorCode << errorMsg;

    emit error(errorCode, errorMsg);
}

void RallyPointManager::sendToVehicle(const QList<QGeoCoordinate>& rgPoints)
{
Don Gagne's avatar
Don Gagne committed
41 42 43 44
    _rgSendPoints.clear();
    for (const QGeoCoordinate& rallyPoint: rgPoints) {
        _rgSendPoints.append(rallyPoint);
    }
45

Don Gagne's avatar
Don Gagne committed
46
    QList<MissionItem*> rallyItems;
47 48 49 50
    for (int i=0; i<rgPoints.count(); i++) {

        MissionItem* item = new MissionItem(0,
                                            MAV_CMD_NAV_RALLY_POINT,
51
                                            MAV_FRAME_GLOBAL_RELATIVE_ALT,
52 53 54 55 56 57 58 59 60 61 62
                                            0, 0, 0, 0,                 // param 1-4 unused
                                            rgPoints[i].latitude(),
                                            rgPoints[i].longitude(),
                                            rgPoints[i].altitude(),
                                            false,                      // autocontinue
                                            false,                      // isCurrentItem
                                            this);                      // parent
        rallyItems.append(item);
    }

    // Plan manager takes control of MissionItems, so no need to delete
63
    writeMissionItems(rallyItems);
DonLakeFlyer's avatar
DonLakeFlyer committed
64 65 66 67
}

void RallyPointManager::removeAll(void)
{
68 69
    _rgPoints.clear();
    PlanManager::removeAll();
70
}
71 72 73 74 75

bool RallyPointManager::supported(void) const
{
    return (_vehicle->capabilityBits() & MAV_PROTOCOL_CAPABILITY_MISSION_RALLY) && (_vehicle->maxProtoVersion() >= 200);
}
76 77 78 79 80 81 82

void RallyPointManager::_planManagerLoadComplete(bool removeAllRequested)
{
    _rgPoints.clear();

    Q_UNUSED(removeAllRequested);

83
    const QList<MissionItem*>& rallyItems = missionItems();
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98

    for (int i=0; i<rallyItems.count(); i++) {
        MissionItem* item = rallyItems[i];

        MAV_CMD command = item->command();

        if (command == MAV_CMD_NAV_RALLY_POINT) {
            _rgPoints.append(QGeoCoordinate(item->param5(), item->param6(), item->param7()));
        } else {
            qCDebug(RallyPointManagerLog) << "RallyPointManager load: Unsupported command %1" << item->command();
            break;
        }
    }


Don Gagne's avatar
Don Gagne committed
99 100 101 102 103 104 105 106 107 108 109 110
    emit loadComplete();
}

void RallyPointManager::_sendComplete(bool error)
{
    if (error) {
        _rgPoints.clear();
    } else {
        _rgPoints = _rgSendPoints;
    }
    _rgSendPoints.clear();
    emit sendComplete(error);
111
}