author | alfadur |
Thu, 29 Aug 2019 00:20:41 +0300 | |
changeset 15388 | 701ad89a9f2a |
parent 15386 | 52844baced17 |
permissions | -rw-r--r-- |
15287 | 1 |
use fpnum::FPNum; |
15386 | 2 |
use std::{collections::BinaryHeap, num::NonZeroU16, ops::Add}; |
15279 | 3 |
|
4 |
pub type GearId = NonZeroU16; |
|
15125 | 5 |
|
15280 | 6 |
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Debug)] |
15286 | 7 |
#[repr(transparent)] |
15280 | 8 |
pub struct Millis(u32); |
9 |
||
10 |
impl Millis { |
|
11 |
#[inline] |
|
12 |
pub fn new(value: u32) -> Self { |
|
13 |
Self(value) |
|
14 |
} |
|
15 |
||
16 |
#[inline] |
|
17 |
pub fn get(self) -> u32 { |
|
18 |
self.0 |
|
19 |
} |
|
20 |
||
21 |
#[inline] |
|
22 |
pub fn to_fixed(self) -> FPNum { |
|
15388
701ad89a9f2a
avoid time multiplication when not skipping ticks
alfadur
parents:
15386
diff
changeset
|
23 |
FPNum::new(self.0 as i32, 1) |
15280 | 24 |
} |
25 |
} |
|
26 |
||
27 |
impl Add for Millis { |
|
28 |
type Output = Self; |
|
29 |
||
30 |
fn add(self, rhs: Self) -> Self::Output { |
|
31 |
Self(self.0 + rhs.0) |
|
32 |
} |
|
33 |
} |
|
34 |
||
15279 | 35 |
pub struct GearAllocator { |
36 |
max_id: u16, |
|
37 |
free_ids: BinaryHeap<GearId>, |
|
38 |
} |
|
39 |
||
40 |
impl GearAllocator { |
|
41 |
pub fn new() -> Self { |
|
42 |
Self { |
|
43 |
max_id: 0, |
|
44 |
free_ids: BinaryHeap::with_capacity(1024), |
|
45 |
} |
|
46 |
} |
|
47 |
||
48 |
pub fn alloc(&mut self) -> Option<GearId> { |
|
49 |
self.free_ids.pop().or_else(|| { |
|
50 |
self.max_id.checked_add(1).and_then(|new_max_id| { |
|
51 |
self.max_id = new_max_id; |
|
52 |
NonZeroU16::new(new_max_id) |
|
53 |
}) |
|
54 |
}) |
|
55 |
} |
|
56 |
||
57 |
pub fn free(&mut self, gear_id: GearId) { |
|
58 |
self.free_ids.push(gear_id) |
|
59 |
} |
|
60 |
} |