|
opensurgsim
|
Interface for a consumer that monitors device and signal state updates (pose, buttons, etc). More...
#include <InputConsumerInterface.h>
Public Member Functions | |
| virtual | ~InputConsumerInterface () |
| Virtual destructor (empty). | |
| virtual void | handleInput (const std::string &device, const SurgSim::DataStructures::DataGroup &inputData)=0 |
| Notifies the consumer that the application input coming from the device has been updated. More... | |
| virtual void | initializeInput (const std::string &device, const SurgSim::DataStructures::DataGroup &inputData)=0 |
| Set the initial input data group. More... | |
Interface for a consumer that monitors device and signal state updates (pose, buttons, etc).
|
pure virtual |
Notifies the consumer that the application input coming from the device has been updated.
Typical input data contents (but note that individual devices may do things differently):
| type | name | |
|---|---|---|
| pose | "pose" | Device pose (units are meters). |
| bool | "button1" | State of the first device button. |
| bool | "button2" | State of the second device button (and so on). |
Other possible contents includes:
| type | name | |
|---|---|---|
| bool | "isHomed" | Device homing status. |
| bool | "isHomedX" | Individual homing status for the X axis (and so on). |
| bool | "isHeld" | Safety sensor etc. status. |
| string | "model" | Device model description. |
| string | "serial" | Serial number string. |
| (any) | "debug:*" | Various debugging information |
| device | The name of the device that is producing the input. This should only be used to identify the device (e.g. if the consumer is listening to several devices at once). |
| inputData | The application input state coming from the device. |
Implemented in TestInputConsumer, GlutWindow, SurgSim::Input::InputComponent, ImageGlutWindow, SurgSim::Devices::PoseIntegrator, SurgSim::Devices::DeviceFilter, TestListener, TestListener, MovingSquareGlutWindow, MovingSquareForce, and SurgSim::Testing::MockInputOutput.
|
pure virtual |
Set the initial input data group.
| device | The name of the device that is producing the input. This should only be used to identify the device (e.g. if the consumer is listening to several devices at once). |
| inputData | The application input state coming from the device. |
Implemented in LabJackToPoseFilter, TestInputConsumer, SurgSim::Input::InputComponent, GlutWindow, SurgSim::Devices::PoseIntegrator, ImageGlutWindow, SurgSim::Devices::DeviceFilter, SurgSim::Devices::RecordPose, SurgSim::Devices::BoolToScalar, TestListener, MovingSquareGlutWindow, TestListener, MovingSquareForce, and SurgSim::Testing::MockInputOutput.
1.8.12