Search in sources :

Example 1 with JInputControllerDevice

use of org.terasology.input.lwjgl.JInputControllerDevice in project Terasology by MovingBlocks.

the class LwjglInput method initControls.

private void initControls() {
    try {
        Keyboard.create();
        Keyboard.enableRepeatEvents(true);
        Mouse.create();
        InputSystem inputSystem = new InputSystem();
        context.put(InputSystem.class, inputSystem);
        inputSystem.setMouseDevice(new LwjglMouseDevice());
        inputSystem.setKeyboardDevice(new LwjglKeyboardDevice());
        ControllerConfig controllerConfig = context.get(Config.class).getInput().getControllers();
        JInputControllerDevice controllerDevice = new JInputControllerDevice(controllerConfig);
        inputSystem.setControllerDevice(controllerDevice);
    } catch (LWJGLException e) {
        throw new RuntimeException("Could not initialize controls.", e);
    }
}
Also used : ControllerConfig(org.terasology.config.ControllerConfig) LwjglMouseDevice(org.terasology.input.lwjgl.LwjglMouseDevice) LwjglKeyboardDevice(org.terasology.input.lwjgl.LwjglKeyboardDevice) InputSystem(org.terasology.input.InputSystem) JInputControllerDevice(org.terasology.input.lwjgl.JInputControllerDevice) LWJGLException(org.lwjgl.LWJGLException)

Aggregations

LWJGLException (org.lwjgl.LWJGLException)1 ControllerConfig (org.terasology.config.ControllerConfig)1 InputSystem (org.terasology.input.InputSystem)1 JInputControllerDevice (org.terasology.input.lwjgl.JInputControllerDevice)1 LwjglKeyboardDevice (org.terasology.input.lwjgl.LwjglKeyboardDevice)1 LwjglMouseDevice (org.terasology.input.lwjgl.LwjglMouseDevice)1