[10] | 1 | // %flair:license{
|
---|
[15] | 2 | // This file is part of the Flair framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
[10] | 4 | // %flair:license}
|
---|
[7] | 5 | /*!
|
---|
| 6 | * \file Uav.h
|
---|
| 7 | * \brief Base class to construct sensors/actuators depending on uav type
|
---|
| 8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
| 9 | * \date 2014/01/22
|
---|
| 10 | * \version 3.4
|
---|
| 11 | */
|
---|
| 12 |
|
---|
| 13 | #ifndef HDSUAV_H
|
---|
| 14 | #define HDSUAV_H
|
---|
| 15 |
|
---|
| 16 | #include <Object.h>
|
---|
[157] | 17 | #include <UsRangeFinder.h>
|
---|
[7] | 18 |
|
---|
| 19 | namespace flair {
|
---|
[122] | 20 | namespace filter {
|
---|
| 21 | class Ahrs;
|
---|
| 22 | class UavMultiplex;
|
---|
| 23 | }
|
---|
| 24 | namespace actuator {
|
---|
| 25 | class Bldc;
|
---|
| 26 | }
|
---|
| 27 | namespace sensor {
|
---|
| 28 | class UsRangeFinder;
|
---|
| 29 | class BatteryMonitor;
|
---|
| 30 | class Imu;
|
---|
| 31 | class Camera;
|
---|
| 32 | }
|
---|
[7] | 33 | }
|
---|
| 34 |
|
---|
| 35 | namespace flair {
|
---|
| 36 | namespace meta {
|
---|
[15] | 37 | class MetaUsRangeFinder;
|
---|
[7] | 38 |
|
---|
[15] | 39 | /*! \class Uav
|
---|
| 40 | *
|
---|
[122] | 41 | * \brief Base class to construct sensors/actuators depending on uav type.
|
---|
| 42 | * The Object is created with
|
---|
| 43 | * the FrameworkManager as parent. FrameworkManager must be created before.
|
---|
| 44 | * Only one instance of this class is allowed by program.
|
---|
[7] | 45 | */
|
---|
[15] | 46 | class Uav : public core::Object {
|
---|
| 47 | public:
|
---|
[122] | 48 |
|
---|
| 49 | Uav(std::string name,
|
---|
[15] | 50 | filter::UavMultiplex *multiplex = NULL);
|
---|
| 51 | ~Uav();
|
---|
[7] | 52 |
|
---|
[122] | 53 | virtual void StartSensors(void)=0;
|
---|
[15] | 54 | void UseDefaultPlot(void);
|
---|
| 55 | actuator::Bldc *GetBldc(void) const;
|
---|
| 56 | filter::UavMultiplex *GetUavMultiplex(void) const;
|
---|
| 57 | sensor::Imu *GetImu(void) const;
|
---|
| 58 | filter::Ahrs *GetAhrs(void) const;
|
---|
| 59 | MetaUsRangeFinder *GetMetaUsRangeFinder(void) const;
|
---|
| 60 | sensor::UsRangeFinder *GetUsRangeFinder(void) const;
|
---|
| 61 | sensor::BatteryMonitor *GetBatteryMonitor(void) const;
|
---|
| 62 | sensor::Camera *GetVerticalCamera(void) const;
|
---|
[121] | 63 | sensor::Camera *GetHorizontalCamera(void) const;
|
---|
[122] | 64 | virtual std::string GetDefaultVrpnAddress(void) const{return "127.0.0.1:3883";}
|
---|
[157] | 65 | virtual bool isReadyToFly(void) const { return true;}
|
---|
[165] | 66 | virtual std::string GetType(void) const=0;
|
---|
[7] | 67 |
|
---|
[15] | 68 | protected:
|
---|
| 69 | void SetBldc(const actuator::Bldc *bldc);
|
---|
| 70 | void SetMultiplex(const filter::UavMultiplex *multiplex);
|
---|
[173] | 71 | void SetAhrs(const filter::Ahrs *ahrs);//also sets imu (retrieved from the ahrs)
|
---|
[15] | 72 | void SetUsRangeFinder(const sensor::UsRangeFinder *us);
|
---|
| 73 | void SetBatteryMonitor(const sensor::BatteryMonitor *battery);
|
---|
| 74 | void SetVerticalCamera(const sensor::Camera *verticalCamera);
|
---|
[121] | 75 | void SetHorizontalCamera(const sensor::Camera *verticalCamera);
|
---|
[7] | 76 |
|
---|
[15] | 77 | private:
|
---|
| 78 | sensor::Imu *imu;
|
---|
| 79 | filter::Ahrs *ahrs;
|
---|
| 80 | actuator::Bldc *bldc;
|
---|
| 81 | filter::UavMultiplex *multiplex;
|
---|
| 82 | sensor::UsRangeFinder *us;
|
---|
| 83 | MetaUsRangeFinder *meta_us;
|
---|
| 84 | sensor::BatteryMonitor *battery;
|
---|
[121] | 85 | sensor::Camera *verticalCamera,*horizontalCamera;
|
---|
[15] | 86 | };
|
---|
[122] | 87 |
|
---|
| 88 | /*!
|
---|
| 89 | * \brief get Uav
|
---|
| 90 | *
|
---|
| 91 | * \return the Uav
|
---|
| 92 | */
|
---|
| 93 | Uav *GetUav(void);
|
---|
| 94 |
|
---|
[7] | 95 | } // end namespace meta
|
---|
| 96 | } // end namespace flair
|
---|
| 97 | #endif // HDSUAV_H
|
---|