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 "JoyReference.h"
|
---|
21 | #include <Tab.h>
|
---|
22 | #include <FrameworkManager.h>
|
---|
23 | #include <cvmatrix.h>
|
---|
24 | #include <Ahrs.h>
|
---|
25 | #include <AhrsData.h>
|
---|
26 | #include <DataPlot1D.h>
|
---|
27 |
|
---|
28 | using std::string;
|
---|
29 | using namespace flair::core;
|
---|
30 | using namespace flair::filter;
|
---|
31 | using namespace flair::gui;
|
---|
32 |
|
---|
33 | namespace flair {
|
---|
34 | namespace meta {
|
---|
35 |
|
---|
36 | MetaDualShock3::MetaDualShock3(FrameworkManager *parent, string name,
|
---|
37 | uint16_t port, uint8_t priority)
|
---|
38 | : TargetEthController(parent, name, port, priority) {
|
---|
39 | pimpl_ = new MetaDualShock3_impl(this, name);
|
---|
40 | parent->AddDeviceToLog(pimpl_->joy_ref);
|
---|
41 | Start();
|
---|
42 | }
|
---|
43 |
|
---|
44 | MetaDualShock3::~MetaDualShock3() { delete pimpl_; }
|
---|
45 |
|
---|
46 | AhrsData *MetaDualShock3::GetReferenceOrientation(void) const {
|
---|
47 | return pimpl_->joy_ref->GetReferenceOrientation();
|
---|
48 | }
|
---|
49 |
|
---|
50 | void MetaDualShock3::ErrorNotify(void) {
|
---|
51 | TargetEthController::FlashLed(4, 10, 0);
|
---|
52 | TargetEthController::Rumble(0xff, 20, 0, 0);
|
---|
53 | }
|
---|
54 |
|
---|
55 | void MetaDualShock3::Rumble(uint8_t left_force, uint8_t left_timeout,
|
---|
56 | uint8_t right_force, uint8_t right_timeout) {
|
---|
57 | TargetEthController::Rumble(left_force, left_timeout, right_force,
|
---|
58 | right_timeout);
|
---|
59 | }
|
---|
60 |
|
---|
61 | void MetaDualShock3::SetLedON(unsigned int ledId) {
|
---|
62 | TargetEthController::SetLedOn(ledId);
|
---|
63 | }
|
---|
64 |
|
---|
65 | void MetaDualShock3::SetLedOFF(unsigned int ledId) {
|
---|
66 | TargetEthController::SetLedOff(ledId);
|
---|
67 | }
|
---|
68 |
|
---|
69 | void MetaDualShock3::FlashLed(unsigned int ledId, uint8_t on_timeout,
|
---|
70 | uint8_t off_timeout) {
|
---|
71 | TargetEthController::FlashLed(ledId, on_timeout, off_timeout);
|
---|
72 | }
|
---|
73 |
|
---|
74 | float MetaDualShock3::ZRef(void) const { return pimpl_->joy_ref->ZRef(); }
|
---|
75 |
|
---|
76 | float MetaDualShock3::DzRef(void) const { return pimpl_->joy_ref->DzRef(); }
|
---|
77 |
|
---|
78 | void MetaDualShock3::SetYawRef(float value) {
|
---|
79 | pimpl_->joy_ref->SetYawRef(value);
|
---|
80 | }
|
---|
81 |
|
---|
82 | void MetaDualShock3::SetYawRef(Quaternion const &value) {
|
---|
83 | pimpl_->joy_ref->SetYawRef(value);
|
---|
84 | }
|
---|
85 |
|
---|
86 | void MetaDualShock3::SetZRef(float value) { pimpl_->joy_ref->SetZRef(value); }
|
---|
87 |
|
---|
88 | float MetaDualShock3::RollTrim(void) const {
|
---|
89 | return pimpl_->joy_ref->RollTrim();
|
---|
90 | }
|
---|
91 |
|
---|
92 | float MetaDualShock3::PitchTrim(void) const {
|
---|
93 | return pimpl_->joy_ref->PitchTrim();
|
---|
94 | }
|
---|
95 |
|
---|
96 | } // end namespace meta
|
---|
97 | } // end namespace flair
|
---|