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/01/14
|
---|
6 | // filename: MetaDualShock3.cpp
|
---|
7 | //
|
---|
8 | // author: Guillaume Sanahuja
|
---|
9 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
10 | //
|
---|
11 | // version: $Id: $
|
---|
12 | //
|
---|
13 | // purpose: objet integrant la manette DualShock3 et les consignes joystick
|
---|
14 | //
|
---|
15 | //
|
---|
16 | /*********************************************************************/
|
---|
17 |
|
---|
18 | #include "MetaDualShock3.h"
|
---|
19 | #include "MetaDualShock3_impl.h"
|
---|
20 | #include "TargetController.h"
|
---|
21 | #include "JoyReference.h"
|
---|
22 | #include <Tab.h>
|
---|
23 | #include <FrameworkManager.h>
|
---|
24 | #include <cvmatrix.h>
|
---|
25 | #include <Ahrs.h>
|
---|
26 | #include <AhrsData.h>
|
---|
27 | #include <DataPlot1D.h>
|
---|
28 |
|
---|
29 | using std::string;
|
---|
30 | using namespace flair::core;
|
---|
31 | using namespace flair::filter;
|
---|
32 | using namespace flair::gui;
|
---|
33 | using namespace flair::sensor;
|
---|
34 |
|
---|
35 | namespace flair {
|
---|
36 | namespace meta {
|
---|
37 |
|
---|
38 | MetaDualShock3::MetaDualShock3(FrameworkManager *parent, string name,
|
---|
39 | TargetController *controller)
|
---|
40 | : controller(controller),IODevice((IODevice*)controller, name) {
|
---|
41 | pimpl_ = new MetaDualShock3_impl(this, name);
|
---|
42 | parent->AddDeviceToLog(pimpl_->joy_ref);
|
---|
43 | controller->Start();
|
---|
44 | }
|
---|
45 |
|
---|
46 | MetaDualShock3::~MetaDualShock3() { delete pimpl_; }
|
---|
47 |
|
---|
48 | AhrsData *MetaDualShock3::GetReferenceOrientation(void) const {
|
---|
49 | return pimpl_->joy_ref->GetReferenceOrientation();
|
---|
50 | }
|
---|
51 |
|
---|
52 | void MetaDualShock3::ErrorNotify(void) {
|
---|
53 | controller->FlashLed(4,10,0);
|
---|
54 | controller->Rumble(0xff,20,0,0);
|
---|
55 | }
|
---|
56 |
|
---|
57 | void MetaDualShock3::Rumble(uint8_t left_force,uint8_t left_timeout,uint8_t right_force,uint8_t right_timeout) {
|
---|
58 | controller->Rumble(left_force,left_timeout,right_force,right_timeout);
|
---|
59 | }
|
---|
60 |
|
---|
61 | void MetaDualShock3::SetLedON(unsigned int ledId) {
|
---|
62 | controller->SetLedOn(ledId);
|
---|
63 | }
|
---|
64 |
|
---|
65 | void MetaDualShock3::SetLedOFF(unsigned int ledId) {
|
---|
66 | controller->SetLedOff(ledId);
|
---|
67 | }
|
---|
68 |
|
---|
69 | void MetaDualShock3::FlashLed(unsigned int ledId,uint8_t on_timeout,uint8_t off_timeout) {
|
---|
70 | controller->FlashLed(ledId,on_timeout,off_timeout);
|
---|
71 | }
|
---|
72 |
|
---|
73 | float MetaDualShock3::ZRef(void) const { return pimpl_->joy_ref->ZRef(); }
|
---|
74 |
|
---|
75 | float MetaDualShock3::DzRef(void) const { return pimpl_->joy_ref->DzRef(); }
|
---|
76 |
|
---|
77 | void MetaDualShock3::SetYawRef(float value) {
|
---|
78 | pimpl_->joy_ref->SetYawRef(value);
|
---|
79 | }
|
---|
80 |
|
---|
81 | void MetaDualShock3::SetYawRef(Quaternion const &value) {
|
---|
82 | pimpl_->joy_ref->SetYawRef(value);
|
---|
83 | }
|
---|
84 |
|
---|
85 | void MetaDualShock3::SetZRef(float value) { pimpl_->joy_ref->SetZRef(value); }
|
---|
86 |
|
---|
87 | float MetaDualShock3::RollTrim(void) const {
|
---|
88 | return pimpl_->joy_ref->RollTrim();
|
---|
89 | }
|
---|
90 |
|
---|
91 | float MetaDualShock3::PitchTrim(void) const {
|
---|
92 | return pimpl_->joy_ref->PitchTrim();
|
---|
93 | }
|
---|
94 |
|
---|
95 | void MetaDualShock3::UpdateFrom(const flair::core::io_data *data) {
|
---|
96 | pimpl_->UpdateFrom(data);
|
---|
97 | }
|
---|
98 |
|
---|
99 | } // end namespace meta
|
---|
100 | } // end namespace flair
|
---|