You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
695 B
C++
32 lines
695 B
C++
#include "rng.hpp"
|
|
|
|
#include <chrono>
|
|
#include <random>
|
|
|
|
namespace Misc
|
|
{
|
|
|
|
std::mt19937 Rng::generator = std::mt19937();
|
|
|
|
void Rng::init()
|
|
{
|
|
generator.seed(static_cast<unsigned int>(std::chrono::high_resolution_clock::now().time_since_epoch().count()));
|
|
}
|
|
|
|
float Rng::rollProbability()
|
|
{
|
|
return std::uniform_real_distribution<float>(0, 1 - std::numeric_limits<float>::epsilon())(generator);
|
|
}
|
|
|
|
float Rng::rollClosedProbability()
|
|
{
|
|
return std::uniform_real_distribution<float>(0, 1)(generator);
|
|
}
|
|
|
|
int Rng::rollDice(int max)
|
|
{
|
|
return max > 0 ? std::uniform_int_distribution<int>(0, max - 1)(generator) : 0;
|
|
}
|
|
|
|
}
|