Nirtcpp 2.1.0
Nirtcpp is a high-performance c++ graphics engine.
Loading...
Searching...
No Matches
nirt::SEvent::SJoystickEvent Class Reference

A joystick event. More...

#include <nirtcpp/core/engine/IEventReceiver.hpp>

Public Types

enum  {
  NUMBER_OF_BUTTONS = 32 , AXIS_X = 0 , AXIS_Y , AXIS_Z ,
  AXIS_R , AXIS_U , AXIS_V , NUMBER_OF_AXES =18
}
 

Public Member Functions

bool IsButtonPressed (u32 button) const
 A helper function to check if a button is pressed.
 

Public Attributes

u32 ButtonStates
 
s16 Axis [NUMBER_OF_AXES]
 
u16 POV
 
u8 Joystick
 The ID of the joystick which generated this event.
 

Detailed Description

A joystick event.

Unlike other events, joystick events represent the result of polling each connected joystick once per run() of the device. Joystick events will not be generated by default. If joystick support is available for the active device, NIRT_COMPILE_WITH_JOYSTICK_EVENTS is defined, and nirt::NirtcppDevice::activateJoysticks() has been called, an event of this type will be generated once per joystick per NirtcppDevice::run() regardless of whether the state of the joystick has actually changed.

Member Data Documentation

◆ Axis

s16 nirt::SEvent::SJoystickEvent::Axis[NUMBER_OF_AXES]

For AXIS_X, AXIS_Y, AXIS_Z, AXIS_R, AXIS_U and AXIS_V Values are in the range -32768 to 32767, with 0 representing the center position. You will receive the raw value from the joystick, and so will usually want to implement a dead zone around the center of the range. Axes not supported by this joystick will always have a value of 0. On Linux, POV hats are represented as axes, usually the last two active axis.

◆ ButtonStates

u32 nirt::SEvent::SJoystickEvent::ButtonStates

A bitmap of button states. You can use IsButtonPressed() to ( check the state of each button from 0 to (NUMBER_OF_BUTTONS - 1)

◆ Joystick

u8 nirt::SEvent::SJoystickEvent::Joystick

The ID of the joystick which generated this event.

This is an internal Nirtcpp index; it does not map directly to any particular hardware joystick.

◆ POV

u16 nirt::SEvent::SJoystickEvent::POV

The POV represents the angle of the POV hat in degrees * 100, from 0 to 35,900. A value of 65535 indicates that the POV hat is centered (or not present). This value is only supported on Windows. On Linux, the POV hat will be sent as 2 axes instead.


The documentation for this class was generated from the following file:

Nirtcpp    @cppfx.xyz

Utxcpp    utx::print