Pins are now accessed via name, not index
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / model / components / mi / nandbased / GUIdff.java
index ce4f441..40f3331 100644 (file)
@@ -14,18 +14,18 @@ public class GUIdff extends SimpleRectangularSubmodelComponent
        {
                super(model, 1, "GUIdff");
                setSubmodelScale(.2);
-               setInputCount(2);
-               setOutputCount(2);
+               setInputPins("C", "D");
+               setOutputPins("Q", "_Q");
                initSubmodelComponents();
        }
 
        @SuppressWarnings("unused") // for GUIWires being created
        private void initSubmodelComponents()
        {
-               Pin C = getInputSubmodelPins().get(0);
-               Pin D = getInputSubmodelPins().get(1);
-               Pin Q = getOutputSubmodelPins().get(0);
-               Pin _Q = getOutputSubmodelPins().get(1);
+               Pin C = getSubmodelPin("C");
+               Pin D = getSubmodelPin("D");
+               Pin Q = getSubmodelPin("Q");
+               Pin _Q = getSubmodelPin("_Q");
 
                GUI_rsLatch _rsLatch1 = new GUI_rsLatch(submodelModifiable);
                GUInand3 nand3 = new GUInand3(submodelModifiable);
@@ -41,25 +41,25 @@ public class GUIdff extends SimpleRectangularSubmodelComponent
                nand3.moveTo(40, 40);
                nand2.moveTo(120, 60);
                _rsLatch2.moveTo(120, 30);
-               cp1.moveTo(10, 25);
-               cp2.moveTo(20, 65);
-               cp3.moveTo(100, 35);
-               cp4.moveTo(100, 45);
+               cp1.moveCenterTo(10, 25);
+               cp2.moveCenterTo(20, 65);
+               cp3.moveCenterTo(100, 35);
+               cp4.moveCenterTo(100, 45);
 
                new GUIWire(submodelModifiable, C, cp1, new Point[0]);
-               new GUIWire(submodelModifiable, cp1, _rsLatch1.getInputPins().get(1), new Point[0]);
-               new GUIWire(submodelModifiable, cp1, nand3.getInputPins().get(1), new Point(10, 55));
-               new GUIWire(submodelModifiable, D, nand2.getInputPins().get(1), new Point[0]);
-               new GUIWire(submodelModifiable, nand2.getOutputPin(), cp2, new Point(145, 70), new Point(145, 85), new Point(20, 85));
-               new GUIWire(submodelModifiable, cp2, _rsLatch1.getInputPins().get(0), new Point(20, 15));
-               new GUIWire(submodelModifiable, cp2, nand3.getInputPins().get(2), new Point[0]);
-               new GUIWire(submodelModifiable, _rsLatch1.getOutputPins().get(1), cp3, new Point(100, 25));
-               new GUIWire(submodelModifiable, cp3, nand3.getInputPins().get(0), new Point(30, 35), new Point(30, 45));
-               new GUIWire(submodelModifiable, cp3, _rsLatch2.getInputPins().get(0), new Point[0]);
-               new GUIWire(submodelModifiable, nand3.getOutputPins().get(0), cp4, new Point[0]);
-               new GUIWire(submodelModifiable, cp4, _rsLatch2.getInputPins().get(1), new Point[0]);
-               new GUIWire(submodelModifiable, cp4, nand2.getInputPins().get(0), new Point(100, 65));
-               new GUIWire(submodelModifiable, _rsLatch2.getOutputPins().get(0), Q);
-               new GUIWire(submodelModifiable, _rsLatch2.getOutputPins().get(1), _Q);
+               new GUIWire(submodelModifiable, cp1, _rsLatch1.getPin("_R"), new Point[0]);
+               new GUIWire(submodelModifiable, cp1, nand3.getPin("B"), new Point(10, 55));
+               new GUIWire(submodelModifiable, D, nand2.getPin("B"), new Point[0]);
+               new GUIWire(submodelModifiable, nand2.getPin("Y"), cp2, new Point(145, 70), new Point(145, 85), new Point(20, 85));
+               new GUIWire(submodelModifiable, cp2, _rsLatch1.getPin("_S"), new Point(20, 15));
+               new GUIWire(submodelModifiable, cp2, nand3.getPin("C"), new Point[0]);
+               new GUIWire(submodelModifiable, _rsLatch1.getPin("_Q"), cp3, new Point(100, 25));
+               new GUIWire(submodelModifiable, cp3, nand3.getPin("A"), new Point(30, 35), new Point(30, 45));
+               new GUIWire(submodelModifiable, cp3, _rsLatch2.getPin("_S"), new Point[0]);
+               new GUIWire(submodelModifiable, nand3.getPin("Y"), cp4, new Point[0]);
+               new GUIWire(submodelModifiable, cp4, _rsLatch2.getPin("_R"), new Point[0]);
+               new GUIWire(submodelModifiable, cp4, nand2.getPin("A"), new Point(100, 65));
+               new GUIWire(submodelModifiable, _rsLatch2.getPin("Q"), Q);
+               new GUIWire(submodelModifiable, _rsLatch2.getPin("_Q"), _Q);
        }
 }
\ No newline at end of file