2020-01-21 22:54:32 +00:00
|
|
|
use super::utils::*;
|
2020-03-07 19:02:54 +00:00
|
|
|
use crate::{comp::StateUpdate, sys::character_behavior::JoinData};
|
2020-03-07 18:15:02 +00:00
|
|
|
use std::collections::VecDeque;
|
2019-12-26 14:43:59 +00:00
|
|
|
|
2020-03-08 17:04:26 +00:00
|
|
|
pub fn behavior(data: &JoinData) -> StateUpdate {
|
2020-03-07 18:15:02 +00:00
|
|
|
let mut update = StateUpdate {
|
2020-03-08 17:04:26 +00:00
|
|
|
character: *data.character,
|
|
|
|
pos: *data.pos,
|
|
|
|
vel: *data.vel,
|
|
|
|
ori: *data.ori,
|
|
|
|
energy: *data.energy,
|
2020-03-07 18:15:02 +00:00
|
|
|
local_events: VecDeque::new(),
|
|
|
|
server_events: VecDeque::new(),
|
|
|
|
};
|
2019-12-26 14:43:59 +00:00
|
|
|
|
2020-03-08 17:04:26 +00:00
|
|
|
handle_move(&data, &mut update);
|
|
|
|
handle_jump(&data, &mut update);
|
|
|
|
handle_sit(&data, &mut update);
|
|
|
|
handle_climb(&data, &mut update);
|
|
|
|
handle_glide(&data, &mut update);
|
|
|
|
handle_unwield(&data, &mut update);
|
|
|
|
handle_primary(&data, &mut update);
|
|
|
|
handle_secondary(&data, &mut update);
|
|
|
|
handle_dodge(&data, &mut update);
|
2019-12-26 14:43:59 +00:00
|
|
|
|
2020-03-07 18:15:02 +00:00
|
|
|
update
|
2019-12-26 14:43:59 +00:00
|
|
|
}
|