diff options
author | Graham Northup <grissess@nexusg.org> | 2017-09-19 23:56:15 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-09-19 23:56:15 -0400 |
commit | 9866c0f34c268a09ecaaa9a4361c1c267799358e (patch) | |
tree | d10bea3717c25105ced7457535412072d343686f /src/types.rs | |
parent | 26e95364ad9073dd7cb571454cd52ae66f320a73 (diff) |
Starting work on proto decode
Diffstat (limited to 'src/types.rs')
-rw-r--r-- | src/types.rs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/types.rs b/src/types.rs index b9ff15f..dd450bb 100644 --- a/src/types.rs +++ b/src/types.rs @@ -1 +1,26 @@ pub type Sample = f32; + +pub enum Pitch { + Freq(f32), + MIDI(f32), +} + +impl Pitch { + pub fn to_midi(&self) -> f32 { + match *self { + Pitch::MIDI(x) => x, + Pitch::Freq(x) => + 12.0 * (x / 440.0).log2() + 69.0, + } + } + pub fn to_midi_pitch(&self) -> Pitch { Pitch::MIDI(self.to_midi()) } + + pub fn to_freq(&self) -> f32 { + match *self { + Pitch::MIDI(x) => + 440.0 * (2.0f32).powf((x - 69.0) / 12.0), + Pitch::Freq(x) => x, + } + } + pub fn to_freq_pitch(&self) -> Pitch { Pitch::Freq(self.to_freq()) } +} |