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/DisplayTree.java

    r919 r1102  
    1919package org.expeditee.agents;
    2020
    21 import org.expeditee.gui.DisplayIO;
     21import org.expeditee.gui.DisplayController;
    2222import org.expeditee.gui.Frame;
    2323import org.expeditee.gui.MessageBay;
     
    5454
    5555                // push current frame on to back-stack
    56                 DisplayIO.addToBack(start);
     56                DisplayController.addToBack(start);
    5757
    5858                return super.initialise(start, launcher);
     
    6363                // return the user to the Frame they started on
    6464                if (!_stop) {
    65                         DisplayIO.Back();
     65                        DisplayController.Back();
    6666                }
    6767                super.finalise(start);
     
    7979
    8080                // ignore loops
    81                 if (toProcess != DisplayIO.getCurrentFrame())
    82                         DisplayIO.setCurrentFrame(toProcess, false);
     81                if (toProcess != DisplayController.getCurrentFrame())
     82                        DisplayController.setCurrentFrame(toProcess, false);
    8383                // parse the frame for any pause settings
    8484                delay(toProcess);
Note: See TracChangeset for help on using the changeset viewer.