-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathGestureComponent.cpp
167 lines (136 loc) · 5.62 KB
/
GestureComponent.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/** @file
@brief Implementation
@date 2015
@author
Sensics, Inc.
<http://sensics.com/osvr>
*/
// Copyright 2015 Sensics, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Internal Includes
#include <osvr/Common/GestureComponent.h>
#include <osvr/Common/BaseDevice.h>
#include <osvr/Common/Serialization.h>
#include <osvr/Common/Buffer.h>
#include <osvr/Util/Verbosity.h>
// Library/third-party includes
// - none
// Standard includes
// - none
namespace osvr {
namespace common {
namespace messages {
class GestureRecord::MessageSerialization {
public:
MessageSerialization(OSVR_GestureState const &state,
OSVR_GestureID gestureID,
OSVR_ChannelCount sensor)
: m_gestureState(state), m_gestureID(gestureID),
m_sensor(sensor) {}
MessageSerialization() {}
template <typename T> void processMessage(T &p) {
p(m_gestureState);
p(m_gestureID);
p(m_sensor);
}
GestureData getData() const {
GestureData ret;
ret.sensor = m_sensor;
ret.gestureID = m_gestureID;
ret.gestureState = m_gestureState;
return ret;
}
private:
OSVR_GestureState m_gestureState;
StringID m_gestureID;
OSVR_ChannelCount m_sensor;
};
const char *GestureRecord::identifier() {
return "com.osvr.gesture.gesturerecord";
}
} // namespace messages
shared_ptr<GestureComponent>
GestureComponent::create(common::SystemComponent *systemComponent) {
shared_ptr<GestureComponent> ret(new GestureComponent(systemComponent));
return ret;
}
GestureComponent::GestureComponent(
common::SystemComponent *systemComponent) {
// Add system component and gesture map
m_systemComponent = systemComponent;
m_gestureNameMap = m_systemComponent->getRegStringMap();
// populate the gesture map
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_SWIPE_LEFT);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_SWIPE_RIGHT);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_SCROLL_UP);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_SCROLL_DOWN);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_SINGLE_TAP);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_DOUBLE_TAP);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_PINCH);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_FINGER_SPREAD);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_CIRCLE);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_LONG_PRESS);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_OPEN_HAND);
m_gestureNameMap->map.registerStringID(OSVR_GESTURE_CLOSED_HAND);
// send out an updated map
m_systemComponent->sendRegisteredStringMap();
}
void GestureComponent::sendGestureData(OSVR_GestureState gestureState,
OSVR_GestureID gestureID,
OSVR_ChannelCount sensor,
OSVR_TimeValue const ×tamp) {
Buffer<> buf;
messages::GestureRecord::MessageSerialization msg(gestureState,
gestureID, sensor);
serialize(buf, msg);
m_getParent().packMessage(buf, gestureRecord.getMessageType(),
timestamp);
}
int VRPN_CALLBACK
GestureComponent::m_handleGestureRecord(void *userdata,
vrpn_HANDLERPARAM p) {
auto self = static_cast<GestureComponent *>(userdata);
auto bufReader = readExternalBuffer(p.buffer, p.payload_len);
messages::GestureRecord::MessageSerialization msg;
deserialize(bufReader, msg);
auto data = msg.getData();
auto timestamp = util::time::fromStructTimeval(p.msg_time);
for (auto const &cb : self->m_cb) {
cb(data, timestamp);
}
return 0;
}
void GestureComponent::registerGestureHandler(GestureHandler handler) {
if (m_cb.empty()) {
m_registerHandler(&GestureComponent::m_handleGestureRecord, this,
gestureRecord.getMessageType());
}
m_cb.push_back(handler);
}
void GestureComponent::m_parentSet() {
m_getParent().registerMessageType(gestureRecord);
}
OSVR_GestureID GestureComponent::getGestureID(const char *gestureName) {
OSVR_GestureID gestureID =
m_gestureNameMap->map.getStringID(gestureName);
OSVR_TimeValue now;
osvrTimeValueGetNow(&now);
// if we just inserted new gesture ID then send gesture map
if (m_gestureNameMap->map.isUpdateAvailable()) {
m_systemComponent->sendRegisteredStringMap();
}
return gestureID;
}
} // namespace common
} // namespace osvr