MultiThreading Swing事件调度程序线程

时间:2012-11-03 11:21:03

标签: java multithreading swing event-dispatch-thread

我已经有一篇与多线程问题相关的帖子,但我有一些新问题+代码。我有一个多球游戏项目,它要求我解析XML文件以获取有关球的信息(如大小,速度,初始位置等)。现在,我想创建一个不同的线程来解析XML文件,但我无法找到一种方法来实现它。这是我的代码:

main()从这里开始:

public class BounceBallApp extends JFrame{

    public BounceBallApp()
    {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setTitle("BounceBallApp");          
        setSize(300,300);       
        setVisible(true);
        add(new BallWorld());
        validate();
    }

    public static void main(String[] args) 
    {
        /*Create main GUI in the Event Dispatch Thread*/
        SwingUtilities.invokeLater(new Runnable()
        {
            public void run()
            {
                new BounceBallApp(); //main frame
            }
        });

    }
}

在BallWorld()的构造函数中,我有一个内部类BallContainer(),它包含一个Start按钮:

jbtStart.addActionListener(new ActionListener()
            {public void actionPerformed(ActionEvent e)
            {
                //Populate the ballList arraylist
                if(filePathField.getText().equals(" "))
                {
                    JOptionPane.showMessageDialog(null, "Please input the XML file","Information", JOptionPane.INFORMATION_MESSAGE);        
                }
                else
                {
                    XMLFilePath = filePathField.getText();

                    ballList = new BallList(XMLFilePath);//I want to put this in a thread
                    JOptionPane.showMessageDialog(null,"Game started!","Bouncing Balls",JOptionPane.INFORMATION_MESSAGE);
                    for(Ball ball:ballList.ballsArrayList) 
                    {
                        timer.setDelay(1000/ball.getSpeed()); //change the delay of the timer to the ball's speed
                        timer.start(); //start the timer
                        bTimer = true; //timer is now on                    
                    }
                }

            }
            });

        }

现在的问题是,如果我将解析过程放在另一个线程中,那么我必须等待ballsArrayList填充才能继续应用程序。我正在考虑使用invokeAndWait(),但我读到无法从Event Dispatch Thread调用该方法。那么,我怎样才能做到这一点?还是值得的? 另外,我想移动计算将球(计算x,y坐标)移动到一个线程,但同样,我不知道如何实现它。

for(Ball ball:ballList.ballsArrayList) 
            {
                ball.draw(g);                   
                ball.move(ballContainerWidth,ballContainerHeight,buttonPanel.getHeight());                  
            }

public void move(int ballContainerWidth,int ballContainerHeight,int buttonPanelHeight)
 {

     if((this.getX()+this.getsize()+this.getDx()) > ballContainerWidth) 
        {
            this.setDx(-Math.abs(this.getDx()));
        }

        //the height/depth to which the balls can bounce is the (main ball container height) minus (button panel height)
        if((this.getY()+this.getsize()+this.getDy()) > ballContainerHeight-buttonPanelHeight) 
        {
            this.setDy(-Math.abs(this.getDy()));
        }

        if((this.getX()-this.getsize()) < 0 )
        {
            this.setDx(Math.abs(this.getDx()));
        }

        if((this.getY()-this.getsize()) < 0 )
        {
            this.setDy(Math.abs(this.getDy()));
        }


        int newX = (int)Math.round((this.getX()+this.getDx()));
        int newY = (int)Math.round((this.getY()+this.getDy()));
        this.setX(newX);
        this.setY(newY);
 }

很抱歉很长的帖子,但多线程对我来说都是新手。我有点困惑。

1 个答案:

答案 0 :(得分:2)

初始加载文件

我个人会选择以下方法之一

  • 通过在启动期间解析所有文件来增加程序的启动时间。对于一些XML文件,这种开销可能非常小。如果花费的时间太长,您可以考虑展示splash screen
  • 按下开始按钮时加载XML文件,但显示进度条直到加载完成。之后开始游戏。 SwingWorker可以帮助您解决此问题。可以在Swing documentationhere on SO
  • 中找到示例

更新球位置

如果计算与此处显示的一样简单,我只需使用javax.swing.Timer以常规时间间隔更新位置,并在事件调度线程上进行计算。

如果你想仅仅为了练习在后台线程上进行计算,我仍然会选择计算后台线程上的位置。计算应该使用只知道该后台线程的局部变量。计算新位置后,使用SwingUtilities#invokeLater更新事件发送线程上球的位置。这使您可以在paint操作期间访问该位置,而无需担心线程问题。可能更容易搞乱锁。