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
use crate::*;
use std::time::{Duration, Instant};
pub fn simple<R, F: FnOnce(&TimeSystem) -> R>(f: F) {
let time_system = TimeSystem::new();
let _r = f(&time_system);
let start_time = Instant::now();
while Instant::now() - start_time < Duration::from_secs(2) {
std::thread::sleep(std::time::Duration::from_millis(100));
time_system.process_frame();
}
}
pub fn pump_for_secs(time_system: &TimeSystem, secs: u64) {
let start_time = Instant::now();
while Instant::now() - start_time < Duration::from_secs(secs) {
std::thread::sleep(std::time::Duration::from_millis(100));
time_system.process_frame();
}
}