1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*!
The frame_counter library provides a very simple to use framerate counter
based around the [rust time module](https://github.com/rust-lang/rust/blob/673d0db5e393e9c64897005b470bfeb6d5aec61b/library/std/src/time.rs#L29).

Additionally the `FrameCounter` can also be used to cap the framerate at a certain value either in a hot or cold loop.

# Examples:

Counting the framerate:
```
use frame_counter::FrameCounter;

pub fn dummy_workload() {
    std::thread::sleep(std::time::Duration::from_millis(10));
}

pub fn main() {
    let mut frame_counter = FrameCounter::default();

    loop {
        {
            let frame = frame_counter.start_frame();

            dummy_workload();
        }

        println!("fps stats - {}", frame_counter);
    }
}
```
*/

pub const INITIAL_FRAMERATE: f64 = 100f64;

use std::fmt;
use std::time::{Duration, Instant};

pub struct FrameCounter {
    now: Instant,
    frame_count: u64,
    last_frame_time: Duration,
    last_frame_rate: f64,
    avg_now: Instant,
    avg_frame_count: u64,
    avg_frame_time: Duration,
    avg_frame_rate: f64,
}

impl Default for FrameCounter {
    /// Creates a new FrameCounter with a starting framerate of 100.
    fn default() -> Self {
        Self::new(INITIAL_FRAMERATE)
    }
}

impl FrameCounter {
    /// Creates a new FrameCounter with the given starting framerate.
    ///
    /// # Arguments
    /// * `frame_rate` - initial frame rate guess.
    pub fn new(frame_rate: f64) -> Self {
        Self {
            now: Instant::now(),
            frame_count: 0u64,
            last_frame_time: Duration::from_millis((1000f64 / frame_rate) as u64),
            last_frame_rate: frame_rate,
            avg_now: Instant::now(),
            avg_frame_count: 0u64,
            avg_frame_time: Duration::from_millis((1000f64 / frame_rate) as u64),
            avg_frame_rate: frame_rate,
        }
    }

    /// Creates a new frame for measurements
    pub fn start_frame(&mut self) -> Frame {
        self.now = Instant::now();
        Frame { counter: self }
    }

    /// Signals the end of a frame.
    /// This function is automatically invoked when the current `Frame` drops.
    fn end_frame(&mut self) {
        self.last_frame_time = self.now.elapsed();
        self.last_frame_rate = 1e+9f64 / (self.last_frame_time.as_nanos() as f64);
        self.frame_count += 1;

        // update average each second
        if self.avg_frame_count == 0 || self.avg_now.elapsed().as_millis() > 1000 {
            self.avg_frame_time =
                self.avg_now.elapsed() / (self.frame_count - self.avg_frame_count) as u32;
            self.avg_frame_rate = 1e+9f64 / (self.avg_frame_time.as_nanos() as f64);
            self.avg_frame_count = self.frame_count;
            self.avg_now = self.now;
        }
    }

    /// Returns the frame time of the last frame as a `Duration`.
    pub fn frame_time(&self) -> Duration {
        self.last_frame_time
    }

    /// Returns the average frame time over the last second as a `Duration`.
    pub fn avg_frame_time(&self) -> Duration {
        self.avg_frame_time
    }

    /// Returns the frame rate of the last frame.
    pub fn frame_rate(&self) -> f64 {
        self.last_frame_rate
    }

    /// Returns the average frame rate of the last second.
    pub fn avg_frame_rate(&self) -> f64 {
        self.avg_frame_rate
    }
}

impl fmt::Display for FrameCounter {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "avg: {} {:?}; current: {} {:?}",
            self.avg_frame_rate(),
            self.avg_frame_time(),
            self.frame_rate(),
            self.frame_time()
        )
    }
}

pub struct Frame<'a> {
    counter: &'a mut FrameCounter,
}

impl<'a> Frame<'a> {
    /// Waits in a hot-loop until the desired frame rate is achieved.
    /// This function will _not_ call `std::thread:sleep` to prevent
    /// the OS from scheduling this thread.
    ///
    /// This means the function will consume an entire core on the CPU.
    ///
    /// # Example:
    ///
    /// ```
    /// use frame_counter::FrameCounter;
    ///
    /// pub fn dummy_workload() {
    ///     std::thread::sleep(std::time::Duration::from_millis(1));
    /// }
    ///
    /// pub fn main() {
    ///     let mut frame_counter = FrameCounter::default();
    ///
    ///     loop {
    ///         {
    ///             let frame = frame_counter.start_frame();
    ///
    ///             dummy_workload();
    ///
    ///             frame.wait_until_framerate(60f64);
    ///         }
    ///
    ///         println!("fps stats - {}", frame_counter);
    ///     }
    /// }
    /// ```
    pub fn wait_until_framerate(&self, framerate: f64) {
        let target_frame_time_nanos = 1e+9f64 / framerate;
        while target_frame_time_nanos > (self.counter.now.elapsed().as_nanos() as f64) {}
    }

    /// Waits in a cold-loop until the desired frame rate is achieved.
    /// This function will call `std::thread:sleep` to prevent
    /// the process from consuming the entire CPU Core.
    ///
    /// # Example:
    ///
    /// ```
    /// use frame_counter::FrameCounter;
    ///
    /// pub fn dummy_workload() {
    ///     std::thread::sleep(std::time::Duration::from_millis(1));
    /// }
    ///
    /// pub fn main() {
    ///     let mut frame_counter = FrameCounter::default();
    ///
    ///     loop {
    ///         {
    ///             let frame = frame_counter.start_frame();
    ///
    ///             dummy_workload();
    ///
    ///             frame.sleep_until_framerate(60f64);
    ///         }
    ///
    ///         println!("fps stats - {}", frame_counter);
    ///     }
    /// }
    /// ```
    pub fn sleep_until_framerate(&self, framerate: f64) {
        let target_frame_time_nanos = 1e+9f64 / framerate;
        while target_frame_time_nanos > (self.counter.now.elapsed().as_nanos() as f64) {
            std::thread::sleep(std::time::Duration::from_millis(1));
        }
    }
}

impl<'a> Drop for Frame<'a> {
    fn drop(&mut self) {
        self.counter.end_frame();
    }
}