1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use std::fmt::Debug;
pub enum LSynthError {
InvalidWaveform(InvalidWaveformError),
InvalidChannel(InvalidChannelError),
UnevenBufferSlice(UnevenBufferSliceError),
}
impl Debug for LSynthError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::InvalidWaveform(err) => write!(f, "{:?}", err),
Self::InvalidChannel(err) => write!(f, "{:?}", err),
Self::UnevenBufferSlice(err) => write!(f, "{:?}", err),
}
}
}
pub struct InvalidWaveformError {
pub attempted_waveform: usize,
}
impl Debug for InvalidWaveformError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Attempted to set LSynth channel to invalid waveform: {}", self.attempted_waveform)
}
}
pub struct InvalidChannelError {
pub attempted_channel: usize,
pub max_channels_of_chip: usize,
}
impl Debug for InvalidChannelError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Unable to send command to channel {}. Chip only has {} channels.", self.attempted_channel, self.max_channels_of_chip)
}
}
pub struct UnevenBufferSliceError {
pub slice_length: usize,
}
impl Debug for UnevenBufferSliceError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Provided slice length of {} is an odd number. Cannot generate stereo audio.", self.slice_length)
}
}