2020-09-18 21:43:47 +00:00
|
|
|
mod axis;
|
|
|
|
pub mod gamepad;
|
2020-06-05 05:48:53 +00:00
|
|
|
mod input;
|
2020-04-04 21:59:49 +00:00
|
|
|
pub mod keyboard;
|
2020-04-05 06:42:39 +00:00
|
|
|
pub mod mouse;
|
2020-04-19 19:13:04 +00:00
|
|
|
pub mod system;
|
2020-10-18 19:24:01 +00:00
|
|
|
pub mod touch;
|
2020-04-04 21:59:49 +00:00
|
|
|
|
2020-09-18 21:43:47 +00:00
|
|
|
pub use axis::*;
|
2020-06-05 05:48:53 +00:00
|
|
|
pub use input::*;
|
|
|
|
|
2020-07-17 02:27:19 +00:00
|
|
|
pub mod prelude {
|
2020-09-18 21:43:47 +00:00
|
|
|
pub use crate::{
|
|
|
|
gamepad::{
|
|
|
|
Gamepad, GamepadAxis, GamepadAxisType, GamepadButton, GamepadButtonType, GamepadEvent,
|
|
|
|
GamepadEventType,
|
|
|
|
},
|
|
|
|
keyboard::KeyCode,
|
|
|
|
mouse::MouseButton,
|
2020-11-03 19:32:48 +00:00
|
|
|
touch::{TouchInput, Touches},
|
2020-09-18 21:43:47 +00:00
|
|
|
Axis, Input,
|
|
|
|
};
|
2020-07-17 02:27:19 +00:00
|
|
|
}
|
|
|
|
|
2020-07-17 01:47:51 +00:00
|
|
|
use bevy_app::prelude::*;
|
2020-08-09 23:13:04 +00:00
|
|
|
use keyboard::{keyboard_input_system, KeyCode, KeyboardInput};
|
2020-08-21 00:04:01 +00:00
|
|
|
use mouse::{mouse_button_input_system, MouseButton, MouseButtonInput, MouseMotion, MouseWheel};
|
2020-10-18 19:24:01 +00:00
|
|
|
use touch::{touch_screen_input_system, TouchInput, Touches};
|
2020-04-04 21:59:49 +00:00
|
|
|
|
2020-10-29 20:55:35 +00:00
|
|
|
use bevy_app::startup_stage::STARTUP;
|
2020-10-21 22:56:07 +00:00
|
|
|
use gamepad::{
|
|
|
|
gamepad_event_system, GamepadAxis, GamepadButton, GamepadEvent, GamepadEventRaw,
|
|
|
|
GamepadSettings,
|
|
|
|
};
|
2020-07-10 04:18:35 +00:00
|
|
|
|
2020-08-09 23:13:04 +00:00
|
|
|
/// Adds keyboard and mouse input to an App
|
2020-04-04 21:59:49 +00:00
|
|
|
#[derive(Default)]
|
|
|
|
pub struct InputPlugin;
|
|
|
|
|
2020-08-08 03:22:17 +00:00
|
|
|
impl Plugin for InputPlugin {
|
2020-04-06 03:19:02 +00:00
|
|
|
fn build(&self, app: &mut AppBuilder) {
|
2020-04-04 21:59:49 +00:00
|
|
|
app.add_event::<KeyboardInput>()
|
2020-04-05 07:32:53 +00:00
|
|
|
.add_event::<MouseButtonInput>()
|
2020-06-05 06:34:21 +00:00
|
|
|
.add_event::<MouseMotion>()
|
2020-08-21 00:04:01 +00:00
|
|
|
.add_event::<MouseWheel>()
|
2020-06-05 06:34:21 +00:00
|
|
|
.init_resource::<Input<KeyCode>>()
|
2020-11-17 02:18:00 +00:00
|
|
|
.add_system_to_stage(bevy_app::stage::EVENT, keyboard_input_system)
|
2020-06-05 06:34:21 +00:00
|
|
|
.init_resource::<Input<MouseButton>>()
|
2020-11-17 02:18:00 +00:00
|
|
|
.add_system_to_stage(bevy_app::stage::EVENT, mouse_button_input_system)
|
2020-09-18 21:43:47 +00:00
|
|
|
.add_event::<GamepadEvent>()
|
2020-10-21 22:56:07 +00:00
|
|
|
.add_event::<GamepadEventRaw>()
|
|
|
|
.init_resource::<GamepadSettings>()
|
2020-09-18 21:43:47 +00:00
|
|
|
.init_resource::<Input<GamepadButton>>()
|
2020-10-15 19:45:34 +00:00
|
|
|
.init_resource::<Axis<GamepadAxis>>()
|
2020-10-18 19:24:01 +00:00
|
|
|
.init_resource::<Axis<GamepadButton>>()
|
2020-11-17 02:18:00 +00:00
|
|
|
.add_system_to_stage(bevy_app::stage::EVENT, gamepad_event_system)
|
|
|
|
.add_startup_system_to_stage(STARTUP, gamepad_event_system)
|
2020-10-18 19:24:01 +00:00
|
|
|
.add_event::<TouchInput>()
|
|
|
|
.init_resource::<Touches>()
|
2020-11-17 02:18:00 +00:00
|
|
|
.add_system_to_stage(bevy_app::stage::EVENT, touch_screen_input_system);
|
2020-04-04 21:59:49 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-03 02:16:13 +00:00
|
|
|
|
|
|
|
/// The current "press" state of an element
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub enum ElementState {
|
|
|
|
Pressed,
|
|
|
|
Released,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ElementState {
|
|
|
|
pub fn is_pressed(&self) -> bool {
|
|
|
|
matches!(self, ElementState::Pressed)
|
|
|
|
}
|
|
|
|
}
|