2020-06-04 07:11:35 +00:00
|
|
|
use crate::path::Chaser;
|
|
|
|
use specs::{Component, Entity as EcsEntity};
|
2019-07-29 19:54:48 +00:00
|
|
|
use specs_idvs::IDVStorage;
|
2019-07-29 19:54:58 +00:00
|
|
|
use vek::*;
|
2019-04-16 21:06:33 +00:00
|
|
|
|
2020-01-24 21:24:57 +00:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
pub enum Alignment {
|
2020-05-26 02:45:13 +00:00
|
|
|
/// Wild animals and gentle giants
|
2020-01-24 21:24:57 +00:00
|
|
|
Wild,
|
2020-05-26 02:45:13 +00:00
|
|
|
/// Dungeon cultists and bandits
|
2020-01-24 21:24:57 +00:00
|
|
|
Enemy,
|
2020-05-26 02:45:13 +00:00
|
|
|
/// Friendly folk in villages
|
2020-01-24 21:24:57 +00:00
|
|
|
Npc,
|
2020-05-26 02:45:13 +00:00
|
|
|
/// Farm animals and pets of villagers
|
|
|
|
Tame,
|
|
|
|
/// Pets you've tamed with a collar
|
2020-01-27 15:51:07 +00:00
|
|
|
Owned(EcsEntity),
|
2019-04-16 21:06:33 +00:00
|
|
|
}
|
|
|
|
|
2020-01-24 21:24:57 +00:00
|
|
|
impl Alignment {
|
2020-01-27 15:51:07 +00:00
|
|
|
// Always attacks
|
2020-01-24 21:24:57 +00:00
|
|
|
pub fn hostile_towards(self, other: Alignment) -> bool {
|
|
|
|
match (self, other) {
|
2020-01-27 15:51:07 +00:00
|
|
|
(Alignment::Enemy, Alignment::Enemy) => false,
|
|
|
|
(Alignment::Enemy, _) => true,
|
|
|
|
(_, Alignment::Enemy) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Never attacks
|
|
|
|
pub fn passive_towards(self, other: Alignment) -> bool {
|
|
|
|
match (self, other) {
|
2020-04-19 11:50:25 +00:00
|
|
|
(Alignment::Enemy, Alignment::Enemy) => true,
|
2020-01-27 15:51:07 +00:00
|
|
|
(Alignment::Owned(a), Alignment::Owned(b)) if a == b => true,
|
2020-05-26 02:45:13 +00:00
|
|
|
(Alignment::Npc, Alignment::Npc) => true,
|
|
|
|
(Alignment::Npc, Alignment::Tame) => true,
|
|
|
|
(Alignment::Tame, Alignment::Npc) => true,
|
|
|
|
(Alignment::Tame, Alignment::Tame) => true,
|
2020-01-27 15:51:07 +00:00
|
|
|
_ => false,
|
2019-08-02 18:56:37 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-24 21:24:57 +00:00
|
|
|
}
|
2020-01-22 03:12:17 +00:00
|
|
|
|
2020-01-24 21:24:57 +00:00
|
|
|
impl Component for Alignment {
|
|
|
|
type Storage = IDVStorage<Self>;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Default)]
|
|
|
|
pub struct Agent {
|
|
|
|
pub patrol_origin: Option<Vec3<f32>>,
|
2020-01-25 18:49:47 +00:00
|
|
|
pub activity: Activity,
|
2020-05-26 02:45:13 +00:00
|
|
|
/// Does the agent talk when e.g. hit by the player
|
|
|
|
// TODO move speech patterns into a Behavior component
|
|
|
|
pub can_speak: bool,
|
2020-01-24 21:24:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Agent {
|
2020-01-25 02:15:15 +00:00
|
|
|
pub fn with_patrol_origin(mut self, origin: Vec3<f32>) -> Self {
|
|
|
|
self.patrol_origin = Some(origin);
|
|
|
|
self
|
|
|
|
}
|
2020-05-26 02:45:13 +00:00
|
|
|
|
|
|
|
pub fn new(origin: Vec3<f32>, can_speak: bool) -> Self {
|
|
|
|
let patrol_origin = Some(origin);
|
|
|
|
Agent {
|
|
|
|
patrol_origin,
|
|
|
|
can_speak,
|
|
|
|
..Default::default()
|
|
|
|
}
|
|
|
|
}
|
2019-08-02 18:56:37 +00:00
|
|
|
}
|
|
|
|
|
2019-04-16 21:06:33 +00:00
|
|
|
impl Component for Agent {
|
2019-07-29 19:54:48 +00:00
|
|
|
type Storage = IDVStorage<Self>;
|
2019-04-16 21:06:33 +00:00
|
|
|
}
|
2020-01-25 18:49:47 +00:00
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub enum Activity {
|
2020-01-25 23:39:38 +00:00
|
|
|
Idle(Vec2<f32>),
|
2020-01-25 18:49:47 +00:00
|
|
|
Follow(EcsEntity, Chaser),
|
2020-01-27 15:51:07 +00:00
|
|
|
Attack {
|
|
|
|
target: EcsEntity,
|
|
|
|
chaser: Chaser,
|
|
|
|
time: f64,
|
|
|
|
been_close: bool,
|
2020-04-18 20:26:43 +00:00
|
|
|
powerup: f32,
|
2020-01-27 15:51:07 +00:00
|
|
|
},
|
2020-01-25 18:49:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Activity {
|
|
|
|
pub fn is_follow(&self) -> bool {
|
|
|
|
match self {
|
|
|
|
Activity::Follow(_, _) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_attack(&self) -> bool {
|
|
|
|
match self {
|
2020-01-27 15:51:07 +00:00
|
|
|
Activity::Attack { .. } => true,
|
2020-01-25 18:49:47 +00:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Activity {
|
2020-02-01 20:39:39 +00:00
|
|
|
fn default() -> Self { Activity::Idle(Vec2::zero()) }
|
2020-01-25 18:49:47 +00:00
|
|
|
}
|
2020-05-24 22:18:41 +00:00
|
|
|
|
2020-05-25 01:29:47 +00:00
|
|
|
/// Default duration in seconds of speech bubbles
|
2020-05-24 22:18:41 +00:00
|
|
|
pub const SPEECH_BUBBLE_DURATION: f64 = 5.0;
|
|
|
|
|
2020-05-26 00:11:22 +00:00
|
|
|
/// The contents of a speech bubble
|
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub enum SpeechBubbleMessage {
|
|
|
|
/// This message was said by a player and needs no translation
|
|
|
|
Plain(String),
|
|
|
|
/// This message was said by an NPC. The fields are a i18n key and a random
|
|
|
|
/// u16 index
|
|
|
|
Localized(String, u16),
|
|
|
|
}
|
|
|
|
|
2020-05-24 22:18:41 +00:00
|
|
|
/// Adds a speech bubble to the entity
|
2020-05-26 00:11:22 +00:00
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
2020-05-24 22:18:41 +00:00
|
|
|
pub struct SpeechBubble {
|
2020-05-26 00:11:22 +00:00
|
|
|
pub message: SpeechBubbleMessage,
|
2020-05-24 22:18:41 +00:00
|
|
|
pub timeout: Option<Time>,
|
|
|
|
// TODO add icon enum for player chat type / npc quest+trade
|
|
|
|
}
|
|
|
|
impl Component for SpeechBubble {
|
|
|
|
type Storage = FlaggedStorage<Self, HashMapStorage<Self>>;
|
|
|
|
}
|
2020-05-26 00:11:22 +00:00
|
|
|
impl SpeechBubble {
|
|
|
|
pub fn npc_new(i18n_key: String, now: Time) -> Self {
|
|
|
|
let message = SpeechBubbleMessage::Localized(i18n_key, rand::random());
|
|
|
|
let timeout = Some(Time(now.0 + SPEECH_BUBBLE_DURATION));
|
|
|
|
Self { message, timeout }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn player_new(message: String, now: Time) -> Self {
|
|
|
|
let message = SpeechBubbleMessage::Plain(message);
|
|
|
|
let timeout = Some(Time(now.0 + SPEECH_BUBBLE_DURATION));
|
|
|
|
Self { message, timeout }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn message<F>(&self, i18n_variation: F) -> String
|
|
|
|
where
|
|
|
|
F: Fn(String, u16) -> String,
|
|
|
|
{
|
|
|
|
match &self.message {
|
|
|
|
SpeechBubbleMessage::Plain(m) => m.to_string(),
|
2020-06-08 18:37:41 +00:00
|
|
|
SpeechBubbleMessage::Localized(k, i) => i18n_variation(k.to_string(), *i),
|
2020-05-26 00:11:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|