197 lines
4.6 KiB
C++
197 lines
4.6 KiB
C++
// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Types/BaseTypes.h"
|
|
#include "Math/Vector3.h"
|
|
#include "Math/Math.h"
|
|
#include <stdlib.h>
|
|
|
|
/// <summary>
|
|
/// Very basic pseudo numbers generator.
|
|
/// </summary>
|
|
class FLAXENGINE_API RandomStream
|
|
{
|
|
private:
|
|
/// <summary>
|
|
/// Holds the initial seed.
|
|
/// </summary>
|
|
int32 _initialSeed;
|
|
|
|
/// <summary>
|
|
/// Holds the current seed.
|
|
/// </summary>
|
|
mutable int32 _seed;
|
|
|
|
public:
|
|
/// <summary>
|
|
/// Init
|
|
/// </summary>
|
|
RandomStream()
|
|
: _initialSeed(0)
|
|
, _seed(0)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates and initializes a new random stream from the specified seed value.
|
|
/// </summary>
|
|
/// <param name="seed">The seed value.</param>
|
|
RandomStream(int32 seed)
|
|
: _initialSeed(seed)
|
|
, _seed(seed)
|
|
{
|
|
}
|
|
|
|
public:
|
|
/// <summary>
|
|
/// Gets initial seed value
|
|
/// </summary>
|
|
int32 GetInitialSeed() const
|
|
{
|
|
return _initialSeed;
|
|
}
|
|
|
|
public:
|
|
/// <summary>
|
|
/// Gets the current seed.
|
|
/// </summary>
|
|
int32 GetCurrentSeed() const
|
|
{
|
|
return _seed;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes this random stream with the specified seed value.
|
|
/// </summary>
|
|
/// <param name="seed">The seed value.</param>
|
|
void Initialize(int32 seed)
|
|
{
|
|
_initialSeed = seed;
|
|
_seed = seed;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Resets this random stream to the initial seed value.
|
|
/// </summary>
|
|
void Reset() const
|
|
{
|
|
_seed = _initialSeed;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Generates a new random seed.
|
|
/// </summary>
|
|
void GenerateNewSeed()
|
|
{
|
|
Initialize(rand());
|
|
}
|
|
|
|
public:
|
|
/// <summary>
|
|
/// Returns a random boolean.
|
|
/// </summary>
|
|
bool GetBool() const
|
|
{
|
|
MutateSeed();
|
|
return *(uint32*)&_seed < (MAX_uint32 / 2);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a random number between 0 and MAX_uint32.
|
|
/// </summary>
|
|
uint32 GetUnsignedInt() const
|
|
{
|
|
MutateSeed();
|
|
return *(uint32*)&_seed;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a random number between 0 and 1.
|
|
/// </summary>
|
|
float GetFraction() const
|
|
{
|
|
MutateSeed();
|
|
const float temp = 1.0f;
|
|
float result;
|
|
*(int32*)&result = (*(int32*)&temp & 0xff800000) | (_seed & 0x007fffff);
|
|
return Math::Fractional(result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a random number between 0 and 1.
|
|
/// </summary>
|
|
FORCE_INLINE float Rand() const
|
|
{
|
|
return GetFraction();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a random vector of unit size.
|
|
/// </summary>
|
|
Float3 GetUnitVector() const
|
|
{
|
|
Float3 result;
|
|
float l;
|
|
do
|
|
{
|
|
result.X = GetFraction() * 2.0f - 1.0f;
|
|
result.Y = GetFraction() * 2.0f - 1.0f;
|
|
result.Z = GetFraction() * 2.0f - 1.0f;
|
|
l = result.LengthSquared();
|
|
} while (l > 1.0f || l < ZeroTolerance);
|
|
return Float3::Normalize(result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a random <see cref="Vector3"/> with components in a range between [0;1].
|
|
/// </summary>
|
|
Vector3 GetVector3() const
|
|
{
|
|
return Vector3(GetFraction(), GetFraction(), GetFraction());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Helper function for rand implementations.
|
|
/// </summary>
|
|
/// <param name="a">Top border</param>
|
|
/// <returns>A random number in [0..A)</returns>
|
|
FORCE_INLINE int32 RandHelper(int32 a) const
|
|
{
|
|
return a > 0 ? Math::TruncToInt(GetFraction() * ((float)a - ZeroTolerance)) : 0;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Helper function for rand implementations
|
|
/// </summary>
|
|
/// <param name="min">Minimum value</param>
|
|
/// <param name="max">Maximum value</param>
|
|
/// <returns>A random number in [min; max] range</returns>
|
|
FORCE_INLINE int32 RandRange(int32 min, int32 max) const
|
|
{
|
|
const int32 range = max - min + 1;
|
|
return min + RandHelper(range);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Helper function for rand implementations
|
|
/// </summary>
|
|
/// <param name="min">Minimum value</param>
|
|
/// <param name="max">Maximum value</param>
|
|
/// <returns>A random number in [min; max] range</returns>
|
|
FORCE_INLINE float RandRange(float min, float max) const
|
|
{
|
|
return min + (max - min) * Rand();
|
|
}
|
|
|
|
protected:
|
|
/// <summary>
|
|
/// Mutates the current seed into the next seed.
|
|
/// </summary>
|
|
void MutateSeed() const
|
|
{
|
|
// This can be modified to provide better randomization
|
|
_seed = _seed * 196314165 + 907633515;
|
|
}
|
|
};
|