CorridorScanPlanCreator.cc 1.21 KB
Newer Older
DonLakeFlyer's avatar
DonLakeFlyer committed
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
DonLakeFlyer's avatar
DonLakeFlyer committed
4 5 6 7 8 9 10 11 12
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

#include "CorridorScanPlanCreator.h"
#include "PlanMasterController.h"
#include "MissionSettingsItem.h"
13
#include "CorridorScanComplexItem.h"
DonLakeFlyer's avatar
DonLakeFlyer committed
14 15

CorridorScanPlanCreator::CorridorScanPlanCreator(PlanMasterController* planMasterController, QObject* parent)
16
    : PlanCreator(planMasterController, CorridorScanComplexItem::name, QStringLiteral("/qmlimages/PlanCreator/CorridorScanPlanCreator.png"), parent)
DonLakeFlyer's avatar
DonLakeFlyer committed
17 18 19 20 21 22 23
{

}

void CorridorScanPlanCreator::createPlan(const QGeoCoordinate& mapCenterCoord)
{
    _planMasterController->removeAll();
24
    VisualMissionItem* takeoffItem = _missionController->insertTakeoffItem(mapCenterCoord, -1);
25
    _missionController->insertComplexMissionItem(CorridorScanComplexItem::name, mapCenterCoord, -1);
26
    _missionController->insertLandItem(mapCenterCoord, -1);
27
    _missionController->setCurrentPlanViewSeqNum(takeoffItem->sequenceNumber(), true);
DonLakeFlyer's avatar
DonLakeFlyer committed
28
}