chessfriend/moves/src/defs.rs
2025-05-08 17:37:51 -07:00

55 lines
1.3 KiB
Rust

// Eryn Wells <eryn@erynwells.me>
use chessfriend_core::Shape;
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum Kind {
Quiet = 0b0000,
DoublePush = 0b0001,
KingSideCastle = 0b0010,
QueenSideCastle = 0b0011,
Capture = 0b0100,
EnPassantCapture = 0b0101,
Promotion = 0b1000,
CapturePromotion = 0b1100,
}
impl Kind {
fn is_reversible(self) -> bool {
(self as u16) & 0b1100 == 0
}
}
#[repr(u16)]
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum PromotionShape {
Knight = 0b00,
Bishop = 0b01,
Rook = 0b10,
Queen = 0b11,
}
impl From<PromotionShape> for Shape {
fn from(value: PromotionShape) -> Self {
match value {
PromotionShape::Knight => Shape::Knight,
PromotionShape::Bishop => Shape::Bishop,
PromotionShape::Rook => Shape::Rook,
PromotionShape::Queen => Shape::Queen,
}
}
}
impl TryFrom<Shape> for PromotionShape {
type Error = ();
fn try_from(value: Shape) -> Result<Self, Self::Error> {
match value {
Shape::Knight => Ok(PromotionShape::Knight),
Shape::Bishop => Ok(PromotionShape::Bishop),
Shape::Rook => Ok(PromotionShape::Rook),
Shape::Queen => Ok(PromotionShape::Queen),
_ => Err(()),
}
}
}