98 lines
2.9 KiB
C++
98 lines
2.9 KiB
C++
// Filename: trackerNode.h
|
|
// Created by: drose (12Mar02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef TRACKERNODE_H
|
|
#define TRACKERNODE_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "clientBase.h"
|
|
#include "trackerData.h"
|
|
#include "clientTrackerDevice.h"
|
|
#include "dataNode.h"
|
|
#include "luse.h"
|
|
#include "linmath_events.h"
|
|
#include "pointerTo.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : TrackerNode
|
|
// Description : This is the primary interface to a Tracker object
|
|
// associated with a ClientBase. It reads the position
|
|
// and orientation information from the tracker and
|
|
// makes it available as a transformation on the data
|
|
// graph.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA TrackerNode : public DataNode {
|
|
PUBLISHED:
|
|
TrackerNode(ClientBase *client, const string &device_name);
|
|
virtual ~TrackerNode();
|
|
|
|
INLINE bool is_valid() const;
|
|
|
|
INLINE const LPoint3f &get_pos() const;
|
|
INLINE const LOrientationf &get_orient() const;
|
|
INLINE const LMatrix4f &get_transform() const;
|
|
INLINE double get_time() const;
|
|
INLINE bool has_time() const;
|
|
|
|
INLINE void set_tracker_coordinate_system(CoordinateSystem cs);
|
|
INLINE CoordinateSystem get_tracker_coordinate_system() const;
|
|
|
|
INLINE void set_graph_coordinate_system(CoordinateSystem cs);
|
|
INLINE CoordinateSystem get_graph_coordinate_system() const;
|
|
|
|
protected:
|
|
// Inherited from DataNode
|
|
virtual void do_transmit_data(DataGraphTraverser *trav,
|
|
const DataNodeTransmit &input,
|
|
DataNodeTransmit &output);
|
|
|
|
private:
|
|
// outputs
|
|
int _transform_output;
|
|
|
|
CPT(TransformState) _transform;
|
|
|
|
private:
|
|
PT(ClientTrackerDevice) _tracker;
|
|
TrackerData _data;
|
|
LMatrix4f _mat;
|
|
CoordinateSystem _tracker_cs, _graph_cs;
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
DataNode::init_type();
|
|
register_type(_type_handle, "TrackerNode",
|
|
DataNode::get_class_type());
|
|
}
|
|
virtual TypeHandle get_type() const {
|
|
return get_class_type();
|
|
}
|
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#include "trackerNode.I"
|
|
|
|
#endif
|