CS::Math::Noise::Module::Cache Class Reference
[Miscellaneous Modules]
Noise module that caches the last output value generated by a source module. More...
#include <cstool/noise/module/cache.h>

Public Member Functions | |
| Cache () | |
| Constructor. | |
| virtual int | GetSourceModuleCount () const |
| Returns the number of source modules required by this noise module. | |
| virtual double | GetValue (double x, double y, double z) const |
| Generates an output value given the coordinates of the specified input value. | |
Protected Attributes | |
| double | m_cachedValue |
| The cached output value at the cached input value. | |
| double | m_isCached |
| Determines if a cached output value is stored in this noise module. | |
| double | m_xCache |
| x coordinate of the cached input value. | |
| double | m_yCache |
| y coordinate of the cached input value. | |
| double | m_zCache |
| z coordinate of the cached input value. | |
Detailed Description
Noise module that caches the last output value generated by a source module.
If an application passes an input value to the GetValue() method that differs from the previously passed-in input value, this noise module instructs the source module to calculate the output value. This value, as well as the ( x, y, z ) coordinates of the input value, are stored (cached) in this noise module.
If the application passes an input value to the GetValue() method that is equal to the previously passed-in input value, this noise module returns the cached output value without having the source module recalculate the output value.
If an application passes a new source module to the SetSourceModule() method, the cache is invalidated.
Caching a noise module is useful if it is used as a source module for multiple noise modules. If a source module is not cached, the source module will redundantly calculate the same output value once for each noise module in which it is included.
This noise module requires one source module.
Definition at line 66 of file cache.h.
Constructor & Destructor Documentation
| CS::Math::Noise::Module::Cache::Cache | ( | ) |
Constructor.
Member Function Documentation
| virtual int CS::Math::Noise::Module::Cache::GetSourceModuleCount | ( | ) | const [inline, virtual] |
Returns the number of source modules required by this noise module.
- Returns:
- The number of source modules required by this noise module.
Implements CS::Math::Noise::Module::Module.
| virtual double CS::Math::Noise::Module::Cache::GetValue | ( | double | x, | |
| double | y, | |||
| double | z | |||
| ) | const [virtual] |
Generates an output value given the coordinates of the specified input value.
- Parameters:
-
x The x coordinate of the input value. y The y coordinate of the input value. z The z coordinate of the input value.
- Returns:
- The output value.
- Precondition:
- All source modules required by this noise module have been passed to the SetSourceModule() method.
Before an application can call this method, it must first connect all required source modules via the SetSourceModule() method. If these source modules are not connected to this noise module, this method raises a debug assertion.
To determine the number of source modules required by this noise module, call the GetSourceModuleCount() method.
Implements CS::Math::Noise::Module::Module.
Member Data Documentation
double CS::Math::Noise::Module::Cache::m_cachedValue [mutable, protected] |
double CS::Math::Noise::Module::Cache::m_isCached [mutable, protected] |
double CS::Math::Noise::Module::Cache::m_xCache [mutable, protected] |
double CS::Math::Noise::Module::Cache::m_yCache [mutable, protected] |
double CS::Math::Noise::Module::Cache::m_zCache [mutable, protected] |
The documentation for this class was generated from the following file:
- cstool/noise/module/cache.h
Generated for Crystal Space 2.0 by doxygen 1.6.1
