CustomPlanCreator.cc 1.77 KB
Newer Older
DonLakeFlyer's avatar
DonLakeFlyer committed
1 2 3 4 5 6 7 8 9 10 11 12
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/

#include "CustomPlanCreator.h"
#include "PlanMasterController.h"
#include "MissionSettingsItem.h"
13
#include "FixedWingLandingComplexItem.h"
DonLakeFlyer's avatar
DonLakeFlyer committed
14 15 16 17 18 19 20 21 22 23

CustomPlanCreator::CustomPlanCreator(PlanMasterController* planMasterController, QObject* parent)
    : PlanCreator(planMasterController, tr("Custom"), QStringLiteral("/qmlimages/PlanCreator/CustomPlanCreator.png"), parent)
{

}

void CustomPlanCreator::createPlan(const QGeoCoordinate& mapCenterCoord)
{
    _planMasterController->removeAll();
24 25
    VisualMissionItem* takeoffItem = _missionController->insertSimpleMissionItem(mapCenterCoord, -1);
    takeoffItem->setWizardMode(true);
26 27
    _missionController->insertSimpleMissionItem(mapCenterCoord.atDistanceAndAzimuth(50, 135), -1);
    _missionController->insertSimpleMissionItem(mapCenterCoord.atDistanceAndAzimuth(50, -135),-1);
DonLakeFlyer's avatar
DonLakeFlyer committed
28
    if (_planMasterController->managerVehicle()->fixedWing()) {
29 30 31
        FixedWingLandingComplexItem* landingItem = qobject_cast<FixedWingLandingComplexItem*>(_missionController->insertComplexMissionItem(MissionController::patternFWLandingName, mapCenterCoord, -1));
        landingItem->setWizardMode(true);
        landingItem->setLoiterDragAngleOnly(true);
DonLakeFlyer's avatar
DonLakeFlyer committed
32 33 34 35
    } else {
        MissionSettingsItem* settingsItem = _missionController->visualItems()->value<MissionSettingsItem*>(0);
        settingsItem->setMissionEndRTL(true);
    }
36
    _missionController->setCurrentPlanViewIndex(takeoffItem->sequenceNumber(), true);
DonLakeFlyer's avatar
DonLakeFlyer committed
37 38

}