From dcfc4e82386f41bd36c3b102512bd225fc5331b6 Mon Sep 17 00:00:00 2001 From: Graham Northup Date: Wed, 20 Sep 2017 01:49:04 -0400 Subject: more of the same for the night :) --- src/proto.rs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/proto.rs') diff --git a/src/proto.rs b/src/proto.rs index 06d7b49..c202a10 100644 --- a/src/proto.rs +++ b/src/proto.rs @@ -48,6 +48,30 @@ impl<'a> From<&'a [u8; 36]> for Command { data.copy_from_slice(&packet[4..]); Command::Ping{data: data} } + 2 => Command::Quit, + 3 => Command::Play{ + sec: fields_u32[1], + usec: fields_u32[2], + freq: fields_u32[3], + amp: fields_f32[4], + voice: fields_u32[5], + }, + 4 => { + let mut tp: [u8; 4] = unsafe { mem::uninitialized() }; + let mut ident: [u8; 24] = unsafe { mem::uninitialized() }; + tp.copy_from_slice(&packet[8..12]); + ident.copy_from_slice(&packet[12..]); + Command::Caps{ + voices: fields_u32[1], + tp: tp, + ident: ident, + } + }, + 5 => { + let mut samples: [i16; 16] = unsafe { mem::uninitialized() }; + ::byteorder::LittleEndian::read_i16_into(&packet[4..], &mut samples); + Command::PCM{samples: samples} + }, _ => { let mut data: [u8; 36] = unsafe { mem::uninitialized() }; data.copy_from_slice(packet); -- cgit v1.2.3-70-g09d2