I'm a bit new to java but I have had a lot of experience in other programming languages. Right now I'm trying to create a simple "scorched earth" style game and I am having trouble getting the landscape to show up. I am using a 2d height field to represent the terrain. In my init method I generate the terrain using a few sin functions and random numbers. I found this technique in a tutorial online.
float flat, peak;
flat = 70; peak = 50;
int rand1, rand2, rand3;
rand1 = gen.nextInt() % 4 + 1;
rand2 = gen.nextInt() % 4 + 1;
rand3 = gen.nextInt() % 4 + 1;
for (int a=0; a<750; a++) {
double height = peak / rand1 * Math.sin((double)a / flat * rand1 + rand1);
height += peak / rand2 * Math.sin((double)a / flat * rand2 + rand2);
height += peak / rand3 * Math.sin((double)a / flat * rand3 + rand3);
height += 250;
heights[a] = (int)height;
}
Then in my paint() method I draw the terrain, with height being represented as pixels from the bottom of the screen, which is 750 pixels long and 500 high.
public void paint(Graphics g)
{
g.setColor(Color.green);
for (int a=0; a<750; a++) {
g.fillRect(a, 500-heights[a], 1, heights[a]);
}
}
However, I am having a major problem getting the terrain to show up. About half the time it shows and looks nice and random, just how I want it to. The other times it doesn't show at all and all of the values in my heights[] array are all set to zero, as if the init method was never called. Does anyone know what's going on?
initmethod called from? How and where is theheightscreated? – GETah May 6 '12 at 21:22