diff options
Diffstat (limited to 'src/proto.rs')
-rw-r--r-- | src/proto.rs | 112 |
1 files changed, 89 insertions, 23 deletions
diff --git a/src/proto.rs b/src/proto.rs index 2bf13a6..4f70295 100644 --- a/src/proto.rs +++ b/src/proto.rs @@ -1,6 +1,6 @@ use super::Pitch; -use std::time::Duration; use std::fmt; +use std::time::Duration; use ::byteorder::{ByteOrder, NetworkEndian}; @@ -13,12 +13,32 @@ pub enum Command { data: [u8; 32], }, Quit, - Play{sec: u32, usec: u32, freq: u32, amp: f32, voice: u32}, - Caps{voices: u32, tp: [u8; 4], ident: [u8; 24]}, - PCM{samples: [i16; 16]}, - PCMSyn{buffered: u32}, - ArtParam{voice: Option<u32>, index: u32, value: f32}, - Unknown{data: [u8; Command::SIZE]}, + Play { + sec: u32, + usec: u32, + freq: u32, + amp: f32, + voice: u32, + }, + Caps { + voices: u32, + tp: [u8; 4], + ident: [u8; 24], + }, + PCM { + samples: [i16; 16], + }, + PCMSyn { + buffered: u32, + }, + ArtParam { + voice: Option<u32>, + index: u32, + value: f32, + }, + Unknown { + data: [u8; Command::SIZE], + }, } impl Command { @@ -69,15 +89,22 @@ impl Command { Command::PCM { samples } => { NetworkEndian::write_u32(&mut ret[..4], 5); NetworkEndian::write_i16_into(&samples, &mut ret[4..]); - }, - Command::PCMSyn{buffered} => { + } + Command::PCMSyn { buffered } => { NetworkEndian::write_u32_into(&[6u32, buffered], &mut ret[..8]); - }, - Command::ArtParam{voice, index, value} => { - NetworkEndian::write_u32_into(&[7u32, voice.unwrap_or(OBLIGATE_POLYPHONE), index], &mut ret[..12]); + } + Command::ArtParam { + voice, + index, + value, + } => { + NetworkEndian::write_u32_into( + &[7u32, voice.unwrap_or(OBLIGATE_POLYPHONE), index], + &mut ret[..12], + ); NetworkEndian::write_f32(&mut ret[12..16], value); - }, - Command::Unknown{data} => { + } + Command::Unknown { data } => { ret.copy_from_slice(&data); } }; @@ -93,12 +120,45 @@ impl fmt::Debug for Command { Command::KeepAlive => f.write_str("KeepAlive"), Command::Ping { data } => f.debug_struct("Ping").field("data", &data).finish(), Command::Quit => f.write_str("Quit"), - Command::Play{sec, usec, freq, amp, voice} => f.debug_struct("Play").field("sec", &sec).field("usec", &usec).field("freq", &freq).field("amp", &).field("voice", &voice).finish(), - Command::Caps{voices, tp, ident} => f.debug_struct("Caps").field("voices", &voices).field("tp", &tp).field("ident", &ident).finish(), - Command::PCM{samples} => f.debug_struct("PCM").field("samples", &samples).finish(), - Command::PCMSyn{buffered} => f.debug_struct("PCMSyn").field("buffered", &buffered).finish(), - Command::ArtParam{voice, index, value} => f.debug_struct("ArtParam").field("voice", &voice).field("index", &index).field("value", &value).finish(), - Command::Unknown{data} => f.debug_struct("Unknown").field("data", &(&data as &[u8])).finish(), + Command::Play { + sec, + usec, + freq, + amp, + voice, + } => f + .debug_struct("Play") + .field("sec", &sec) + .field("usec", &usec) + .field("freq", &freq) + .field("amp", &) + .field("voice", &voice) + .finish(), + Command::Caps { voices, tp, ident } => f + .debug_struct("Caps") + .field("voices", &voices) + .field("tp", &tp) + .field("ident", &ident) + .finish(), + Command::PCM { samples } => f.debug_struct("PCM").field("samples", &samples).finish(), + Command::PCMSyn { buffered } => f + .debug_struct("PCMSyn") + .field("buffered", &buffered) + .finish(), + Command::ArtParam { + voice, + index, + value, + } => f + .debug_struct("ArtParam") + .field("voice", &voice) + .field("index", &index) + .field("value", &value) + .finish(), + Command::Unknown { data } => f + .debug_struct("Unknown") + .field("data", &(&data as &[u8])) + .finish(), } } } @@ -139,11 +199,17 @@ impl<'a> From<&'a [u8; Command::SIZE]> for Command { 5 => { let mut samples: [i16; 16] = [0; 16]; ::byteorder::LittleEndian::read_i16_into(&packet[4..], &mut samples); - Command::PCM{samples: samples} + Command::PCM { samples: samples } + } + 6 => Command::PCMSyn { + buffered: fields_u32[1], }, - 6 => Command::PCMSyn{buffered: fields_u32[1]}, 7 => Command::ArtParam { - voice: if fields_u32[1] == OBLIGATE_POLYPHONE { None } else { Some(fields_u32[1]) }, + voice: if fields_u32[1] == OBLIGATE_POLYPHONE { + None + } else { + Some(fields_u32[1]) + }, index: fields_u32[2], value: fields_f32[3], }, |