Small fix in ClickableSubmodelComponentsTest
[Mograsim.git] / net.mograsim.logic.ui.am2900 / src / net / mograsim / logic / ui / model / components / mi / nandbased / GUIsel2_4.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 GUIsel2_4 extends SimpleRectangularSubmodelComponent
13 {
14         public GUIsel2_4(ViewModelModifiable model)
15         {
16                 super(model, 1, "GUIsel2_4");
17                 setSubmodelScale(.4);
18                 setInputPins("SA", "SB", "A1", "A2", "A3", "A4", "B1", "B2", "B3", "B4");
19                 setOutputPins("Y1", "Y2", "Y3", "Y4");
20                 initSubmodelComponents();
21         }
22
23         @SuppressWarnings("unused") // for GUIWires being created
24         private void initSubmodelComponents()
25         {
26                 Pin SA = getSubmodelPin("SA");
27                 Pin SB = getSubmodelPin("SB");
28                 Pin A1 = getSubmodelPin("A1");
29                 Pin A2 = getSubmodelPin("A2");
30                 Pin A3 = getSubmodelPin("A3");
31                 Pin A4 = getSubmodelPin("A4");
32                 Pin B1 = getSubmodelPin("B1");
33                 Pin B2 = getSubmodelPin("B2");
34                 Pin B3 = getSubmodelPin("B3");
35                 Pin B4 = getSubmodelPin("B4");
36                 Pin Y1 = getSubmodelPin("Y1");
37                 Pin Y2 = getSubmodelPin("Y2");
38                 Pin Y3 = getSubmodelPin("Y3");
39                 Pin Y4 = getSubmodelPin("Y4");
40
41                 GUINandGate nandA1 = new GUINandGate(submodelModifiable, 1);
42                 GUINandGate nandA2 = new GUINandGate(submodelModifiable, 1);
43                 GUINandGate nandA3 = new GUINandGate(submodelModifiable, 1);
44                 GUINandGate nandA4 = new GUINandGate(submodelModifiable, 1);
45                 GUINandGate nandB1 = new GUINandGate(submodelModifiable, 1);
46                 GUINandGate nandB2 = new GUINandGate(submodelModifiable, 1);
47                 GUINandGate nandB3 = new GUINandGate(submodelModifiable, 1);
48                 GUINandGate nandB4 = new GUINandGate(submodelModifiable, 1);
49                 GUINandGate nandY1 = new GUINandGate(submodelModifiable, 1);
50                 GUINandGate nandY2 = new GUINandGate(submodelModifiable, 1);
51                 GUINandGate nandY3 = new GUINandGate(submodelModifiable, 1);
52                 GUINandGate nandY4 = new GUINandGate(submodelModifiable, 1);
53
54                 WireCrossPoint cpA1 = new WireCrossPoint(submodelModifiable, 1);
55                 WireCrossPoint cpA2 = new WireCrossPoint(submodelModifiable, 1);
56                 WireCrossPoint cpA3 = new WireCrossPoint(submodelModifiable, 1);
57                 WireCrossPoint cpB1 = new WireCrossPoint(submodelModifiable, 1);
58                 WireCrossPoint cpB2 = new WireCrossPoint(submodelModifiable, 1);
59                 WireCrossPoint cpB3 = new WireCrossPoint(submodelModifiable, 1);
60
61                 nandA1.moveTo(20, 2.5);
62                 nandB1.moveTo(20, 27.5);
63                 nandA2.moveTo(20, 52.5);
64                 nandB2.moveTo(20, 77.5);
65                 nandA3.moveTo(20, 102.5);
66                 nandB3.moveTo(20, 127.5);
67                 nandA4.moveTo(20, 152.5);
68                 nandB4.moveTo(20, 177.5);
69                 nandY1.moveTo(65, 2.5);
70                 nandY2.moveTo(65, 27.5);
71                 nandY3.moveTo(65, 52.5);
72                 nandY4.moveTo(65, 77.5);
73                 cpA1.moveCenterTo(7.5, 17.5);
74                 cpB1.moveCenterTo(5, 42.5);
75                 cpA2.moveCenterTo(7.5, 67.5);
76                 cpB2.moveCenterTo(5, 92.5);
77                 cpA3.moveCenterTo(7.5, 117.5);
78                 cpB3.moveCenterTo(5, 142.5);
79
80                 new GUIWire(submodelModifiable, A1, nandA1.getPin("A"), new Point(15, 62.5), new Point(15, 7.5));
81                 new GUIWire(submodelModifiable, A2, nandA2.getPin("A"), new Point(17.5, 87.5), new Point(17.5, 57.5));
82                 new GUIWire(submodelModifiable, A3, nandA3.getPin("A"), new Point(17.5, 112.5), new Point(17.5, 107.5));
83                 new GUIWire(submodelModifiable, A4, nandA4.getPin("A"), new Point(17.5, 137.5), new Point(17.5, 157.5));
84                 new GUIWire(submodelModifiable, B1, nandB1.getPin("A"), new Point(10, 162.5), new Point(10, 32.5));
85                 new GUIWire(submodelModifiable, B2, nandB2.getPin("A"), new Point(12.5, 187.5), new Point(12.5, 82.5));
86                 new GUIWire(submodelModifiable, B3, nandB3.getPin("A"), new Point(15, 212.5), new Point(15, 132.5));
87                 new GUIWire(submodelModifiable, B4, nandB4.getPin("A"), new Point(10, 237.5), new Point(10, 182.5));
88                 new GUIWire(submodelModifiable, SA, cpA1);
89                 new GUIWire(submodelModifiable, SB, cpB1);
90                 new GUIWire(submodelModifiable, cpA1, cpA2);
91                 new GUIWire(submodelModifiable, cpA1, nandA1.getPin("B"));
92                 new GUIWire(submodelModifiable, cpA2, cpA3);
93                 new GUIWire(submodelModifiable, cpA2, nandA2.getPin("B"));
94                 new GUIWire(submodelModifiable, cpA3, nandA3.getPin("B"));
95                 new GUIWire(submodelModifiable, cpA3, nandA4.getPin("B"), new Point(7.5, 167.5));
96                 new GUIWire(submodelModifiable, cpB1, cpB2);
97                 new GUIWire(submodelModifiable, cpB1, nandB1.getPin("B"));
98                 new GUIWire(submodelModifiable, cpB2, cpB3);
99                 new GUIWire(submodelModifiable, cpB2, nandB2.getPin("B"));
100                 new GUIWire(submodelModifiable, cpB3, nandB3.getPin("B"));
101                 new GUIWire(submodelModifiable, cpB3, nandB4.getPin("B"), new Point(5, 192.5));
102                 new GUIWire(submodelModifiable, nandA1.getPin("Y"), nandY1.getPin("A"), new Point(42.5, 12.5), new Point(42.5, 7.5));
103                 new GUIWire(submodelModifiable, nandB1.getPin("Y"), nandY1.getPin("B"), new Point(45, 37.5), new Point(45, 17.5));
104                 new GUIWire(submodelModifiable, nandA2.getPin("Y"), nandY2.getPin("A"), new Point(47.5, 62.5), new Point(47.5, 32.5));
105                 new GUIWire(submodelModifiable, nandB2.getPin("Y"), nandY2.getPin("B"), new Point(50, 87.5), new Point(50, 42.5));
106                 new GUIWire(submodelModifiable, nandA3.getPin("Y"), nandY3.getPin("A"), new Point(52.5, 112.5), new Point(52.5, 57.5));
107                 new GUIWire(submodelModifiable, nandB3.getPin("Y"), nandY3.getPin("B"), new Point(55, 137.5), new Point(55, 67.5));
108                 new GUIWire(submodelModifiable, nandA4.getPin("Y"), nandY4.getPin("A"), new Point(57.5, 162.5), new Point(57.5, 82.5));
109                 new GUIWire(submodelModifiable, nandB4.getPin("Y"), nandY4.getPin("B"), new Point(60, 187.5), new Point(60, 92.5));
110                 new GUIWire(submodelModifiable, nandY1.getPin("Y"), Y1, new Point[0]);
111                 new GUIWire(submodelModifiable, nandY2.getPin("Y"), Y2, new Point[0]);
112                 new GUIWire(submodelModifiable, nandY3.getPin("Y"), Y3, new Point[0]);
113                 new GUIWire(submodelModifiable, nandY4.getPin("Y"), Y4, new Point[0]);
114         }
115
116         static
117         {
118                 IndirectGUIComponentCreator.setComponentSupplier(GUIsel2_4.class.getCanonicalName(), (m, p) -> new GUIsel2_4(m));
119         }
120 }