Make Tests compatible again
[Mograsim.git] / net.mograsim.logic.model.am2900 / test / net / mograsim / logic / model / am2900 / am2901 / Am2901Testbench.java
1 package net.mograsim.logic.model.am2900.am2901;
2
3 import java.util.ArrayList;
4 import java.util.Comparator;
5 import java.util.List;
6
7 import net.mograsim.logic.core.types.Bit;
8 import net.mograsim.logic.core.types.BitVector;
9 import net.mograsim.logic.model.SimpleLogicUIStandalone;
10 import net.mograsim.logic.model.SimpleLogicUIStandalone.VisualisationObjects;
11 import net.mograsim.logic.model.am2900.Am2900Loader;
12 import net.mograsim.logic.model.model.ViewModelModifiable;
13 import net.mograsim.logic.model.model.components.GUIComponent;
14 import net.mograsim.logic.model.model.components.atomic.GUIAndGate;
15 import net.mograsim.logic.model.model.components.atomic.GUIBitDisplay;
16 import net.mograsim.logic.model.model.components.atomic.GUIManualSwitch;
17 import net.mograsim.logic.model.model.components.atomic.GUINotGate;
18 import net.mograsim.logic.model.model.components.atomic.TextComponent;
19 import net.mograsim.logic.model.model.wires.Pin;
20 import net.mograsim.logic.model.model.wires.PinUsage;
21 import net.mograsim.logic.model.model.wires.WireCrossPoint;
22 import net.mograsim.logic.model.serializing.IndirectGUIComponentCreator;
23 import net.mograsim.logic.model.util.ModellingTool;
24
25 public class Am2901Testbench
26 {
27         public static void main(String[] args)
28         {
29                 Am2900Loader.setup();
30                 SimpleLogicUIStandalone.executeVisualisation(Am2901Testbench::createTestbench, Am2901Testbench::beforeRun);
31         }
32
33         public static void createTestbench(ViewModelModifiable model)
34         {
35                 GUIComponent comp = IndirectGUIComponentCreator.createComponent(model, "GUIAm2901");
36                 ModellingTool tool = ModellingTool.createFor(model);
37
38                 comp.moveTo(240, 0);
39
40                 GUIManualSwitch enable = new GUIManualSwitch(model, 1);
41                 WireCrossPoint wcp0 = new WireCrossPoint(model, 1);
42                 GUINotGate not1 = new GUINotGate(model, 1);
43                 GUINotGate not2 = new GUINotGate(model, 1);
44                 GUINotGate not3 = new GUINotGate(model, 1);
45                 GUIAndGate and = new GUIAndGate(model, 1);
46                 tool.connect(wcp0, enable, "");
47                 tool.connect(wcp0, and, "A");
48                 tool.connect(wcp0, not1, "A");
49                 tool.connect(not1, not2, "Y", "A");
50                 tool.connect(not2, not3, "Y", "A");
51                 tool.connect(not3, and, "Y", "B");
52                 enable.moveTo(20, -32.5);
53                 wcp0.moveTo(35, -26);
54                 not1.moveTo(50, -20);
55                 not2.moveTo(80, -20);
56                 not3.moveTo(110, -20);
57                 and.moveTo(135, -30);
58                 Pin last = and.getPin("Y");
59
60                 List<String> inputPinNames = new ArrayList<>();
61                 List<String> outputPinNames = new ArrayList<>();
62                 for (Pin p : comp.getPins().values())
63                         if (p.usage == PinUsage.INPUT)
64                                 inputPinNames.add(p.name);
65                         else
66                                 outputPinNames.add(p.name);
67
68                 inputPinNames.sort(Comparator.comparing(comp::getPin, Comparator.comparing(Pin::getRelY)));
69                 outputPinNames.sort(Comparator.comparing(comp::getPin, Comparator.comparing(Pin::getRelY)));
70
71                 for (int i = 0; i < inputPinNames.size(); i++)
72                 {
73                         double x = 55 + 70 * (i % 2);
74                         double y = 10 * i;
75
76                         WireCrossPoint wcp = new WireCrossPoint(model, 1);
77                         GUIComponent d_ff = IndirectGUIComponentCreator.createComponent(model, "GUIdff");
78                         GUIManualSwitch sw = new GUIManualSwitch(model, 1);
79
80                         tool.connect(last, wcp);
81                         tool.connect(wcp, d_ff, "C");
82                         tool.connect(sw, d_ff, "", "D");
83                         tool.connect(d_ff, comp, "Q", inputPinNames.get(i));
84                         last = wcp.getPin();
85
86                         TextComponent label = new TextComponent(model, inputPinNames.get(i));
87
88                         sw.moveTo(x, y + 7.5);
89                         wcp.moveTo(160, y);
90                         d_ff.moveTo(170, y);
91                         label.moveTo(x - 48, y + 8);
92                 }
93
94                 for (int i = 0; i < outputPinNames.size(); i++)
95                 {
96                         double x = 300 + 75 * (i % 2);
97                         double y = 10 * i - 2.5;
98                         GUIBitDisplay bd = new GUIBitDisplay(model, 1);
99                         bd.moveTo(x, y);
100                         tool.connect(bd.getInputPin(), comp, outputPinNames.get(i));
101
102                         TextComponent label = new TextComponent(model, outputPinNames.get(i));
103                         label.moveTo(x + 25, y);
104                 }
105         }
106
107         public static void beforeRun(VisualisationObjects vis)
108         {
109                 vis.model.getComponentsByName().values().forEach(c ->
110                 {
111                         if (c instanceof GUIManualSwitch)
112                         {
113                                 GUIManualSwitch cCasted = (GUIManualSwitch) c;
114                                 cCasted.setHighLevelState("out", BitVector.of(Bit.ZERO, cCasted.logicWidth));
115                         }
116                 });
117         }
118 }