GilRs - Game Input Library for Rust

build status Crates.io Crates.io Documentation

Documentation (master)

GilRs abstract platform specific APIs to provide unified interfaces for working with gamepads.

Main features:

The project's main repository is on GitLab although there is also a GitHub mirror. Please use GitLab's issue tracker and merge requests.

This repository contains submodule - after you clone it, don't forget to run git submodule init; git submodule update (or clone with --recursive flag) or you will get compile errors.

Example

toml [dependencies] gilrs = "0.4.0"

```rust use gilrs::{Gilrs, Button};

let mut gilrs = Gilrs::new();

// Iterate over all connected gamepads for (id, gamepad) in gilrs.gamepads() { println!("{} is {:?}", gamepad.name(), gamepad.powerinfo()); }

loop { // Examine new events for (id, event) in gilrs.poll_events() { println!("New event from {}: {:?}", id, event); }

// You can also use cached gamepad state
if gilrs[0].is_pressed(Button::South) {
    println!("Button South is pressed (XBox - A, PS - X)");
}

} ```

Supported features

| | Input | Hotplugging | Mappings | Force feedback | |------------------|:-----:|:-----------:|:--------:|:--------------:| | Linux | ✓ | ✓ | ✓ | ✓ | | Windows (XInput) | ✓ | ✓ | n/a | ❌ | | Windows (DInput) | ❌ | ❌ | ❌ | ❌ | | OS X | ❌ | ❌ | ❌ | ❌ | | Android | ❌ | ❌ | ❌ | ❌ |

Platform specific notes

Linux

On Linux, GilRs read (and write, in case of force feedback) directly from appropriate /dev/input/event* file. This mean that user have to have read and write access to this file. On most distros it shouldn't be a problem, but if it is, you will have to create udev rule.

To build GilRs, you will need pkg-config and libudev .pc file. On some distributions this file is packaged in separate archive (for example libudev-dev in Debian).

License

This project is licensed under the terms of both the Apache License (Version 2.0) and the MIT license. See LICENSE-APACHE and LICENSE-MIT for details.