mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
add7922653
This requires to move `State` into a own crate called `common_state` which depends on `common` and `common_sys`
45 lines
1.2 KiB
Rust
45 lines
1.2 KiB
Rust
use super::utils::*;
|
|
use crate::{
|
|
comp::{CharacterState, StateUpdate},
|
|
states::behavior::{CharacterBehavior, JoinData},
|
|
};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize, Eq, Hash)]
|
|
pub struct Data;
|
|
|
|
impl CharacterBehavior for Data {
|
|
fn behavior(&self, data: &JoinData) -> StateUpdate {
|
|
let mut update = StateUpdate::from(data);
|
|
|
|
handle_wield(data, &mut update);
|
|
handle_jump(&data, &mut update);
|
|
|
|
// Try to Fall/Stand up/Move
|
|
if !data.physics.on_ground || data.inputs.move_dir.magnitude_squared() > 0.0 {
|
|
update.character = CharacterState::Idle;
|
|
}
|
|
|
|
update
|
|
}
|
|
|
|
fn wield(&self, data: &JoinData) -> StateUpdate {
|
|
let mut update = StateUpdate::from(data);
|
|
attempt_wield(data, &mut update);
|
|
update
|
|
}
|
|
|
|
fn sit(&self, data: &JoinData) -> StateUpdate {
|
|
let mut update = StateUpdate::from(data);
|
|
attempt_sit(data, &mut update);
|
|
update
|
|
}
|
|
|
|
fn stand(&self, data: &JoinData) -> StateUpdate {
|
|
let mut update = StateUpdate::from(data);
|
|
// Try to Fall/Stand up/Move
|
|
update.character = CharacterState::Idle;
|
|
update
|
|
}
|
|
}
|