diff options
author | Graham Northup <grissess@nexusg.org> | 2017-09-20 01:49:04 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-09-20 01:49:04 -0400 |
commit | dcfc4e82386f41bd36c3b102512bd225fc5331b6 (patch) | |
tree | b0b4e8ee6bf95be9970cfad37ef087cce472393b /src/proto.rs | |
parent | 9866c0f34c268a09ecaaa9a4361c1c267799358e (diff) |
more of the same for the night :)
Diffstat (limited to 'src/proto.rs')
-rw-r--r-- | src/proto.rs | 24 |
1 files changed, 24 insertions, 0 deletions
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); |