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
// Copyright (c) 2017 The Noise-rs Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT
// or http://opensource.org/licenses/MIT>, at your option. All files in the
// project carrying such notice may not be copied, modified, or distributed
// except according to those terms.

use math::interp;
use modules::NoiseModule;
use num_traits::Float;

/// Noise module that outputs a weighted blend of the output values from two
/// source modules given the output value supplied by a control module.
///
/// This noise module uses linear interpolation to perform the blending
/// operation.
#[derive(Clone, Debug)]
pub struct Blend<Source1, Source2, Control> {
    /// Outputs one of the values to blend.
    pub source1: Source1,

    /// Outputs one of the values to blend.
    pub source2: Source2,

    /// Determines the weight of the blending operation. Negative values weight
    /// the blend towards the output value from the `source1` module. Positive
    /// values weight the blend towards the output value from the `source2`
    /// module.
    pub control: Control,
}

impl<Source1, Source2, Control> Blend<Source1, Source2, Control> {
    pub fn new(source1: Source1,
               source2: Source2,
               control: Control)
               -> Blend<Source1, Source2, Control> {
        Blend {
            source1: source1,
            source2: source2,
            control: control,
        }
    }
}

impl<Source1, Source2, Control, T, U> NoiseModule<T> for Blend<Source1, Source2, Control>
    where Source1: NoiseModule<T, Output = U>,
          Source2: NoiseModule<T, Output = U>,
          Control: NoiseModule<T, Output = U>,
          T: Copy,
          U: Float,
{
    type Output = U;

    fn get(&self, point: T) -> Self::Output {
        let lower = self.source1.get(point);
        let upper = self.source2.get(point);
        let control = self.control.get(point);

        interp::linear(lower, upper, control)
    }
}