Merge remote-tracking branch 'dteviot/Rng'
commit
86d39cede9
@ -0,0 +1,29 @@
|
||||
#include "rng.hpp"
|
||||
#include <cstdlib>
|
||||
#include <ctime>
|
||||
|
||||
namespace OEngine {
|
||||
namespace Misc {
|
||||
|
||||
void Rng::init()
|
||||
{
|
||||
std::srand(static_cast<unsigned int>(std::time(NULL)));
|
||||
}
|
||||
|
||||
float Rng::rollProbability()
|
||||
{
|
||||
return static_cast<float>(std::rand() / (static_cast<double>(RAND_MAX)+1.0));
|
||||
}
|
||||
|
||||
float Rng::rollClosedProbability()
|
||||
{
|
||||
return static_cast<float>(std::rand() / static_cast<double>(RAND_MAX));
|
||||
}
|
||||
|
||||
int Rng::rollDice(int max)
|
||||
{
|
||||
return static_cast<int>((std::rand() / (static_cast<double>(RAND_MAX)+1.0)) * (max));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
#ifndef MISC_RNG_H
|
||||
#define MISC_RNG_H
|
||||
|
||||
#include <cassert>
|
||||
|
||||
namespace OEngine {
|
||||
namespace Misc
|
||||
{
|
||||
|
||||
/*
|
||||
Provides central implementation of the RNG logic
|
||||
*/
|
||||
class Rng
|
||||
{
|
||||
public:
|
||||
|
||||
/// seed the RNG
|
||||
static void init();
|
||||
|
||||
/// return value in range [0.0f, 1.0f) <- note open upper range.
|
||||
static float rollProbability();
|
||||
|
||||
/// return value in range [0.0f, 1.0f] <- note closed upper range.
|
||||
static float rollClosedProbability();
|
||||
|
||||
/// return value in range [0, max) <- note open upper range.
|
||||
static int rollDice(int max);
|
||||
|
||||
/// return value in range [0, 99]
|
||||
static int roll0to99() { return rollDice(100); }
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue