What is a good random number generator for a game? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T17:48:11Zhttp://stackoverflow.com/feeds/question/1046714http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game11What is a good random number generator for a game?mmyers2009-06-25T23:34:43Z2009-10-23T21:36:23Z
<p>What is a good random number generator to use for a game in C++?</p>
<p>My considerations are:</p>
<ol>
<li>Lots of random numbers are needed, so speed is good.</li>
<li>Players will always complain about random numbers, but I'd like to be able to point them to a reference that explains that I really did my job. </li>
<li>Since this is a commercial project which I don't have much time for, it would be nice if the algorithm either a) was relatively easy to implement or b) had a good non-GPL implementation available.</li>
<li>I'm already using <code>rand()</code> in quite a lot of places, so any other generator had better be good to justify all the changes it would require.</li>
</ol>
<p>I don't know much about this subject, so the only alternative I could come up with is the <a href="http://en.wikipedia.org/wiki/Mersenne%5FTwister" rel="nofollow">Mersenne Twister</a>; does it satisfy all these requirements? Is there anything else that's better?</p>
<p><strong>Edit:</strong> Mersenne Twister seems to be the consensus choice. But what about point #4? Is it really that much better than <code>rand()</code>?</p>
<p><strong>Edit 2:</strong> Let me be a little clearer on point 2: There is no way for players to cheat by knowing the random numbers. Period. I want it random enough that people (at least those who understand randomness) can't complain about it, but I'm not worried about predictions.
That's why I put speed as the top consideration.</p>
<p><strong>Edit 3:</strong> I'm leaning toward the Marsaglia RNGs now, but I'd still like more input. Therefore, I'm setting up a bounty.</p>
<p><strong>Edit 4:</strong> Just a note: I intend to accept an answer just before midnight UTC today (to avoid messing with someone's rep cap). So if you're thinking of answering, don't wait until the last minute!<br />
Also, I like the looks of Marsaglia's XORshift generators. Does anyone have any input about them?</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1046725#10467250Answer by Andrew Coleson for What is a good random number generator for a game?Andrew Coleson2009-06-25T23:38:45Z2009-06-25T23:38:45Z<p>What about <a href="http://www-cs-faculty.stanford.edu/~knuth/programs.html" rel="nofollow">Knuth's RNGs</a>?</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1046728#104672828Answer by David Johnstone for What is a good random number generator for a game?David Johnstone2009-06-25T23:40:55Z2009-06-26T11:34:03Z<p><a href="http://stackoverflow.com/questions/910215/need-for-predictable-random-generator">Sometimes</a> game developers don't want true randomness and a <a href="http://kaioa.com/node/53" rel="nofollow">shuffle bag</a> is more appropriate.</p>
<p>If you do want randomness, the Mersenne twister satisfies your requirements. It is fast, statistically random, has a long period and there are plenty of implementations out there.</p>
<p>Edit: <code>rand()</code> is typically implemented as a <a href="http://en.wikipedia.org/wiki/Linear%5Fcongruential%5Fgenerator" rel="nofollow">linear congruential generator</a>. It's probably best if you make an informed choice of whether or not it's good enough for your purposes.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1046729#10467299Answer by Crashworks for What is a good random number generator for a game?Crashworks2009-06-25T23:41:44Z2009-06-25T23:41:44Z<p>Mersenne Twister is typical in the industry, especially since it lends itself well to SIMD and can be made super fast. <a href="http://www-cs-faculty.stanford.edu/~knuth/programs/rng.c" rel="nofollow">Knuth</a> is popular too (thanks, David).</p>
<p>In most game applications speed is really the critical factor, since players are going to complain about low framerate a lot more than they will complain about the fact that there is a slight bias towards generating a 3 whenever it is preceded by a 7, 2, and 9 in that order.</p>
<p>The exception of course is gambling for money, but there your relevant licensing authority will specifically lay out the algorithms that you can use.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1046735#10467353Answer by GMan for What is a good random number generator for a game?GMan2009-06-25T23:43:43Z2009-07-28T07:37:16Z<p>Mersenne Twister is very good, and it's fast as well. I used it in a game and it's not hard at all to implement or use.</p>
<p>The <a href="http://www.iro.umontreal.ca/~panneton/WELLRNG.html" rel="nofollow">WELL random algorithm</a> was designed as an improvement over the Mersenne Twister. <a href="http://rads.stackoverflow.com/amzn/click/1584505273" rel="nofollow">Game Gems</a> 7 has more info. on it, if you can borrow that or have it.</p>
<p>On that WELL page I linked you to, the number is the period of the algorithm. That is, you can get 2^N - 1 numbers before it needs reseeding, where N is: 512, 1024, 19937, or 44497. Mersenne Twister has a period of N = 19937, or 2^19937 - 1. You'll see this is a <em>very large number</em> :)</p>
<p>The only other thing I can point out is that <a href="http://www.boost.org/" rel="nofollow">boost</a> has a <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/random/index.html" rel="nofollow">random library</a>, which you should find useful.</p>
<p>In response to your edit, yes the Twister or WELL is that much better than rand(). Also, the old modulus trick harms the distribution of the numbers. Even more reason to use boost :)</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1046762#10467624Answer by Nosredna for What is a good random number generator for a game?Nosredna2009-06-25T23:57:04Z2009-06-25T23:57:04Z<p>In a real-time game, there's no way for a player to determine the difference between a "good" generator and a "bad" one. In a turn-based game, you're right--some minority of zealots will complain. They'll even tell you stories, in excruciating detail, of how you ruined their lives with a bad random number generator.</p>
<p>If you need a bunch of genuine random numbers (and you're an online game), you can get some at <a href="http://www.random.org/" rel="nofollow">Random.org</a>. Use them for turn-based games, or as seeds for real-time games.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1046777#10467770Answer by AraK for What is a good random number generator for a game?AraK2009-06-26T00:03:45Z2009-06-26T00:03:45Z<p>I used this class before and it is super-easy to use.</p>
<p><a href="http://www.codeproject.com/KB/recipes/mersennetwisterclass.aspx" rel="nofollow">A Mersenne Twister Class</a></p>
<p>It is a class created from the original C code of the inventor of Mersenne Twister algorithm.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1046797#10467970Answer by Stobor for What is a good random number generator for a game?Stobor2009-06-26T00:11:43Z2009-06-26T00:11:43Z<p>I haven't done a comparison in a long time, but here's a random collections of links, to other people's comparisons:</p>
<ul>
<li>Universität Salzburg's pLab project <a href="http://random.mat.sbg.ac.at/" rel="nofollow">http://random.mat.sbg.ac.at/</a> </li>
<li>Dieharder: a random algorithm test suite <a href="http://www.phy.duke.edu/~rgb/General/dieharder.php" rel="nofollow">http://www.phy.duke.edu/~rgb/General/dieharder.php</a></li>
<li>Wikipedia list of PRNGS <a href="http://en.wikipedia.org/wiki/List_of_random_number_generators" rel="nofollow">http://en.wikipedia.org/wiki/List_of_random_number_generators</a></li>
</ul>
<p>(I'll pop back in with some more later...)</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1046842#10468422Answer by Ape-inago for What is a good random number generator for a game?Ape-inago2009-06-26T00:27:21Z2009-06-26T00:27:21Z<p>I'm a fan of <a href="http://burtleburtle.net/bob/rand/isaacafa.html" rel="nofollow">Isaac</a>, unlike mersense twister, it's crypographically secure (you *can't crack the period by observing the rolls)</p>
<p><a href="http://burtleburtle.net/bob/rand/isaac.html#IBAAcode" rel="nofollow">IBAA</a> (rc4?) is also one that is <a href="http://forums.worldofwarcraft.com/thread.html?topicId=10271177&sid=1" rel="nofollow">used by blizzard</a> to prevent people from predicting the random number used for loot rolls.. I imagine something similar is done w/ diablo II when you are playing off of a battle.net server.</p>
<p>*can't within any reasonable timeframe (centuries?)</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1048406#104840618Answer by Ólafur Waage for What is a good random number generator for a game?Ólafur Waage2009-06-26T10:35:28Z2009-06-26T10:35:28Z<p><a href="http://gamesbyemail.com/News/DiceOMatic" rel="nofollow">Sometimes you just have to go insane.</a></p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1048423#10484230Answer by Kylotan for What is a good random number generator for a game?Kylotan2009-06-26T10:38:45Z2009-06-26T10:38:45Z<p>This doesn't contradict previous answers but does provide a bit of insight into why Mersenne Twister is highly regarded in C++:</p>
<p><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2003/n1452.html" rel="nofollow">A Proposal to Add an Extensible Random Number Facility to the Standard Library</a></p>
<p>Section H gives a rough overview of the pros and cons of more algorithms than you're ever likely to come across, and the whole paper addresses them from the perspective of a C++ programmer.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1048449#10484491Answer by Vexatus for What is a good random number generator for a game?Vexatus2009-06-26T10:44:09Z2009-06-26T10:44:09Z<p>Buy a cheap webcamera, a ionizing smoke detector. Disassemble both of them, smoke detector contain little radioactive material - a source of gamma waves - which will result in firing photons at your webcamera. That's your source of true randomness :)</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1048491#10484912Answer by StuperUser for What is a good random number generator for a game?StuperUser2009-06-26T10:55:26Z2009-06-26T10:55:26Z<p><a href="http://xkcd.net/221/" rel="nofollow">http://xkcd.net/221/</a></p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1049643#10496437Answer by the-locster for What is a good random number generator for a game?the-locster2009-06-26T15:09:49Z2009-06-26T15:09:49Z<p><a href="http://en.wikipedia.org/wiki/George%5FMarsaglia" rel="nofollow">George Marsaglia</a> has developed some of the best and fastest RNGs currently available
<a href="http://en.wikipedia.org/wiki/Multiply-with-carry" rel="nofollow">Multiply-with-carry</a> being a notable one for a uniform distribution.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1205808#12058081Answer by Armin Ronacher for What is a good random number generator for a game?Armin Ronacher2009-07-30T10:44:14Z2009-07-30T10:44:14Z<p>Based on the random number generator by Ian C. Bullard:</p>
<pre><code>// utils.hpp
namespace utils {
void srand(unsigned int seed);
void srand();
unsigned int rand();
}
// utils.cpp
#include "utils.hpp"
#include <time.h>
namespace {
static unsigned int s_rand_high = 1;
static unsigned int s_rand_low = 1 ^ 0x49616E42;
}
void utils::srand(unsigned int seed)
{
s_rand_high = seed;
s_rand_low = seed ^ 0x49616E42;
}
void utils::srand()
{
utils::srand(static_cast<unsigned int>(time(0)));
}
unsigned int utils::rand()
{
static const int shift = sizeof(int) / 2;
s_rand_high = (s_rand_high >> shift) + (s_rand_high << shift);
s_rand_high += s_rand_low;
s_rand_low += s_rand_high;
return s_rand_high;
}
</code></pre>
<p>Why?</p>
<ul>
<li>very, very fast</li>
<li>higher entropy than most standard <code>rand()</code> implementations</li>
<li>easy to understand</li>
</ul>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1206692#12066922Answer by sdcvvc for What is a good random number generator for a game?sdcvvc2009-07-30T13:42:03Z2009-07-30T19:37:26Z<blockquote>
<p>Mersenne Twister seems to be the consensus choice. But what about point #4? Is it really that much better than rand()?</p>
</blockquote>
<p>Check
<a href="http://ianbullard.squarespace.com/journal/2009/4/28/why-you-should-never-use-rand.html" rel="nofollow">http://ianbullard.squarespace.com/journal/2009/4/28/why-you-should-never-use-rand.html</a></p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1206774#12067740Answer by zooropa for What is a good random number generator for a game?zooropa2009-07-30T13:55:40Z2009-07-30T13:55:40Z<p>Here's a <a href="http://www.introgamedev.com/math%5Frandomness.html" rel="nofollow">link</a> to a collection of articles about random numbers</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1210503#12105030Answer by Marsh Ray for What is a good random number generator for a game?Marsh Ray2009-07-31T03:05:29Z2009-07-31T03:05:29Z<blockquote>
<p>I want it random enough that people (at least those who understand randomness)
can't complain about it, but I'm not worried about predictions.</p>
</blockquote>
<p>A-ha!</p>
<p>There's your real requirement!</p>
<p>No one could fault you for using Mersenne Twister in this application.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1221077#12210771Answer by Michael Foukarakis for What is a good random number generator for a game?Michael Foukarakis2009-08-03T07:33:48Z2009-08-03T07:33:48Z<p>I'd vote for the Mersenne Twister as well. Implementations are widely available, it has a very large period of 2^19937 -1, is reasonably fast and passes most randomness tests including the Diehard tests developed by Marsaglia. rand() and Co., being LCGs, produce lower quality deviates and their successive values can be easily inferred.</p>
<p>One point of note, however, is to properly seed MT into a state that passes randomness tests. Usually a LCG like drand48() is used for that purpose.</p>
<p>I'd say the MT satisfies all the requirements you've set (provably), and it'd be an overkill to go for something like MWCG imo.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1223198#12231980Answer by computergeek6 for What is a good random number generator for a game?computergeek62009-08-03T16:08:49Z2009-08-03T16:08:49Z<p>Depending on the target OS, you might be able to use /dev/random. It doesn't really require any implementation, and on Linux (and maybe some other operating systems) it's truly random. The read blocks until sufficient entropy is available, so you might want to read the file and store it in a buffer or something using another thread. If you can't use a blocking read call, you can use /dev/urandom. It generates random data almost as well as /dev/random, but it reuses some random data to give output instantly. It's not as secure, but it could work fine depending on what you plan to do with it.</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1225151#12251510Answer by Rob Farley for What is a good random number generator for a game?Rob Farley2009-08-03T23:46:33Z2009-08-03T23:46:33Z<p>Apparently (I forget where I read it, just like I forget where I read that curry is good to prevent altzheimas), taking the absolute value of the checksum of a newly generated GUID is nicely random. It's a large number, and you can use a modulo of it to shrink it down.</p>
<p>So in SQL (my area), this is ABS(CHECKSUM(NEWID())) % 1000</p>
<p>Rob</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1225195#12251950Answer by Jason for What is a good random number generator for a game?Jason2009-08-04T00:01:00Z2009-08-04T00:01:00Z<p><a href="http://ianbullard.squarespace.com/journal/2009/4/28/why-you-should-never-use-rand.html" rel="nofollow">GameRand</a> </p>
<p>VERY fast compared to other algorithms (according to this doc anyways)</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1227137#122713713Answer by Magic Bob for What is a good random number generator for a game?Magic Bob2009-08-04T12:12:40Z2009-08-04T12:12:40Z<p>There are much better choices than Mersenne Twister nowadays. Here is a RNG called WELL512, designed by the designers of Mersenne, developed 10 years later, and an all around better choice for games. The code is put in the public domain by Dr. Chris Lomont. He claims this implementation is 40% faster than Mersenne, does not suffer from poor diffusion and trapping when the state contains many 0 bits, and is clearly a lot simpler code. It has a period of 2^512; a PC takes over 10^100 years to cycle through the states, so it is large enough.</p>
<p>Here is a paper overviewing PRNGs where I found the WELL512 implementation.
<a href="http://www.lomont.org/Math/Papers/2008/Lomont%5FPRNG%5F2008.pdf" rel="nofollow">http://www.lomont.org/Math/Papers/2008/Lomont_PRNG_2008.pdf</a></p>
<p>So - faster, simpler, created by the same designers 10 years later, and produces better numbers than Mersenne. How can you go wrong? :)</p>
<pre><code>/* initialize state to random bits */
static unsigned long state[16];
/* init should also reset this to 0 */
static unsigned int index = 0;
/* return 32 bit random number */
unsigned long WELLRNG512(void)
{
unsigned long a, b, c, d;
a = state[index];
c = state[(index+13)&15];
b = a^c^(a<<16)^(c<<15);
c = state[(index+9)&15];
c ^= (c>>11);
a = state[index] = b^c;
d = a^((a<<5)&0xDA442D20UL);
index = (index + 15)&15;
a = state[index];
state[index] = a^b^d^(a<<2)^(b<<18)^(c<<28);
return state[index];
}
</code></pre>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1229864#12298640Answer by Ryu for What is a good random number generator for a game?Ryu2009-08-04T20:51:07Z2009-08-04T20:51:07Z<p>I've used the boost random libraries with games in the past. It has mercenne Twister
<a href="http://www.boost.org/doc/libs/1_39_0/libs/random/index.html" rel="nofollow">http://www.boost.org/doc/libs/1_39_0/libs/random/index.html</a></p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1616044#16160441Answer by geowar for What is a good random number generator for a game?geowar2009-10-23T21:36:23Z2009-10-23T21:36:23Z<p>An additional criteria you should consider is thread safety. (And you should be using threads in todays multi-core environments.) Just calling rand from more than one thread can mess with it's deterministic behavior (if your game depends on that). At the very least I'd recommend you switch to rand_r.</p>