Class: SDL2::Event::JoyHatMotion

Inherits:
SDL2::Event show all
Defined in:
event.c,
event.c

Overview

This class represents the joystick hat position change events.

Instance Attribute Summary collapse

Attributes inherited from SDL2::Event

#timestamp, #type

Instance Method Summary collapse

Methods inherited from SDL2::Event

enable=, enabled?, poll, #window

Instance Attribute Details

#hatInteger

the joystick hat index

Returns:

  • (Integer)

#valueInteger

the hat position value, same value as Joystick#hat.

Returns:

  • (Integer)

#whichInteger

the joystick index

Returns:

  • (Integer)

Instance Method Details

#inspectString

Returns inspection string

Returns:

  • (String)

    inspection string



759
760
761
762
763
764
765
# File 'event.c', line 759

static VALUE EvJoyHatMotion_inspect(VALUE self)
{
    SDL_Event* ev; Data_Get_Struct(self, SDL_Event, ev);
    return rb_sprintf("<%s: type=%u timestamp=%u which=%d hat=%u value=%u>",
                      rb_obj_classname(self), ev->common.type, ev->common.timestamp,
                      ev->jhat.which, ev->jhat.hat, ev->jhat.value);
}