Merge branch 'development' of
[Mograsim.git] / LogicUI / oldsrc / RSLatchGUIExample.java
index 0fb1886..413525b 100644 (file)
@@ -1,61 +1,62 @@
-package era.mi.gui.examples;
-
-import era.mi.gui.LogicUICanvas;
-import era.mi.gui.LogicUIStandalone;
-import era.mi.gui.components.GUIManualSwitch;
-import era.mi.gui.components.GUINotGate;
-import era.mi.gui.components.GUIOrGateOld;
-import era.mi.gui.wires.WireConnectionPoint;
-import era.mi.logic.timeline.Timeline;
-import era.mi.logic.wires.Wire;
-import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
-
-public class RSLatchGUIExample
-{
-       private static final int WIRE_DELAY = 10;
-       private static final int OR_DELAY = 50;
-       private static final int NOT_DELAY = 50;
-
-       public static void main(String[] args)
-       {
-               Timeline t = new Timeline(11);
-               LogicUIStandalone ui = new LogicUIStandalone(t);
-               addComponentsAndWires(ui.getLogicUICanvas(), t);
-               ui.run();
-       }
-
-       public static void addComponentsAndWires(LogicUICanvas ui, Timeline t)
-       {
-               Wire r = new Wire(t, 1, WIRE_DELAY);
-               Wire s = new Wire(t, 1, WIRE_DELAY);
-               Wire t2 = new Wire(t, 1, WIRE_DELAY);
-               Wire t1 = new Wire(t, 1, WIRE_DELAY);
-               Wire q = new Wire(t, 1, WIRE_DELAY);
-               Wire nq = new Wire(t, 1, WIRE_DELAY);
-
-               GUIManualSwitch rIn = ui.addComponent(new GUIManualSwitch(t, r.createReadWriteEnd()), 100, 100);
-               GUIManualSwitch sIn = ui.addComponent(new GUIManualSwitch(t, s.createReadWriteEnd()), 100, 200);
-               GUIOrGateOld or1 = ui.addComponent(new GUIOrGateOld(t, OR_DELAY, t1.createReadWriteEnd(), r.createReadOnlyEnd(), nq.createReadOnlyEnd()),
-                               160, 102.5);
-               GUIOrGateOld or2 = ui.addComponent(new GUIOrGateOld(t, OR_DELAY, t2.createReadWriteEnd(), q.createReadOnlyEnd(), s.createReadOnlyEnd()),
-                               160, 192.5);
-               GUINotGate not1 = ui.addComponent(new GUINotGate(t, NOT_DELAY, t1.createReadOnlyEnd(), q.createReadWriteEnd()), 200, 107.5);
-               GUINotGate not2 = ui.addComponent(new GUINotGate(t, NOT_DELAY, t2.createReadOnlyEnd(), nq.createReadWriteEnd()), 200, 197.5);
-
-               WireConnectionPoint p1 = ui.addComponent(new WireConnectionPoint(q, 3), 250, 112.5);
-               WireConnectionPoint p2 = ui.addComponent(new WireConnectionPoint(nq, 3), 250, 202.5);
-               WireConnectionPoint o1 = ui.addComponent(new WireConnectionPoint(q, 1), 270, 112.5);
-               WireConnectionPoint o2 = ui.addComponent(new WireConnectionPoint(nq, 1), 270, 202.5);
-
-               ui.addWire(rIn, 0, or1, 0);
-               ui.addWire(sIn, 0, or2, 1);
-               ui.addWire(or1, 2, not1, 0);
-               ui.addWire(or2, 2, not2, 0);
-               ui.addWire(not1, 1, p1, 0);
-               ui.addWire(not2, 1, p2, 0);
-               ui.addWire(p1, 1, or2, 0, new Point(250, 130), new Point(140, 185), new Point(140, 197.5));
-               ui.addWire(p2, 1, or1, 1, new Point(250, 185), new Point(140, 130), new Point(140, 117.5));
-               ui.addWire(p1, 2, o1, 0);
-               ui.addWire(p2, 2, o2, 0);
-       }
+package era.mi.gui.examples;\r
+\r
+import era.mi.gui.LogicUICanvas;\r
+import era.mi.gui.LogicUIStandalone;\r
+import era.mi.gui.components.GUIManualSwitch;\r
+import era.mi.gui.components.GUINotGate;\r
+import era.mi.gui.components.GUIOrGateOld;\r
+import era.mi.gui.wires.WireConnectionPoint;\r
+import era.mi.logic.timeline.Timeline;\r
+import era.mi.logic.wires.Wire;\r
+import net.haspamelodica.swt.helper.swtobjectwrappers.Point;\r
+\r
+public class RSLatchGUIExample\r
+{\r
+       private static final int WIRE_DELAY = 10;\r
+       private static final int OR_DELAY = 50;\r
+       private static final int NOT_DELAY = 50;\r
+\r
+       public static void main(String[] args)\r
+       {\r
+               Timeline t = new Timeline(11);\r
+               t.setTimeFunction(() -> System.currentTimeMillis()); // real time simulation\r
+               LogicUIStandalone ui = new LogicUIStandalone(t);\r
+               addComponentsAndWires(ui.getLogicUICanvas(), t);\r
+               ui.run();\r
+       }\r
+\r
+       public static void addComponentsAndWires(LogicUICanvas ui, Timeline t)\r
+       {\r
+               Wire r = new Wire(t, 1, WIRE_DELAY);\r
+               Wire s = new Wire(t, 1, WIRE_DELAY);\r
+               Wire t2 = new Wire(t, 1, WIRE_DELAY);\r
+               Wire t1 = new Wire(t, 1, WIRE_DELAY);\r
+               Wire q = new Wire(t, 1, WIRE_DELAY);\r
+               Wire nq = new Wire(t, 1, WIRE_DELAY);\r
+\r
+               GUIManualSwitch rIn = ui.addComponent(new GUIManualSwitch(t, r.createReadWriteEnd()), 100, 100);\r
+               GUIManualSwitch sIn = ui.addComponent(new GUIManualSwitch(t, s.createReadWriteEnd()), 100, 200);\r
+               GUIOrGateOld or1 = ui.addComponent(new GUIOrGateOld(t, OR_DELAY, t1.createReadWriteEnd(), r.createReadOnlyEnd(), nq.createReadOnlyEnd()),\r
+                               160, 102.5);\r
+               GUIOrGateOld or2 = ui.addComponent(new GUIOrGateOld(t, OR_DELAY, t2.createReadWriteEnd(), q.createReadOnlyEnd(), s.createReadOnlyEnd()),\r
+                               160, 192.5);\r
+               GUINotGate not1 = ui.addComponent(new GUINotGate(t, NOT_DELAY, t1.createReadOnlyEnd(), q.createReadWriteEnd()), 200, 107.5);\r
+               GUINotGate not2 = ui.addComponent(new GUINotGate(t, NOT_DELAY, t2.createReadOnlyEnd(), nq.createReadWriteEnd()), 200, 197.5);\r
+\r
+               WireConnectionPoint p1 = ui.addComponent(new WireConnectionPoint(q, 3), 250, 112.5);\r
+               WireConnectionPoint p2 = ui.addComponent(new WireConnectionPoint(nq, 3), 250, 202.5);\r
+               WireConnectionPoint o1 = ui.addComponent(new WireConnectionPoint(q, 1), 270, 112.5);\r
+               WireConnectionPoint o2 = ui.addComponent(new WireConnectionPoint(nq, 1), 270, 202.5);\r
+\r
+               ui.addWire(rIn, 0, or1, 0);\r
+               ui.addWire(sIn, 0, or2, 1);\r
+               ui.addWire(or1, 2, not1, 0);\r
+               ui.addWire(or2, 2, not2, 0);\r
+               ui.addWire(not1, 1, p1, 0);\r
+               ui.addWire(not2, 1, p2, 0);\r
+               ui.addWire(p1, 1, or2, 0, new Point(250, 130), new Point(140, 185), new Point(140, 197.5));\r
+               ui.addWire(p2, 1, or1, 1, new Point(250, 185), new Point(140, 130), new Point(140, 117.5));\r
+               ui.addWire(p1, 2, o1, 0);\r
+               ui.addWire(p2, 2, o2, 0);\r
+       }\r
 }
\ No newline at end of file