#[derive(Debug, PartialEq, Eq, Hash, Ord, PartialOrd, Copy, Clone)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
pub enum MiniMoveOpcode {
SmsgForceMoveRoot,
SmsgMoveFeatherFall,
SmsgMoveWaterWalk,
SmsgMoveSetHover,
}
impl MiniMoveOpcode {
pub const fn as_int(&self) -> u16 {
match self {
Self::SmsgForceMoveRoot => 0xe8,
Self::SmsgMoveFeatherFall => 0xf2,
Self::SmsgMoveWaterWalk => 0xde,
Self::SmsgMoveSetHover => 0xf4,
}
}
pub const fn variants() -> [Self; 4] {
[
Self::SmsgForceMoveRoot,
Self::SmsgMoveFeatherFall,
Self::SmsgMoveWaterWalk,
Self::SmsgMoveSetHover,
]
}
pub const fn from_int(value: u16) -> Result<Self, crate::errors::EnumError> {
match value {
232 => Ok(Self::SmsgForceMoveRoot),
242 => Ok(Self::SmsgMoveFeatherFall),
222 => Ok(Self::SmsgMoveWaterWalk),
244 => Ok(Self::SmsgMoveSetHover),
v => Err(crate::errors::EnumError::new(NAME, v as i128),)
}
}
}
#[cfg(feature = "print-testcase")]
impl MiniMoveOpcode {
pub const fn as_test_case_value(&self) -> &'static str {
match self {
Self::SmsgForceMoveRoot => "SMSG_FORCE_MOVE_ROOT",
Self::SmsgMoveFeatherFall => "SMSG_MOVE_FEATHER_FALL",
Self::SmsgMoveWaterWalk => "SMSG_MOVE_WATER_WALK",
Self::SmsgMoveSetHover => "SMSG_MOVE_SET_HOVER",
}
}
}
const NAME: &str = "MiniMoveOpcode";
impl Default for MiniMoveOpcode {
fn default() -> Self {
Self::SmsgForceMoveRoot
}
}
impl std::fmt::Display for MiniMoveOpcode {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::SmsgForceMoveRoot => f.write_str("SmsgForceMoveRoot"),
Self::SmsgMoveFeatherFall => f.write_str("SmsgMoveFeatherFall"),
Self::SmsgMoveWaterWalk => f.write_str("SmsgMoveWaterWalk"),
Self::SmsgMoveSetHover => f.write_str("SmsgMoveSetHover"),
}
}
}
impl TryFrom<u16> for MiniMoveOpcode {
type Error = crate::errors::EnumError;
fn try_from(value: u16) -> Result<Self, Self::Error> {
Self::from_int(value)
}
}
impl TryFrom<u8> for MiniMoveOpcode {
type Error = crate::errors::EnumError;
fn try_from(value: u8) -> Result<Self, Self::Error> {
Self::from_int(value.into())
}
}
impl TryFrom<u32> for MiniMoveOpcode {
type Error = crate::errors::EnumError;
fn try_from(value: u32) -> Result<Self, Self::Error> {
TryInto::<u16>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<u64> for MiniMoveOpcode {
type Error = crate::errors::EnumError;
fn try_from(value: u64) -> Result<Self, Self::Error> {
TryInto::<u16>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<i8> for MiniMoveOpcode {
type Error = crate::errors::EnumError;
fn try_from(value: i8) -> Result<Self, Self::Error> {
TryInto::<u16>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<i16> for MiniMoveOpcode {
type Error = crate::errors::EnumError;
fn try_from(value: i16) -> Result<Self, Self::Error> {
let v = u16::from_le_bytes(value.to_le_bytes());
Self::from_int(v)
}
}
impl TryFrom<i32> for MiniMoveOpcode {
type Error = crate::errors::EnumError;
fn try_from(value: i32) -> Result<Self, Self::Error> {
TryInto::<u16>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<i64> for MiniMoveOpcode {
type Error = crate::errors::EnumError;
fn try_from(value: i64) -> Result<Self, Self::Error> {
TryInto::<u16>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<usize> for MiniMoveOpcode {
type Error = crate::errors::EnumError;
fn try_from(value: usize) -> Result<Self, Self::Error> {
TryInto::<u16>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value as i128))?
.try_into()
}
}