LibGDX Controller

A library to help with controller management in LibGDX.

Лицензия

Лицензия

Группа

Группа

com.kennycason
Идентификатор

Идентификатор

gdx-controller
Последняя версия

Последняя версия

1.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

LibGDX Controller
A library to help with controller management in LibGDX.
Ссылка на сайт

Ссылка на сайт

https://github.com/kennycason/gdx-controller
Система контроля версий

Система контроля версий

https://github.com/kennycason/gdx-controller

Скачать gdx-controller

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.kennycason/gdx-controller/ -->
<dependency>
    <groupId>com.kennycason</groupId>
    <artifactId>gdx-controller</artifactId>
    <version>1.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.kennycason/gdx-controller/
implementation 'com.kennycason:gdx-controller:1.1'
// https://jarcasting.com/artifacts/com.kennycason/gdx-controller/
implementation ("com.kennycason:gdx-controller:1.1")
'com.kennycason:gdx-controller:jar:1.1'
<dependency org="com.kennycason" name="gdx-controller" rev="1.1">
  <artifact name="gdx-controller" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.kennycason', module='gdx-controller', version='1.1')
)
libraryDependencies += "com.kennycason" % "gdx-controller" % "1.1"
[com.kennycason/gdx-controller "1.1"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
com.badlogicgames.gdx : gdx-controllers jar 1.7.2

Модули Проекта

Данный проект не имеет модулей.

GDX Controller

The goal of GDX Controller is to make the using of controllers even easier in LibGDX.

Features

  1. A native interface for simultaneously handling both keyboard and controller input, called a MultiplexedController.
  2. A button mapper to easily allow for custom mappings. Button and Axis.
  3. Record time when buttons are pressed to allow for easier support for capturing button combinations.

TODO

  1. Better investigate Controller types
  2. Add default mappings for various controllers. I.e. LogitechController and/or XBoxController will have a pre-configured Controls mapping.
  3. Input combination checking to include timing between keypresses. i.e. ↓ ↘ → A

Maven

<dependency>
    <groupId>com.kennycason</groupId>
    <artifactId>gdx-controller</artifactId>
    <version>1.1</version>
</dependency>

Example

A simple PS1/PS2/Xbox like controller mapping.

public enum MyGameControls implements Controls {
    DPAD_UP,
    DPAD_DOWN,
    DPAD_LEFT,
    DPAD_RIGHT,
    
    RIGHT_JOYSTICK_VERTICAL,
    RIGHT_JOYSTICK_HORIZONTAL,

    START,
    SELECT,

    A,
    B,
    X,
    Y,

    L1,
    L2,
    R1,
    R2
}

An example factory for building a keyboard, a Logitech controller, and a multiplexed controller.

public class MyControllerFactory {

    public static MultiplexedController<MyGameControls> buildMultiController() {
        return new MultiplexedController<>(buildKeyboard(), buildLogitech());
    }

    public static KeyboardController<MyGameControls> buildKeyboard() {
        final ButtonMapper<MyGameControls> buttonMapper = new ButtonMapper<>();
        buttonMapper.map(MyGameControls.DPAD_UP, Input.Keys.UP);
        buttonMapper.map(MyGameControls.DPAD_DOWN, Input.Keys.DOWN);
        buttonMapper.map(MyGameControls.DPAD_LEFT, Input.Keys.LEFT);
        buttonMapper.map(MyGameControls.DPAD_RIGHT, Input.Keys.RIGHT);

        buttonMapper.map(MyGameControls.START, Input.Keys.ENTER);
        buttonMapper.map(MyGameControls.SELECT, Input.Keys.SHIFT_RIGHT);

        buttonMapper.map(MyGameControls.A, Input.Keys.Z);
        buttonMapper.map(MyGameControls.B, Input.Keys.X);
        buttonMapper.map(MyGameControls.X, Input.Keys.A);
        buttonMapper.map(MyGameControls.Y, Input.Keys.S);

        buttonMapper.map(MyGameControls.L1, Input.Keys.Q);
        buttonMapper.map(MyGameControls.L2, Input.Keys.W);
        buttonMapper.map(MyGameControls.R1, Input.Keys.C);
        buttonMapper.map(MyGameControls.R2, Input.Keys.D);

        return new KeyboardController<>(buttonMapper);
    }

    public static LogitechController<MyGameControls> buildLogitech() {
        final ButtonMapper<MyGameControls> buttonMapper = new ButtonMapper<>();
        // dpad buttons are read from axis's, not button codes directly
        // consider allowing axis's to be configured.

        buttonMapper.map(MyGameControls.START, 9);
        buttonMapper.map(MyGameControls.SELECT, 8);

        buttonMapper.map(MyGameControls.A, 1);
        buttonMapper.map(MyGameControls.B, 2);
        buttonMapper.map(MyGameControls.X, 0);
        buttonMapper.map(MyGameControls.Y, 3);

        // left joystick pressed 10
        // right joystick pressed 11

        buttonMapper.map(MyGameControls.L1, 4);
        buttonMapper.map(MyGameControls.L2, 6);
        buttonMapper.map(MyGameControls.R1, 5);
        buttonMapper.map(MyGameControls.R2, 7);

        // treating the axis / joystick as a typical d-pad
        final AxisMapper<MyGameControls> axisMapper = new AxisMapper<>();
        axisMapper.map(MyGameControls.DPAD_UP, new Axis(1, -0.75f));
        axisMapper.map(MyGameControls.DPAD_DOWN, new Axis(1, 0.75f));
        axisMapper.map(MyGameControls.DPAD_LEFT, new Axis(0, -0.75f));
        axisMapper.map(MyGameControls.DPAD_RIGHT, new Axis(0, 0.75f));

        // hook in joystick for raw usage, i.e you need precise control over the joystick's position.
        axisMapper.map(MyGameControls.RIGHT_JOYSTICK_VERTICAL, new Axis(3, 0.01f));
        axisMapper.map(MyGameControls.RIGHT_JOYSTICK_HORIZONTAL, new Axis(2, 0.01f));
        
        return new LogitechController<>(0, buttonMapper, axisMapper);
    }

}

Bring it all together

public class MyGameSreen {

    private final Controller<MyGameControls> controller = MyControllerFactory.buildMultiController();

    private void handleInput(final float deltaTime) {
        // note that the left joystick is also mapped to the DPAD movement for
        // seamless joystick/dpad controls
        if (controller.isPressed(MyGameControls.DPAD_LEFT)) {
            // move left
        }
        if (controller.isPressed(MyGameControls.DPAD_RIGHT)) {
            // move right
        }
        if (controller.isPressed(MyGameControls.DPAD_UP)) {
            // move up
        }
        if (controller.isPressed(MyGameControls.DPAD_DOWN)) {
            // move down
        }
        if (controller.isPressed(MyGameControls.L1)) {
            // scroll weapon down
        }
        if (controller.isPressed(MyGameControls.R1)) {
            // scroll weapon up
        }
        if (controller.isPressed(MyGameControls.START)) {
            // pause
        }
        if (controller.isPressed(MyGameControls.A)) {
            // shoot!
        }
        final float joystickVertical = controller.getAxis(MyGameControls.RIGHT_JOYSTICK_VERTICAL);
        final float joystickHorizontal = controller.getAxis(MyGameControls.RIGHT_JOYSTICK_HORIZONTAL);
        // do something with the vertical and horizontal values. perhaps take the unit vector and use 
        // as a more precise facing vector
    }
    
}

Версии библиотеки

Версия
1.1
1.0