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_impl.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_impl.h"
|
---|
19 | #include "MetaDualShock3.h"
|
---|
20 | #include <JoyReference.h>
|
---|
21 | #include <Tab.h>
|
---|
22 | #include <cvmatrix.h>
|
---|
23 | #include <FrameworkManager.h>
|
---|
24 |
|
---|
25 | using std::string;
|
---|
26 | using namespace flair::core;
|
---|
27 | using namespace flair::gui;
|
---|
28 | using namespace flair::filter;
|
---|
29 | using namespace flair::meta;
|
---|
30 |
|
---|
31 | MetaDualShock3_impl::MetaDualShock3_impl(MetaDualShock3 *self, string name)
|
---|
32 | : IODevice((IODevice *)self, name) {
|
---|
33 | joy_ref = new JoyReference(self->GetTab()->NewRow(), "consignes joy");
|
---|
34 | this->self = self;
|
---|
35 | joy_init = false;
|
---|
36 | wasRollTrimUpButtonPressed = false;
|
---|
37 | wasRollTrimDownButtonPressed = false;
|
---|
38 | wasPitchTrimUpButtonPressed = false;
|
---|
39 | wasPitchTrimDownButtonPressed = false;
|
---|
40 | }
|
---|
41 |
|
---|
42 | MetaDualShock3_impl::~MetaDualShock3_impl() {}
|
---|
43 |
|
---|
44 | // receives updates from the controler
|
---|
45 | void MetaDualShock3_impl::UpdateFrom(const io_data *data) {
|
---|
46 | cvmatrix *input = (cvmatrix *)data;
|
---|
47 |
|
---|
48 | // on prend une fois pour toute le mutex et on fait des accès directs
|
---|
49 | input->GetMutex();
|
---|
50 |
|
---|
51 | // up
|
---|
52 | if (self->IsButtonPressed(12)) {
|
---|
53 | if (!wasPitchTrimDownButtonPressed) {
|
---|
54 | joy_ref->PitchTrimDown();
|
---|
55 | wasPitchTrimDownButtonPressed = true;
|
---|
56 | }
|
---|
57 | } else {
|
---|
58 | wasPitchTrimDownButtonPressed = false;
|
---|
59 | }
|
---|
60 |
|
---|
61 | // down
|
---|
62 | if (self->IsButtonPressed(13)) {
|
---|
63 | if (!wasPitchTrimUpButtonPressed) {
|
---|
64 | joy_ref->PitchTrimUp();
|
---|
65 | wasPitchTrimUpButtonPressed = true;
|
---|
66 | }
|
---|
67 | } else {
|
---|
68 | wasPitchTrimUpButtonPressed = false;
|
---|
69 | }
|
---|
70 |
|
---|
71 | // right
|
---|
72 | if (self->IsButtonPressed(15)) {
|
---|
73 | if (!wasRollTrimUpButtonPressed) {
|
---|
74 | joy_ref->RollTrimUp();
|
---|
75 | wasRollTrimUpButtonPressed = true;
|
---|
76 | }
|
---|
77 | } else {
|
---|
78 | wasRollTrimUpButtonPressed = false;
|
---|
79 | }
|
---|
80 |
|
---|
81 | // left
|
---|
82 | if (self->IsButtonPressed(14)) {
|
---|
83 | if (!wasRollTrimDownButtonPressed) {
|
---|
84 | joy_ref->RollTrimDown();
|
---|
85 | wasRollTrimDownButtonPressed = true;
|
---|
86 | }
|
---|
87 | } else {
|
---|
88 | wasRollTrimDownButtonPressed = false;
|
---|
89 | }
|
---|
90 |
|
---|
91 | if (!getFrameworkManager()->ConnectionLost()) {
|
---|
92 | input->GetMutex();
|
---|
93 | joy_ref->SetRollAxis(input->ValueNoMutex(0, 0));
|
---|
94 | joy_ref->SetPitchAxis(input->ValueNoMutex(1, 0));
|
---|
95 | joy_ref->SetYawAxis(input->ValueNoMutex(2, 0));
|
---|
96 | joy_ref->SetAltitudeAxis(input->ValueNoMutex(3, 0));
|
---|
97 | input->ReleaseMutex();
|
---|
98 | } else {
|
---|
99 | joy_ref->SetRollAxis(0);
|
---|
100 | joy_ref->SetPitchAxis(0);
|
---|
101 | joy_ref->SetYawAxis(0);
|
---|
102 | joy_ref->SetAltitudeAxis(0);
|
---|
103 | }
|
---|
104 | input->ReleaseMutex();
|
---|
105 |
|
---|
106 | joy_ref->Update(data->DataTime());
|
---|
107 |
|
---|
108 | if (!joy_init) {
|
---|
109 | self->TargetEthController::FlashLed(1, 10, 10);
|
---|
110 | joy_init = true;
|
---|
111 | }
|
---|
112 | }
|
---|