1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*
- * CRandomGenerator.cpp, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #include "StdInc.h"
- #include "CRandomGenerator.h"
- boost::thread_specific_ptr<CRandomGenerator> CRandomGenerator::defaultRand;
- CRandomGenerator::CRandomGenerator()
- {
- resetSeed();
- }
- void CRandomGenerator::setSeed(int seed)
- {
- rand.seed(seed);
- }
- void CRandomGenerator::resetSeed()
- {
- boost::hash<std::string> stringHash;
- auto threadIdHash = stringHash(boost::lexical_cast<std::string>(boost::this_thread::get_id()));
- setSeed(threadIdHash * std::time(nullptr));
- }
- TRandI CRandomGenerator::getIntRange(int lower, int upper)
- {
- return boost::bind(TIntDist(lower, upper), boost::ref(rand));
- }
- int CRandomGenerator::nextInt(int upper)
- {
- return getIntRange(0, upper)();
- }
- int CRandomGenerator::nextInt(int lower, int upper)
- {
- return getIntRange(lower, upper)();
- }
- int CRandomGenerator::nextInt()
- {
- return TIntDist()(rand);
- }
- TRand CRandomGenerator::getDoubleRange(double lower, double upper)
- {
- return boost::bind(TRealDist(lower, upper), boost::ref(rand));
- }
- double CRandomGenerator::nextDouble(double upper)
- {
- return getDoubleRange(0, upper)();
- }
- double CRandomGenerator::nextDouble(double lower, double upper)
- {
- return getDoubleRange(lower, upper)();
- }
- double CRandomGenerator::nextDouble()
- {
- return TRealDist()(rand);
- }
- CRandomGenerator & CRandomGenerator::getDefault()
- {
- if(!defaultRand.get())
- {
- defaultRand.reset(new CRandomGenerator());
- }
- return *defaultRand.get();
- }
- TGenerator & CRandomGenerator::getStdGenerator()
- {
- return rand;
- }
|