2012-05-23 17:01:30 +10:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2012-05-23 17:01:30 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2012-05-23 17:01:30 +10:00
|
|
|
*
|
|
|
|
* Copyright 2012 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_NOISE_FRACTAL_HPP
|
|
|
|
#define __UTIL_NOISE_FRACTAL_HPP
|
|
|
|
|
|
|
|
#include "basis.hpp"
|
|
|
|
|
|
|
|
namespace util {
|
|
|
|
namespace noise {
|
2015-05-18 14:34:48 +10:00
|
|
|
/// Base noise summation
|
2015-05-18 22:02:10 +10:00
|
|
|
template <typename T>
|
2012-05-23 17:01:30 +10:00
|
|
|
struct fractal {
|
2015-05-26 16:31:30 +10:00
|
|
|
using seed_t = uint64_t;
|
|
|
|
|
|
|
|
fractal (seed_t);
|
2012-05-23 17:01:30 +10:00
|
|
|
fractal ();
|
|
|
|
virtual ~fractal ();
|
|
|
|
|
2015-05-18 22:05:39 +10:00
|
|
|
virtual T operator() (T x, T y) const = 0;
|
2015-05-26 16:31:30 +10:00
|
|
|
|
|
|
|
seed_t seed;
|
2012-05-23 17:01:30 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-05-18 14:34:48 +10:00
|
|
|
/// Fractal Brownian Motion summation.
|
2015-05-26 16:31:30 +10:00
|
|
|
///
|
|
|
|
/// Sum progressive layers of a noise basis with scaling frequency
|
|
|
|
/// and amplitude.
|
|
|
|
///
|
|
|
|
/// octaves: count of layers to be summed
|
|
|
|
/// frequency: point scaling factor for the base octave
|
|
|
|
/// lacunarity: per octave frequency scaling factor
|
|
|
|
/// amplitude: maximum absolute value of the noise
|
|
|
|
/// gain: per octave amplitude scaling factor. typically 1/f.
|
2015-05-18 22:02:10 +10:00
|
|
|
template <typename T, typename B>
|
|
|
|
struct fbm : public fractal<T> {
|
|
|
|
using seed_t = typename basis<T>::seed_t;
|
2015-05-18 17:16:04 +10:00
|
|
|
|
2012-05-23 17:01:30 +10:00
|
|
|
fbm (unsigned octaves,
|
2015-05-18 22:02:10 +10:00
|
|
|
T frequency,
|
|
|
|
T lacunarity,
|
2015-05-26 16:31:30 +10:00
|
|
|
T amplitude,
|
|
|
|
T gain,
|
2015-05-18 17:16:04 +10:00
|
|
|
seed_t seed);
|
2012-05-23 17:01:30 +10:00
|
|
|
fbm ();
|
|
|
|
|
2015-05-26 16:31:30 +10:00
|
|
|
unsigned octaves;
|
|
|
|
|
|
|
|
T frequency;
|
|
|
|
T lacunarity;
|
|
|
|
|
|
|
|
T amplitude;
|
|
|
|
T gain;
|
|
|
|
|
2012-05-23 17:01:30 +10:00
|
|
|
B basis;
|
2015-05-18 22:05:39 +10:00
|
|
|
virtual T operator() (T x, T y) const override;
|
2012-05-23 17:01:30 +10:00
|
|
|
};
|
|
|
|
|
2015-05-18 14:34:48 +10:00
|
|
|
|
2015-05-26 16:31:30 +10:00
|
|
|
/// Rigid Multifractal noise summation, based on Musgrave's algorithm
|
|
|
|
///
|
|
|
|
/// octaves: count of layers to be summed
|
|
|
|
/// frequency: point scaling factor for the base octave
|
|
|
|
/// lacunarity: per octave frequency scaling factor
|
2015-05-18 22:02:10 +10:00
|
|
|
template <typename T, typename B>
|
2015-05-26 16:31:30 +10:00
|
|
|
struct rmf : public fractal<T> {
|
2015-05-18 22:02:10 +10:00
|
|
|
using seed_t = typename basis<T>::seed_t;
|
2015-05-18 17:16:04 +10:00
|
|
|
|
2015-05-26 16:31:30 +10:00
|
|
|
rmf (unsigned octaves,
|
2015-05-18 22:02:10 +10:00
|
|
|
T frequency,
|
|
|
|
T lacunarity,
|
2015-05-26 16:31:30 +10:00
|
|
|
T amplitude,
|
|
|
|
T gain,
|
2015-05-18 17:16:04 +10:00
|
|
|
seed_t seed);
|
2015-05-26 16:31:30 +10:00
|
|
|
rmf ();
|
|
|
|
|
|
|
|
unsigned octaves;
|
|
|
|
|
|
|
|
T frequency;
|
|
|
|
T lacunarity;
|
|
|
|
|
|
|
|
T amplitude;
|
|
|
|
T gain;
|
2012-05-23 17:01:30 +10:00
|
|
|
|
|
|
|
B basis;
|
2015-05-18 22:05:39 +10:00
|
|
|
virtual T operator() (T x, T y) const override;
|
2012-05-23 17:01:30 +10:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|