This is the primary interface to analog controls like sliders and joysticks associated with a ClientBase.
More...
Classes |
| class | OutputData |
Public Member Functions |
|
| AnalogNode (ClientBase *client, const string &device_name) |
| void | clear_output (int channel) |
| | Removes the output to the data graph associated with the indicated channel.
|
|
virtual TypeHandle | force_init_type () |
| double | get_control_state (int index) const |
| | Returns the current position of indicated analog control identified by its index number, or 0.0 if the control is unknown.
|
| int | get_num_controls () const |
| | Returns the number of analog controls known to the AnalogNode.
|
| int | get_output (int channel) const |
| | Returns the analog control index that is output to the data graph on the indicated channel, or -1 if no control is output on that channel.
|
|
virtual TypeHandle | get_type () const |
| bool | is_control_known (int index) const |
| | Returns true if the state of the indicated analog control is known, or false if we have never heard anything about this particular control.
|
| bool | is_output_flipped (int channel) const |
| | Returns true if the analog control index that is output to the data graph on the indicated channel is flipped.
|
| bool | is_valid () const |
| | Returns true if the AnalogNode is valid and connected to a server, false otherwise.
|
| void | set_output (int channel, int index, bool flip) |
| | Causes a particular analog control to be placed in the data graph for the indicated channel.
|
|
virtual void | write (ostream &out, int indent_level=0) const |
Static Public Member Functions |
|
static TypeHandle | get_class_type () |
|
static void | init_type () |
Protected Member Functions |
| virtual void | do_transmit_data (DataGraphTraverser *trav, const DataNodeTransmit &input, DataNodeTransmit &output) |
| | The virtual implementation of transmit_data().
|
This is the primary interface to analog controls like sliders and joysticks associated with a ClientBase.
This creates a node that connects to the named analog device, if it exists, and provides hooks to the user to read the state of any of the sequentially numbered controls associated with that device.
Each control can return a value ranging from -1 to 1, reflecting the current position of the control within its total range of motion.
The user may choose up to two analog controls to place on the data graph as the two channels of an xy datagram, similarly to the way a mouse places its position data. In this way, an AnalogNode may be used in place of a mouse.
Definition at line 45 of file analogNode.h.
Causes a particular analog control to be placed in the data graph for the indicated channel.
Normally, a mouse uses channels 0 and 1 for the X and Y information, respectively; channels 0, 1, and 2 are available. If flip is true, the analog control value will be reversed before outputting it.
Definition at line 95 of file analogNode.I.