veloren/common/src/comp/agent.rs

38 lines
682 B
Rust
Raw Normal View History

use crate::path::Chaser;
use specs::{Component, Entity as EcsEntity};
use specs_idvs::IDVStorage;
2019-07-29 19:54:58 +00:00
use vek::*;
#[derive(Clone, Debug)]
pub enum Agent {
Wanderer(Vec2<f32>),
Pet {
target: EcsEntity,
chaser: Chaser,
},
Enemy {
bearing: Vec2<f32>,
target: Option<EcsEntity>,
},
}
impl Agent {
pub fn enemy() -> Self {
Agent::Enemy {
bearing: Vec2::zero(),
target: None,
}
}
pub fn pet(target: EcsEntity) -> Self {
Agent::Pet {
target,
chaser: Chaser::default(),
}
}
}
impl Component for Agent {
type Storage = IDVStorage<Self>;
}