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(string name,
|
---|
39 | TargetController *controller)
|
---|
40 | : controller(controller),IODevice((IODevice*)controller, name) {
|
---|
41 | pimpl_ = new MetaDualShock3_impl(this, name);
|
---|
42 | getFrameworkManager()->AddDeviceToLog(pimpl_->joy_ref);
|
---|
43 | controller->Start();
|
---|
44 |
|
---|
45 | SetIsReady(true);
|
---|
46 | }
|
---|
47 |
|
---|
48 | MetaDualShock3::~MetaDualShock3() { delete pimpl_; }
|
---|
49 |
|
---|
50 | AhrsData *MetaDualShock3::GetReferenceOrientation(void) const {
|
---|
51 | return pimpl_->joy_ref->GetReferenceOrientation();
|
---|
52 | }
|
---|
53 |
|
---|
54 | void MetaDualShock3::ErrorNotify(void) {
|
---|
55 | controller->FlashLed(4,10,0);
|
---|
56 | controller->Rumble(0xff,20,0,0);
|
---|
57 | }
|
---|
58 |
|
---|
59 | void MetaDualShock3::Rumble(uint8_t left_force,uint8_t left_timeout,uint8_t right_force,uint8_t right_timeout) {
|
---|
60 | controller->Rumble(left_force,left_timeout,right_force,right_timeout);
|
---|
61 | }
|
---|
62 |
|
---|
63 | void MetaDualShock3::SetLedON(unsigned int ledId) {
|
---|
64 | controller->SetLedOn(ledId);
|
---|
65 | }
|
---|
66 |
|
---|
67 | void MetaDualShock3::SetLedOFF(unsigned int ledId) {
|
---|
68 | controller->SetLedOff(ledId);
|
---|
69 | }
|
---|
70 |
|
---|
71 | void MetaDualShock3::FlashLed(unsigned int ledId,uint8_t on_timeout,uint8_t off_timeout) {
|
---|
72 | controller->FlashLed(ledId,on_timeout,off_timeout);
|
---|
73 | }
|
---|
74 |
|
---|
75 | float MetaDualShock3::ZRef(void) const { return pimpl_->joy_ref->ZRef(); }
|
---|
76 |
|
---|
77 | float MetaDualShock3::DzRef(void) const { return pimpl_->joy_ref->DzRef(); }
|
---|
78 |
|
---|
79 | void MetaDualShock3::SetYawRef(float value) {
|
---|
80 | pimpl_->joy_ref->SetYawRef(value);
|
---|
81 | }
|
---|
82 |
|
---|
83 | void MetaDualShock3::SetYawRef(Quaternion const &value) {
|
---|
84 | pimpl_->joy_ref->SetYawRef(value);
|
---|
85 | }
|
---|
86 |
|
---|
87 | void MetaDualShock3::SetZRef(float value) { pimpl_->joy_ref->SetZRef(value); }
|
---|
88 |
|
---|
89 | float MetaDualShock3::RollTrim(void) const {
|
---|
90 | return pimpl_->joy_ref->RollTrim();
|
---|
91 | }
|
---|
92 |
|
---|
93 | float MetaDualShock3::PitchTrim(void) const {
|
---|
94 | return pimpl_->joy_ref->PitchTrim();
|
---|
95 | }
|
---|
96 |
|
---|
97 | void MetaDualShock3::UpdateFrom(const flair::core::io_data *data) {
|
---|
98 | pimpl_->UpdateFrom(data);
|
---|
99 | }
|
---|
100 |
|
---|
101 | } // end namespace meta
|
---|
102 | } // end namespace flair
|
---|