xbmc
|
Public Member Functions | |
CWheel (const FeatureName &name, IInputHandler *handler, IButtonMap *buttonMap) | |
bool | OnAnalogMotion (const CDriverPrimitive &source, float magnitude) override |
An analog motion has occurred. More... | |
![]() | |
CAxisFeature (const FeatureName &name, IInputHandler *handler, IButtonMap *buttonMap) | |
bool | OnDigitalMotion (const CDriverPrimitive &source, bool bPressed) override |
A digital motion has occurred. More... | |
void | ProcessMotions () override |
Process the motions that have occurred since the last invocation. More... | |
![]() | |
CJoystickFeature (const FeatureName &name, IInputHandler *handler, IButtonMap *buttonMap) | |
bool | AcceptsInput (bool bActivation) |
Check if the input handler is accepting input. More... | |
Additional Inherited Members | |
![]() | |
void | ResetMotion () |
Reset motion timer. | |
void | StartMotion () |
Start the motion timer. | |
bool | InMotion () const |
Check if the feature is in motion. | |
unsigned int | MotionTimeMs () const |
Get the time for which the feature has been in motion. | |
![]() | |
CFeatureAxis | m_axis |
float | m_state |
![]() | |
const FeatureName | m_name |
IInputHandler *const | m_handler |
IButtonMap *const | m_buttonMap |
const bool | m_bEnabled |
|
overridevirtual |
An analog motion has occurred.
source | The source of the motion. Must be a semiaxis |
magnitude | The magnitude of the press or motion in the interval [0.0, 1.0] |
For semiaxes, the magnitude is the force or travel distance in the direction of the semiaxis. If the value is in the opposite direction, the magnitude is 0.0.
For example, if the analog stick goes left, the negative semiaxis will have a value of 1.0 and the positive semiaxis will have a value of 0.0.
Implements KODI::JOYSTICK::CJoystickFeature.