X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.ui%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fui%2Fmodel%2Fcomponents%2Fmi%2Fnandbased%2FGUIand.java;fp=net.mograsim.logic.ui%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fui%2Fmodel%2Fcomponents%2Fmi%2Fnandbased%2FGUIand.java;h=9cec0cecd2d9705fa3571687fef508a879c35845;hb=20e9d3d11e5d06c45834c303e48522cbc4bfa98f;hp=0000000000000000000000000000000000000000;hpb=b49b71ffd58b0e35c46f8f31c0bdb0016a8bb724;p=Mograsim.git diff --git a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/mi/nandbased/GUIand.java b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/mi/nandbased/GUIand.java new file mode 100644 index 00000000..9cec0cec --- /dev/null +++ b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/mi/nandbased/GUIand.java @@ -0,0 +1,43 @@ +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.SubmodelComponent; +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 GUIand extends SubmodelComponent +{ + public GUIand(ViewModelModifiable model) + { + super(model, "GUIand"); + setSize(35, 25); + setSubmodelScale(.4); + initSubmodelComponents(); + } + + @SuppressWarnings("unused") // for GUIWires being created + private void initSubmodelComponents() + { + Pin A = addSubmodelInterface(1, 0, 5); + Pin B = addSubmodelInterface(1, 0, 20); + Pin Y = addSubmodelInterface(1, 35, 12.5); + + GUINandGate nand = new GUINandGate(submodelModifiable, 1); + nand.moveTo(20, 21.25); + GUINandGate not = new GUINandGate(submodelModifiable, 1); + not.moveTo(50, 21.25); + + WireCrossPoint cp1 = new WireCrossPoint(submodelModifiable, 1); + cp1.moveTo(45, 31.25); + + new GUIWire(submodelModifiable, A, nand.getInputPins().get(0), new Point(10, 12.5), new Point(10, 26.25)); + new GUIWire(submodelModifiable, B, nand.getInputPins().get(1), new Point(10, 50), new Point(10, 36.25)); + new GUIWire(submodelModifiable, nand.getOutputPin(), cp1.getPin()); + new GUIWire(submodelModifiable, cp1.getPin(), not.getInputPins().get(0), new Point(45, 26.25)); + new GUIWire(submodelModifiable, cp1.getPin(), not.getInputPins().get(1), new Point(45, 36.25)); + new GUIWire(submodelModifiable, not.getOutputPin(), Y); + } +} \ No newline at end of file