active questions tagged random-number-generator+game-development - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T17:00:32Zhttp://stackoverflow.com/feeds/tag/random-number-generator+game-developmenthttp://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/910215/need-for-predictable-random-generator66Need for predictable random generatorThinker2009-05-26T11:31:40Z2009-07-27T18:12:00Z
<p>I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be critical. The problem is I got very bad real life results -- sometimes players get 3 crits in 5 hits, sometimes none in 15 hits. Battles are rather short (3-10 hits) so it's important to get good random distribution.</p>
<p>Currently I use PHP mt_rand(), but we are just moving our code to C++, so I want to solve this problem in our game's new engine.</p>
<p>I don't know if the solution is some uniform random generator, or maybe to remember previous random states to force proper distribution.</p>
http://stackoverflow.com/questions/977354/generating-non-uniform-random-numbers3Generating non-uniform random numbersRobert Greiner2009-06-10T18:24:12Z2009-06-21T10:06:19Z
<p>Can you tell me any ways to generate <b>non-uniform</b> random numbers?<br />
I am using Java but the code examples can be in whatever you want.</p>
<p>One way is to create a skewed distribution by adding two uniform random numbers together (i.e. rolling 2 dice).</p>
http://stackoverflow.com/questions/822323/how-to-generate-a-random-number-in-c2How to generate a random number in C?Lucas McCoy2009-05-04T22:07:59Z2009-05-31T08:14:18Z
<p>Is there a function or will I have to use a third party library?</p>