What is a good random number generator for a game? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T17:48:11Z http://stackoverflow.com/feeds/question/1046714 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game 11 What is a good random number generator for a game? mmyers 2009-06-25T23:34:43Z 2009-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#1046725 0 Answer by Andrew Coleson for What is a good random number generator for a game? Andrew Coleson 2009-06-25T23:38:45Z 2009-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#1046728 28 Answer by David Johnstone for What is a good random number generator for a game? David Johnstone 2009-06-25T23:40:55Z 2009-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#1046729 9 Answer by Crashworks for What is a good random number generator for a game? Crashworks 2009-06-25T23:41:44Z 2009-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#1046735 3 Answer by GMan for What is a good random number generator for a game? GMan 2009-06-25T23:43:43Z 2009-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#1046762 4 Answer by Nosredna for What is a good random number generator for a game? Nosredna 2009-06-25T23:57:04Z 2009-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#1046777 0 Answer by AraK for What is a good random number generator for a game? AraK 2009-06-26T00:03:45Z 2009-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#1046797 0 Answer by Stobor for What is a good random number generator for a game? Stobor 2009-06-26T00:11:43Z 2009-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#1046842 2 Answer by Ape-inago for What is a good random number generator for a game? Ape-inago 2009-06-26T00:27:21Z 2009-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&amp;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#1048406 18 Answer by Ólafur Waage for What is a good random number generator for a game? Ólafur Waage 2009-06-26T10:35:28Z 2009-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#1048423 0 Answer by Kylotan for What is a good random number generator for a game? Kylotan 2009-06-26T10:38:45Z 2009-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#1048449 1 Answer by Vexatus for What is a good random number generator for a game? Vexatus 2009-06-26T10:44:09Z 2009-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#1048491 2 Answer by StuperUser for What is a good random number generator for a game? StuperUser 2009-06-26T10:55:26Z 2009-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#1049643 7 Answer by the-locster for What is a good random number generator for a game? the-locster 2009-06-26T15:09:49Z 2009-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#1205808 1 Answer by Armin Ronacher for What is a good random number generator for a game? Armin Ronacher 2009-07-30T10:44:14Z 2009-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 &lt;time.h&gt; 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&lt;unsigned int&gt;(time(0))); } unsigned int utils::rand() { static const int shift = sizeof(int) / 2; s_rand_high = (s_rand_high &gt;&gt; shift) + (s_rand_high &lt;&lt; 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#1206692 2 Answer by sdcvvc for What is a good random number generator for a game? sdcvvc 2009-07-30T13:42:03Z 2009-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#1206774 0 Answer by zooropa for What is a good random number generator for a game? zooropa 2009-07-30T13:55:40Z 2009-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#1210503 0 Answer by Marsh Ray for What is a good random number generator for a game? Marsh Ray 2009-07-31T03:05:29Z 2009-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#1221077 1 Answer by Michael Foukarakis for What is a good random number generator for a game? Michael Foukarakis 2009-08-03T07:33:48Z 2009-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#1223198 0 Answer by computergeek6 for What is a good random number generator for a game? computergeek6 2009-08-03T16:08:49Z 2009-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#1225151 0 Answer by Rob Farley for What is a good random number generator for a game? Rob Farley 2009-08-03T23:46:33Z 2009-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#1225195 0 Answer by Jason for What is a good random number generator for a game? Jason 2009-08-04T00:01:00Z 2009-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#1227137 13 Answer by Magic Bob for What is a good random number generator for a game? Magic Bob 2009-08-04T12:12:40Z 2009-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)&amp;15]; b = a^c^(a&lt;&lt;16)^(c&lt;&lt;15); c = state[(index+9)&amp;15]; c ^= (c&gt;&gt;11); a = state[index] = b^c; d = a^((a&lt;&lt;5)&amp;0xDA442D20UL); index = (index + 15)&amp;15; a = state[index]; state[index] = a^b^d^(a&lt;&lt;2)^(b&lt;&lt;18)^(c&lt;&lt;28); return state[index]; } </code></pre> http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1229864#1229864 0 Answer by Ryu for What is a good random number generator for a game? Ryu 2009-08-04T20:51:07Z 2009-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#1616044 1 Answer by geowar for What is a good random number generator for a game? geowar 2009-10-23T21:36:23Z 2009-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>