30 lines
1.2 KiB
C++
30 lines
1.2 KiB
C++
|
|
/****************************************************************************
|
||
|
|
*
|
||
|
|
* (c) 2009-2020 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 "SurveyPlanCreator.h"
|
||
|
|
#include "PlanMasterController.h"
|
||
|
|
#include "MissionSettingsItem.h"
|
||
|
|
#include "FixedWingLandingComplexItem.h"
|
||
|
|
#include "FixedWingLandingComplexItem.h"
|
||
|
|
|
||
|
|
SurveyPlanCreator::SurveyPlanCreator(PlanMasterController* planMasterController, QObject* parent)
|
||
|
|
: PlanCreator(planMasterController, MissionController::patternSurveyName, QStringLiteral("/qmlimages/PlanCreator/SurveyPlanCreator.png"), parent)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
void SurveyPlanCreator::createPlan(const QGeoCoordinate& mapCenterCoord)
|
||
|
|
{
|
||
|
|
_planMasterController->removeAll();
|
||
|
|
VisualMissionItem* takeoffItem = _missionController->insertTakeoffItem(mapCenterCoord, -1);
|
||
|
|
_missionController->insertComplexMissionItem(MissionController::patternSurveyName, mapCenterCoord, -1);
|
||
|
|
_missionController->insertLandItem(mapCenterCoord, -1);
|
||
|
|
_missionController->setCurrentPlanViewSeqNum(takeoffItem->sequenceNumber(), true);
|
||
|
|
}
|