Replaced "provider" in identifiers with "supplier"
[Mograsim.git] / net.mograsim.logic.ui.am2900 / src / net / mograsim / logic / ui / model / components / mi / nandbased / GUIhalfadder.java
1 package net.mograsim.logic.ui.model.components.mi.nandbased;
2
3 import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
4 import net.mograsim.logic.ui.model.ViewModelModifiable;
5 import net.mograsim.logic.ui.model.components.atomic.GUINandGate;
6 import net.mograsim.logic.ui.model.components.submodels.SimpleRectangularSubmodelComponent;
7 import net.mograsim.logic.ui.model.wires.GUIWire;
8 import net.mograsim.logic.ui.model.wires.Pin;
9 import net.mograsim.logic.ui.model.wires.WireCrossPoint;
10 import net.mograsim.logic.ui.serializing.IndirectGUIComponentCreator;
11
12 public class GUIhalfadder extends SimpleRectangularSubmodelComponent
13 {
14         public GUIhalfadder(ViewModelModifiable model)
15         {
16                 super(model, 1, "GUIhalfadder");
17                 setSubmodelScale(.4);
18                 setInputPins("A", "B");
19                 setOutputPins("Y", "_Z");
20                 initSubmodelComponents();
21         }
22
23         @SuppressWarnings("unused") // for GUIWires being created
24         private void initSubmodelComponents()
25         {
26                 Pin A = getSubmodelPin("A");
27                 Pin B = getSubmodelPin("B");
28                 Pin Y = getSubmodelPin("Y");
29                 Pin _Z = getSubmodelPin("_Z");
30
31                 GUINandGate nand_Z = new GUINandGate(submodelModifiable, 1);
32                 GUINandGate nandYA = new GUINandGate(submodelModifiable, 1);
33                 GUINandGate nandYB = new GUINandGate(submodelModifiable, 1);
34                 GUINandGate nandY = new GUINandGate(submodelModifiable, 1);
35
36                 WireCrossPoint cpA = new WireCrossPoint(submodelModifiable, 1);
37                 WireCrossPoint cpB = new WireCrossPoint(submodelModifiable, 1);
38                 WireCrossPoint cp_Z = new WireCrossPoint(submodelModifiable, 1);
39
40                 nand_Z.moveTo(10, 15);
41                 nandYA.moveTo(40, 2.5);
42                 nandYB.moveTo(40, 27.5);
43                 nandY.moveTo(65, 2.5);
44                 cpA.moveCenterTo(5, 12.5);
45                 cpB.moveCenterTo(5, 37.5);
46                 cp_Z.moveCenterTo(35, 25);
47
48                 new GUIWire(submodelModifiable, A, cpA, new Point[0]);
49                 new GUIWire(submodelModifiable, cpA, nandYA.getPin("A"), new Point(5, 7.5));
50                 new GUIWire(submodelModifiable, cpA, nand_Z.getPin("A"), new Point(5, 20));
51                 new GUIWire(submodelModifiable, B, cpB, new Point[0]);
52                 new GUIWire(submodelModifiable, cpB, nandYB.getPin("B"), new Point(5, 42.5));
53                 new GUIWire(submodelModifiable, cpB, nand_Z.getPin("B"), new Point(5, 30));
54                 new GUIWire(submodelModifiable, nand_Z.getPin("Y"), cp_Z, new Point[0]);
55                 new GUIWire(submodelModifiable, cp_Z, _Z, new Point(80, 25), new Point(80, 37.5));
56                 new GUIWire(submodelModifiable, cp_Z, nandYA.getPin("B"), new Point(35, 17.5));
57                 new GUIWire(submodelModifiable, cp_Z, nandYB.getPin("A"), new Point(35, 32.5));
58                 new GUIWire(submodelModifiable, nandYA.getPin("Y"), nandY.getPin("A"), new Point(62.5, 12.5), new Point(62.5, 7.5));
59                 new GUIWire(submodelModifiable, nandYB.getPin("Y"), nandY.getPin("B"), new Point(62.5, 37.5), new Point(62.5, 17.5));
60                 new GUIWire(submodelModifiable, nandY.getPin("Y"), Y, new Point[0]);
61         }
62
63         static
64         {
65                 IndirectGUIComponentCreator.setComponentSupplier(GUIhalfadder.class.getCanonicalName(), (m, p) -> new GUIhalfadder(m));
66         }
67 }