Line | |
---|
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: 2021/12/22
|
---|
6 | // filename: Plane.h
|
---|
7 | //
|
---|
8 | // author: Armando Alatorre Sevilla, Guillaume Sanahuja
|
---|
9 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
10 | //
|
---|
11 | // version: $Id: $
|
---|
12 | //
|
---|
13 | // purpose: classe definissant un avion
|
---|
14 | //
|
---|
15 | /*********************************************************************/
|
---|
16 |
|
---|
17 | #ifndef PLANE_H
|
---|
18 | #define PLANE_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 | class SimuServos;
|
---|
33 | }
|
---|
34 | }
|
---|
35 |
|
---|
36 | #ifdef GL
|
---|
37 | namespace irr {
|
---|
38 | namespace scene {
|
---|
39 | class IMesh;
|
---|
40 | }
|
---|
41 | }
|
---|
42 | #endif
|
---|
43 |
|
---|
44 | namespace flair {
|
---|
45 | namespace simulator {
|
---|
46 | class Blade;
|
---|
47 | class MeshSceneNode;
|
---|
48 |
|
---|
49 | class Plane : public Model {
|
---|
50 | public:
|
---|
51 | Plane(std::string name, uint32_t modelId);
|
---|
52 | ~Plane();
|
---|
53 | #ifdef GL
|
---|
54 | virtual void Draw(void);
|
---|
55 | virtual void ExtraDraw(void){};
|
---|
56 | #endif
|
---|
57 |
|
---|
58 | private:
|
---|
59 | void CalcModel(void);
|
---|
60 | #ifdef GL
|
---|
61 | void AnimateModel(void);
|
---|
62 | size_t dbtSize(void) const;
|
---|
63 | void WritedbtBuf(char *dbtbuf);
|
---|
64 | void ReaddbtBuf(char *dbtbuf);
|
---|
65 | core::Mutex *actuators_mutex;
|
---|
66 | Blade *f_blade;
|
---|
67 | MeshSceneNode *l_axe_aileron,*r_axe_aileron;
|
---|
68 | #endif
|
---|
69 |
|
---|
70 | actuator::SimuBldc *motor;
|
---|
71 | actuator::SimuServos *servos;
|
---|
72 | float motor_speed,servos_pos[2];//servo pos in radians
|
---|
73 | gui::DoubleSpinBox *m;
|
---|
74 | gui::SpinBox *motorTimeout;
|
---|
75 | };
|
---|
76 | } // end namespace simulator
|
---|
77 | } // end namespace flair
|
---|
78 | #endif // PLANE_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.