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 
48 private:
49  void CalcModel(void);
50 #ifdef GL
51  void AnimateModel(void);
52  size_t dbtSize(void) const;
53  void WritedbtBuf(char *dbtbuf);
54  void ReaddbtBuf(char *dbtbuf);
55  core::Mutex *motor_speed_mutex;
56  Blade *tfl_blade, *tfr_blade, *trl_blade, *trr_blade;
57  Blade *bfl_blade, *bfr_blade, *brl_blade, *brr_blade;
58 #endif
59 
60  actuator::SimuBldc *motors;
61  float motor_speed[8];
62  gui::DoubleSpinBox *m, *arm_length, *l_cg;
63  gui::DoubleSpinBox *k_mot, *c_mot;
64  gui::DoubleSpinBox *f_air_vert, *f_air_lat;
65  gui::DoubleSpinBox *j_roll, *j_pitch, *j_yaw;
66  gui::DoubleSpinBox *j_r, *sigma, *S;
67  gui::SpinBox *motorTimeout;
68 };
69 } // end namespace simulator
70 } // end namespace flair
71 #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: SimuBldc.h:31
Class displaying a QDoubleSpinBox on the ground station.
Definition: DoubleSpinBox.h:28
Definition: X8.h:39