定时器无法停止(可能是GUI错误)

时间:2012-08-29 19:30:57

标签: java swing timer

我正在尝试为使用计时器的交通灯模拟创建动画。有一个按钮可以停止模拟,但单击它似乎不会影响动画。我确实检查了动画,但动画看起来像是不同的地方。请帮忙。

在主要课程中:

DataModels dm = new DataModels();
Simulation sm = new Simulation(dm);
sm.go();

这是模拟课程:

public class Simulation extends JPanel implements ActionListener {
    DataModels dm;
    Timer tm = new Timer(20, this);
    private boolean ss = false;

    public Simulation(DataModels dm) {
        this.dm = dm;
        // redLightTime= dm.getRedLight()*1000;
    }

    public void go() {
        sm = new Simulation(dm);
        simulation = new JFrame();
        simulation.setTitle("Traffic light and Car park Siumulation");
        simulation.setSize(800, 700);
        simulation.setResizable(false);
        simulation.setVisible(true);
        simulation.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        simulation.add(sm, BorderLayout.CENTER);

        // Command button panel
        JPanel command = new JPanel();
        command.setPreferredSize(new Dimension(800, 100));
        // Pause or play button
        JButton pauseplayB = new JButton("Pause");
        pauseplayB.setSize(new Dimension(50, 50));
        pauseplayB.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent e) {
                // Execute when button is pressed
                ss = true;
                System.out.println("You clicked the button");
            }
        });
        command.add(pauseplayB);
        JButton stopB = new JButton("Stop");
        JButton saveB = new JButton("Save");

        command.setLayout(new GridLayout(1, 1));
        command.add(stopB);
        command.add(saveB);
        simulation.add(command, BorderLayout.SOUTH);
    }

现在paintComponent会根据计时器更改而改变。以下代码也在Simulation类中。

public void paintComponent(Graphics g) {
    // Many other actions
    // ....
    startAnimation();
}

public void startAnimation() {
    if ( !false) {
        tm.start();
    } else {
        tm.stop();
    }
    // Checking button click
    System.out.println(ss);
}

根据控制台输出,ss值永远不会改变。

2 个答案:

答案 0 :(得分:4)

按钮的动作监听器应调用该函数以某种方式停止计时器,而不是依赖paint事件来执行此操作。

编辑:这是一些代码:)

public void actionPerformed(ActionEvent e) {
    // Execute when button is pressed
    ss = true;
    System.out.println("You clicked the button");
    startAnimation();
}

startAnimation方法应该有if(!ss)而不是if(!false)

答案 1 :(得分:3)

除了JTMon的建议,你的startAnimation方法还包含一个逻辑炸弹

public void startAnimation() {
    if ( !false) { //<-- this will ALWAYS be true
        tm.start();
    } else {
        tm.stop();
    }
    // Checking button click
    System.out.println(ss);
}

控制计时器的if语句将始终尝试&amp;启动计时器