rapier3d/counters/
timer.rsuse std::{
fmt::{Display, Error, Formatter},
time::Duration,
};
#[derive(Copy, Clone, Debug, Default)]
pub struct Timer {
time: Duration,
#[allow(dead_code)] start: Option<std::time::Instant>,
}
impl Timer {
pub fn new() -> Self {
Timer {
time: Duration::from_secs(0),
start: None,
}
}
pub fn reset(&mut self) {
self.time = Duration::from_secs(0)
}
pub fn start(&mut self) {
#[cfg(feature = "profiler")]
{
self.time = Duration::from_secs(0);
self.start = Some(web_time::Instant::now());
}
}
pub fn pause(&mut self) {
#[cfg(feature = "profiler")]
{
if let Some(start) = self.start {
self.time += web_time::Instant::now().duration_since(start);
}
self.start = None;
}
}
pub fn resume(&mut self) {
#[cfg(feature = "profiler")]
{
self.start = Some(web_time::Instant::now());
}
}
pub fn time(&self) -> Duration {
self.time
}
pub fn time_ms(&self) -> f64 {
self.time.as_secs_f64() * 1000.0
}
}
impl Display for Timer {
fn fmt(&self, f: &mut Formatter) -> Result<(), Error> {
write!(f, "{}ms", self.time_ms())
}
}