use core::{any::Any, borrow::Borrow};
use crate::{config::{TriadConfig, TriadsConfig}, enneatype::Enneatype, triad::Triad};
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Means
{
Assertive,
Compliant,
Withdrawn
}
impl Means
{
pub const fn all() -> [Self; 3]
{
[Means::Assertive, Means::Compliant, Means::Withdrawn]
}
}
impl Triad for Means
{
fn as_any(&self) -> &dyn Any
{
self
}
fn equals(&self, other: &dyn Triad) -> bool
{
other.as_any().downcast_ref().is_some_and(|other| self == other)
}
fn edges(&self) -> &'static [Enneatype; 3]
{
match self
{
Means::Assertive => &[Enneatype::Repression, Enneatype::Disorganization, Enneatype::Action], Means::Compliant => &[Enneatype::Paranoia, Enneatype::Recovery, Enneatype::Association], Means::Withdrawn => &[Enneatype::Rest, Enneatype::Rejection, Enneatype::Catatonia], }
}
fn config<'a>(&self, config: &'a dyn Borrow<TriadsConfig>) -> TriadConfig<'a>
{
let triads = config.borrow();
match self
{
Means::Assertive => triads.assertive(),
Means::Compliant => triads.compliant(),
Means::Withdrawn => triads.withdrawn()
}
}
}