mod axis; pub mod gamepad; mod input; pub mod keyboard; pub mod mouse; pub mod system; pub mod touch; pub use axis::*; use bevy_ecs::system::IntoSystem; pub use input::*; pub mod prelude { pub use crate::{ gamepad::{ Gamepad, GamepadAxis, GamepadAxisType, GamepadButton, GamepadButtonType, GamepadEvent, GamepadEventType, }, keyboard::KeyCode, mouse::MouseButton, touch::{TouchInput, Touches}, Axis, Input, }; } use bevy_app::prelude::*; use keyboard::{keyboard_input_system, KeyCode, KeyboardInput}; use mouse::{mouse_button_input_system, MouseButton, MouseButtonInput, MouseMotion, MouseWheel}; use touch::{touch_screen_input_system, TouchInput, Touches}; use gamepad::{ gamepad_event_system, GamepadAxis, GamepadButton, GamepadEvent, GamepadEventRaw, GamepadSettings, }; /// Adds keyboard and mouse input to an App #[derive(Default)] pub struct InputPlugin; impl Plugin for InputPlugin { fn build(&self, app: &mut AppBuilder) { app.add_event::() .add_event::() .add_event::() .add_event::() .init_resource::>() .add_system_to_stage(CoreStage::Event, keyboard_input_system.system()) .init_resource::>() .add_system_to_stage(CoreStage::Event, mouse_button_input_system.system()) .add_event::() .add_event::() .init_resource::() .init_resource::>() .init_resource::>() .init_resource::>() .add_system_to_stage(CoreStage::Event, gamepad_event_system.system()) .add_startup_system_to_stage(StartupStage::Startup, gamepad_event_system.system()) .add_event::() .init_resource::() .add_system_to_stage(CoreStage::Event, touch_screen_input_system.system()); } } /// The current "press" state of an element #[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)] #[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))] pub enum ElementState { Pressed, Released, } impl ElementState { pub fn is_pressed(&self) -> bool { matches!(self, ElementState::Pressed) } }