source: flair-src/trunk/lib/FlairSensorActuator/src/unexported/VrpnObject_impl.h@ 330

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

draw vrpn axis in simulator

File size: 1.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: VrpnObject_impl.h
7//
8// author: César Richard, Guillaume Sanahuja
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: objet vrpn
14//
15//
16/*********************************************************************/
17
18#ifndef VRPNOBJECT_IMPL_H
19#define VRPNOBJECT_IMPL_H
20
21#include <IODevice.h>
22#include <string>
23#include <stdint.h>
24#include <vrpn_Tracker.h>
25#include "Quaternion.h"
26#include "Vector3D.h"
27
28namespace flair {
29 namespace core {
30 class Matrix;
31 }
32 namespace gui {
33 class TabWidget;
34 class Tab;
35 class DataPlot1D;
36 }
37 namespace sensor {
38 class VrpnClient;
39 class VrpnObject;
40 }
41}
42
43class VrpnObject_impl {
44 friend class VrpnClient_impl;
45
46public:
47 VrpnObject_impl(flair::sensor::VrpnObject *self,
48 std::string name,
49 int id, const flair::gui::TabWidget *tab,flair::sensor::VrpnClient *client);
50 ~VrpnObject_impl(void);
51
52 void GetQuaternion(flair::core::Quaternion &quaternion);
53 void GetPosition(flair::core::Vector3Df &point);
54 bool IsTracked(unsigned int timeout_ms);
55
56 flair::gui::Tab *plot_tab;
57 flair::gui::DataPlot1D *x_plot;
58 flair::gui::DataPlot1D *y_plot;
59 flair::gui::DataPlot1D *z_plot;
60 flair::core::Matrix *output, *state;
61
62 static void VRPN_CALLBACK handle_pos(void *userdata, const vrpn_TRACKERCB t);
63
64private:
65 flair::sensor::VrpnObject *self;
66 const flair::sensor::VrpnClient *parent;
67 vrpn_Tracker_Remote *tracker;
68 void Update(void);
69 flair::core::Time previousTime;
70};
71
72#endif // VRPNOBJECT_IMPL_H
Note: See TracBrowser for help on using the repository browser.