Problemy, rozwiązania, recepty
Jacek Bzdak
Przykładowy kod dostępny jest na githubie:
Komponent wyświetlający kulki wyświetla je (nie martwiąc się symulacją!)
@Override
protected void paintComponent(Graphics g) {
setForeground(Color.BLUE);
Graphics2D g2 = (Graphics2D)g;
g2.clearRect(0, 0, getWidth(), getHeight());
for(Ball b: engine.getBalls()){
printBall(g2, b);
}
}
g.fillOval((int) x, (int) y, (int) radiusX*2, (int) radiusY*2);
Kod z symulacją robi symulację:
public void iterate(BallContainer ballContainer, double dt){
List<Ball> balls = ballContainer.getBalls();
for (int ii=0;ii<balls.size(); ii++){
Ball b1 = balls.get(ii);
checkCollisions(ballContainer, b1, ii);
b1.iteration(dt);
}
}
Stworzenie obiektu timer
timer = new Timer(100, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (engine != null){
engine.iterate(ballContainer, 0.05);
simulationPanel2D.repaint();
}
}
});
timer.start();
animation @Override
public void start() {
super.start();
isStarted = true;
animationThread = new Thread(){
@Override
public void run() {
while (true){
if (!isStarted){
return;
}
engine.iterate(ballContainer, 0.01);
try {
Thread.sleep(1);
} catch (InterruptedException e) {
//noop
}
}
}
};
timer.start();
animationThread.start();
}
@Override
public void stop() {
super.stop();
try {
animationThread.join();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
return;
}
timer.stop();
isStarted = false;
}
while (true){
if (!isStarted){
return;
}
isStarted = false;
animationThread.join();
Maszyna wirtualna może dokonać optymalizacji która wyrzuca sprawdzenie poza pętlę while (pętla ta nie zmienia stanu isStarted), więc z punktu widzenia wątku optymalizacja ta jest legalna.
threadLock.lock();
try{
engine.iterate(ballContainer, 0.01);
} finally {
threadLock.unlock();
}