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
|
|
|
*
|
2015-05-18 14:34:48 +10:00
|
|
|
* Copyright 2012-2015 Danny Robson <danny@nerdcruft.net>
|
2012-05-23 17:01:30 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_NOISE_BASIS_HPP
|
|
|
|
#define __UTIL_NOISE_BASIS_HPP
|
|
|
|
|
|
|
|
#include <cstdlib>
|
2015-05-18 14:42:28 +10:00
|
|
|
#include "lerp.hpp"
|
2012-05-24 15:04:06 +10:00
|
|
|
#include "../range.hpp"
|
2012-05-23 17:01:30 +10:00
|
|
|
|
|
|
|
namespace util {
|
|
|
|
namespace noise {
|
2015-05-18 15:01:06 +10:00
|
|
|
template <typename T> using lerp_t = T (*)(T,T,T);
|
2012-05-23 17:01:30 +10:00
|
|
|
|
2015-05-18 17:16:04 +10:00
|
|
|
template <typename T>
|
2012-05-23 17:01:30 +10:00
|
|
|
struct basis {
|
2012-06-08 16:49:38 +10:00
|
|
|
typedef uint64_t seed_t;
|
2012-05-23 17:01:30 +10:00
|
|
|
|
|
|
|
basis (seed_t);
|
|
|
|
basis ();
|
|
|
|
virtual ~basis ();
|
|
|
|
|
|
|
|
seed_t seed;
|
2012-05-24 15:04:06 +10:00
|
|
|
|
2015-05-18 17:16:04 +10:00
|
|
|
virtual range<T> bounds (void) const = 0;
|
2015-05-18 22:05:39 +10:00
|
|
|
virtual T operator() (T x, T y) const = 0;
|
2012-05-23 17:01:30 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-05-26 16:27:27 +10:00
|
|
|
/// Single value per grid space
|
2015-05-18 17:16:04 +10:00
|
|
|
template <typename T, lerp_t<T>>
|
|
|
|
struct value : public basis<T> {
|
|
|
|
using seed_t = typename basis<T>::seed_t;
|
|
|
|
|
2012-05-23 17:01:30 +10:00
|
|
|
value (seed_t);
|
|
|
|
value ();
|
2012-05-24 15:04:06 +10:00
|
|
|
|
2015-05-26 16:27:27 +10:00
|
|
|
virtual range<T> bounds (void) const final;
|
|
|
|
virtual T operator() (T x, T y) const final;
|
2012-05-23 17:01:30 +10:00
|
|
|
};
|
|
|
|
|
2015-05-18 14:34:48 +10:00
|
|
|
|
|
|
|
/// Perlin: interpolated value across each grid space
|
2015-05-18 17:16:04 +10:00
|
|
|
template <typename T, lerp_t<T> L>
|
|
|
|
struct gradient : public basis<T> {
|
|
|
|
using seed_t = typename basis<T>::seed_t;
|
|
|
|
|
2012-05-23 17:01:30 +10:00
|
|
|
gradient (seed_t);
|
|
|
|
gradient ();
|
2012-05-24 15:04:06 +10:00
|
|
|
|
2015-05-26 16:27:27 +10:00
|
|
|
virtual range<T> bounds (void) const final;
|
|
|
|
virtual T operator() (T x, T y) const final;
|
2012-05-23 17:01:30 +10:00
|
|
|
};
|
|
|
|
|
2015-05-18 14:34:48 +10:00
|
|
|
|
|
|
|
/// Cellular/Worley/Vornoi of order-1
|
2015-05-18 17:16:04 +10:00
|
|
|
template <typename T>
|
|
|
|
struct cellular : public basis<T> {
|
|
|
|
using seed_t = typename basis<T>::seed_t;
|
|
|
|
|
2012-05-23 17:01:30 +10:00
|
|
|
cellular (seed_t);
|
|
|
|
cellular ();
|
2012-05-24 15:04:06 +10:00
|
|
|
|
2015-05-26 16:27:27 +10:00
|
|
|
virtual range<T> bounds (void) const final;
|
|
|
|
virtual T operator() (T x, T y) const final;
|
2012-05-23 17:01:30 +10:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|