Added DeserializedSubmodelComponent Editor project
[Mograsim.git] / net.mograsim.logic.ui.am2900 / src / net / mograsim / logic / ui / model / components / mi / nandbased / GUIor_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 GUIor_4 extends SimpleRectangularSubmodelComponent
13 {
14         public GUIor_4(ViewModelModifiable model)
15         {
16                 super(model, 1, "GUIor_4");
17                 setSubmodelScale(.4);
18                 setInputPins("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 A1 = getSubmodelPin("A1");
27                 Pin A2 = getSubmodelPin("A2");
28                 Pin A3 = getSubmodelPin("A3");
29                 Pin A4 = getSubmodelPin("A4");
30                 Pin B1 = getSubmodelPin("B1");
31                 Pin B2 = getSubmodelPin("B2");
32                 Pin B3 = getSubmodelPin("B3");
33                 Pin B4 = getSubmodelPin("B4");
34                 Pin Y1 = getSubmodelPin("Y1");
35                 Pin Y2 = getSubmodelPin("Y2");
36                 Pin Y3 = getSubmodelPin("Y3");
37                 Pin Y4 = getSubmodelPin("Y4");
38
39                 GUINandGate notA1 = new GUINandGate(submodelModifiable, 1);
40                 GUINandGate notA2 = new GUINandGate(submodelModifiable, 1);
41                 GUINandGate notA3 = new GUINandGate(submodelModifiable, 1);
42                 GUINandGate notA4 = new GUINandGate(submodelModifiable, 1);
43                 GUINandGate notB1 = new GUINandGate(submodelModifiable, 1);
44                 GUINandGate notB2 = new GUINandGate(submodelModifiable, 1);
45                 GUINandGate notB3 = new GUINandGate(submodelModifiable, 1);
46                 GUINandGate notB4 = new GUINandGate(submodelModifiable, 1);
47                 GUINandGate nandY1 = new GUINandGate(submodelModifiable, 1);
48                 GUINandGate nandY2 = new GUINandGate(submodelModifiable, 1);
49                 GUINandGate nandY3 = new GUINandGate(submodelModifiable, 1);
50                 GUINandGate nandY4 = new GUINandGate(submodelModifiable, 1);
51
52                 WireCrossPoint cpA1 = new WireCrossPoint(submodelModifiable, 1);
53                 WireCrossPoint cpA2 = new WireCrossPoint(submodelModifiable, 1);
54                 WireCrossPoint cpA3 = new WireCrossPoint(submodelModifiable, 1);
55                 WireCrossPoint cpA4 = new WireCrossPoint(submodelModifiable, 1);
56                 WireCrossPoint cpB1 = new WireCrossPoint(submodelModifiable, 1);
57                 WireCrossPoint cpB2 = new WireCrossPoint(submodelModifiable, 1);
58                 WireCrossPoint cpB3 = new WireCrossPoint(submodelModifiable, 1);
59                 WireCrossPoint cpB4 = new WireCrossPoint(submodelModifiable, 1);
60
61                 notA1.moveTo(15, 2.5);
62                 notA2.moveTo(15, 27.5);
63                 notA3.moveTo(15, 52.5);
64                 notA4.moveTo(15, 77.5);
65                 notB1.moveTo(15, 102.5);
66                 notB2.moveTo(15, 127.5);
67                 notB3.moveTo(15, 152.5);
68                 notB4.moveTo(15, 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, 12.5);
74                 cpA2.moveCenterTo(7.5, 37.5);
75                 cpA3.moveCenterTo(7.5, 62.5);
76                 cpA4.moveCenterTo(7.5, 87.5);
77                 cpB1.moveCenterTo(7.5, 112.5);
78                 cpB2.moveCenterTo(7.5, 137.5);
79                 cpB3.moveCenterTo(7.5, 162.5);
80                 cpB4.moveCenterTo(7.5, 187.5);
81
82                 new GUIWire(submodelModifiable, A1, cpA1, new Point[0]);
83                 new GUIWire(submodelModifiable, A2, cpA2, new Point[0]);
84                 new GUIWire(submodelModifiable, A3, cpA3, new Point[0]);
85                 new GUIWire(submodelModifiable, A4, cpA4, new Point[0]);
86                 new GUIWire(submodelModifiable, B1, cpB1, new Point[0]);
87                 new GUIWire(submodelModifiable, B2, cpB2, new Point[0]);
88                 new GUIWire(submodelModifiable, B3, cpB3, new Point[0]);
89                 new GUIWire(submodelModifiable, B4, cpB4, new Point[0]);
90                 new GUIWire(submodelModifiable, cpA1, notA1.getPin("A"), new Point(7.5, 7.5));
91                 new GUIWire(submodelModifiable, cpA1, notA1.getPin("B"), new Point(7.5, 17.5));
92                 new GUIWire(submodelModifiable, cpA2, notA2.getPin("A"), new Point(7.5, 32.5));
93                 new GUIWire(submodelModifiable, cpA2, notA2.getPin("B"), new Point(7.5, 42.5));
94                 new GUIWire(submodelModifiable, cpA3, notA3.getPin("A"), new Point(7.5, 57.5));
95                 new GUIWire(submodelModifiable, cpA3, notA3.getPin("B"), new Point(7.5, 67.5));
96                 new GUIWire(submodelModifiable, cpA4, notA4.getPin("A"), new Point(7.5, 82.5));
97                 new GUIWire(submodelModifiable, cpA4, notA4.getPin("B"), new Point(7.5, 92.5));
98                 new GUIWire(submodelModifiable, cpB1, notB1.getPin("A"), new Point(7.5, 107.5));
99                 new GUIWire(submodelModifiable, cpB1, notB1.getPin("B"), new Point(7.5, 117.5));
100                 new GUIWire(submodelModifiable, cpB2, notB2.getPin("A"), new Point(7.5, 132.5));
101                 new GUIWire(submodelModifiable, cpB2, notB2.getPin("B"), new Point(7.5, 142.5));
102                 new GUIWire(submodelModifiable, cpB3, notB3.getPin("A"), new Point(7.5, 157.5));
103                 new GUIWire(submodelModifiable, cpB3, notB3.getPin("B"), new Point(7.5, 167.5));
104                 new GUIWire(submodelModifiable, cpB4, notB4.getPin("A"), new Point(7.5, 182.5));
105                 new GUIWire(submodelModifiable, cpB4, notB4.getPin("B"), new Point(7.5, 192.5));
106                 new GUIWire(submodelModifiable, notA1.getPin("Y"), nandY1.getPin("A"), new Point(40, 12.5), new Point(40, 7.5));
107                 new GUIWire(submodelModifiable, notB1.getPin("Y"), nandY1.getPin("B"), new Point(45, 112.5), new Point(45, 17.5));
108                 new GUIWire(submodelModifiable, notA2.getPin("Y"), nandY2.getPin("A"), new Point(40, 37.5), new Point(40, 32.5));
109                 new GUIWire(submodelModifiable, notB2.getPin("Y"), nandY2.getPin("B"), new Point(50, 137.5), new Point(50, 42.5));
110                 new GUIWire(submodelModifiable, notA3.getPin("Y"), nandY3.getPin("A"), new Point(40, 62.5), new Point(40, 57.5));
111                 new GUIWire(submodelModifiable, notB3.getPin("Y"), nandY3.getPin("B"), new Point(55, 162.5), new Point(55, 67.5));
112                 new GUIWire(submodelModifiable, notA4.getPin("Y"), nandY4.getPin("A"), new Point(40, 87.5), new Point(40, 82.5));
113                 new GUIWire(submodelModifiable, notB4.getPin("Y"), nandY4.getPin("B"), new Point(60, 187.5), new Point(60, 92.5));
114                 new GUIWire(submodelModifiable, nandY1.getPin("Y"), Y1, new Point[0]);
115                 new GUIWire(submodelModifiable, nandY2.getPin("Y"), Y2, new Point[0]);
116                 new GUIWire(submodelModifiable, nandY3.getPin("Y"), Y3, new Point[0]);
117                 new GUIWire(submodelModifiable, nandY4.getPin("Y"), Y4, new Point[0]);
118         }
119
120         static
121         {
122                 IndirectGUIComponentCreator.setComponentProvider(GUIor_4.class.getCanonicalName(), (m, p) -> new GUIor_4(m));
123         }
124 }