mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-24 16:06:51 +08:00
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
/**
|
|
* Contains code for random generators.
|
|
* \file IceRandom.cpp
|
|
* \author Pierre Terdiman
|
|
* \date August, 9, 2001
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Silence warnings about shortening 64 vit values into 32 bit containers
|
|
#if __clang__
|
|
#pragma clang diagnostic ignored "-Wshorten-64-to-32"
|
|
#endif
|
|
#ifdef _MSC_VER
|
|
#pragma warning( disable: 4267)
|
|
#endif
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Precompiled Header
|
|
#include "OPC_Stdafx.h"
|
|
|
|
using namespace IceCore;
|
|
|
|
void IceCore:: SRand(udword seed)
|
|
{
|
|
srand(seed);
|
|
}
|
|
|
|
udword IceCore::Rand()
|
|
{
|
|
return rand();
|
|
}
|
|
|
|
|
|
static BasicRandom gRandomGenerator(42);
|
|
|
|
udword IceCore::GetRandomIndex(udword max_index)
|
|
{
|
|
// We don't use rand() since it's limited to RAND_MAX
|
|
udword Index = gRandomGenerator.Randomize();
|
|
return Index % max_index;
|
|
}
|