summaryrefslogtreecommitdiffstats
path: root/src/FastRandom.cpp
blob: 42bf5f3f90b2a925e973654f5c5c27eaa82028cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185

// FastRandom.cpp

// Implements the cFastRandom class representing a fast random number generator

#include "Globals.h"
#include <time.h>
#include "FastRandom.h"





#if 0 && defined(_DEBUG)
// Self-test
// Both ints and floats are quick-tested to see if the random is calculated correctly, checking the range in ASSERTs,
// and if it performs well in terms of distribution (checked by avg, expected to be in the range midpoint
class cFastRandomTest
{
public:
	cFastRandomTest(void)
	{
		TestInts();
		TestFloats();
	}
	
	
	void TestInts(void)
	{
		printf("Testing ints...\n");
		cFastRandom rnd;
		int sum = 0;
		const int BUCKETS = 8;
		int Counts[BUCKETS];
		memset(Counts, 0, sizeof(Counts));
		const int ITER = 10000;
		for (int i = 0; i < ITER; i++)
		{
			int v = rnd.NextInt(1000);
			ASSERT(v >= 0);
			ASSERT(v < 1000);
			Counts[v % BUCKETS]++;
			sum += v;
		}
		double avg = (double)sum / ITER;
		printf("avg: %f\n", avg);
		for (int i = 0; i < BUCKETS; i++)
		{
			printf("  bucket %d: %d\n", i, Counts[i]);
		}
	}


	void TestFloats(void)
	{
		printf("Testing floats...\n");
		cFastRandom rnd;
		float sum = 0;
		const int BUCKETS = 8;
		int Counts[BUCKETS];
		memset(Counts, 0, sizeof(Counts));
		const int ITER = 10000;
		for (int i = 0; i < ITER; i++)
		{
			float v = rnd.NextFloat(1000);
			ASSERT(v >= 0);
			ASSERT(v <= 1000);
			Counts[((int)v) % BUCKETS]++;
			sum += v;
		}
		sum = sum / ITER;
		printf("avg: %f\n", sum);
		for (int i = 0; i < BUCKETS; i++)
		{
			printf("  bucket %d: %d\n", i, Counts[i]);
		}
	}
} g_Test;

#endif






int cFastRandom::m_SeedCounter = 0;





cFastRandom::cFastRandom(void) :
	m_Seed(m_SeedCounter++),
	m_Counter(0)
{
}





int cFastRandom::NextInt(int a_Range)
{
	ASSERT(a_Range <= 1000000);  // The random is not sufficiently linearly distributed with bigger ranges
	ASSERT(a_Range > 0);
	
	// Make the m_Counter operations as minimal as possible, to emulate atomicity
	int Counter = m_Counter++;
	
	// Use a_Range, m_Counter and m_Seed as inputs to the pseudorandom function:
	int n = a_Range + Counter * 57 + m_Seed * 57 * 57;
	n = (n << 13) ^ n;
	n = ((n * (n * n * 15731 + 789221) + 1376312589) & 0x7fffffff);
	return ((n / 11) % a_Range);
}





int cFastRandom::NextInt(int a_Range, int a_Salt)
{
	ASSERT(a_Range <= 1000000);  // The random is not sufficiently linearly distributed with bigger ranges
	ASSERT(a_Range > 0);
	
	// Make the m_Counter operations as minimal as possible, to emulate atomicity
	int Counter = m_Counter++;
	
	// Use a_Range, a_Salt, m_Counter and m_Seed as inputs to the pseudorandom function:
	int n = a_Range + Counter * 57 + m_Seed * 57 * 57 + a_Salt * 57 * 57 * 57;
	n = (n << 13) ^ n;
	n = ((n * (n * n * 15731 + 789221) + 1376312589) & 0x7fffffff);
	return ((n / 11) % a_Range);
}





float cFastRandom::NextFloat(float a_Range)
{
	// Make the m_Counter operations as minimal as possible, to emulate atomicity
	int Counter = m_Counter++;
	
	// Use a_Range, a_Salt, m_Counter and m_Seed as inputs to the pseudorandom function:
	int n = (int)a_Range + Counter * 57 + m_Seed * 57 * 57;
	n = (n << 13) ^ n;
	n = ((n * (n * n * 15731 + 789221) + 1376312589) & 0x7fffffff);
	
	// Convert the integer into float with the specified range:
	return (((float)n / (float)0x7fffffff) * a_Range);
}





float cFastRandom::NextFloat(float a_Range, int a_Salt)
{
	// Make the m_Counter operations as minimal as possible, to emulate atomicity
	int Counter = m_Counter++;
	
	// Use a_Range, a_Salt, m_Counter and m_Seed as inputs to the pseudorandom function:
	int n = (int)a_Range + Counter * 57 + m_Seed * 57 * 57 + a_Salt * 57 * 57 * 57;
	n = (n << 13) ^ n;
	n = ((n * (n * n * 15731 + 789221) + 1376312589) & 0x7fffffff);
	
	// Convert the integer into float with the specified range:
	return (((float)n / (float)0x7fffffff) * a_Range);
}





int cFastRandom::GenerateRandomInteger(int a_Begin, int a_End)
{
	cFastRandom Random;
	return Random.NextInt(a_End - a_Begin + 1) + a_Begin;
}