QGCToolbox.cc 4.09 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
#include "GPSManager.h"
30 31
#include "HomePositionManager.h"
#include "JoystickManager.h"
Don Gagne's avatar
Don Gagne committed
32 33 34 35
#include "LinkManager.h"
#include "MAVLinkProtocol.h"
#include "MissionCommands.h"
#include "MultiVehicleManager.h"
dogmaphobic's avatar
dogmaphobic committed
36
#include "QGCImageProvider.h"
Don Gagne's avatar
Don Gagne committed
37
#include "UASMessageHandler.h"
dogmaphobic's avatar
dogmaphobic committed
38
#include "QGCMapEngineManager.h"
Jimmy Johnson's avatar
Jimmy Johnson committed
39
#include "FollowMe.h"
40 41

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

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

    //FIXME: make this configurable...
    //_gpsManager->setupGPS("ttyACM0");
94 95 96 97
}

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

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

}

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