SRB2/src/m_random.c

251 lines
6.0 KiB
C
Raw Normal View History

2014-03-15 09:59:03 -07:00
// SONIC ROBO BLAST 2
//-----------------------------------------------------------------------------
// Copyright (C) 1993-1996 by id Software, Inc.
// Copyright (C) 1998-2000 by DooM Legacy Team.
// Copyright (C) 2012-2014 by Matthew "Inuyasha" Walsh.
// Copyright (C) 1999-2014 by Sonic Team Junior.
//
// This program is free software distributed under the
// terms of the GNU General Public License, version 2.
// See the 'LICENSE' file for more details.
//-----------------------------------------------------------------------------
/// \file m_random.c
/// \brief RNG for client effects and PRNG for game actions
2014-03-15 09:59:03 -07:00
#include "doomdef.h"
#include "doomtype.h"
#include "doomstat.h" // totalplaytime
#include "m_random.h"
#include "m_fixed.h"
2014-03-15 09:59:03 -07:00
// ---------------------------
// RNG functions (not synched)
// ---------------------------
/** Provides a random fixed point number. Distribution is uniform.
* As with all M_Random functions, not synched in netgames.
2014-03-15 09:59:03 -07:00
*
* \return A random fixed point number from [0,1).
2014-03-15 09:59:03 -07:00
*/
fixed_t M_RandomFixed(void)
2014-03-15 09:59:03 -07:00
{
return (rand() & 0xFFFF);
2014-03-15 09:59:03 -07:00
}
/** Provides a random byte. Distribution is uniform.
* As with all M_Random functions, not synched in netgames.
2014-03-15 09:59:03 -07:00
*
* \return A random integer from [0, 255].
2014-03-15 09:59:03 -07:00
*/
UINT8 M_RandomByte(void)
2014-03-15 09:59:03 -07:00
{
return (rand() & 0xFF);
2014-03-15 09:59:03 -07:00
}
/** Provides a random integer for picking random elements from an array.
* Distribution is uniform.
* As with all M_Random functions, not synched in netgames.
2014-03-15 09:59:03 -07:00
*
* \param a Number of items in array.
* \return A random integer from [0,a).
2014-03-15 09:59:03 -07:00
*/
INT32 M_RandomKey(INT32 a)
{
return (INT32)((rand()/((unsigned)RAND_MAX+1.0f))*a);
}
/** Provides a random integer in a given range.
2014-03-15 09:59:03 -07:00
* Distribution is uniform.
* As with all M_Random functions, not synched in netgames.
2014-03-15 09:59:03 -07:00
*
* \param a Lower bound.
* \param b Upper bound.
* \return A random integer from [a,b].
2014-03-15 09:59:03 -07:00
*/
INT32 M_RandomRange(INT32 a, INT32 b)
{
return (INT32)((rand()/((unsigned)RAND_MAX+1.0f))*(b-a+1))+a;
}
// ------------------------
// PRNG functions (synched)
// ------------------------
// Holds the current seed.
static UINT32 randomseed = 0;
// Holds the INITIAL seed value. Used for demos, possibly other debugging.
static UINT32 initialseed = 0;
/** Provides a random fixed point number.
* This is a variant of an xorshift PRNG; state fits in a 32 bit integer structure.
2014-03-15 09:59:03 -07:00
*
* \return A random fixed point number from [0,1).
*/
ATTRINLINE static fixed_t FUNCINLINE __internal_prng__(void)
{
randomseed += 7069;
randomseed ^= randomseed << 17;
randomseed ^= randomseed >> 9;
randomseed *= 373;
randomseed ^= randomseed << 21;
randomseed ^= randomseed >> 15;
return (randomseed&((FRACUNIT-1)<<9))>>9;
}
/** Provides a random fixed point number. Distribution is uniform.
* Literally a wrapper for the internal PRNG function.
*
* \return A random fixed point number from [0,1).
2014-03-15 09:59:03 -07:00
*/
#ifndef DEBUGRANDOM
fixed_t P_RandomFixed(void)
2014-03-15 09:59:03 -07:00
{
#else
UINT8 P_RandomFixedD(const char *rfile, INT32 rline)
2014-03-15 09:59:03 -07:00
{
CONS_Printf("P_RandomFixed() at: %sp %d\n", rfile, rline);
2014-03-15 09:59:03 -07:00
#endif
return __internal_prng__();
2014-03-15 09:59:03 -07:00
}
/** Provides a random byte. Distribution is uniform.
* If you're curious, (&0xFF00) >> 8 gives the same result
* as a fixed point multiplication by 256.
2014-03-15 09:59:03 -07:00
*
* \return Random integer from [0, 255].
* \sa __internal_prng__
2014-03-15 09:59:03 -07:00
*/
#ifndef DEBUGRANDOM
UINT8 P_RandomByte(void)
{
#else
UINT8 P_RandomByteD(const char *rfile, INT32 rline)
{
CONS_Printf("P_RandomByte() at: %sp %d\n", rfile, rline);
#endif
return (UINT8)((__internal_prng__()&0xFF00)>>8);
}
/** Provides a random integer for picking random elements from an array.
* Distribution is uniform.
* NOTE: Maximum range is 65536.
*
* \param a Number of items in array.
* \return A random integer from [0,a).
* \sa __internal_prng__
2014-03-15 09:59:03 -07:00
*/
#ifndef DEBUGRANDOM
INT32 P_RandomKey(INT32 a)
{
#else
INT32 P_RandomKeyD(const char *rfile, INT32 rline, INT32 a)
{
2014-03-17 05:13:16 -07:00
CONS_Printf("P_RandomKey() at: %sp %d\n", rfile, rline);
2014-03-15 09:59:03 -07:00
#endif
return (INT32)((__internal_prng__() * a) >> FRACBITS);
2014-03-15 09:59:03 -07:00
}
/** Provides a random integer in a given range.
* Distribution is uniform.
* NOTE: Maximum range is 65536.
2014-03-15 09:59:03 -07:00
*
* \param a Lower bound.
* \param b Upper bound.
* \return A random integer from [a,b].
* \sa __internal_prng__
2014-03-15 09:59:03 -07:00
*/
#ifndef DEBUGRANDOM
INT32 P_RandomRange(INT32 a, INT32 b)
{
#else
INT32 P_RandomRangeD(const char *rfile, INT32 rline, INT32 a, INT32 b)
{
2014-03-17 05:13:16 -07:00
CONS_Printf("P_RandomRange() at: %sp %d\n", rfile, rline);
2014-03-15 09:59:03 -07:00
#endif
return (INT32)((__internal_prng__() * (b-a+1)) >> FRACBITS) + a;
2014-03-15 09:59:03 -07:00
}
// ----------------------
// PRNG seeds & debugging
// ----------------------
/** Peeks to see what the next result from the PRNG will be.
* Used for debugging.
2014-03-15 09:59:03 -07:00
*
* \return A 'random' fixed point number from [0,1).
* \sa __internal_prng__
2014-03-15 09:59:03 -07:00
*/
fixed_t P_RandomPeek(void)
2014-03-15 09:59:03 -07:00
{
UINT32 r = randomseed;
fixed_t ret = __internal_prng__();
randomseed = r;
return ret;
2014-03-15 09:59:03 -07:00
}
/** Gets the current random seed. Used by netgame savegames.
*
* \return Current random seed.
* \sa P_SetRandSeed
*/
2014-03-17 05:13:16 -07:00
#ifndef DEBUGRANDOM
2014-03-15 09:59:03 -07:00
UINT32 P_GetRandSeed(void)
{
2014-03-17 05:13:16 -07:00
#else
UINT32 P_GetRandSeedD(const char *rfile, INT32 rline)
{
CONS_Printf("P_GetRandSeed() at: %sp %d\n", rfile, rline);
#endif
2014-03-15 09:59:03 -07:00
return randomseed;
}
/** Gets the initial random seed. Used by demos.
*
* \return Initial random seed.
* \sa P_SetRandSeed
*/
2014-03-17 05:13:16 -07:00
#ifndef DEBUGRANDOM
2014-03-15 09:59:03 -07:00
UINT32 P_GetInitSeed(void)
{
2014-03-17 05:13:16 -07:00
#else
UINT32 P_GetInitSeedD(const char *rfile, INT32 rline)
{
CONS_Printf("P_GetInitSeed() at: %sp %d\n", rfile, rline);
#endif
2014-03-15 09:59:03 -07:00
return initialseed;
}
/** Sets the random seed.
* Used at the beginning of the game, and also for netgames.
*
* \param rindex New random index.
* \sa P_GetRandSeed
*/
2014-03-17 05:13:16 -07:00
#ifndef DEBUGRANDOM
2014-03-15 09:59:03 -07:00
void P_SetRandSeed(UINT32 seed)
{
2014-03-17 05:13:16 -07:00
#else
void P_SetRandSeedD(const char *rfile, INT32 rline, UINT32 seed)
{
CONS_Printf("P_SetRandSeed() at: %sp %d\n", rfile, rline);
#endif
2014-03-15 09:59:03 -07:00
randomseed = initialseed = seed;
}
/** Gets a randomized seed for setting the random seed.
*
* \sa P_GetRandSeed
*/
UINT32 M_RandomizedSeed(void)
{
return ((totalplaytime & 0xFFFF) << 16)|(rand() & 0xFFFF);
}