AutoPilotPlugin.h 5.53 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
class FirmwarePlugin;
42

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

class AutoPilotPlugin : public QObject
{
    Q_OBJECT

public:
55
    AutoPilotPlugin(Vehicle* vehicle, QObject* parent);
56
    ~AutoPilotPlugin();
Don Gagne's avatar
Don Gagne committed
57
    
58 59 60 61 62
	/// true: parameters are ready for use
	Q_PROPERTY(bool parametersReady READ parametersReady NOTIFY parametersReadyChanged)
    
    /// true: parameters are missing from firmware response, false: all parameters received from firmware
    Q_PROPERTY(bool missingParameters READ missingParameters NOTIFY missingParametersChanged)
63
	
64 65
    /// List of VehicleComponent objects
    Q_PROPERTY(QVariantList vehicleComponents READ vehicleComponents CONSTANT)
66 67 68

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

114 115 116
    // Must be implemented by derived class
    virtual const QVariantList& vehicleComponents(void) = 0;
    
117
	// Property accessors
118 119
	bool parametersReady(void) { return _parametersReady; }
    bool missingParameters(void) { return _missingParameters; }
120 121
	bool setupComplete(void);
	
122
    Vehicle* vehicle(void) { return _vehicle; }
Don Gagne's avatar
Don Gagne committed
123
    
124
signals:
125 126
    void parametersReadyChanged(bool parametersReady);
    void missingParametersChanged(bool missingParameters);
127
	void setupCompleteChanged(bool setupComplete);
128
    void parameterListProgress(float value);
129
	
130
protected:
131
    /// All access to AutoPilotPugin objects is through getInstanceForAutoPilotPlugin
Don Gagne's avatar
Don Gagne committed
132
    AutoPilotPlugin(QObject* parent = NULL) : QObject(parent) { }
133
    
134 135 136 137 138
    Vehicle*        _vehicle;
    FirmwarePlugin* _firmwarePlugin;
    bool            _parametersReady;
    bool            _missingParameters;
    bool            _setupComplete;
139 140 141
	
private slots:
	void _uasDisconnected(void);
142
	void _parametersReadyChanged(bool parametersReady);
143 144
	
private:
145
	void _recalcSetupComplete(void);    
146 147 148
};

#endif