source: flair-dev/trunk/include/FlairSimulator/X8.h@ 97

Last change on this file since 97 was 94, checked in by Sanahuja Guillaume, 6 years ago

draw vrpn axis in simulator

File size: 1.5 KB
RevLine 
[9]1// %flair:license{
[13]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[9]4// %flair:license}
[8]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
[13]22namespace flair {
23namespace core {
24class Mutex;
[8]25}
[13]26namespace gui {
27class DoubleSpinBox;
[68]28class SpinBox;
[13]29}
30namespace actuator {
31class SimuBldc;
32}
33}
[8]34
[13]35namespace flair {
36namespace simulator {
37class Blade;
[8]38
[13]39class X8 : public Model {
40public:
[50]41 X8(std::string name, uint32_t modelId);
[13]42 ~X8();
43 virtual void Draw(void);
44 virtual void ExtraDraw(void){};
45
46protected:
[94]47
[13]48private:
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;
[94]56 Blade *tfl_blade, *tfr_blade, *trl_blade, *trr_blade;
57 Blade *bfl_blade, *bfr_blade, *brl_blade, *brr_blade;
[13]58#endif
[8]59
[13]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;
[68]67 gui::SpinBox *motorTimeout;
[13]68};
[8]69} // end namespace simulator
70} // end namespace flair
71#endif // X8_H
Note: See TracBrowser for help on using the repository browser.