kira 0.12.2

Expressive audio library for games
Documentation
#[cfg(test)]
mod test;

use std::{
	cmp::Ordering,
	ops::{Add, AddAssign, Sub, SubAssign},
};

use super::ClockId;

/**

An instant in time associated with a clock.

`ClockTime`s implement [`PartialOrd`]. They can be compared as long
as both times are associated with the same clock. If the clocks are
different, `a.cmp(b)` will return `None`.
*/
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct ClockTime {
	/// The clock this time is associated with.
	pub clock: ClockId,
	/// The elapsed time in whole ticks.
	pub ticks: u64,
	/// The amount of time since the last tick as a fraction of a tick.
	///
	/// This will always be in the range of `0.0` (inclusive) to `1.0` (exclusive).
	pub fraction: f64,
}

impl ClockTime {
	/**

	Creates a [`ClockTime`] for a clock with the specified number of
	whole ticks.

	# Example

	```no_run
	use kira::{
		AudioManager,
		AudioManagerSettings,
		DefaultBackend,
		clock::{ClockSpeed, ClockTime},
	};

	let mut manager = AudioManager::<DefaultBackend>::new(AudioManagerSettings::default())?;
	let clock = manager.add_clock(ClockSpeed::TicksPerMinute(120.0))?;
	assert_eq!(
		ClockTime::from_ticks_u64(&clock, 3),
		ClockTime {
			clock: clock.id(),
			ticks: 3,
			fraction: 0.0,
		},
	);
	# Ok::<(), Box<dyn std::error::Error>>(())
	```
	*/
	pub fn from_ticks_u64(clock: impl Into<ClockId>, ticks: u64) -> Self {
		Self {
			clock: clock.into(),
			ticks,
			fraction: 0.0,
		}
	}

	/**

	Creates a [`ClockTime`] for a clock with the specified number of
	ticks.

	# Example

	```no_run
	use kira::{
		AudioManager,
		AudioManagerSettings,
		DefaultBackend,
		clock::{ClockSpeed, ClockTime},
	};

	let mut manager = AudioManager::<DefaultBackend>::new(AudioManagerSettings::default())?;
	let clock = manager.add_clock(ClockSpeed::TicksPerMinute(120.0))?;
	assert_eq!(
		ClockTime::from_ticks_f64(&clock, 3.5),
		ClockTime {
			clock: clock.id(),
			ticks: 3,
			fraction: 0.5,
		},
	);
	# Ok::<(), Box<dyn std::error::Error>>(())
	```
	*/
	pub fn from_ticks_f64(clock: impl Into<ClockId>, ticks: f64) -> Self {
		Self {
			clock: clock.into(),
			ticks: ticks as u64,
			fraction: ticks.fract(),
		}
	}
}

impl Add<u64> for ClockTime {
	type Output = ClockTime;

	fn add(self, ticks: u64) -> Self::Output {
		Self {
			clock: self.clock,
			ticks: self.ticks + ticks,
			fraction: self.fraction,
		}
	}
}

impl AddAssign<u64> for ClockTime {
	fn add_assign(&mut self, ticks: u64) {
		self.ticks += ticks;
	}
}

impl Add<f64> for ClockTime {
	type Output = ClockTime;

	fn add(self, ticks: f64) -> Self::Output {
		debug_assert!(
			ticks.is_finite(),
			"Cannot add a non-finite amount to ClockTime: {ticks:?}"
		);

		// This implementation does not allow adding negative numbers, use the Sub<f64> impl instead
		if ticks.is_sign_negative() {
			return self.sub(-ticks);
		}

		let fraction = (self.fraction + ticks).fract();
		let ticks = self.ticks + (self.fraction + ticks).trunc() as u64;

		Self {
			clock: self.clock,
			ticks,
			fraction,
		}
	}
}

impl AddAssign<f64> for ClockTime {
	fn add_assign(&mut self, ticks: f64) {
		*self = *self + ticks;
	}
}

impl Sub<u64> for ClockTime {
	type Output = ClockTime;

	fn sub(self, ticks: u64) -> Self::Output {
		Self {
			clock: self.clock,
			ticks: self.ticks - ticks,
			fraction: self.fraction,
		}
	}
}

impl SubAssign<u64> for ClockTime {
	fn sub_assign(&mut self, ticks: u64) {
		self.ticks -= ticks;
	}
}

impl Sub<f64> for ClockTime {
	type Output = ClockTime;

	fn sub(self, ticks: f64) -> Self::Output {
		debug_assert!(
			ticks.is_finite(),
			"Cannot subtract a non-finite amount from ClockTime: {ticks:?}"
		);

		// This implementation does not allow subtracting negative numbers, use the Add<f64> impl instead
		if ticks.is_sign_negative() {
			return self.add(-ticks);
		}

		let fraction = ((self.fraction - ticks).fract() + 1.0) % 1.0;
		let ticks = self
			.ticks
			.saturating_sub((ticks - self.fraction).ceil() as u64);

		Self {
			clock: self.clock,
			ticks,
			fraction,
		}
	}
}

impl SubAssign<f64> for ClockTime {
	fn sub_assign(&mut self, ticks: f64) {
		*self = *self - ticks;
	}
}

impl PartialOrd for ClockTime {
	fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
		if self.clock != other.clock {
			return None;
		}
		match self.ticks.cmp(&other.ticks) {
			Ordering::Equal => self.fraction.partial_cmp(&other.fraction),
			ordering => Some(ordering),
		}
	}
}