batbox 0.14.0

Batteries useful for projects
Documentation
#[allow(unused_imports)]
use super::*;

/// Timer can be used to track time since some instant.
pub struct Timer {
    #[cfg(target_arch = "wasm32")]
    start: f64,
    #[cfg(not(target_arch = "wasm32"))]
    start: std::time::Instant,
}

#[cfg(not(target_arch = "wasm32"))]
fn to_secs(duration: std::time::Duration) -> f64 {
    duration.as_secs() as f64 + f64::from(duration.subsec_nanos()) / 1e9
}

#[cfg(target_arch = "wasm32")]
fn now() -> f64 {
    js_sys::Date::now() / 1000.0
}

impl Timer {
    #[allow(clippy::new_without_default)]
    /// Constructs a new timer.
    pub fn new() -> Self {
        Self {
            #[cfg(target_arch = "wasm32")]
            start: now(),
            #[cfg(not(target_arch = "wasm32"))]
            start: std::time::Instant::now(),
        }
    }

    /// Get time elapsed (in seconds) since last reset.
    pub fn elapsed(&self) -> f64 {
        #[cfg(target_arch = "wasm32")]
        return now() - self.start;
        #[cfg(not(target_arch = "wasm32"))]
        return to_secs(self.start.elapsed());
    }

    /// Reset, and get time elapsed (in seconds) since last reset.
    pub fn tick(&mut self) -> f64 {
        #[cfg(target_arch = "wasm32")]
        {
            let now = now();
            let delta = now - self.start;
            self.start = now;
            delta
        }
        #[cfg(not(target_arch = "wasm32"))]
        {
            let now = std::time::Instant::now();
            let delta = now.duration_since(self.start);
            self.start = now;
            to_secs(delta)
        }
    }
}

#[test]
fn test() {
    let mut timer = Timer::new();
    timer.elapsed();
    for _ in 0..100 {
        timer.tick();
    }
}