java - swing中的多线程渲染

标签 java swing graphics2d

我只是在考虑为我的 java2d 游戏创建一个多线程渲染器,其中每个线程负责渲染自己的 swing 组件,并想出了一个简单的程序来尝试实现这一点。

*我知道 Thread.sleep 不是首选方法,但它有 在我使用的单线程渲染上工作顺利 主动渲染,我还没有使用 Swingtimer 进行测试,但对我来说 知识 Thread.sleep 使调用线程 hibernate ,因此不能 问题。

(问题)该程序在四个线程中创建四个面板,每个面板中都有一个弹跳球,但只有第一个创建的线程执行任何操作,其他线程根本没有启动(可以使用 sysout 进行验证)运行方法)。因此只有一个线程进行渲染,其他线程永远没有机会运行,sysout: System.out.println("Ballbouncer: "+ this + "running."); 确认了这一点并且视觉效果也是如此(添加图像)。

BallBouncer(可运行)

public class BallBouncer implements Runnable {
private ColoredPanel ballContainer;
private List<Ellipse2D.Double> balls;
public static final Random rnd = new Random();
private double speedX, speedY;

public BallBouncer(ColoredPanel container) {
    this.ballContainer = container;
    this.balls = new ArrayList<>();
    balls.add(container.getBall());
    this.speedX = 10 * rnd.nextDouble() - 5;
    this.speedY = 10 * rnd.nextDouble() - 5;
}

public BallBouncer(List<ColoredPanel> containers) {
    for (ColoredPanel p : containers) {
        new BallBouncer(p).run();
    }
}

@Override
public void run() {
    while (true) {
        System.out.println("Ballbouncer: " + this + " running.");
        moveBall();
        ballContainer.repaint();
        try {
            Thread.sleep(15);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

private void moveBall() {
    for (Ellipse2D.Double ball : balls) {
        ball.x += speedX;
        ball.y += speedY;

        if (ball.x < 0
                || ball.x + ball.getWidth() > ballContainer.getWidth()) {
            speedX *= -1;
        }
        if (ball.y < 0
                || ball.y + ball.getHeight() > ballContainer.getHeight()) {
            speedY *= -1;
        }
    }


}

容器

public class ColoredPanel extends JPanel {
private Ellipse2D.Double circle;

public ColoredPanel(Color color) {
    circle = new Ellipse2D.Double(0, 0, 10, 10);
    setBackground(color);
}

public Ellipse2D.Double getCircle() {
    return circle;
}

@Override
protected void paintComponent(Graphics g) {
    super.paintComponent(g);
    Graphics2D g2d = (Graphics2D) g.create();
    g2d.setColor(getBackground().darker());
    g2d.fill(circle);
}

@Override
@Transient
public Dimension getPreferredSize() {
    return new Dimension(400, 400);
}

public Double getBall() {
    return getCircle();
}

主要

public class ColoredPanelContainer extends JPanel {

private List<ColoredPanel> panels = new ArrayList<>();

public ColoredPanelContainer() {
    setUpPanels();
    setBackground(Color.black);
}

private void setUpPanels() {
    for (int i = 0; i < 4; i++) {
        Color color = new Color(BallBouncer.rnd.nextInt(256),
                BallBouncer.rnd.nextInt(256), BallBouncer.rnd.nextInt(256));
        panels.add(new ColoredPanel(color));
    }
    for (int i = 0; i < 4; i++) {
        add(panels.get(i));
    }
}

@Override
@Transient
public Dimension getPreferredSize() {
    return new Dimension(1000, 1000);
}

public List<ColoredPanel> getPanels() {
    return panels;
}

public static void main(String[] args) {
    JFrame frame = new JFrame();
    ColoredPanelContainer container = new ColoredPanelContainer();
    frame.getContentPane().add(container);
    frame.pack();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    new BallBouncer(container.getPanels());
}
}

请注意,球仅在左侧面板中弹跳(第一个启动的线程),其他面板始终保持静止。 enter image description here

最佳答案

你正在这样做:

public BallBouncer(List<ColoredPanel> containers) {
    for (ColoredPanel p : containers) {
        new BallBouncer(p).run();
    }
}

这不是启动线程的正确方法。您要做的就是直接按顺序运行 run 方法。这意味着代码在调用构造函数的同一线程中的循环中运行。

You should read this tutorial.它解释了如何在 Swing 中使用线程。即如何使用javax.swing.SwingWorkerSwingUtilities.invoke*There is also this tutorial ,它解释了如何使用 Swing Timer 类。

并且,只是为了进一步了解线程:Here are ways to start threads in java when you're not using swing在编写 Swing 应用程序时您不想使用这些示例

关于java - swing中的多线程渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16907817/

相关文章:

java - 有没有什么方法可以参数 Jess,使其在同一规则中永远不会有太多具有不同名称的变量?

java - setDefaultCloseOperation 改为显示 JFrame

java - JTable 中的超链接未触发

java - Firebase:修改/更新字符串编号

java - Selenium Web 驱动程序 getPageSource() 放错了包含转义值的属性和值

java - 如何在按下按钮时重复调用方法(Java with Swing)?

尝试在 OS X Mavericks 中绘制图形时 Java 崩溃

java - Graphics2D 转换结果与手动转换不匹配

java - 如何绘制透明线?

java - 如何在 Java 中按日期对 ArrayList 的元素进行排序?