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?