ase 0.1.0

Rust library to parse Aseprite *ase. files
Documentation
use std::io::{self, Read};

use byteorder::{LittleEndian, ReadBytesExt};

use crate::color::RGB256;

pub struct Packet {
	pub palette_entries_to_skip: u8,
	pub colors: Vec<RGB256>,
}

pub struct OldPaletteChunk4 {
	pub number_of_packets: u16,
	pub packets: Vec<Packet>,
}

impl OldPaletteChunk4 {
	pub fn from_read<R>(read: &mut R) -> io::Result<Self>
	where
		R: Read,
	{
		let number_of_packets = read.read_u16::<LittleEndian>()?;
		let mut packets = Vec::new();

		for _ in 0..number_of_packets {
			let palette_entries_to_skip = read.read_u8()?;

			let mut number_of_colors = read.read_u8()? as usize;
			if number_of_colors == 0 {
				number_of_colors = 256;
			}

			let mut colors = Vec::with_capacity(number_of_colors);

			for _ in 0..number_of_colors {
				colors.push(RGB256 {
					r: read.read_u8()?,
					g: read.read_u8()?,
					b: read.read_u8()?,
				})
			}

			packets.push(Packet {
				palette_entries_to_skip,
				colors,
			});
		}

		Ok(Self {
			number_of_packets,
			packets,
		})
	}
}