AutoPilotPluginManager.h 2.49 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
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 - 2014 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/>.
 
 ======================================================================*/

24 25 26
/// @file
///     @author Don Gagne <don@thegagnes.com>

Don Gagne's avatar
Don Gagne committed
27 28 29 30 31 32 33 34 35 36
#ifndef AUTOPILOTPLUGINMANAGER_H
#define AUTOPILOTPLUGINMANAGER_H

#include <QObject>
#include <QList>
#include <QString>

#include "UASInterface.h"
#include "VehicleComponent.h"
#include "AutoPilotPlugin.h"
37
#include "QGCSingleton.h"
38
#include "QGCMAVLink.h"
Don Gagne's avatar
Don Gagne committed
39

40 41

/// AutoPilotPlugin manager is a singleton which maintains the list of AutoPilotPlugin objects.
Don Gagne's avatar
Don Gagne committed
42

43
class AutoPilotPluginManager : public QGCSingleton
Don Gagne's avatar
Don Gagne committed
44 45
{
    Q_OBJECT
Don Gagne's avatar
Don Gagne committed
46 47
    
    DECLARE_QGC_SINGLETON(AutoPilotPluginManager, AutoPilotPluginManager)
Don Gagne's avatar
Don Gagne committed
48 49

public:
50 51 52 53 54 55 56 57 58 59 60
    /// Returns the singleton AutoPilotPlugin instance for the specified uas.
    ///     @param uas Uas to get plugin for
    AutoPilotPlugin* getInstanceForAutoPilotPlugin(UASInterface* uas);
    
    typedef struct {
        uint8_t baseMode;
        uint32_t customMode;
    } FullMode_t;

    /// Returns the list of modes which are available for the specified autopilot type.
    QList<FullMode_t> getModes(int autopilotType) const;
Don Gagne's avatar
Don Gagne committed
61
    
62 63 64 65 66 67 68
    /// @brief Returns a human readable short description for the specified mode.
    QString getShortModeText(uint8_t baseMode, uint32_t customMode, int autopilotType) const;

private slots:
    void _uasCreated(UASInterface* uas);
    void _uasDeleted(UASInterface* uas);

Don Gagne's avatar
Don Gagne committed
69
private:
70
    /// All access to singleton is through AutoPilotPluginManager::instance
Don Gagne's avatar
Don Gagne committed
71
    AutoPilotPluginManager(QObject* parent = NULL);
72
    ~AutoPilotPluginManager();
Don Gagne's avatar
Don Gagne committed
73
    
74
    QMap<MAV_AUTOPILOT, QMap<int, AutoPilotPlugin*> > _pluginMap; ///< Map of AutoPilot plugins _pluginMap[MAV_TYPE][UASid]
Don Gagne's avatar
Don Gagne committed
75 76 77
};

#endif