blob: 38a28b6f797c337361c96e553284711f7d3c08b1 (
plain)
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
|
using System.Diagnostics;
namespace LibNoise.Operator
{
/// <summary>
/// Provides a noise module that caches the last output value generated by a source
/// module. [OPERATOR]
/// </summary>
public class Cache : ModuleBase
{
#region Fields
private double _value;
private bool _cached;
private double _x;
private double _y;
private double _z;
#endregion
#region Constructors
/// <summary>
/// Initializes a new instance of Cache.
/// </summary>
public Cache()
: base(1)
{
}
/// <summary>
/// Initializes a new instance of Cache.
/// </summary>
/// <param name="input">The input module.</param>
public Cache(ModuleBase input)
: base(1)
{
Modules[0] = input;
}
#endregion
#region ModuleBase Members
/// <summary>
/// Gets or sets a source module by index.
/// </summary>
/// <param name="index">The index of the source module to aquire.</param>
/// <returns>The requested source module.</returns>
public override ModuleBase this[int index]
{
get { return base[index]; }
set
{
base[index] = value;
_cached = false;
}
}
/// <summary>
/// Returns the output value for the given input coordinates.
/// </summary>
/// <param name="x">The input coordinate on the x-axis.</param>
/// <param name="y">The input coordinate on the y-axis.</param>
/// <param name="z">The input coordinate on the z-axis.</param>
/// <returns>The resulting output value.</returns>
public override double GetValue(double x, double y, double z)
{
Debug.Assert(Modules[0] != null);
if (!(_cached && _x == x && _y == y && _z == z))
{
_value = Modules[0].GetValue(x, y, z);
_x = x;
_y = y;
_z = z;
}
_cached = true;
return _value;
}
#endregion
}
}
|