2020-09-18 21:43:47 +00:00
|
|
|
use bevy_input::gamepad::{Gamepad, GamepadAxisType, GamepadButtonType};
|
|
|
|
|
|
|
|
pub fn convert_gamepad_id(gamepad_id: gilrs::GamepadId) -> Gamepad {
|
2022-05-02 13:20:55 +00:00
|
|
|
Gamepad::new(gamepad_id.into())
|
2020-09-18 21:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn convert_button(button: gilrs::Button) -> Option<GamepadButtonType> {
|
|
|
|
match button {
|
|
|
|
gilrs::Button::South => Some(GamepadButtonType::South),
|
|
|
|
gilrs::Button::East => Some(GamepadButtonType::East),
|
|
|
|
gilrs::Button::North => Some(GamepadButtonType::North),
|
|
|
|
gilrs::Button::West => Some(GamepadButtonType::West),
|
|
|
|
gilrs::Button::C => Some(GamepadButtonType::C),
|
|
|
|
gilrs::Button::Z => Some(GamepadButtonType::Z),
|
|
|
|
gilrs::Button::LeftTrigger => Some(GamepadButtonType::LeftTrigger),
|
|
|
|
gilrs::Button::LeftTrigger2 => Some(GamepadButtonType::LeftTrigger2),
|
|
|
|
gilrs::Button::RightTrigger => Some(GamepadButtonType::RightTrigger),
|
|
|
|
gilrs::Button::RightTrigger2 => Some(GamepadButtonType::RightTrigger2),
|
|
|
|
gilrs::Button::Select => Some(GamepadButtonType::Select),
|
|
|
|
gilrs::Button::Start => Some(GamepadButtonType::Start),
|
|
|
|
gilrs::Button::Mode => Some(GamepadButtonType::Mode),
|
|
|
|
gilrs::Button::LeftThumb => Some(GamepadButtonType::LeftThumb),
|
|
|
|
gilrs::Button::RightThumb => Some(GamepadButtonType::RightThumb),
|
|
|
|
gilrs::Button::DPadUp => Some(GamepadButtonType::DPadUp),
|
|
|
|
gilrs::Button::DPadDown => Some(GamepadButtonType::DPadDown),
|
|
|
|
gilrs::Button::DPadLeft => Some(GamepadButtonType::DPadLeft),
|
|
|
|
gilrs::Button::DPadRight => Some(GamepadButtonType::DPadRight),
|
|
|
|
gilrs::Button::Unknown => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn convert_axis(axis: gilrs::Axis) -> Option<GamepadAxisType> {
|
|
|
|
match axis {
|
|
|
|
gilrs::Axis::LeftStickX => Some(GamepadAxisType::LeftStickX),
|
|
|
|
gilrs::Axis::LeftStickY => Some(GamepadAxisType::LeftStickY),
|
|
|
|
gilrs::Axis::LeftZ => Some(GamepadAxisType::LeftZ),
|
|
|
|
gilrs::Axis::RightStickX => Some(GamepadAxisType::RightStickX),
|
|
|
|
gilrs::Axis::RightStickY => Some(GamepadAxisType::RightStickY),
|
|
|
|
gilrs::Axis::RightZ => Some(GamepadAxisType::RightZ),
|
2022-07-11 14:11:25 +00:00
|
|
|
// The `axis_dpad_to_button` gilrs filter should filter out all DPadX and DPadY events. If
|
|
|
|
// it doesn't then we probably need an entry added to the following repo and an update to
|
|
|
|
// GilRs to use the updated database: https://github.com/gabomdq/SDL_GameControllerDB
|
|
|
|
gilrs::Axis::Unknown | gilrs::Axis::DPadX | gilrs::Axis::DPadY => None,
|
2020-09-18 21:43:47 +00:00
|
|
|
}
|
|
|
|
}
|