mod data;
use data::{CONJUNCTIONS, TEMPLATES, WORDS};
use rand::prelude::{SliceRandom, ThreadRng};
use std::fmt::{Display, Formatter, Result};
use super::DsMulti;
struct Segment { main: &'static str, word: &'static str }
impl Segment {
pub fn random(rng: &mut ThreadRng) -> Self {
let main: &str = TEMPLATES.choose(rng).unwrap();
let word: &str = if main.contains('\x1F') {
WORDS.choose(rng).unwrap()
} else {
""
};
Self { main, word }
}
}
impl Display for Segment {
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
match self.main.find('\x1F') {
Some(i) => write!(
f, "{}{}{}",
&self.main[..i], &self.word, &self.main[i + 1..],
),
None => self.main.fmt(f),
}
}
}
pub struct MessageBB {
p1: Segment,
p2: Option<(&'static str, Segment)>,
}
impl DsMulti for MessageBB {
fn double(rng: &mut ThreadRng) -> Self {
Self {
p1: Segment::random(rng),
p2: Some((CONJUNCTIONS.choose(rng).unwrap(), Segment::random(rng))),
}
}
fn single(rng: &mut ThreadRng) -> Self {
Self {
p1: Segment::random(rng),
p2: None,
}
}
}
impl Display for MessageBB {
fn fmt(&self, f: &mut Formatter<'_>) -> Result {
match &self.p2 {
Some((conj, second)) => write!(f, "{}{}{}", &self.p1, conj, second),
None => self.p1.fmt(f),
}
}
}