/*
* random.cxx
*
* ISAAC random number generator by Bob Jenkins.
*
* Portable Windows Library
*
* Copyright (c) 1993-2001 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Contributor(s): ______________________________________.
*
* Based on code originally by Bob Jenkins.
*
* $Log: random.cxx,v $
* Revision 1.5 2003/02/20 23:32:00 robertj
* More RTEMS support patches, thanks Sebastian Meyer.
*
* Revision 1.4 2001/03/03 05:12:47 robertj
* Fixed yet another transcription error of random number generator code.
*
* Revision 1.3 2001/02/28 04:27:35 robertj
* Fixed stupid error in random number seeding, infinite loop.
*
* Revision 1.2 2001/02/27 03:33:44 robertj
* Changed random number generator due to licensing issues.
*
* Revision 1.1 2000/02/17 12:05:02 robertj
* Added better random number generator after finding major flaws in MSVCRT version.
*
*/
#ifdef __GNUC__
#pragma implementation "random.h"
#endif
#include <ptlib.h>
#include <ptclib/random.h>
///////////////////////////////////////////////////////////////////////////////
// PRandom
PRandom::PRandom()
{
SetSeed((DWORD)(time(NULL)+clock()));
}
PRandom::PRandom(DWORD seed)
{
SetSeed(seed);
}
#define mix(a,b,c,d,e,f,g,h) \
{ \
a^=b<<11; d+=a; b+=c; \
b^=c>>2; e+=b; c+=d; \
c^=d<<8; f+=c; d+=e; \
d^=e>>16; g+=d; e+=f; \
e^=f<<10; h+=e; f+=g; \
f^=g>>4; a+=f; g+=h; \
g^=h<<8; b+=g; h+=a; \
h^=a>>9; c+=h; a+=b; \
}
void PRandom::SetSeed(DWORD seed)
{
int i;
DWORD a,b,c,d,e,f,g,h;
DWORD *m,*r;
randa = randb = randc = 0;
m=randmem;
r=randrsl;
for (i=0; i<RandSize; i++)
r[i] = seed++;
a=b=c=d=e=f=g=h=0x9e3779b9; /* the golden ratio */
for (i=0; i<4; ++i) /* scramble it */
{
mix(a,b,c,d,e,f,g,h);
}
/* initialize using the the seed */
for (i=0; i<RandSize; i+=8)
{
a+=r[i ]; b+=r[i+1]; c+=r[i+2]; d+=r[i+3];
e+=r[i+4]; f+=r[i+5]; g+=r[i+6]; h+=r[i+7];
mix(a,b,c,d,e,f,g,h);
m[i ]=a; m[i+1]=b; m[i+2]=c; m[i+3]=d;
m[i+4]=e; m[i+5]=f; m[i+6]=g; m[i+7]=h;
}
/* do a second pass to make all of the seed affect all of m */
for (i=0; i<RandSize; i+=8)
{
a+=m[i ]; b+=m[i+1]; c+=m[i+2]; d+=m[i+3];
e+=m[i+4]; f+=m[i+5]; g+=m[i+6]; h+=m[i+7];
mix(a,b,c,d,e,f,g,h);
m[i ]=a; m[i+1]=b; m[i+2]=c; m[i+3]=d;
m[i+4]=e; m[i+5]=f; m[i+6]=g; m[i+7]=h;
}
randcnt=0;
Generate(); /* fill in the first set of results */
randcnt=RandSize; /* prepare to use the first set of results */
}
#define ind(mm,x) (*(DWORD *)((BYTE *)(mm) + ((x) & ((RandSize-1)<<2))))
#define rngstep(mix,a,b,mm,m,m2,r,x) \
{ \
x = *m; \
a = (a^(mix)) + *(m2++); \
*(m++) = y = ind(mm,x) + a + b; \
*(r++) = b = ind(mm,y>>RandBits) + x; \
}
unsigned PRandom::Generate()
{
if (randcnt--)
return randrsl[randcnt];
register DWORD a,b,x,y,*m,*mm,*m2,*r,*mend;
mm=randmem; r=randrsl;
a = randa; b = randb + (++randc);
for (m = mm, mend = m2 = m+(RandSize/2); m<mend; )
{
rngstep( a<<13, a, b, mm, m, m2, r, x);
rngstep( a>>6 , a, b, mm, m, m2, r, x);
rngstep( a<<2 , a, b, mm, m, m2, r, x);
rngstep( a>>16, a, b, mm, m, m2, r, x);
}
for (m2 = mm; m2<mend; )
{
rngstep( a<<13, a, b, mm, m, m2, r, x);
rngstep( a>>6 , a, b, mm, m, m2, r, x);
rngstep( a<<2 , a, b, mm, m, m2, r, x);
rngstep( a>>16, a, b, mm, m, m2, r, x);
}
randb = b; randa = a;
randcnt = RandSize-1;
return randrsl[randcnt];
}
#ifdef P_RTEMS
static PMutex mutex;
#endif
unsigned PRandom::Number()
{
#ifndef P_RTEMS
static PMutex mutex;
#endif
PWaitAndSignal wait(mutex);
static PRandom rand;
return rand;
}
// End Of File ///////////////////////////////////////////////////////////////
syntax highlighted by Code2HTML, v. 0.9.1