forked from vrpn/vrpn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vrpn_Analog_5dtUSB.h
154 lines (122 loc) · 5.91 KB
/
vrpn_Analog_5dtUSB.h
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
/** @file vrpn_Analog_5dtUSB.h
@brief header for 5DT USB (HID) dataglove driver
@date 2011
@author
Ryan Pavlik
<[email protected]> and <[email protected]>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#ifndef VRPN_ANALOG_5DTUSB_H
#define VRPN_ANALOG_5DTUSB_H
#include <stddef.h> // for size_t
#include <string> // for string
#include "vrpn_Analog.h" // for vrpn_Analog
#include "vrpn_Configure.h" // for VRPN_API, VRPN_USE_HID
#include "vrpn_Connection.h" // for vrpn_Connection (ptr only), etc
#include "vrpn_HumanInterface.h" // for vrpn_HIDDEVINFO, etc
#include "vrpn_Shared.h" // for timeval
#include "vrpn_Types.h" // for vrpn_uint16, vrpn_uint32, etc
#if defined(VRPN_USE_HID)
/** @brief 5th Dimension Technologies (5dt) "Ultra" USB data glove driver
This supports connecting to 5dt gloves over USB that present a HID device interface.
This includes the 5DT Data Glove 5 Ultra and the 5DT Data Glove 14 Ultra, as well
as either of those using the wireless kit. (I, Ryan Pavlik, have only tested this
with the 5DT Data Glove 5 Ultras since that's all I have access to, but support based
on what I would expect from a 14-sensor glove is included.)
Each sensor's raw values are exposed as an analog channel (5 or 14) between 0.0 and 1.0.
Note that there is pretty significant need for calibration since the used range within the
entire representable range is pretty small and seemingly device-dependent.
Your code will probably have to at least perform some scaling based on establishing a
"min" and "max" for each sensor.
For serial 5dt glove access, see the vrpn_5DT16 (for the 16-sensor model) and
vrpn_5dt (for the 5-sensor wired or wireless model, in vrpn_Analog_5dt.h) classes.
The inherited method vrpn_Analog::getNumChannels()
This base class does all the work: the inherited classes just create the right filters
and input for the base class.
*/
class VRPN_API vrpn_Analog_5dtUSB : public vrpn_Analog, protected vrpn_HidInterface {
public:
/// Destructor
virtual ~vrpn_Analog_5dtUSB();
/// Standard VRPN mainloop method.
virtual void mainloop();
/// Returns a string description of the device we've connected to. Used internally,
/// but also possibly useful externally.
std::string get_description() const;
/// Accessor to know if this is a left hand glove.
bool isLeftHand() const { return _isLeftHand; }
/// Accessor to know if this is a right hand glove.
bool isRightHand() const { return !_isLeftHand; }
protected:
/// Protected constructor: use a subclass to specify the glove variant to use.
// NOTE: Because this can accept a variety of productIds, we cannot use the
// optimization of asking for a vendor and product ID in the constructor
// of the vrpn_HidInterface -- it will not understand about the masks.
vrpn_Analog_5dtUSB(vrpn_HidAcceptor *filter, int num_sensors,
bool isLeftHand, const char *name, vrpn_Connection *c = 0);
/// Extracts the sensor values from each report.
void on_data_received(size_t bytes, vrpn_uint8 *buffer);
/// Timestamp updated during mainloop()
struct timeval _timestamp;
/// The raw values extracted from the report: which ones we use to set
/// analog channels varies based on the kind of device this is.
double _rawVals[16];
/// Flag for left handedness.
bool _isLeftHand;
/// Flag indicating whether we were connected last time through the mainloop.
/// Used to send a "normal"-severity message when we connect with info on the
/// device.
bool _wasConnected;
/// Send report iff changed
void report_changes(vrpn_uint32 class_of_service = vrpn_CONNECTION_LOW_LATENCY);
/// Send report whether or not changed
void report(vrpn_uint32 class_of_service = vrpn_CONNECTION_LOW_LATENCY);
};
/// Specialization of vrpn_Analog_5dtUSB for a 5-sensor, left-hand glove.
class VRPN_API vrpn_Analog_5dtUSB_Glove5Left: public vrpn_Analog_5dtUSB {
public:
vrpn_Analog_5dtUSB_Glove5Left(const char *name, vrpn_Connection *c = 0);
virtual ~vrpn_Analog_5dtUSB_Glove5Left() {};
};
/// Specialization of vrpn_Analog_5dtUSB for a 5-sensor, right-hand glove.
class VRPN_API vrpn_Analog_5dtUSB_Glove5Right: public vrpn_Analog_5dtUSB {
public:
vrpn_Analog_5dtUSB_Glove5Right(const char *name, vrpn_Connection *c = 0);
virtual ~vrpn_Analog_5dtUSB_Glove5Right() {};
};
/// Specialization of vrpn_Analog_5dtUSB for a 14-sensor, left-hand glove.
/// Not tested as of 8-Mar-2011 because I don't have access to one.
class VRPN_API vrpn_Analog_5dtUSB_Glove14Left: public vrpn_Analog_5dtUSB {
public:
vrpn_Analog_5dtUSB_Glove14Left(const char *name, vrpn_Connection *c = 0);
virtual ~vrpn_Analog_5dtUSB_Glove14Left() {};
};
/// Specialization of vrpn_Analog_5dtUSB for a 14-sensor, right-hand glove.
/// Not tested as of 8-Mar-2011 because I don't have access to one.
class VRPN_API vrpn_Analog_5dtUSB_Glove14Right: public vrpn_Analog_5dtUSB {
public:
vrpn_Analog_5dtUSB_Glove14Right(const char *name, vrpn_Connection *c = 0);
virtual ~vrpn_Analog_5dtUSB_Glove14Right() {};
};
/// HID acceptor subclass used by vrpn_Analog_5dtUSB since the bits of
/// the product ID for these devices describe the device in a useful way.
class VRPN_API vrpn_HidProductMaskAcceptor: public vrpn_HidAcceptor {
public:
vrpn_HidProductMaskAcceptor(vrpn_uint16 vendorId, vrpn_uint16 productMask = 0x0000, vrpn_uint16 desiredProduct = 0x0000) :
vendor(vendorId),
product(desiredProduct),
mask(productMask) {}
~vrpn_HidProductMaskAcceptor() {}
bool accept(const vrpn_HIDDEVINFO &device) {
return (device.vendor == vendor) && ((device.product & mask) == (product & mask));
}
private:
vrpn_uint16 vendor;
vrpn_uint16 product;
vrpn_uint16 mask;
};
#endif // end of ifdef VRPN_USE_HID
// end of VRPN_ANALOG_5DTUSB_H
#endif