aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/randomization.hpp
blob: 78456a28dd7006e9237cc7f6e77b86a56fe34a59 (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
#pragma once

#include <functional>
#include <memory>

class ISeedGenerator
{
public:
	[[nodiscard]] virtual unsigned int random_seed() const = 0;
};

using ISeedGeneratorFactory = std::function<std::shared_ptr<ISeedGenerator>()>;

/**
 * Pseudo-random unsigned integer generator.
 */
class IRandomNumberGenerator
{
public:
	/**
	 * Returns a number in the range of a to b.
	 *
	 * @param a A number lower than b
	 * @param b A number greater than a
	 */
	[[nodiscard]] virtual unsigned int in_range(const unsigned int &a,
												const unsigned int &b) const = 0;
};

using IRandomNumberGeneratorFactory =
	std::function<std::shared_ptr<IRandomNumberGenerator>(const unsigned int &seed)>;