Completely changed the structure and switched to Eclipse Plugin.
[Mograsim.git] / net.mograsim.logic.ui.am2900 / src / net / mograsim / logic / ui / model / components / mi / nandbased / GUIdlatch.java
diff --git a/net.mograsim.logic.ui.am2900/src/net/mograsim/logic/ui/model/components/mi/nandbased/GUIdlatch.java b/net.mograsim.logic.ui.am2900/src/net/mograsim/logic/ui/model/components/mi/nandbased/GUIdlatch.java
new file mode 100644 (file)
index 0000000..f6246a4
--- /dev/null
@@ -0,0 +1,54 @@
+package net.mograsim.logic.ui.model.components.mi.nandbased;
+
+import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
+import net.mograsim.logic.ui.model.ViewModelModifiable;
+import net.mograsim.logic.ui.model.components.GUINandGate;
+import net.mograsim.logic.ui.model.components.SimpleRectangularSubmodelComponent;
+import net.mograsim.logic.ui.model.wires.GUIWire;
+import net.mograsim.logic.ui.model.wires.Pin;
+import net.mograsim.logic.ui.model.wires.WireCrossPoint;
+
+public class GUIdlatch extends SimpleRectangularSubmodelComponent
+{
+       public GUIdlatch(ViewModelModifiable model)
+       {
+               super(model, 1, "GUIdlatch");
+               setSubmodelScale(.4);
+               setInputPins("D", "E");
+               setOutputPins("Q", "_Q");
+               initSubmodelComponents();
+       }
+
+       @SuppressWarnings("unused") // for GUIWires being created
+       private void initSubmodelComponents()
+       {
+               Pin D = getSubmodelPin("D");
+               Pin E = getSubmodelPin("E");
+               Pin Q = getSubmodelPin("Q");
+               Pin _Q = getSubmodelPin("_Q");
+
+               GUINandGate nand1 = new GUINandGate(submodelModifiable, 1);
+               GUINandGate nand2 = new GUINandGate(submodelModifiable, 1);
+               GUI_rsLatch _rsLatch = new GUI_rsLatch(submodelModifiable);
+
+               WireCrossPoint cp1 = new WireCrossPoint(submodelModifiable, 1);
+               WireCrossPoint cp2 = new WireCrossPoint(submodelModifiable, 1);
+
+               nand1.moveTo(10, 2.5);
+               nand2.moveTo(15, 27.5);
+               _rsLatch.moveTo(45, 7.5);
+               cp1.moveCenterTo(5, 37.5);
+               cp2.moveCenterTo(35, 12.5);
+
+               new GUIWire(submodelModifiable, D, nand1.getPin("A"));
+               new GUIWire(submodelModifiable, E, cp1, new Point[0]);
+               new GUIWire(submodelModifiable, cp1, nand1.getPin("B"), new Point(5, 17.5));
+               new GUIWire(submodelModifiable, cp1, nand2.getPin("B"), new Point(5, 42.5));
+               new GUIWire(submodelModifiable, nand1.getPin("Y"), cp2, new Point[0]);
+               new GUIWire(submodelModifiable, cp2, nand2.getPin("A"), new Point(35, 25), new Point(10, 25), new Point(10, 32.5));
+               new GUIWire(submodelModifiable, cp2, _rsLatch.getPin("_S"), new Point[0]);
+               new GUIWire(submodelModifiable, nand2.getPin("Y"), _rsLatch.getPin("_R"), new Point(40, 37.5), new Point(40, 22.5));
+               new GUIWire(submodelModifiable, _rsLatch.getPin("Q"), Q, new Point[0]);
+               new GUIWire(submodelModifiable, _rsLatch.getPin("_Q"), _Q);
+       }
+}
\ No newline at end of file