APMAutoPilotPlugin.h 2.85 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed
10

11 12
#ifndef APMAutoPilotPlugin_H
#define APMAutoPilotPlugin_H
Don Gagne's avatar
Don Gagne committed
13

14
#include "AutoPilotPlugin.h"
15
#include "Vehicle.h"
16 17 18 19 20 21 22 23

class APMAirframeComponent;
class APMAirframeLoader;
class APMFlightModesComponent;
class APMRadioComponent;
class APMTuningComponent;
class APMSafetyComponent;
class APMSensorsComponent;
Don Gagne's avatar
Don Gagne committed
24
class APMPowerComponent;
Don Gagne's avatar
Don Gagne committed
25
class MotorComponent;
Don Gagne's avatar
Don Gagne committed
26
class APMCameraComponent;
27
class ESP8266Component;
Don Gagne's avatar
Don Gagne committed
28

29 30
/// This is the APM specific implementation of the AutoPilot class.
class APMAutoPilotPlugin : public AutoPilotPlugin
Don Gagne's avatar
Don Gagne committed
31 32
{
    Q_OBJECT
33

Don Gagne's avatar
Don Gagne committed
34
public:
35 36 37 38
    APMAutoPilotPlugin(Vehicle* vehicle, QObject* parent);
    ~APMAutoPilotPlugin();

    // Overrides from AutoPilotPlugin
39
    const QVariantList& vehicleComponents(void) final;
40

Tomaz Canabrava's avatar
Tomaz Canabrava committed
41 42 43 44
    APMAirframeComponent*       airframeComponent   (void) const { return _airframeComponent; }
    APMCameraComponent*         cameraComponent     (void) const { return _cameraComponent; }
    APMFlightModesComponent*    flightModesComponent(void) const { return _flightModesComponent; }
    APMPowerComponent*          powerComponent      (void) const { return _powerComponent; }
Don Gagne's avatar
Don Gagne committed
45
    MotorComponent*             motorComponent      (void) const { return _motorComponent; }
Tomaz Canabrava's avatar
Tomaz Canabrava committed
46 47 48 49
    APMRadioComponent*          radioComponent      (void) const { return _radioComponent; }
    APMSafetyComponent*         safetyComponent     (void) const { return _safetyComponent; }
    APMSensorsComponent*        sensorsComponent    (void) const { return _sensorsComponent; }
    APMTuningComponent*         tuningComponent     (void) const { return _tuningComponent; }
50
    ESP8266Component*           esp8266Component    (void) const { return _esp8266Component; }
Don Gagne's avatar
Don Gagne committed
51

52 53 54 55 56
public slots:
    // FIXME: This is public until we restructure AutoPilotPlugin/FirmwarePlugin/Vehicle
    void _parametersReadyPreChecks(bool missingParameters);

private:
57 58
    bool                    _incorrectParameterVersion; ///< true: parameter version incorrect, setup not allowed
    QVariantList            _components;
Don Gagne's avatar
Don Gagne committed
59 60

    APMAirframeComponent*       _airframeComponent;
Don Gagne's avatar
Don Gagne committed
61
    APMCameraComponent*         _cameraComponent;
Don Gagne's avatar
Don Gagne committed
62
    APMFlightModesComponent*    _flightModesComponent;
Don Gagne's avatar
Don Gagne committed
63
    APMPowerComponent*          _powerComponent;
Don Gagne's avatar
Don Gagne committed
64
    MotorComponent*             _motorComponent;
Don Gagne's avatar
Don Gagne committed
65
    APMRadioComponent*          _radioComponent;
Don Gagne's avatar
Don Gagne committed
66
    APMSafetyComponent*         _safetyComponent;
Don Gagne's avatar
Don Gagne committed
67
    APMSensorsComponent*        _sensorsComponent;
Don Gagne's avatar
Don Gagne committed
68
    APMTuningComponent*         _tuningComponent;
Don Gagne's avatar
Don Gagne committed
69
    APMAirframeLoader*          _airframeFacts;
70
    ESP8266Component*           _esp8266Component;
Don Gagne's avatar
Don Gagne committed
71 72
};

73
#endif