This is a structure representing a single input device. More...
#include "inputDevice.h"
Classes | |
class | AxisState |
class | BatteryData |
class | ButtonState |
Public Types | |
typedef pvector< AxisState > | Axes |
enum | Axis { none, x, y, z, yaw, pitch, roll, left_x, left_y, left_trigger, right_x, right_y, right_trigger, throttle, rudder, wheel, accelerator, brake } |
typedef pvector< ButtonState > | Buttons |
enum | DeviceClass { unknown, virtual_device, keyboard, mouse, touch, gamepad, flight_stick, steering_wheel, dance_pad, hmd, spatial_mouse } |
enum | Feature { pointer, keyboard, tracker, vibration, battery } |
enum | State { S_unknown, S_up, S_down } |
Public Member Functions | |
InputDevice (const InputDevice ©)=delete | |
void | disable_pointer_events () |
Disables the generation of mouse-movement events. More... | |
void | enable_pointer_events () |
Enables the generation of mouse-movement events. More... | |
AxisState | find_axis (Axis axis) const |
Returns the first AnalogAxis found with the given axis, or throw an assert if the axis was not found in the list. More... | |
ButtonState | find_button (ButtonHandle handle) const |
Returns the first ButtonState found with the given axis, or throw an assert if the button handle was not found in the list. More... | |
virtual TypeHandle | force_init_type () |
AxisState | get_axis (size_t index) const |
double | get_axis_value (size_t index) const |
Returns the current position of indicated analog axis (identified by its index number), or 0.0 if the axis is unknown. More... | |
BatteryData | get_battery () const |
ButtonState | get_button (size_t index) const |
ButtonHandle | get_button_map (size_t index) const |
Returns the ButtonHandle that was previously associated with the given index number by a call to map_button(), or ButtonHandle::none() if no button was associated. More... | |
DeviceClass | get_device_class () const |
std::string | get_manufacturer () const |
std::string | get_name () const |
size_t | get_num_axes () const |
size_t | get_num_buttons () const |
unsigned short | get_product_id () const |
std::string | get_serial_number () const |
TrackerData | get_tracker () const |
virtual TypeHandle | get_type () const |
unsigned short | get_vendor_id () const |
bool | has_battery () const |
bool | has_button_event () const |
Returns true if this device has a pending button event (a mouse button or keyboard button down/up), false otherwise. More... | |
bool | has_feature (Feature feature) const |
Returns true if the device supports the indicated feature. More... | |
bool | has_keyboard () const |
Returns true if the device has a physical keyboard designed for text entry. More... | |
bool | has_pointer () const |
Returns true if this is a pointing device. More... | |
bool | has_pointer_event () const |
Returns true if this device has a pending pointer event (a mouse movement), or false otherwise. More... | |
bool | has_tracker () const |
bool | has_vibration () const |
Returns true if the device has vibration motors that can be controlled by calling set_vibration(). More... | |
bool | is_axis_known (size_t index) const |
Returns true if the state of the indicated analog axis is known, or false if we have never heard anything about this particular axis. More... | |
bool | is_button_known (size_t index) const |
Returns true if the state of the indicated button is known, or false if we have never heard anything about this particular button. More... | |
bool | is_button_pressed (size_t index) const |
Returns true if the indicated button (identified by its index number) is currently known to be down, or false if it is up or unknown. More... | |
bool | is_connected () const |
void | map_axis (size_t index, Axis axis) |
Associates the indicated Axis with the axis of the indicated index number. More... | |
void | map_button (size_t index, ButtonHandle handle) |
Associates the indicated ButtonHandle with the button of the indicated index number. More... | |
InputDevice & | operator= (const InputDevice ©)=delete |
virtual void | output (std::ostream &out) const |
Writes a one-line string describing the device. More... | |
void | output_buttons (std::ostream &out) const |
Writes a one-line string of all of the current button states. More... | |
void | poll () |
Polls the input device for new activity, to ensure it contains the latest events. More... | |
PT (ButtonEventList) get_button_events() | |
PT (PointerEventList) get_pointer_events() | |
void | set_connected (bool connected) |
Called to indicate that the device has been disconnected or connected from its host. More... | |
void | set_vibration (double strong, double weak) |
Sets the strength of the vibration effect, if supported. More... | |
void | write_axes (std::ostream &out, int indent_level) const |
Writes a multi-line description of the current analog axis states. More... | |
void | write_buttons (std::ostream &out, int indent_level) const |
Writes a multi-line description of the current button states. More... | |
Public Member Functions inherited from TypedReferenceCount | |
TypedReferenceCount (const TypedReferenceCount ©) | |
void | operator= (const TypedReferenceCount ©) |
Public Member Functions inherited from TypedObject | |
TypedObject (const TypedObject ©)=default | |
TypedObject * | as_typed_object () |
Returns the object, upcast (if necessary) to a TypedObject pointer. More... | |
const TypedObject * | as_typed_object () const |
Returns the object, upcast (if necessary) to a TypedObject pointer. More... | |
int | get_best_parent_from_Set (const std::set< int > &) const |
int | get_type_index () const |
Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. More... | |
bool | is_exact_type (TypeHandle handle) const |
Returns true if the current object is the indicated type exactly. More... | |
bool | is_of_type (TypeHandle handle) const |
Returns true if the current object is or derives from the indicated type. More... | |
TypedObject & | operator= (const TypedObject ©)=default |
Public Member Functions inherited from ReferenceCount | |
int | get_ref_count () const |
WeakReferenceList * | get_weak_list () const |
Returns the WeakReferenceList associated with this ReferenceCount object. More... | |
bool | has_weak_list () const |
Returns true if this particular ReferenceCount object has a WeakReferenceList created, false otherwise. More... | |
void | local_object () |
This function should be called, once, immediately after creating a new instance of some ReferenceCount-derived object on the stack. More... | |
void | ref () const |
Explicitly increments the reference count. More... | |
bool | ref_if_nonzero () const |
Atomically increases the reference count of this object if it is not zero. More... | |
bool | test_ref_count_integrity () const |
Does some easy checks to make sure that the reference count isn't completely bogus. More... | |
bool | test_ref_count_nonzero () const |
Does some easy checks to make sure that the reference count isn't zero, or completely bogus. More... | |
virtual bool | unref () const |
Explicitly decrements the reference count. More... | |
WeakReferenceList * | weak_ref () |
Adds the indicated PointerToVoid as a weak reference to this object. More... | |
void | weak_unref () |
Removes the indicated PointerToVoid as a weak reference to this object. More... | |
Static Public Member Functions | |
static std::string | format_axis (Axis axis) |
Returns a string describing the given axis enumerant. More... | |
static std::string | format_device_class (DeviceClass dc) |
Returns a string describing the given device class enumerant. More... | |
static TypeHandle | get_class_type () |
static void | init_type () |
Static Public Member Functions inherited from TypedReferenceCount | |
static TypeHandle | get_class_type () |
static void | init_type () |
Static Public Member Functions inherited from TypedObject | |
static TypeHandle | get_class_type () |
static void | init_type () |
This function is declared non-inline to work around a compiler bug in g++ 2.96. More... | |
Static Public Member Functions inherited from ReferenceCount | |
static TypeHandle | get_class_type () |
static void | init_type () |
Public Attributes | |
Axes | _axes |
BatteryData | _battery_data |
Buttons | _buttons |
PointerData | _pointer_data |
TrackerData | _tracker_data |
get_axis | |
Returns the axis state that is set at the given index, or throw an assert if the index was not found in the list. More... | |
get_battery | |
Returns a rough indication of the battery level, ranging from 0 (completely empty battery) to the indicated max_level value. More... | |
get_button | |
Returns the ButtonState that is set at the given index, or throw an assert if the index was not found in the list. More... | |
get_device_class | |
Returns an identification of the general type of device. More... | |
get_manufacturer | |
Returns a string containing the manufacturer of the device, if this information is known. More... | |
get_name | |
Returns a human-readable name for the device. More... | |
get_num_axes | |
Returns the number of analog axes known to the InputDevice. More... | |
get_num_buttons | |
Returns the number of buttons known to the device. More... | |
get_product_id | |
Returns a string containing the USB product ID of the device, if this information is known. More... | |
get_serial_number | |
Returns a string containing the serial number of the device, if this information is known. More... | |
get_tracker | |
Returns the TrackerData associated with the input device's tracker. More... | |
get_vendor_id | |
Returns a string containing the USB vendor ID of the device, if this information is known. More... | |
has_battery | |
Returns true if the device may be able to provide information about its battery life. More... | |
has_tracker | |
Returns true if the device features a tracker that can track position and/or orientation in 3D space. More... | |
is_connected | |
Returns true if the device is still connected and able to receive data, false otherwise. More... | |
Public Attributes inherited from TypedObject | |
get_type | |
Public Attributes inherited from ReferenceCount | |
get_ref_count | |
Returns the current reference count. More... | |
This is a structure representing a single input device.
Input devices may have zero or more buttons, pointers, or axes associated with them, and optionally a motion tracker.
These devices are brought under a common interface because there is such a large range of devices out there that may support any number of these types of axes, we couldn't even begin to cover them with type-specific subclasses.
Use the various has_() and get_num_() methods to determine information about the device capabilities. For instance, has_keyboard() will give an indication that you can receive keystroke events from this device, and get_num_buttons() will tell you that the device may send button events.
There is the DeviceType enumeration, however, which will (if known) contain identification of the general category of devices this fits in, such as keyboard, mouse, gamepad, or flight stick.
Definition at line 53 of file inputDevice.h.
|
inline |
Disables the generation of mouse-movement events.
Definition at line 363 of file inputDevice.I.
|
inline |
Enables the generation of mouse-movement events.
Definition at line 354 of file inputDevice.I.
|
inline |
Returns the first AnalogAxis found with the given axis, or throw an assert if the axis was not found in the list.
Definition at line 317 of file inputDevice.I.
|
inline |
Returns the first ButtonState found with the given axis, or throw an assert if the button handle was not found in the list.
Definition at line 253 of file inputDevice.I.
|
static |
Returns a string describing the given axis enumerant.
Definition at line 589 of file inputDevice.cxx.
|
static |
Returns a string describing the given device class enumerant.
Definition at line 547 of file inputDevice.cxx.
|
inline |
Returns the current position of indicated analog axis (identified by its index number), or 0.0 if the axis is unknown.
The normal range of a single axis is -1.0 to 1.0.
Definition at line 294 of file inputDevice.I.
|
inline |
Returns the ButtonHandle that was previously associated with the given index number by a call to map_button(), or ButtonHandle::none() if no button was associated.
Definition at line 204 of file inputDevice.I.
bool InputDevice::has_button_event | ( | ) | const |
Returns true if this device has a pending button event (a mouse button or keyboard button down/up), false otherwise.
If this returns true, the particular event may be extracted via get_button_event().
Definition at line 59 of file inputDevice.cxx.
|
inline |
Returns true if the device supports the indicated feature.
Definition at line 98 of file inputDevice.I.
Referenced by has_keyboard(), has_pointer(), and has_vibration().
|
inline |
Returns true if the device has a physical keyboard designed for text entry.
Definition at line 115 of file inputDevice.I.
References has_feature().
|
inline |
Returns true if this is a pointing device.
Definition at line 107 of file inputDevice.I.
References has_feature().
bool InputDevice::has_pointer_event | ( | ) | const |
Returns true if this device has a pending pointer event (a mouse movement), or false otherwise.
If this returns true, the particular event may be extracted via get_pointer_event().
Definition at line 82 of file inputDevice.cxx.
|
inline |
Returns true if the device has vibration motors that can be controlled by calling set_vibration().
Definition at line 133 of file inputDevice.I.
References has_feature().
|
inline |
Returns true if the state of the indicated analog axis is known, or false if we have never heard anything about this particular axis.
Definition at line 331 of file inputDevice.I.
|
inline |
Returns true if the state of the indicated button is known, or false if we have never heard anything about this particular button.
Definition at line 230 of file inputDevice.I.
|
inline |
Returns true if the indicated button (identified by its index number) is currently known to be down, or false if it is up or unknown.
Definition at line 217 of file inputDevice.I.
|
inline |
Associates the indicated Axis with the axis of the indicated index number.
Pass Axis::none to turn off any association.
It is not necessary to call this if you simply want to query the state of the various axes by index number.
Definition at line 279 of file inputDevice.I.
|
inline |
Associates the indicated ButtonHandle with the button of the indicated index number.
When the given button index changes state, a corresponding ButtonEvent will be generated with the given ButtonHandle. Pass ButtonHandle::none() to turn off any association.
It is not necessary to call this if you simply want to query the state of the various buttons by index number; this is only necessary in order to generate ButtonEvents when the buttons change state.
Definition at line 189 of file inputDevice.I.
|
virtual |
Writes a one-line string describing the device.
Reimplemented in ClientDevice, and ClientButtonDevice.
Definition at line 380 of file inputDevice.cxx.
void InputDevice::output_buttons | ( | std::ostream & | out | ) | const |
Writes a one-line string of all of the current button states.
Definition at line 440 of file inputDevice.cxx.
References InputDevice::ButtonState::is_known.
Referenced by ClientButtonDevice::output().
void InputDevice::poll | ( | ) |
Polls the input device for new activity, to ensure it contains the latest events.
This will only have any effect for some types of input devices; others may be updated automatically, and this method will be a no-op.
Definition at line 48 of file inputDevice.cxx.
|
inline |
Called to indicate that the device has been disconnected or connected from its host.
Definition at line 383 of file inputDevice.I.
Referenced by ClientDevice::disconnect().
|
inline |
Sets the strength of the vibration effect, if supported.
The values are clamped to 0-1 range. The first value axes the low-frequency rumble motor, whereas the second axes the high-frequency motor, if present.
Definition at line 345 of file inputDevice.I.
void InputDevice::write_axes | ( | std::ostream & | out, |
int | indent_level | ||
) | const |
Writes a multi-line description of the current analog axis states.
Definition at line 504 of file inputDevice.cxx.
References indent().
void InputDevice::write_buttons | ( | std::ostream & | out, |
int | indent_level | ||
) | const |
Writes a multi-line description of the current button states.
Definition at line 470 of file inputDevice.cxx.
References indent(), and InputDevice::ButtonState::is_known.
|
inline |
Returns the axis state that is set at the given index, or throw an assert if the index was not found in the list.
Definition at line 253 of file inputDevice.h.
|
inline |
Returns a rough indication of the battery level, ranging from 0 (completely empty battery) to the indicated max_level value.
Definition at line 249 of file inputDevice.h.
|
inline |
Returns the ButtonState that is set at the given index, or throw an assert if the index was not found in the list.
Definition at line 252 of file inputDevice.h.
|
inline |
Returns an identification of the general type of device.
If this could not be determined, returns DeviceClass.unknown.
Definition at line 242 of file inputDevice.h.
|
inline |
Returns a string containing the manufacturer of the device, if this information is known.
Definition at line 225 of file inputDevice.h.
|
inline |
Returns a human-readable name for the device.
Not necessarily unique.
Definition at line 222 of file inputDevice.h.
Referenced by ClientDevice::disconnect(), ClientButtonDevice::output(), and ClientDevice::output().
|
inline |
Returns the number of analog axes known to the InputDevice.
This number may change as more axes are discovered.
Definition at line 253 of file inputDevice.h.
|
inline |
Returns the number of buttons known to the device.
This includes those buttons whose state has been seen, as well as buttons that have been associated with a ButtonHandle even if their state is unknown. This number may change as more buttons are discovered.
Definition at line 252 of file inputDevice.h.
|
inline |
Returns a string containing the USB product ID of the device, if this information is known.
Definition at line 234 of file inputDevice.h.
|
inline |
Returns a string containing the serial number of the device, if this information is known.
Definition at line 228 of file inputDevice.h.
|
inline |
Returns the TrackerData associated with the input device's tracker.
This only makes sense if has_tracker() also returns true.
Definition at line 248 of file inputDevice.h.
|
inline |
Returns a string containing the USB vendor ID of the device, if this information is known.
Definition at line 231 of file inputDevice.h.
|
inline |
Returns true if the device may be able to provide information about its battery life.
Definition at line 249 of file inputDevice.h.
|
inline |
Returns true if the device features a tracker that can track position and/or orientation in 3D space.
Definition at line 248 of file inputDevice.h.
|
inline |
Returns true if the device is still connected and able to receive data, false otherwise.
May return false positives.
Definition at line 238 of file inputDevice.h.
Referenced by ClientDevice::disconnect().