Flair
Framework Libre Air
X8.h
1 // %flair:license{
2 // This file is part of the Flair framework distributed under the
3 // CECILL-C License, Version 1.0.
4 // %flair:license}
5 // created: 2014/04/03
6 // filename: X8.h
7 //
8 // author: Majd Saied, Guillaume Sanahuja
9 // Copyright Heudiasyc UMR UTC/CNRS 7253
10 //
11 // version: $Id: $
12 //
13 // purpose: classe definissant un X8
14 //
15 /*********************************************************************/
16 
17 #ifndef X8_H
18 #define X8_H
19 
20 #include <Model.h>
21 
22 namespace flair {
23 namespace core {
24 class Mutex;
25 }
26 namespace gui {
27 class DoubleSpinBox;
28 class SpinBox;
29 }
30 namespace actuator {
31 class SimuBldc;
32 }
33 }
34 
35 namespace flair {
36 namespace simulator {
37 class Blade;
38 
39 class X8 : public Model {
40 public:
41  X8(std::string name, uint32_t modelId);
42  ~X8();
43  virtual void Draw(void);
44  virtual void ExtraDraw(void){};
45 
46 protected:
47 #ifdef GL
48  Blade *tfl_blade, *tfr_blade, *trl_blade, *trr_blade;
49  Blade *bfl_blade, *bfr_blade, *brl_blade, *brr_blade;
50 #endif
51 private:
52  void CalcModel(void);
53 #ifdef GL
54  void AnimateModel(void);
55  size_t dbtSize(void) const;
56  void WritedbtBuf(char *dbtbuf);
57  void ReaddbtBuf(char *dbtbuf);
58  core::Mutex *motor_speed_mutex;
59 #endif
60 
61  actuator::SimuBldc *motors;
62  float motor_speed[8];
63  gui::DoubleSpinBox *m, *arm_length, *l_cg;
64  gui::DoubleSpinBox *k_mot, *c_mot;
65  gui::DoubleSpinBox *f_air_vert, *f_air_lat;
66  gui::DoubleSpinBox *j_roll, *j_pitch, *j_yaw;
67  gui::DoubleSpinBox *j_r, *sigma, *S;
68  gui::SpinBox *motorTimeout;
69 };
70 } // end namespace simulator
71 } // end namespace flair
72 #endif // X8_H
namespace of the flair Framework
Definition: Ahrs.h:19
Definition: Blade.h:33
Class defining a mutex.
Definition: Mutex.h:29
Class displaying a QSpinBox on the ground station.
Definition: SpinBox.h:28
Definition: Model.h:55
Class for a simulation bldc.
Definition: FlairSensorActuator/src/SimuBldc.h:37
Class displaying a QDoubleSpinBox on the ground station.
Definition: DoubleSpinBox.h:28
Definition: X8.h:39