mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
192 lines
5.1 KiB
Rust
Executable file
192 lines
5.1 KiB
Rust
Executable file
use azalea_buf::AzBuf;
|
|
|
|
use crate::position::Vec3;
|
|
|
|
#[derive(Clone, Copy, Debug, AzBuf, Default, Eq, PartialEq)]
|
|
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
|
|
pub enum Direction {
|
|
#[default]
|
|
Down = 0,
|
|
Up,
|
|
North,
|
|
South,
|
|
West,
|
|
East,
|
|
}
|
|
|
|
impl Direction {
|
|
pub fn nearest(vec: Vec3) -> Direction {
|
|
let mut best_direction = Direction::North;
|
|
let mut best_direction_amount = 0.0;
|
|
|
|
for dir in [
|
|
Direction::Down,
|
|
Direction::Up,
|
|
Direction::North,
|
|
Direction::South,
|
|
Direction::West,
|
|
Direction::East,
|
|
]
|
|
.iter()
|
|
{
|
|
let amount = dir.normal().dot(vec);
|
|
if amount > best_direction_amount {
|
|
best_direction = *dir;
|
|
best_direction_amount = amount;
|
|
}
|
|
}
|
|
|
|
best_direction
|
|
}
|
|
|
|
pub fn normal(self) -> Vec3 {
|
|
match self {
|
|
Direction::Down => Vec3::new(0.0, -1.0, 0.0),
|
|
Direction::Up => Vec3::new(0.0, 1.0, 0.0),
|
|
Direction::North => Vec3::new(0.0, 0.0, -1.0),
|
|
Direction::South => Vec3::new(0.0, 0.0, 1.0),
|
|
Direction::West => Vec3::new(-1.0, 0.0, 0.0),
|
|
Direction::East => Vec3::new(1.0, 0.0, 0.0),
|
|
}
|
|
}
|
|
|
|
pub fn opposite(self) -> Direction {
|
|
match self {
|
|
Direction::Down => Direction::Up,
|
|
Direction::Up => Direction::Down,
|
|
Direction::North => Direction::South,
|
|
Direction::South => Direction::North,
|
|
Direction::West => Direction::East,
|
|
Direction::East => Direction::West,
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: make azalea_block use this instead of FacingCardinal
|
|
#[derive(Clone, Copy, Debug, AzBuf, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
|
|
pub enum CardinalDirection {
|
|
North,
|
|
South,
|
|
West,
|
|
East,
|
|
}
|
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
pub enum Axis {
|
|
X = 0,
|
|
Y = 1,
|
|
Z = 2,
|
|
}
|
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
pub enum AxisCycle {
|
|
None = 0,
|
|
Forward = 1,
|
|
Backward = 2,
|
|
}
|
|
|
|
impl CardinalDirection {
|
|
#[inline]
|
|
pub fn x(self) -> i32 {
|
|
match self {
|
|
CardinalDirection::East => 1,
|
|
CardinalDirection::West => -1,
|
|
_ => 0,
|
|
}
|
|
}
|
|
#[inline]
|
|
pub fn z(self) -> i32 {
|
|
match self {
|
|
CardinalDirection::South => 1,
|
|
CardinalDirection::North => -1,
|
|
_ => 0,
|
|
}
|
|
}
|
|
|
|
pub fn iter() -> impl Iterator<Item = CardinalDirection> {
|
|
[
|
|
CardinalDirection::North,
|
|
CardinalDirection::South,
|
|
CardinalDirection::West,
|
|
CardinalDirection::East,
|
|
]
|
|
.iter()
|
|
.copied()
|
|
}
|
|
|
|
#[inline]
|
|
pub fn right(self) -> CardinalDirection {
|
|
match self {
|
|
CardinalDirection::North => CardinalDirection::East,
|
|
CardinalDirection::South => CardinalDirection::West,
|
|
CardinalDirection::West => CardinalDirection::North,
|
|
CardinalDirection::East => CardinalDirection::South,
|
|
}
|
|
}
|
|
#[inline]
|
|
pub fn left(self) -> CardinalDirection {
|
|
match self {
|
|
CardinalDirection::North => CardinalDirection::West,
|
|
CardinalDirection::South => CardinalDirection::East,
|
|
CardinalDirection::West => CardinalDirection::South,
|
|
CardinalDirection::East => CardinalDirection::North,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Axis {
|
|
/// Pick x, y, or z from the arguments depending on the axis.
|
|
#[inline]
|
|
pub fn choose<T>(&self, x: T, y: T, z: T) -> T {
|
|
match self {
|
|
Axis::X => x,
|
|
Axis::Y => y,
|
|
Axis::Z => z,
|
|
}
|
|
}
|
|
|
|
pub fn from_ordinal(ordinal: u32) -> Self {
|
|
match ordinal {
|
|
0 => Axis::X,
|
|
1 => Axis::Y,
|
|
2 => Axis::Z,
|
|
_ => panic!("Invalid ordinal {ordinal}"),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl AxisCycle {
|
|
pub fn from_ordinal(ordinal: u32) -> Self {
|
|
match ordinal {
|
|
0 => Self::None,
|
|
1 => Self::Forward,
|
|
2 => Self::Backward,
|
|
_ => panic!("invalid ordinal"),
|
|
}
|
|
}
|
|
pub fn between(axis0: Axis, axis1: Axis) -> Self {
|
|
Self::from_ordinal(i32::rem_euclid(axis1 as i32 - axis0 as i32, 3) as u32)
|
|
}
|
|
pub fn inverse(self) -> Self {
|
|
match self {
|
|
Self::None => Self::None,
|
|
Self::Forward => Self::Backward,
|
|
Self::Backward => Self::Forward,
|
|
}
|
|
}
|
|
pub fn cycle(self, axis: Axis) -> Axis {
|
|
match self {
|
|
Self::None => axis,
|
|
Self::Forward => Axis::from_ordinal(i32::rem_euclid(axis as i32 + 1, 3) as u32),
|
|
Self::Backward => Axis::from_ordinal(i32::rem_euclid(axis as i32 - 1, 3) as u32),
|
|
}
|
|
}
|
|
pub fn cycle_xyz(self, x: i32, y: i32, z: i32, axis: Axis) -> i32 {
|
|
match self {
|
|
Self::None => axis.choose(x, y, z),
|
|
Self::Forward => axis.choose(z, x, y),
|
|
Self::Backward => axis.choose(y, z, x),
|
|
}
|
|
}
|
|
}
|