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: 2012/08/29
|
---|
6 | // filename: JoyReference.cpp
|
---|
7 | //
|
---|
8 | // author: Guillaume Sanahuja
|
---|
9 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
10 | //
|
---|
11 | // version: $Id: $
|
---|
12 | //
|
---|
13 | // purpose: generation de consignes a partir joystick
|
---|
14 | //
|
---|
15 | //
|
---|
16 | /*********************************************************************/
|
---|
17 |
|
---|
18 | #include "JoyReference.h"
|
---|
19 | #include "JoyReference_impl.h"
|
---|
20 | #include <Layout.h>
|
---|
21 | #include <LayoutPosition.h>
|
---|
22 | #include <Matrix.h>
|
---|
23 | #include <AhrsData.h>
|
---|
24 | #include <Euler.h>
|
---|
25 | #include <Quaternion.h>
|
---|
26 |
|
---|
27 | using std::string;
|
---|
28 | using namespace flair::core;
|
---|
29 | using namespace flair::gui;
|
---|
30 |
|
---|
31 | namespace flair {
|
---|
32 | namespace filter {
|
---|
33 |
|
---|
34 | JoyReference::JoyReference(const LayoutPosition *position, string name)
|
---|
35 | : IODevice(position->getLayout(), name) {
|
---|
36 | pimpl_ = new JoyReference_impl(this, position, name);
|
---|
37 | AddDataToLog(pimpl_->output);
|
---|
38 | AddDataToLog(pimpl_->ahrsData);
|
---|
39 |
|
---|
40 | SetIsReady(true);
|
---|
41 | }
|
---|
42 |
|
---|
43 | JoyReference::~JoyReference(void) { delete pimpl_; }
|
---|
44 |
|
---|
45 | AhrsData *JoyReference::GetReferenceOrientation(void) const {
|
---|
46 | return pimpl_->ahrsData;
|
---|
47 | }
|
---|
48 |
|
---|
49 | void JoyReference::SetRollAxis(float value) { pimpl_->SetRollAxis(value); }
|
---|
50 |
|
---|
51 | void JoyReference::SetPitchAxis(float value) { pimpl_->SetPitchAxis(value); }
|
---|
52 |
|
---|
53 | void JoyReference::SetYawAxis(float value) { pimpl_->SetYawAxis(value); }
|
---|
54 |
|
---|
55 | void JoyReference::SetAltitudeAxis(float value) {
|
---|
56 | pimpl_->SetAltitudeAxis(value);
|
---|
57 | }
|
---|
58 |
|
---|
59 | void JoyReference::RollTrimUp(void) { pimpl_->RollTrimUp(); }
|
---|
60 |
|
---|
61 | void JoyReference::RollTrimDown(void) { pimpl_->RollTrimDown(); }
|
---|
62 |
|
---|
63 | void JoyReference::PitchTrimUp(void) { pimpl_->PitchTrimUp(); }
|
---|
64 |
|
---|
65 | void JoyReference::PitchTrimDown(void) { pimpl_->PitchTrimDown(); }
|
---|
66 |
|
---|
67 | void JoyReference::SetYawRef(float value) { pimpl_->SetYawRef(value); }
|
---|
68 |
|
---|
69 | void JoyReference::SetYawRef(core::Quaternion const &value) {
|
---|
70 | Euler euler;
|
---|
71 | value.ToEuler(euler);
|
---|
72 | pimpl_->SetYawRef(euler.yaw);
|
---|
73 | }
|
---|
74 | void JoyReference::SetZRef(float value) { pimpl_->SetZRef(value); }
|
---|
75 |
|
---|
76 | float JoyReference::ZRef(void) const { return pimpl_->ZRef(); }
|
---|
77 |
|
---|
78 | float JoyReference::DzRef(void) const { return pimpl_->dZRef(); }
|
---|
79 |
|
---|
80 | float JoyReference::RollTrim(void) const { return pimpl_->RollTrim(); }
|
---|
81 |
|
---|
82 | float JoyReference::PitchTrim(void) const { return pimpl_->PitchTrim(); }
|
---|
83 |
|
---|
84 | void JoyReference::Update(Time time) {
|
---|
85 | pimpl_->Update(time);
|
---|
86 | ProcessUpdate(pimpl_->output);
|
---|
87 | }
|
---|
88 |
|
---|
89 | void JoyReference::UpdateFrom(const io_data *data) {
|
---|
90 | pimpl_->UpdateFrom(data);
|
---|
91 | ProcessUpdate(pimpl_->output);
|
---|
92 | }
|
---|
93 |
|
---|
94 | } // end namespace sensor
|
---|
95 | } // end namespace flair
|
---|