QGCToolbox.cc 3.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 /*=====================================================================

 QGroundControl Open Source Ground Control Station

 (c) 2009 - 2015 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

 This file is part of the QGROUNDCONTROL project

 QGROUNDCONTROL is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.

 QGROUNDCONTROL is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

 ======================================================================*/

Don Gagne's avatar
Don Gagne committed
24 25 26
#include "AutoPilotPluginManager.h"
#include "FactSystem.h"
#include "FirmwarePluginManager.h"
27
#include "FlightMapSettings.h"
Don Gagne's avatar
Don Gagne committed
28
#include "GAudioOutput.h"
29 30
#include "HomePositionManager.h"
#include "JoystickManager.h"
Don Gagne's avatar
Don Gagne committed
31 32 33 34
#include "LinkManager.h"
#include "MAVLinkProtocol.h"
#include "MissionCommands.h"
#include "MultiVehicleManager.h"
dogmaphobic's avatar
dogmaphobic committed
35
#include "QGCImageProvider.h"
Don Gagne's avatar
Don Gagne committed
36
#include "UASMessageHandler.h"
dogmaphobic's avatar
dogmaphobic committed
37
#include "QGCMapEngineManager.h"
Jimmy Johnson's avatar
Jimmy Johnson committed
38
#include "FollowMe.h"
39 40

QGCToolbox::QGCToolbox(QGCApplication* app)
Don Gagne's avatar
Don Gagne committed
41
    : _audioOutput(NULL)
42
    , _autopilotPluginManager(NULL)
Don Gagne's avatar
Don Gagne committed
43 44
    , _factSystem(NULL)
    , _firmwarePluginManager(NULL)
45 46
    , _flightMapSettings(NULL)
    , _homePositionManager(NULL)
Don Gagne's avatar
Don Gagne committed
47
    , _imageProvider(NULL)
48
    , _joystickManager(NULL)
Don Gagne's avatar
Don Gagne committed
49 50 51 52
    , _linkManager(NULL)
    , _mavlinkProtocol(NULL)
    , _missionCommands(NULL)
    , _multiVehicleManager(NULL)
dogmaphobic's avatar
dogmaphobic committed
53
    , _mapEngineManager(NULL)
54
    , _uasMessageHandler(NULL)
Jimmy Johnson's avatar
Jimmy Johnson committed
55
    , _followMe(NULL)
56
{
Don Gagne's avatar
Don Gagne committed
57
    _audioOutput =              new GAudioOutput(app);
58
    _autopilotPluginManager =   new AutoPilotPluginManager(app);
Don Gagne's avatar
Don Gagne committed
59 60
    _factSystem =               new FactSystem(app);
    _firmwarePluginManager =    new FirmwarePluginManager(app);
61 62
    _flightMapSettings =        new FlightMapSettings(app);
    _homePositionManager =      new HomePositionManager(app);
Don Gagne's avatar
Don Gagne committed
63 64
    _imageProvider =            new QGCImageProvider(app);
    _joystickManager =          new JoystickManager(app);
65 66
    _linkManager =              new LinkManager(app);
    _mavlinkProtocol =          new MAVLinkProtocol(app);
Don Gagne's avatar
Don Gagne committed
67 68
    _missionCommands =          new MissionCommands(app);
    _multiVehicleManager =      new MultiVehicleManager(app);
dogmaphobic's avatar
dogmaphobic committed
69
    _mapEngineManager =       new QGCMapEngineManager(app);
70
    _uasMessageHandler =        new UASMessageHandler(app);
Jimmy Johnson's avatar
Jimmy Johnson committed
71
    _followMe =                 new FollowMe(app);
72

Don Gagne's avatar
Don Gagne committed
73
    _audioOutput->setToolbox(this);
74
    _autopilotPluginManager->setToolbox(this);
Don Gagne's avatar
Don Gagne committed
75 76
    _factSystem->setToolbox(this);
    _firmwarePluginManager->setToolbox(this);
77 78
    _flightMapSettings->setToolbox(this);
    _homePositionManager->setToolbox(this);
Don Gagne's avatar
Don Gagne committed
79 80
    _imageProvider->setToolbox(this);
    _joystickManager->setToolbox(this);
81 82
    _linkManager->setToolbox(this);
    _mavlinkProtocol->setToolbox(this);
Don Gagne's avatar
Don Gagne committed
83 84
    _missionCommands->setToolbox(this);
    _multiVehicleManager->setToolbox(this);
dogmaphobic's avatar
dogmaphobic committed
85
    _mapEngineManager->setToolbox(this);
86
    _uasMessageHandler->setToolbox(this);
Jimmy Johnson's avatar
Jimmy Johnson committed
87
    _followMe->setToolbox(this);
88 89 90 91
}

QGCToolbox::~QGCToolbox()
{
Don Gagne's avatar
Don Gagne committed
92
    delete _audioOutput;
93
    delete _autopilotPluginManager;
Don Gagne's avatar
Don Gagne committed
94 95
    delete _factSystem;
    delete _firmwarePluginManager;
96 97 98
    delete _flightMapSettings;
    delete _homePositionManager;
    delete _joystickManager;
Don Gagne's avatar
Don Gagne committed
99 100 101
    delete _linkManager;
    delete _mavlinkProtocol;
    delete _missionCommands;
dogmaphobic's avatar
dogmaphobic committed
102
    delete _mapEngineManager;
Don Gagne's avatar
Don Gagne committed
103
    delete _multiVehicleManager;
104
    delete _uasMessageHandler;
Jimmy Johnson's avatar
Jimmy Johnson committed
105
    delete _followMe;
106 107 108 109 110 111 112 113 114 115 116 117 118 119
}

QGCTool::QGCTool(QGCApplication* app)
    : QObject((QObject*)app)
    , _app(app)
    , _toolbox(NULL)
{

}

void QGCTool::setToolbox(QGCToolbox* toolbox)
{
    _toolbox = toolbox;
}