我在 Swing 中制作一个简单的塔防游戏,当我尝试在屏幕上放置许多精灵(超过 20 个)时遇到了性能问题。
整个游戏发生在具有 setIgnoreRepaint(true) 的 JPanel 上。这是paintComponent方法(con是Controller):
public void paintComponent(Graphics g){
super.paintComponent(g);
//Draw grid
g.drawImage(background, 0, 0, null);
if (con != null){
//Draw towers
for (Tower t : con.getTowerList()){
t.paintTower(g);
}
//Draw targets
if (con.getTargets().size() != 0){
for (Target t : con.getTargets()){
t.paintTarget(g);
}
//Draw shots
for (Shot s : con.getShots()){
s.paintShot(g);
}
}
}
}
Target 类简单地在其当前位置绘制一个 BufferedImage。getImage 方法不会创建新的 BufferedImage,它只是返回 Controller 类的实例:
public void paintTarget(Graphics g){
g.drawImage(con.getImage("target"), getPosition().x - 20, getPosition().y - 20, null);
}
每个目标都运行一个摆动计时器来计算其位置。这是它调用的 ActionListener:
public void actionPerformed(ActionEvent e) {
if (!waypointReached()){
x += dx;
y += dy;
con.repaintArea((int)x - 25, (int)y - 25, 50, 50);
}
else{
moving = false;
mover.stop();
}
}
private boolean waypointReached(){
return Math.abs(x - currentWaypoint.x) <= speed && Math.abs(y - currentWaypoint.y) <= speed;
}
除此之外,仅在放置新塔时才调用 repaint()。
我怎样才能提高性能?