Ignore:
Timestamp:
05/10/18 16:04:51 (6 years ago)
Author:
davidb
Message:

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/agents/DisplayComet.java

    r919 r1102  
    2323import java.util.Stack;
    2424
    25 import org.expeditee.gui.DisplayIO;
     25import org.expeditee.gui.DisplayController;
    2626import org.expeditee.gui.Frame;
    2727import org.expeditee.gui.FrameIO;
     
    4545                Collection<String> seen = new HashSet<String>();
    4646
    47                 DisplayIO.addToBack(frame);
     47                DisplayController.addToBack(frame);
    4848
    4949                // Goto the end of the comet
     
    7474                        if (_stop)
    7575                                return null;
    76                         DisplayIO.setCurrentFrame(_frameList.pop(), true);
     76                        DisplayController.setCurrentFrame(_frameList.pop(), true);
    7777                        _frameCount++;
    7878                        pause(_delay);
Note: See TracChangeset for help on using the changeset viewer.