use crate::continent::Distance;
use crate::military::unit::stats::speed::Speed;
use derive_more::{Deref, Into};
use serde::{Deserialize, Serialize};
use std::cmp::Ordering;
use std::ops::{Sub, SubAssign};
#[derive(Clone, Copy, Debug, Deref, Into, Deserialize, Serialize, nil_num::F64Ops)]
pub struct ManeuverDistance(f64);
impl PartialEq for ManeuverDistance {
fn eq(&self, other: &Self) -> bool {
matches!(self.0.total_cmp(&other.0), Ordering::Equal)
}
}
impl Eq for ManeuverDistance {}
impl PartialOrd for ManeuverDistance {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Ord for ManeuverDistance {
fn cmp(&self, other: &Self) -> Ordering {
self.0.total_cmp(&other.0)
}
}
impl PartialEq<f64> for ManeuverDistance {
fn eq(&self, other: &f64) -> bool {
matches!(self.0.total_cmp(other), Ordering::Equal)
}
}
impl PartialOrd<f64> for ManeuverDistance {
fn partial_cmp(&self, other: &f64) -> Option<Ordering> {
Some(self.0.total_cmp(other))
}
}
impl Sub for ManeuverDistance {
type Output = ManeuverDistance;
fn sub(mut self, rhs: Self) -> Self::Output {
self -= rhs;
self
}
}
impl Sub<Speed> for ManeuverDistance {
type Output = ManeuverDistance;
fn sub(mut self, rhs: Speed) -> Self::Output {
self -= rhs;
self
}
}
impl SubAssign for ManeuverDistance {
fn sub_assign(&mut self, rhs: Self) {
*self = Self(self.0 - rhs.0);
}
}
impl SubAssign<Speed> for ManeuverDistance {
fn sub_assign(&mut self, rhs: Speed) {
*self = Self(self.0 - f64::from(rhs));
}
}
impl From<Distance> for ManeuverDistance {
fn from(distance: Distance) -> Self {
Self(f64::from(distance))
}
}