Panda3D
Loading...
Searching...
No Matches
vrpnAnalogDevice.h
Go to the documentation of this file.
1/**
2 * PANDA 3D SOFTWARE
3 * Copyright (c) Carnegie Mellon University. All rights reserved.
4 *
5 * All use of this software is subject to the terms of the revised BSD
6 * license. You should have received a copy of this license along
7 * with this source code in a file named "LICENSE."
8 *
9 * @file vrpnAnalogDevice.h
10 * @author drose
11 * @date 2001-01-26
12 */
13
14#ifndef VRPNANALOGDEVICE_H
15#define VRPNANALOGDEVICE_H
16
17#include "pandabase.h"
18
19#include "clientAnalogDevice.h"
20
21class VrpnClient;
22class VrpnAnalog;
23
24/**
25 * The Panda interface to a VRPN analog device. This object will be returned
26 * by VrpnClient::make_device(), for attaching to a AnalogNode.
27 *
28 * This class does not need to be exported from the DLL.
29 */
31public:
32 VrpnAnalogDevice(VrpnClient *client, const std::string &device_name,
33 VrpnAnalog *vrpn_analog);
34 virtual ~VrpnAnalogDevice();
35
36 INLINE VrpnAnalog *get_vrpn_analog() const;
37
38private:
39 VrpnAnalog *_vrpn_analog;
40
41public:
42 static TypeHandle get_class_type() {
43 return _type_handle;
44 }
45 static void init_type() {
46 ClientAnalogDevice::init_type();
47 register_type(_type_handle, "VrpnAnalogDevice",
48 ClientAnalogDevice::get_class_type());
49 }
50 virtual TypeHandle get_type() const {
51 return get_class_type();
52 }
53 virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
54
55private:
56 static TypeHandle _type_handle;
57
58 friend class VrpnAnalog;
59};
60
61#include "vrpnAnalogDevice.I"
62
63#endif
A device, attached to the ClientBase by a AnalogNode, that records the data from a single named analo...
TypeHandle is the identifier used to differentiate C++ class types.
Definition typeHandle.h:81
The Panda interface to a VRPN analog device.
VrpnAnalog * get_vrpn_analog() const
Returns a pointer to the particular VrpnAnalog this device gets its data from.
This is the actual interface to a particular VRPN analog device, and all of its numbered controls.
Definition vrpnAnalog.h:38
A specific ClientBase that connects to a VRPN server and records information on the connected VRPN de...
Definition vrpnClient.h:35
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void register_type(TypeHandle &type_handle, const std::string &name)
This inline function is just a convenient way to call TypeRegistry::register_type(),...
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.