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

#include "DI/factory.hpp"

#include <memory>

// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
class ISeedGenerator
{
public:
	virtual ~ISeedGenerator() noexcept = default;

	[[nodiscard]] virtual auto random_seed() noexcept -> uint32_t = 0;
};

// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
class IRandomNumberGenerator
{
public:
	virtual ~IRandomNumberGenerator() noexcept = default;

	/**
	 * 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 auto in_range(const uint32_t &a,
										const uint32_t &b) const noexcept -> uint32_t = 0;
};

using IRandomNumberGeneratorFactory =
	Factory<std::unique_ptr<IRandomNumberGenerator>(const uint32_t &seed)>;