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
use std::ops::{Deref, DerefMut};
use bit_set::BitSet;

/// The bitmap of a glyph.
#[derive(PartialEq, Eq, Clone, Debug)]
pub struct Bitmap {
	width:  u32,
	height: u32,

	bits: BitSet,
}

impl Default for Bitmap {
	#[inline]
	fn default() -> Self {
		Bitmap::new(0, 0)
	}
}

impl Bitmap {
	/// Creates a bitmap of the given size.
	#[inline]
	pub fn new(width: u32, height: u32) -> Self {
		Bitmap {
			width:  width,
			height: height,

			bits: BitSet::new(),
		}
	}

	/// Gets the width.
	#[inline]
	pub fn width(&self) -> u32 {
		self.width
	}

	/// Gets the height.
	#[inline]
	pub fn height(&self) -> u32 {
		self.height
	}

	/// Gets a bit from the map.
	#[inline]
	pub fn get(&self, x: u32, y: u32) -> bool {
		if y >= self.height || x >= self.width {
			panic!("out of bounds");
		}

		self.bits.contains((y * self.width + x) as usize)
	}

	/// Sets a bit of the map.
	#[inline]
	pub fn set(&mut self, x: u32, y: u32, value: bool) {
		if y >= self.height || x >= self.width {
			panic!("out of bounds");
		}

		if value {
			self.bits.insert((y * self.width + x) as usize);
		}
		else {
			self.bits.remove((y * self.width + x) as usize);
		}
	}
}

impl Deref for Bitmap {
	type Target = BitSet;

	#[inline]
	fn deref(&self) -> &BitSet {
		&self.bits
	}
}

impl DerefMut for Bitmap {
	#[inline]
	fn deref_mut(&mut self) -> &mut BitSet {
		&mut self.bits
	}
}