The c#/XNA process for creating random numbers is pretty quick and easy, however, it is quite possibly the worst distributing random number generator I have ever seen. Is there a better method that is easy to implement for c#/XNA?

rand.Next() just doesn't suit my needs.

from:

static private Random rand = new Random();

I randomly place objects, all over my program. sometimes 10, sometimes 200.

When calling for random objects (the x val and y val are both random on a 2d plane), they group. The generation code is clean and calls them good, iterated cleanly and pulls a new random number with each value. But they group, noticeably bad, which isn't very good with random numbers after all. I'm intermediate skill with c#, I crossed over from as3, which seemed to handle randomness better.

I am well-aware that they are pseudo random, but C# on a windows system, the grouping is grotesque.

link|improve this question

which random number generation process are you referring to? System.Random ? – Alastair Pitts Oct 3 '11 at 0:04
What are your needs? – PostMan Oct 3 '11 at 0:22
I updated, with a bit more info. And obligatory moaning + whining. – SimpleRookie Oct 3 '11 at 0:35
feedback

3 Answers

up vote 2 down vote accepted

Can you use System.Security.Cryptography.RandomNumberGenerator from XNA?

var rand = RandomNumberGenerator.Create();
byte[] bytes = new byte[4];

rand.GetBytes(bytes);

int next = BitConverter.ToInt32(bytes, 0);

To get a value within a min/max range:

static RandomNumberGenerator _rand = RandomNumberGenerator.Create();

static int RandomNext(int min, int max)
{
    if (min > max) throw new ArgumentOutOfRangeException("min");

    byte[] bytes = new byte[4]; 

    _rand.GetBytes(bytes);

    uint next = BitConverter.ToUInt32(bytes, 0);

    int range = max - min;

    return (int)((next % range) + min);
}
link|improve this answer
How would one set the min and max for that method? – SimpleRookie Oct 3 '11 at 0:20
1  
Could you give an example of what your min/max values are? – adrift Oct 3 '11 at 0:41
0-10, 1-200, -100-100, standard stuff. – SimpleRookie Oct 3 '11 at 0:50
1  
@SimpleRookie - please see my edit. I added code to get a random number within a range. I'm curious to see if the distribution is better than the standard Random.Next. – adrift Oct 3 '11 at 1:23
Yes. It is MUCH better in all instances I have tested. – SimpleRookie Oct 3 '11 at 3:21
show 2 more comments
feedback

For my project I use simple XOR algorythm. I don't know how good it distributes numbers, but it is easy to implement:

http://www.codeproject.com/KB/cs/fastrandom.aspx

link|improve this answer
feedback

It may also depend on how you're using System.Random. As a general rule, it is not a good idea to create new instances of Random over and over, as Random objects created at about the same time will very likely be seeded with the same random number (by default, time is used as the seed.) Instead, create a single instance of Random and use just that instance throughout your program.

Unless the goal is security, which is probably not the case here, you will be better off just using System.Random.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.