2021-05-18 19:20:55 +00:00
|
|
|
// Copyright (c) 2021 Weird Constructor <weirdconstructor@gmail.com>
|
2021-08-04 01:58:43 +00:00
|
|
|
// This file is a part of HexoDSP. Released under GPL-3.0-or-later.
|
2021-05-18 19:20:55 +00:00
|
|
|
// See README.md and COPYING for details.
|
|
|
|
|
|
|
|
use crate::dsp::SAtom;
|
|
|
|
|
|
|
|
use hound;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum SampleLoadError {
|
|
|
|
LoadError(hound::Error),
|
|
|
|
UnsupportedFormat,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<hound::Error> for SampleLoadError {
|
|
|
|
fn from(err: hound::Error) -> Self {
|
|
|
|
SampleLoadError::LoadError(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-18 16:48:25 +00:00
|
|
|
const MAX_SAMPLE_LEN_S: usize = 60; // 60 seconds of audio is about 20MB
|
|
|
|
|
2021-05-18 19:20:55 +00:00
|
|
|
/// Loads and stores samples, for use as SAtom parameters for
|
|
|
|
/// nodes.
|
|
|
|
pub struct SampleLibrary {
|
|
|
|
loaded_samples: HashMap<String, SAtom>,
|
2022-07-18 16:48:25 +00:00
|
|
|
max_length_s: usize,
|
2021-05-18 19:20:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl SampleLibrary {
|
|
|
|
pub fn new() -> Self {
|
2022-07-18 16:48:25 +00:00
|
|
|
Self { loaded_samples: HashMap::new(), max_length_s: MAX_SAMPLE_LEN_S }
|
2021-05-18 19:20:55 +00:00
|
|
|
}
|
|
|
|
|
2021-05-19 01:58:33 +00:00
|
|
|
/// Synchronous/blocking loading of a sample from `path`.
|
2021-05-18 19:20:55 +00:00
|
|
|
/// Returns an SAtom reference that you can clone and send directly
|
|
|
|
/// to the sampling node of your choice.
|
|
|
|
///
|
|
|
|
/// Keep in mind that blocking on I/O in the UI might not be desireable.
|
|
|
|
pub fn load<'a>(&'a mut self, path: &str) -> Result<&'a SAtom, SampleLoadError> {
|
|
|
|
if self.loaded_samples.get(path).is_some() {
|
|
|
|
return Ok(self.loaded_samples.get(path).unwrap());
|
|
|
|
}
|
|
|
|
|
2022-07-17 09:58:28 +00:00
|
|
|
let mut rd = match hound::WavReader::open(path) {
|
|
|
|
Err(e) => return Err(SampleLoadError::LoadError(e)),
|
|
|
|
Ok(rd) => rd,
|
|
|
|
};
|
2021-05-18 19:20:55 +00:00
|
|
|
|
|
|
|
let channels = rd.spec().channels as usize;
|
|
|
|
|
2021-06-07 03:06:04 +00:00
|
|
|
let mut v = vec![rd.spec().sample_rate as f32];
|
2021-05-18 19:20:55 +00:00
|
|
|
|
2022-07-18 16:48:25 +00:00
|
|
|
let max_sample_count = self.max_length_s * rd.spec().sample_rate as usize;
|
|
|
|
|
2021-05-18 19:20:55 +00:00
|
|
|
match rd.spec().sample_format {
|
|
|
|
hound::SampleFormat::Float => {
|
2022-07-18 16:48:25 +00:00
|
|
|
for s in rd.samples::<f32>().step_by(channels).take(max_sample_count) {
|
2021-05-18 19:20:55 +00:00
|
|
|
v.push(s?);
|
|
|
|
}
|
2022-07-17 09:58:28 +00:00
|
|
|
}
|
2021-07-29 20:38:46 +00:00
|
|
|
// http://blog.bjornroche.com/2009/12/int-float-int-its-jungle-out-there.html
|
2021-05-18 19:20:55 +00:00
|
|
|
hound::SampleFormat::Int => {
|
2022-07-18 16:48:25 +00:00
|
|
|
for s in rd.samples::<i16>().step_by(channels).take(max_sample_count) {
|
2021-05-22 07:19:11 +00:00
|
|
|
let s = s?;
|
2021-06-13 05:23:25 +00:00
|
|
|
let s = s as f32 / (0x8000 as f32);
|
2021-05-22 07:19:11 +00:00
|
|
|
v.push(s);
|
2021-05-18 19:20:55 +00:00
|
|
|
}
|
2022-07-17 09:58:28 +00:00
|
|
|
}
|
2021-05-18 19:20:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let atom = SAtom::audio(path, std::sync::Arc::new(v));
|
|
|
|
|
|
|
|
self.loaded_samples.insert(path.to_string(), atom);
|
|
|
|
Ok(self.loaded_samples.get(path).unwrap())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-07 03:06:04 +00:00
|
|
|
impl Default for SampleLibrary {
|
2022-07-17 09:58:28 +00:00
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
2021-06-07 03:06:04 +00:00
|
|
|
}
|
|
|
|
|
2021-05-18 19:20:55 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
fn save_wav(name: &str, buf: &[f32]) {
|
|
|
|
let spec = hound::WavSpec {
|
2022-07-17 09:58:28 +00:00
|
|
|
channels: 1,
|
|
|
|
sample_rate: 44100,
|
2021-05-18 19:20:55 +00:00
|
|
|
bits_per_sample: 16,
|
2022-07-17 09:58:28 +00:00
|
|
|
sample_format: hound::SampleFormat::Int,
|
2021-05-18 19:20:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let mut writer = hound::WavWriter::create(name, spec).unwrap();
|
|
|
|
for s in buf.iter() {
|
|
|
|
let amp = i16::MAX as f32;
|
|
|
|
writer.write_sample((amp * s) as i16).unwrap();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn check_sample_lib() {
|
|
|
|
let mut sl = SampleLibrary::new();
|
|
|
|
|
|
|
|
save_wav("check_sample_lib_test.wav", &[0.1, -1.0, 1.0, -0.1]);
|
|
|
|
|
|
|
|
let sat = sl.load("check_sample_lib_test.wav").unwrap();
|
|
|
|
|
|
|
|
//d// println!("sa: {:?}", sat);
|
|
|
|
|
|
|
|
if let SAtom::AudioSample((_n, Some(v))) = sat {
|
|
|
|
assert_eq!(v[0], 44100.0);
|
|
|
|
assert_eq!((v[1] * 1000.0).round() as i32, 100);
|
|
|
|
assert_eq!((v[2] * 1000.0).round() as i32, -1000);
|
|
|
|
assert_eq!((v[3] * 1000.0).round() as i32, 1000);
|
|
|
|
assert_eq!((v[4] * 1000.0).round() as i32, -100);
|
|
|
|
} else {
|
|
|
|
assert!(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|