AutoPilotPlugin.h 4.94 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 - 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>

27 28 29 30 31 32
#ifndef AUTOPILOTPLUGIN_H
#define AUTOPILOTPLUGIN_H

#include <QObject>
#include <QList>
#include <QString>
Don Gagne's avatar
Don Gagne committed
33
#include <QQmlContext>
34 35 36

#include "UASInterface.h"
#include "VehicleComponent.h"
Don Gagne's avatar
Don Gagne committed
37
#include "FactSystem.h"
38
#include "ParameterLoader.h"
39

40 41 42 43 44 45
/// This is the base class for AutoPilot plugins
///
/// The AutoPilotPlugin class is an abstract base class which represent the methods and objects
/// which are specific to a certain AutoPilot. This is the only place where AutoPilot specific
/// code should reside in QGroundControl. The remainder of the QGroundControl source is
/// generic to a common mavlink implementation.
46 47 48 49 50 51

class AutoPilotPlugin : public QObject
{
    Q_OBJECT

public:
Don Gagne's avatar
Don Gagne committed
52 53
    AutoPilotPlugin(UASInterface* uas, QObject* parent);
    
54 55 56
	/// true: plugin is ready for use, plugin should no longer be used
	Q_PROPERTY(bool pluginReady READ pluginReady NOTIFY pluginReadyChanged)
	
57 58
    /// List of VehicleComponent objects
    Q_PROPERTY(QVariantList vehicleComponents READ vehicleComponents CONSTANT)
59 60 61 62

	/// false: One or more vehicle components require setup
	Q_PROPERTY(bool setupComplete READ setupComplete NOTIFY setupCompleteChanged)
	
Don Gagne's avatar
Don Gagne committed
63
    /// Re-request the full set of parameters from the autopilot
64
	Q_INVOKABLE void refreshAllParameters(void);
Don Gagne's avatar
Don Gagne committed
65 66
    
    /// Request a refresh on the specific parameter
67
	Q_INVOKABLE void refreshParameter(int componentId, const QString& name);
Don Gagne's avatar
Don Gagne committed
68
    
69
    /// Request a refresh on all parameters that begin with the specified prefix
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
	Q_INVOKABLE void refreshParametersPrefix(int componentId, const QString& namePrefix);
    
	/// Returns true if the specifed parameter exists from the default component
	Q_INVOKABLE bool parameterExists(const QString& name);
	
	/// Returns all parameter names
	/// FIXME: component id missing, generic to fact
	QStringList parameterNames(void);
	
	/// Returns the specified parameter Fact from the default component
	/// WARNING: Will assert if fact does not exists. If that possibility exists, check for existince first with
	/// factExists.
	Fact* getParameterFact(const QString& name);
	
	/// Writes the parameter facts to the specified stream
	void writeParametersToStream(QTextStream &stream);
	
	/// Reads the parameters from the stream and updates values
	void readParametersFromStream(QTextStream &stream);
	
90 91 92 93
    /// Returns true if the specifed fact exists
    Q_INVOKABLE bool factExists(FactSystem::Provider_t  provider,       ///< fact provider
                                int                     componentId,    ///< fact component, -1=default component
                                const QString&          name);          ///< fact name
94
    
95 96 97 98 99 100 101
    /// Returns the specified Fact.
    /// WARNING: Will assert if fact does not exists. If that possibility exists, check for existince first with
    /// factExists.
    Fact* getFact(FactSystem::Provider_t    provider,       ///< fact provider
                  int                       componentId,    ///< fact component, -1=default component
                  const QString&            name);          ///< fact name
    
102 103
    const QMap<int, QMap<QString, QStringList> >& getGroupMap(void);

104 105 106
    // Must be implemented by derived class
    virtual const QVariantList& vehicleComponents(void) = 0;
    
107
    static void clearStaticData(void);
108
	
109
	// Property accessors
110
	bool pluginReady(void) { return _pluginReady; }
111 112
	bool setupComplete(void);
	
Don Gagne's avatar
Don Gagne committed
113 114
    UASInterface* uas(void) { return _uas; }
    
115
signals:
116
    void pluginReadyChanged(bool pluginReady);
117
	void setupCompleteChanged(bool setupComplete);
118
	
119
protected:
120
    /// All access to AutoPilotPugin objects is through getInstanceForAutoPilotPlugin
Don Gagne's avatar
Don Gagne committed
121
    AutoPilotPlugin(QObject* parent = NULL) : QObject(parent) { }
122
    
123 124 125
	/// Returns the ParameterLoader
	virtual ParameterLoader* _getParameterLoader(void) = 0;
	
126 127
    UASInterface*   _uas;
    bool            _pluginReady;
128
	bool			_setupComplete;
129 130 131
	
private slots:
	void _uasDisconnected(void);
132 133 134 135
	void _pluginReadyChanged(bool pluginReady);
	
private:
	void _recalcSetupComplete(void);
136 137 138
};

#endif