rodio/examples/spatial.rs
Alex Butler 4bb832ba30 Remove exclusive borrow requirement in Sink, SpatialSink (#203)
The inner Mutex does not require this.
2018-11-16 11:18:07 +01:00

36 lines
1.2 KiB
Rust

extern crate rodio;
use std::io::BufReader;
use std::thread;
use std::time::Duration;
fn main() {
let device = rodio::default_output_device().unwrap();
let sink = rodio::SpatialSink::new(
&device,
[-10.0, 0.0, 0.0],
[1.0, 0.0, 0.0],
[-1.0, 0.0, 0.0],
);
let file = std::fs::File::open("examples/music.ogg").unwrap();
let source = rodio::Decoder::new(BufReader::new(file)).unwrap();
sink.append(source);
// A sound emitter playing the music starting at the left gradually moves to the right
// eventually passing through the listener, then it continues on to the right for a distance
// until it stops and begins traveling to the left, it will eventually pass through the
// listener again.
// This is repeated 5 times.
for _ in 0 .. 5 {
for i in 1 .. 1001 {
thread::sleep(Duration::from_millis(5));
sink.set_emitter_position([(i - 500) as f32 / 50.0, 0.0, 0.0]);
}
for i in 1 .. 1001 {
thread::sleep(Duration::from_millis(5));
sink.set_emitter_position([-(i - 500) as f32 / 50.0, 0.0, 0.0]);
}
}
sink.sleep_until_end();
}