veloren/common/src/states/sit.rs

27 lines
696 B
Rust
Raw Normal View History

2020-01-09 16:23:20 +00:00
use super::utils::*;
2020-02-24 18:17:16 +00:00
use crate::{
2020-03-07 18:15:02 +00:00
comp::{CharacterState, StateUpdate},
2020-03-14 21:17:27 +00:00
sys::character_behavior::{CharacterBehavior, JoinData},
2020-02-24 18:17:16 +00:00
};
2019-12-28 16:10:39 +00:00
2020-03-14 21:17:27 +00:00
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize, Eq, Hash)]
pub struct Data;
2019-12-26 14:43:59 +00:00
2020-03-14 21:17:27 +00:00
impl CharacterBehavior for Data {
fn behavior(&self, data: &JoinData) -> StateUpdate {
let mut update = StateUpdate::from(data);
2020-01-05 23:17:22 +00:00
2020-03-14 21:17:27 +00:00
handle_wield(data, &mut update);
// Try to Fall/Stand up/Move
if !data.physics.on_ground
|| data.inputs.sit.is_just_pressed()
|| data.inputs.move_dir.magnitude_squared() > 0.0
{
update.character = CharacterState::Idle;
}
2020-03-07 18:15:02 +00:00
2020-03-14 21:17:27 +00:00
update
}
2019-12-26 14:43:59 +00:00
}