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
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
use nalgebra::Point3;
use source::ChannelVolume;
use std::fmt::Debug;
use std::time::Duration;
use Sample;
use Source;

/// Combines channels in input into a single mono source, then plays that mono sound
/// to each channel at the volume given for that channel.
#[derive(Clone, Debug)]
pub struct Spatial<I>
where
    I: Source,
    I::Item: Sample + Debug,
{
    input: ChannelVolume<I>,
}

impl<I> Spatial<I>
where
    I: Source,
    I::Item: Sample + Debug,
{
    pub fn new(
        input: I, emitter_position: [f32; 3], left_ear: [f32; 3], right_ear: [f32; 3],
    ) -> Spatial<I>
    where
        I: Source,
        I::Item: Sample,
    {
        let mut ret = Spatial {
            input: ChannelVolume::new(input, vec![0.0, 0.0]),
        };
        ret.set_positions(emitter_position, left_ear, right_ear);
        ret
    }

    /// Sets the position of the emitter and ears in the 3D world.
    pub fn set_positions(
        &mut self, emitter_pos: [f32; 3], left_ear: [f32; 3], right_ear: [f32; 3],
    ) {
        let emitter_position = Point3::from(emitter_pos);
        let left_ear = Point3::from(left_ear);
        let right_ear = Point3::from(right_ear);
        let left_distance = (left_ear - emitter_position).magnitude();
        let right_distance = (right_ear - emitter_position).magnitude();
        let max_diff = (left_ear - right_ear).magnitude();
        let left_diff_modifier = ((left_distance - right_distance) / max_diff + 1.0) / 4.0 + 0.5;
        let right_diff_modifier = ((right_distance - left_distance) / max_diff + 1.0) / 4.0 + 0.5;
        let left_dist_modifier = (1.0 / left_distance.powi(2)).min(1.0);
        let right_dist_modifier = (1.0 / right_distance.powi(2)).min(1.0);
        self.input
            .set_volume(0, left_diff_modifier * left_dist_modifier);
        self.input
            .set_volume(1, right_diff_modifier * right_dist_modifier);
    }
}

impl<I> Iterator for Spatial<I>
where
    I: Source,
    I::Item: Sample + Debug,
{
    type Item = I::Item;

    #[inline]
    fn next(&mut self) -> Option<I::Item> {
        self.input.next()
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        self.input.size_hint()
    }
}

impl<I> ExactSizeIterator for Spatial<I>
where
    I: Source + ExactSizeIterator,
    I::Item: Sample + Debug,
{
}

impl<I> Source for Spatial<I>
where
    I: Source,
    I::Item: Sample + Debug,
{
    #[inline]
    fn current_frame_len(&self) -> Option<usize> {
        self.input.current_frame_len()
    }

    #[inline]
    fn channels(&self) -> u16 {
        self.input.channels()
    }

    #[inline]
    fn sample_rate(&self) -> u32 {
        self.input.sample_rate()
    }

    #[inline]
    fn total_duration(&self) -> Option<Duration> {
        self.input.total_duration()
    }
}