I have a thread im trying to run in Java, for a game Im making. The thread essentially sleeps for a bit, updates the objects, then calls repaint(). Seems like it should work great, it looks like the code Ive found on the internet, but it doesn't work.
The code is here:
@Override
public void run() {
int sleep = 500;
Dimension dim = getSize();
while(true){
try {
Thread.sleep(sleep);
System.out.println("Sleeping!");
} catch (InterruptedException e) {
System.out.println("interrupted");
}
for(int i = 0 ; i < poop.size() ; i++){
poop.get(i).update(dim.width, dim.height);
System.out.println("Y is: "+poop.get(i).getYCoord()+" Step is: "+poop.get(i).getYStep());
}
repaint();
}
}
The problem occurs when I put the try catch block into the for loop, that calls fine, the System.out prints the Y coordinate as well, but the update doesn't work anymore. Any ideas would be awesome. IF you need more code, tell me, Ill put the update code on here too. Also treat me like a beginner to threads casue I more or less am, also a beginner more or less to the swing library im using.
Here's the update() code:
@Override public void update(int screenWidth, int screenHeight)
{
xCoord += xStep;
if (xCoord > screenWidth) {
xCoord = 0;
} else if (xCoord < 0) {
xCoord = screenWidth;
}
yCoord += yStep;
if (yCoord > screenHeight) {
yCoord = 0;
} else if (yCoord < 0) {
yCoord = screenHeight;
}
}