source: flair-src/trunk/lib/FlairSensorActuator/src/VrpnClient_impl.cpp@ 376

Last change on this file since 376 was 332, checked in by Sanahuja Guillaume, 5 years ago

modif vrpn lite

File size: 10.7 KB
Line 
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: 2013/04/03
6// filename: VrpnClient_impl.cpp
7//
8// author: César Richard, Guillaume Sanahuja
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: objet se connectant au serveur vrpn
14//
15//
16/*********************************************************************/
17
18#include "VrpnClient.h"
19#include "VrpnClient_impl.h"
20#include "VrpnObject.h"
21#include "VrpnObject_impl.h"
22#include <SerialPort.h>
23#include <vrpn_Connection.h>
24#include <FrameworkManager.h>
25#include <TabWidget.h>
26#include <Tab.h>
27#include <GridLayout.h>
28#include <OneAxisRotation.h>
29#include <Vector3D.h>
30#include <Quaternion.h>
31#include <Mutex.h>
32#include <UdpSocket.h>
33#include <math.h>
34
35using std::string;
36using std::vector;
37using namespace flair::core;
38using namespace flair::gui;
39using namespace flair::sensor;
40
41VrpnClient_impl::VrpnClient_impl(VrpnClient *self, string name,
42 std::string address,flair::sensor::VrpnClient::ConnectionType_t connectionType) {
43 this->self = self;
44 this->address = address;
45 this->connectionType = connectionType;
46 isConnected=false;
47
48 if(connectionType==VrpnClient::Vrpn) {
49 connection = vrpn_get_connection_by_name(address.c_str());
50 Printf("Connecting to VRPN server on %s\n",address.c_str());
51 } else if(connectionType==VrpnClient::VrpnLite) {
52 dataSocket =new UdpSocket(getFrameworkManager(), "data_socket", address);
53 Printf("Connecting to VRPN-lite server on %s\n",address.c_str());
54 } else {
55 self->Err("Bad connection type, try using naother constructor\n");
56 }
57
58 CommonConstructor(name);
59}
60
61
62
63VrpnClient_impl::VrpnClient_impl(VrpnClient *self, string name,
64 SerialPort *serialport, uint16_t us_period) {
65 this->us_period = us_period;
66 this->self = self;
67 this->serialport = serialport;
68 connectionType=VrpnClient::Xbee;
69
70 serialport->SetBaudrate(111111);
71 serialport->SetRxTimeout(us_period * 1000);
72
73 CommonConstructor(name);
74
75 Printf("Connecting to VRPN server through xbee on %s\n",serialport->ObjectName().c_str());
76}
77
78void VrpnClient_impl::CommonConstructor(std::string name) {
79 mutex = new Mutex(self, name);
80
81 // station sol
82 main_tab = new Tab(getFrameworkManager()->GetTabWidget(), name);
83 tab = new TabWidget(main_tab->NewRow(), name);
84 setup_tab = new Tab(tab, "Reglages");
85
86 rotation_1 = new OneAxisRotation(setup_tab->NewRow(), "post rotation 1",OneAxisRotation::PreRotation);
87 rotation_2 = new OneAxisRotation(setup_tab->NewRow(), "post rotation 2",OneAxisRotation::PreRotation);
88}
89
90VrpnClient_impl::~VrpnClient_impl() {
91 if (connectionType==VrpnClient::Vrpn|| connectionType==VrpnClient::VrpnLite) {
92 // on fait une copie car le delete touche a trackables_copy via
93 // RemoveTrackable
94 vector<VrpnObject_impl *> trackables_copy = trackables;
95 for (unsigned int i = 0; i < trackables_copy.size(); i++)
96 delete trackables_copy.at(i)->self;
97 // trackables.clear();
98 } else if(connectionType==VrpnClient::Xbee ) {
99 // on fait une copie car le delete touche a xbee_objects_copy via
100 // RemoveTrackable
101 vector<xbeeObject_t> xbeeObjects_copy = xbeeObjects;
102 for (unsigned int i = 0; i < xbeeObjects_copy.size(); i++)
103 delete xbeeObjects_copy.at(i).vrpnobject->self;
104 }
105
106 delete main_tab;
107
108 if (connectionType==VrpnClient::Vrpn) {
109 // it will automatically delete connection
110 connection->removeReference();
111 }
112}
113
114void VrpnClient_impl::ComputeRotations(Vector3Df &point) {
115 rotation_1->ComputeRotation(point);
116 rotation_2->ComputeRotation(point);
117}
118
119void VrpnClient_impl::ComputeRotations(Quaternion &quat) {
120 rotation_1->ComputeRotation(quat);
121 rotation_2->ComputeRotation(quat);
122}
123
124void VrpnClient_impl::AddTrackable(VrpnObject_impl *obj) {
125 if (connectionType==VrpnClient::Vrpn) {
126 mutex->GetMutex();
127 trackables.push_back(obj);
128 mutex->ReleaseMutex();
129 } else if (connectionType==VrpnClient::VrpnLite) {
130 if(trackables.size()<0xffff) {
131 uint16_t id=trackables.size();
132 mutex->GetMutex();
133 trackables.push_back(obj);
134 mutex->ReleaseMutex();
135 //Printf("%i %s\n",tmp.id,obj->self->ObjectName().c_str());
136
137 char char_array[obj->self->ObjectName().length() + sizeof(id)];
138 strcpy(char_array, obj->self->ObjectName().c_str());
139 dataSocket->HostToNetwork((char*)(&id),sizeof(id));
140 memcpy(&char_array[obj->self->ObjectName().length()],&id,sizeof(id));
141 dataSocket->SendMessage(char_array,obj->self->ObjectName().length() + sizeof(id));
142 }else {
143 self->Warn("too much trackables for vrpnlite connection, not adding %s\n",obj->self->ObjectName().c_str());
144 }
145 } else {
146 self->Warn("AddTrackable called but not in vrpn mode nor in vrpnlite mode\n");
147 }
148}
149
150void VrpnClient_impl::AddTrackable(VrpnObject_impl *obj, uint8_t id) {
151 if (connectionType==VrpnClient::Xbee) {
152 xbeeObject_t tmp;
153 tmp.vrpnobject = obj;
154 tmp.id = id;
155 mutex->GetMutex();
156 xbeeObjects.push_back(tmp);
157 mutex->ReleaseMutex();
158 } else {
159 self->Warn("AddTrackable called but not in xbee mode\n");
160 }
161}
162
163void VrpnClient_impl::RemoveTrackable(VrpnObject_impl *obj) {
164 mutex->GetMutex();
165 if (connectionType==VrpnClient::Vrpn || connectionType==VrpnClient::VrpnLite) {
166 for (vector<VrpnObject_impl *>::iterator it = trackables.begin();it < trackables.end(); it++) {
167 if (*it == obj) {
168 trackables.erase(it);
169 break;
170 }
171 }
172 }
173 if ( connectionType==VrpnClient::Xbee) {
174 for (vector<xbeeObject_t>::iterator it = xbeeObjects.begin();it < xbeeObjects.end(); it++) {
175 if ((*it).vrpnobject == obj) {
176 xbeeObjects.erase(it);
177 break;
178 }
179 }
180 }
181 mutex->ReleaseMutex();
182}
183
184void VrpnClient_impl::Run(void) {
185 struct timeval timeout;
186 timeout.tv_sec=0;
187 timeout.tv_usec=100000;
188
189 while (!self->ToBeStopped()) {
190 if (connectionType==VrpnClient::Xbee) {
191 ssize_t read = 0;
192 uint8_t response[38] = {0};
193
194 read = serialport->Read(response, sizeof(response));
195 if (read > 0 && read != sizeof(response))
196 read += serialport->Read(&response[read], sizeof(response) - read);
197 // int temps=(float)self->GetTime()/(1000*1000);
198 // self->Printf("%i %i %i\n",temps-last,temps,last);
199 // last=temps;
200 if (read < 0) {
201 // self->Warn("erreur rt_dev_read (%s)\n",strerror(-read));
202 } else if (read != sizeof(response)) {
203 self->Warn("serial read error %i/%i\n", read, sizeof(response));
204 } else {
205 // for(ssize_t i=0;i<read;i++) printf("%x ",response[i]);
206 // printf("\n");
207 uint8_t checksum = 0;
208 for (ssize_t i = 3; i < read; i++)
209 checksum += response[i];
210 if (checksum != 255) {
211 self->Err("checksum error\n");
212 } else {
213 vrpn_TRACKERCB t;
214 float pos[3];
215 float quat[4];
216 uint8_t id = response[8];
217
218 mutex->GetMutex();
219 if (id < xbeeObjects.size()) {
220 memcpy(pos, &response[9], sizeof(pos));
221 memcpy(quat, &response[9] + sizeof(pos), sizeof(quat));
222 for (int i = 0; i < 3; i++)
223 t.pos[i] = pos[i];
224 for (int i = 0; i < 4; i++)
225 t.quat[i] = quat[i];
226 if (fabs(pos[0] > 10) || fabs(pos[1] > 10) || fabs(pos[2] > 10)) {
227 Printf("prob pos %f %f %f\n", pos[0], pos[1], pos[2]);
228 } else {
229 // self->Printf("%i %f %f %f
230 // %f\n",id,pos[0],pos[1],pos[2],(float)self->GetTime()/(1000*1000));
231 VrpnObject_impl::handle_pos(xbeeObjects.at(id).vrpnobject, t);
232 }
233 }
234 mutex->ReleaseMutex();
235 }
236 }
237 } else if(connectionType==VrpnClient::Vrpn) {
238 if(connection->connected()==vrpn_true && !isConnected) {
239 isConnected=true;
240 Printf("VRPN connected to %s\n",address.c_str());
241 }
242 if(connection->connected()==vrpn_false && isConnected) {
243 isConnected=false;
244 Printf("VRPN disconnected to %s\n",address.c_str());
245 }
246 //timeout in mainloop is not well handled if not connected...
247 if(isConnected) {
248 //this is when trackables callbacks are called:
249 if(connection->mainloop(&timeout)!=0) {
250 self->Warn("connection dropped from\n",address.c_str());
251 }
252 //printf("%lld\n",GetTime()/(1000*1000));
253 mutex->GetMutex();
254 for (unsigned int i = 0; i < trackables.size(); i++) {
255 // Printf("tracker %i\n",i);
256 trackables.at(i)->tracker->mainloop();
257 //Printf("tracker %i ok\n",i);
258 }
259 mutex->ReleaseMutex();
260 } else {
261 connection->mainloop();
262 self->SleepMS(10);
263 }
264 }else if(connectionType==VrpnClient::VrpnLite) {
265 mutex->GetMutex();
266
267 int16_t pos[3];
268 int16_t quat[4];
269 Time time;
270 char datas[trackables.size()*(sizeof(pos)+sizeof(quat))+ sizeof(time)];
271 char *datasPtr=datas;
272
273 int rcv=dataSocket->RecvMessage(datas,sizeof(datas),50*1000*1000);
274 if(rcv!=sizeof(datas)) {
275 if(rcv>0) Printf("discarding message (size %i/%i)\n",rcv,sizeof(datas));
276 mutex->ReleaseMutex();
277 continue;
278 }
279
280 memcpy(&time, datasPtr+sizeof(datas)-sizeof(time), sizeof(time));
281 dataSocket->NetworkToHost((char*)(&time),sizeof(time));
282
283 for (vector<VrpnObject_impl*>::iterator it = trackables.begin();it < trackables.end(); it++) {
284 memcpy(pos, datasPtr, sizeof(pos));
285 datasPtr+=sizeof(pos);
286 memcpy(quat,datasPtr, sizeof(quat));
287 datasPtr+=sizeof(quat);
288
289 for(int i=0;i<3;i++) dataSocket->NetworkToHost((char*)(&pos[i]),sizeof(pos[i]));
290 for(int i=0;i<4;i++) dataSocket->NetworkToHost((char*)(&quat[i]),sizeof(quat[i]));
291
292 vrpn_TRACKERCB t;
293 for (int i = 0; i < 3; i++) t.pos[i] = ConvertPosition(pos[i]);
294 // warning: t.quat is defined as (qx,qy,qz,qw), which is different from
295 // flair::core::Quaternion
296 t.quat[0] = ConvertQuaternion(quat[1]);
297 t.quat[1] = ConvertQuaternion(quat[2]);
298 t.quat[2] = ConvertQuaternion(quat[3]);
299 t.quat[3] = ConvertQuaternion(quat[0]);
300 t.msg_time.tv_sec=time/((Time)1000000000);
301 t.msg_time.tv_usec=(time%((Time)1000000000))/((Time)1000);
302 //Printf("%i %lld %lld %lld\n",id,time,t.msg_time.tv_sec,t.msg_time.tv_usec);
303 VrpnObject_impl::handle_pos((void*)(*it), t);
304 }
305
306 mutex->ReleaseMutex();
307 }
308 }
309}
310
311float VrpnClient_impl::ConvertPosition(int16_t value) const {
312 return (float)value/1000.;
313}
314
315float VrpnClient_impl::ConvertQuaternion(int16_t value) const {
316 return (float)value/32767.;
317}
Note: See TracBrowser for help on using the repository browser.