Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having a small conceptual problem.

I need to seed my random so that I always get the same radom when I reload my levels.

So therefore I need to use the

http://download.oracle.com/javase/1.4.2/docs/api/java/util/Random.html#setSeed(long)

the problem I have then is that I then need to do a

Random r = new Random();
r.setSeed(currentSeed);

the problem is that I have then have to pass/fetch this instance of r across my code.

I would like to know if there is solution close to C:

Math.Random(currentSeed);

the closest I have now is

ClassA:
public static Random r;
private int currentSeed = ...;
initRandom(){
   r = new Radom(currentSeed);
}

ClassB:
...
//instead of Math.random();
r.random();
...

but that doesn't seem very nice ...

any ideas?

share|improve this question

2 Answers

up vote 1 down vote accepted

Yes, you need to pass the same Random instance around, either as a parameter, or by mean of a global (static variable or singleton).

share|improve this answer
dam that an annoying restriction lol I hate my boss for changing his mind :P – Jason Rogers Dec 2 '10 at 8:25

If you are using the same random across classes and you want reproduce-ability, you need to ensure that it is used in the same order as well. If your classes execute in a different order e.g. if its multi-threaded you will get a different result.

share|improve this answer
No multithread, reading from a xml and strored in a list so I always ge t the same order ^^ – Jason Rogers Dec 2 '10 at 8:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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