hemoglobin 0.14.0

Utilities for Bloodless
Documentation
use serde::{Deserialize, Serialize};
use std::fmt::Display;

use crate::numbers::MaybeImprecise;

use super::{Keyword, kins::Kin};

/// This trait is used in card generics. It is useful when you want a function to accept `CardId`s and not only `Card`s.
pub trait Read {
    /// Return a card's numeric property, if it has it.
    fn get_num_property(&self, property: &Number) -> Option<MaybeImprecise>;
    /// Return a card's text property, if it has it.
    fn get_text_property(&self, property: &Text) -> Option<String>;
    /// Return a card's array property, if it has it.
    fn get_vec_property(&self, property: &Array) -> Option<&[String]>;
    /// Return a card's keywords, if it has them. It may not have them if it is a `CardId`.
    fn get_keywords(&self) -> Option<&[Keyword]>;
    /// Return a card's name, if it has one. It may not have one if it is a `CardId`.
    fn get_name(&self) -> Option<&str>;
    /// Return a card's text, if it has one. It may not have one if it is a `CardId`.
    fn get_description(&self) -> Option<&str>;
    /// Return a card's type, if it has one. It may not have one if it is a `CardId`.
    fn get_type(&self) -> Option<&str>;
    /// Return a card's kins, if it has them. It may not have them if it is a `CardId`.
    fn get_kin(&self) -> Option<&Kin>;
    /// Return a card's flavor text, if it has one. It may not have one if it is a `CardId`.
    fn get_flavor_text(&self) -> Option<&str>;
}

/// A card's numerical properties
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum Number {
    Cost,
    FlipCost,
    Health,
    Power,
    Defense,
}

impl Display for Number {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Cost => write!(f, "Cost"),
            Self::Health => write!(f, "Health"),
            Self::Power => write!(f, "Power"),
            Self::Defense => write!(f, "Defense"),
            Self::FlipCost => write!(f, "Flip Cost"),
        }
    }
}

/// A card's array properties
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum Array {
    Functions,
}

impl Display for Array {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Functions => write!(f, "Functions"),
            // Self::Artists => write!(f, "Artists"),
        }
    }
}

/// A card's text properties
#[derive(PartialEq, Eq, Hash, Debug, Clone, Copy, Serialize, Deserialize)]
pub enum Text {
    Id,
    Name,
    Type,
    Description,
    FlavorText,
    SetId,
    Chapter,
}

impl Display for Text {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Id => write!(f, "ID"),
            Self::Name => write!(f, "Name"),
            Self::Type => write!(f, "Type"),
            Self::Description => write!(f, "Description"),
            Self::FlavorText => write!(f, "FlavorText"),
            Self::SetId => write!(f, "SetId"),
            Self::Chapter => write!(f, "Chapter"),
        }
    }
}