Class: SDL2::Event::ControllerAxisMotion

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

Overview

This class represents the controller axis motion 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

#axisInteger

the axis index

Returns:

  • (Integer)

#valueInteger

the axis value (range: -32768 to -32767, 0 for newtral)

Returns:

  • (Integer)

#whichInteger

the controller index

Returns:

  • (Integer)

Instance Method Details

#inspectString

Returns inspection string

Returns:

  • (String)

    inspection string



817
818
819
820
821
822
823
824
825
# File 'event.c', line 817

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