blob: 97b428f1a742cc29f2c2e21e818678cfbd9165d0 (
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
61
62
63
64
65
66
67
|
use std::ops::Deref;
pub use crate::Color;
pub struct ColorTable {
table: Vec<Color>
}
impl ColorTable {
pub fn new() -> Self {
Self {
table: vec![]
}
}
/// Returns the number of colors in the color table as used by the packed
/// fields in the Logical Screen Descriptor and Image Descriptor. You can
/// get the actual size with the [`len`](struct.ColorTable.html#method.len) method.
pub fn packed_len(&self) -> u8 {
((self.table.len() as f32).log2().ceil() - 1f32) as u8
}
/// Returns the number of items in the table
pub fn len(&self) -> usize {
self.table.len()
}
/// Pushes a color on to the end of the table
pub fn push(&mut self, color: Color) {
self.table.push(color);
}
}
impl Deref for ColorTable {
type Target = [Color];
fn deref(&self) -> &Self::Target {
&self.table
}
}
impl From<Vec<Color>> for ColorTable {
fn from(table: Vec<Color>) -> Self{
ColorTable {
table
}
}
}
impl From<&ColorTable> for Box<[u8]> {
fn from(table: &ColorTable) -> Self {
let mut vec = vec![];
for color in table.iter() {
vec.extend_from_slice(&[color.r, color.g, color.b]);
}
let packed_len = 2u8.pow(table.packed_len() as u32 + 1);
let padding = (packed_len as usize - table.len()) * 3;
if padding > 0 {
vec.extend_from_slice(&vec![0; padding]);
}
vec.into_boxed_slice()
}
}
//TODO: TryFrom Vec<u8> (must be multiple of 3 len) and From Vec<Color>
|