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

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

class ParameterLoader;
40
class Vehicle;
41

42 43 44 45 46 47
/// 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.
48 49 50 51 52 53

class AutoPilotPlugin : public QObject
{
    Q_OBJECT

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

	/// false: One or more vehicle components require setup
	Q_PROPERTY(bool setupComplete READ setupComplete NOTIFY setupCompleteChanged)
65
    
66 67
    /// Reset all parameters to their default values
    Q_INVOKABLE void resetAllParametersToDefaults(void);
68
	
Don Gagne's avatar
Don Gagne committed
69
    /// Re-request the full set of parameters from the autopilot
70
	Q_INVOKABLE void refreshAllParameters(void);
Don Gagne's avatar
Don Gagne committed
71 72
    
    /// Request a refresh on the specific parameter
73
	Q_INVOKABLE void refreshParameter(int componentId, const QString& name);
Don Gagne's avatar
Don Gagne committed
74
    
75
    /// Request a refresh on all parameters that begin with the specified prefix
76 77 78
	Q_INVOKABLE void refreshParametersPrefix(int componentId, const QString& namePrefix);
    
	/// Returns true if the specifed parameter exists from the default component
Don Gagne's avatar
Don Gagne committed
79
    Q_INVOKABLE bool parameterExists(int componentId, const QString& name);
80 81
	
	/// Returns all parameter names
Don Gagne's avatar
Don Gagne committed
82
	QStringList parameterNames(int componentId);
83 84
	
	/// Returns the specified parameter Fact from the default component
Don Gagne's avatar
Don Gagne committed
85 86 87
	/// WARNING: Returns a default Fact if parameter does not exists. If that possibility exists, check for existince first with
	/// parameterExists.
    Fact* getParameterFact(int componentId, const QString& name);
88 89 90 91 92
	
	/// Writes the parameter facts to the specified stream
	void writeParametersToStream(QTextStream &stream);
	
	/// Reads the parameters from the stream and updates values
93 94
    /// @return Errors during load. Empty string for no errors
	QString readParametersFromStream(QTextStream &stream);
95
	
96 97 98 99
    /// 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
100
    
101 102 103 104 105 106 107
    /// 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
    
108 109
    const QMap<int, QMap<QString, QStringList> >& getGroupMap(void);

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

#endif