summaryrefslogtreecommitdiff
path: root/src/sim/cell/cell.rs
blob: d567893cd015dd335385ddda1f16fde18a97d821 (plain)
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
use crate::sim::cell::materials::MaterialId;

#[derive(Clone, Copy)]
pub struct Cell {
    pub material: MaterialId,
    pub flags: u8,
    pub data: u16,
}

impl Cell {
    const FLAG_PARITY: u8 = 0b0000_0001;
    const FLAG_RB: u8 = 0b0000_0010;

    #[inline]
    pub fn parity(self) -> u8 {
        self.flags & Self::FLAG_PARITY
    }
    #[inline]
    pub fn flip_parity(&mut self) {
        self.flags ^= Self::FLAG_PARITY;
    }
    #[inline]
    pub fn match_parity(&mut self, seqno: u64) {
        let parity = seqno % 2 != 0;
        if parity {
            self.flags |= Self::FLAG_PARITY;
        } else {
            self.flags = self.flags & !Self::FLAG_PARITY
        }
    }

    #[inline]
    pub fn rb(self) -> bool {
        (self.flags & Self::FLAG_RB) == Self::FLAG_RB
    }
    pub fn set_rb(&mut self, rb: bool) {
        if rb {
            self.flags |= Self::FLAG_RB
        } else {
            self.flags = self.flags & !Self::FLAG_RB
        }
    }
}

impl Cell {
    pub fn void() -> Cell {
        Cell {
            material: MaterialId::Void,
            flags: 0,
            data: 0,
        }
    }
    pub fn from_material(material: MaterialId) -> Cell {
        Cell {
            material,
            flags: 0,
            data: 0,
        }
    }
}