veloren/common/src/states/sit.rs

37 lines
1.0 KiB
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-24 07:38:16 +00:00
handle_primary_wield(data, &mut update);
2020-03-14 21:17:27 +00:00
// Try to Fall/Stand up/Move
2020-03-24 07:38:16 +00:00
if !data.physics.on_ground || data.inputs.move_dir.magnitude_squared() > 0.0 {
2020-03-14 21:17:27 +00:00
update.character = CharacterState::Idle;
}
2020-03-07 18:15:02 +00:00
2020-03-14 21:17:27 +00:00
update
}
2020-03-24 07:38:16 +00:00
fn toggle_wield(&self, data: &JoinData) -> StateUpdate {
let mut update = StateUpdate::from(data);
attempt_wield(data, &mut update);
update
}
fn toggle_sit(&self, data: &JoinData) -> StateUpdate {
let mut update = StateUpdate::from(data);
// Try to Fall/Stand up/Move
update.character = CharacterState::Idle;
update
}
2019-12-26 14:43:59 +00:00
}