bidrag

A rust library for managing bindable game input. Currently only KB/M, but will have support for joysticks in the future.

Example (Using GLFW): ``` rust let mut glfw = glfw3::init(glfw3::FAILONERRORS).expect("Failed to init GLFW3"); let (mut window, events) = { glfw.window_hint(glfw3::WindowHint::Visible(true));

let windowMode = glfw3::WindowMode::Windowed;
// return
glfw.create_window(1600, 900, APP_NAME, windowMode).expect("Failed to create a window!")

}; let mut cursorMode = glfw3::CursorMode::Disabled; // For mouse input

window.setcursorpospolling(true); window.setcursormode(cursorMode); window.setkeypolling(true); window.makecurrent();

let mut inputSub = bidrag::InputSubsystem::new((2.0, 2.0)); // Axes are referred to by indices, rather than using a string lookup every time. let yawIndex = inputSub.addbinding("Yaw".tostring(), Binding::MAxis (MouseAxis::X)); let quitIndex = inputSub.addbinding("Quit".tostring(), Binding::KBKey (glfw3::Key::Escape as i32));

let mut running = true; while running { glfw.pollevents(); for (, ev) in glfw3::flushmessages(&events) { match ev { glfw3::WindowEvent::Key(key, _, action, _) => { // For now you manually update the binds, since I wanted this API-agnostic inputSub.updatekb_bind(key as i32, action == glfw3::Action::Press); }, _ => {} } }

inputSub.update_mouseaxes_bind(window.get_cursor_pos());

running = running && !window.should_close();

} ``` TODO: - Joysticks - (Possibly) multiple KB/M. - - At the very least, the library can support it and leave it up to the client