extern crate sdl2;
use sdl2::joystick::{Joystick, num_joysticks};
fn main() {
let sdl_context = sdl2::init().joystick().unwrap();
let available =
match num_joysticks() {
Ok(n) => n,
Err(e) => panic!("can't enumerate joysticks: {}", e),
};
println!("{} joysticks available", available);
let mut joystick = None;
for id in 0..available {
match Joystick::open(id) {
Ok(c) => {
println!("Success: opened \"{}\"", c.name());
joystick = Some(c);
break;
},
Err(e) => println!("failed: {:?}", e),
}
}
if joystick.is_none() {
panic!("Couldn't open any joystick");
};
let mut event_pump = sdl_context.event_pump();
for event in event_pump.wait_iter() {
use sdl2::event::Event;
match event {
Event::JoyAxisMotion{ axis_idx, value: val, .. } => {
if val.abs() > 10000 {
println!("Axis {} moved to {}", axis_idx, val);
}
}
Event::JoyButtonDown{ button_idx, .. } =>
println!("Button {} down", button_idx),
Event::JoyButtonUp{ button_idx, .. } =>
println!("Button {} up", button_idx),
Event::JoyHatMotion{ hat_idx, state, .. } =>
println!("Hat {} moved to {:?}", hat_idx, state),
Event::Quit{..} => break,
_ => (),
}
}
}