0

我正在使用 Jgrapht 构建基于有向加权图的模拟环境。我现在想使用 Jgraph 显示模拟。

虽然我已经弄清楚如何在模拟运行时显示图形并更新它,但我注意到当边权重更新时,整个窗口都会闪烁。目前我正在调用frame.paintComponents()更新窗口。

我相信我可以让它只更新正在变化的个别边缘,但我不熟悉java.awt.

public static void main(String [] args) throws InterruptedException
{

    Simulation newSim = new Simulation(31, .01);//extends ListenableDirectedWeightedGraph

    SimulationViewer applet = new SimulationViewer(newSim);//extends JApplet
    applet.init();

    JFrame frame = new JFrame();
    frame.getContentPane().add(applet);
    frame.setTitle("Simulation Test");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);


    //run simulation
    for (;newSim.getStep() < newSim.getMAX_STEP(); newSim.incrementStep()) {
        BreadthFirstIterator<SimulationBlock, Signal> iter = 
                         new BreadthFirstIterator<SimulationBlock, Signal>(newSim, newSim.head);

        while (iter.hasNext()) {
            iter.next().execute(newSim);
            //update graphics
            frame.paintComponents(applet.getGraphics());//looks clunky
            Thread.sleep(500);
        }

    }

}
4

1 回答 1

0

看起来我需要调用updateapplet的方法。替换:

frame.paintComponents(applet.getGraphics());//looks clunky

和:

applet.update(applet.getGraphics());

这看起来有点古怪,也许我需要重构这段代码,以便在SimulationViewer类中。

于 2013-12-19T15:24:26.117 回答