Into, TryFrom
This commit is contained in:
parent
30c26db9f7
commit
9eaa7462bc
6 changed files with 128 additions and 38 deletions
126
src/command.rs
126
src/command.rs
|
@ -1,5 +1,6 @@
|
|||
use crate::{BitVec, Header, Packet, PixelGrid, TILE_SIZE, ToPacket};
|
||||
use crate::command_codes::DisplayCommandCode;
|
||||
use crate::{BitVec, Packet, PixelGrid, TILE_SIZE};
|
||||
use crate::command_codes::CommandCode;
|
||||
use crate::packet::Header;
|
||||
|
||||
/// A window
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
|
@ -33,53 +34,142 @@ pub enum Command {
|
|||
BitmapLinearWin(Origin, PixelGrid),
|
||||
}
|
||||
|
||||
fn offset_and_payload(command: DisplayCommandCode, offset: Offset, payload: Vec<u8>) -> Packet {
|
||||
fn offset_and_payload(command: CommandCode, offset: Offset, payload: Vec<u8>) -> Packet {
|
||||
Packet(Header(command.to_primitive(), offset, payload.len() as u16, 0, 0), payload)
|
||||
}
|
||||
|
||||
fn window_and_payload(command: DisplayCommandCode, window: Window, payload: Vec<u8>) -> Packet {
|
||||
fn window_and_payload(command: CommandCode, window: Window, payload: Vec<u8>) -> Packet {
|
||||
let Window(Origin(x, y), Size(w, h)) = window;
|
||||
Packet(Header(command.to_primitive(), x, y, w, h), payload.into())
|
||||
}
|
||||
|
||||
fn command_code_only(code: DisplayCommandCode) -> Packet {
|
||||
fn command_code_only(code: CommandCode) -> Packet {
|
||||
Packet(Header(code.to_primitive(), 0x0000, 0x0000, 0x0000, 0x0000), vec!())
|
||||
}
|
||||
|
||||
impl ToPacket for Command {
|
||||
fn to_packet(self) -> Packet {
|
||||
impl Into<Packet> for Command {
|
||||
fn into(self) -> Packet {
|
||||
match self {
|
||||
Command::Clear => command_code_only(DisplayCommandCode::Clear),
|
||||
Command::FadeOut => command_code_only(DisplayCommandCode::FadeOut),
|
||||
Command::HardReset => command_code_only(DisplayCommandCode::HardReset),
|
||||
Command::Clear => command_code_only(CommandCode::Clear),
|
||||
Command::FadeOut => command_code_only(CommandCode::FadeOut),
|
||||
Command::HardReset => command_code_only(CommandCode::HardReset),
|
||||
|
||||
Command::CharBrightness(window, payload) => {
|
||||
window_and_payload(DisplayCommandCode::CharBrightness, window, payload)
|
||||
window_and_payload(CommandCode::CharBrightness, window, payload)
|
||||
}
|
||||
Command::Brightness(brightness) => {
|
||||
Packet(Header(DisplayCommandCode::Brightness.to_primitive(), 0x00000, 0x0000, 0x0000, 0x0000), vec!(brightness))
|
||||
Packet(Header(CommandCode::Brightness.to_primitive(), 0x00000, 0x0000, 0x0000, 0x0000), vec!(brightness))
|
||||
}
|
||||
|
||||
Command::BitmapLinear(offset, bits) => {
|
||||
offset_and_payload(DisplayCommandCode::BitmapLinear, offset, bits.into())
|
||||
offset_and_payload(CommandCode::BitmapLinear, offset, bits.into())
|
||||
}
|
||||
Command::BitmapLinearWin(Origin(pixel_x, pixel_y), pixels) => {
|
||||
debug_assert_eq!(pixel_x % 8, 0);
|
||||
debug_assert_eq!(pixels.width % 8, 0);
|
||||
Packet(Header(0x0013, pixel_x / TILE_SIZE, pixel_y, pixels.width as u16 / TILE_SIZE, pixels.height as u16), pixels.into())
|
||||
Packet(
|
||||
Header(CommandCode::BitmapLinearWin.to_primitive(), pixel_x / TILE_SIZE, pixel_y, pixels.width as u16 / TILE_SIZE, pixels.height as u16),
|
||||
pixels.into())
|
||||
}
|
||||
Command::BitmapLinearAnd(offset, bits) => {
|
||||
offset_and_payload(DisplayCommandCode::BitmapLinearAnd, offset, bits.into())
|
||||
offset_and_payload(CommandCode::BitmapLinearAnd, offset, bits.into())
|
||||
}
|
||||
Command::BitmapLinearOr(offset, bits) => {
|
||||
offset_and_payload(DisplayCommandCode::BitmapLinearOr, offset, bits.into())
|
||||
offset_and_payload(CommandCode::BitmapLinearOr, offset, bits.into())
|
||||
}
|
||||
Command::BitmapLinearXor(offset, bits) => {
|
||||
offset_and_payload(DisplayCommandCode::BitmapLinearXor, offset, bits.into())
|
||||
offset_and_payload(CommandCode::BitmapLinearXor, offset, bits.into())
|
||||
}
|
||||
Command::Cp437Data(window, payload) => {
|
||||
window_and_payload(DisplayCommandCode::Cp437data, window, payload)
|
||||
window_and_payload(CommandCode::Cp437Data, window, payload)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum TryFromPacketError {
|
||||
InvalidCommand(u16),
|
||||
ExtraneousPayload(usize, usize),
|
||||
ExtraneousHeaderValues,
|
||||
}
|
||||
|
||||
fn check_empty_header(packet: &Packet) -> Option<TryFromPacketError> {
|
||||
let Packet(Header(_, a, b, c, d), _) = &packet;
|
||||
if *a != 0 || *b != 0 || *c != 0 || *d != 0 {
|
||||
Some(TryFromPacketError::ExtraneousHeaderValues)
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
fn check_command_only(packet: &Packet) -> Option<TryFromPacketError> {
|
||||
let Packet(_, payload) = packet;
|
||||
if payload.len() != 0 {
|
||||
Some(TryFromPacketError::ExtraneousPayload(0, payload.len()))
|
||||
} else {
|
||||
check_empty_header(packet)
|
||||
}
|
||||
}
|
||||
|
||||
impl TryFrom<Packet> for Command {
|
||||
type Error = TryFromPacketError;
|
||||
|
||||
fn try_from(value: Packet) -> Result<Self, Self::Error> {
|
||||
let Packet(Header(command_u16, a, b, c, d), payload) = &value;
|
||||
let command_code = match CommandCode::from_primitive(*command_u16) {
|
||||
None => return Err(TryFromPacketError::InvalidCommand(*command_u16)),
|
||||
Some(value) => value
|
||||
};
|
||||
|
||||
match command_code {
|
||||
CommandCode::Clear => {
|
||||
if let Some(err) = check_command_only(&value) {
|
||||
return Err(err);
|
||||
}
|
||||
Ok(Command::Clear)
|
||||
}
|
||||
CommandCode::Brightness => {
|
||||
if let Some(err) = check_empty_header(&value) {
|
||||
return Err(err);
|
||||
}
|
||||
Ok(Command::Brightness(payload[0]))
|
||||
}
|
||||
CommandCode::HardReset => {
|
||||
if let Some(err) = check_command_only(&value) {
|
||||
return Err(err);
|
||||
}
|
||||
Ok(Command::HardReset)
|
||||
}
|
||||
CommandCode::FadeOut => {
|
||||
if let Some(err) = check_command_only(&value) {
|
||||
return Err(err);
|
||||
}
|
||||
Ok(Command::FadeOut)
|
||||
}
|
||||
CommandCode::Cp437Data => {
|
||||
Ok(Command::Cp437Data(
|
||||
Window(Origin(*a, *b), Size(*c, *d)),
|
||||
payload.clone(),
|
||||
))
|
||||
}
|
||||
CommandCode::CharBrightness => {
|
||||
Ok(Command::CharBrightness(
|
||||
Window(Origin(*a, *b), Size(*c, *d)),
|
||||
payload.clone(),
|
||||
))
|
||||
}
|
||||
CommandCode::BitmapLegacy => { todo!() }
|
||||
CommandCode::BitmapLinear => { todo!() }
|
||||
CommandCode::BitmapLinearWin => {
|
||||
Ok(Command::BitmapLinearWin(
|
||||
Origin(*a * TILE_SIZE, *b),
|
||||
PixelGrid::load(*c as usize * TILE_SIZE as usize, *d as usize, payload),
|
||||
))
|
||||
}
|
||||
CommandCode::BitmapLinearAnd => { todo!() }
|
||||
CommandCode::BitmapLinearOr => { todo!() }
|
||||
CommandCode::BitmapLinearXor => { todo!() }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue