Improved Test experience by a lot; added first tests for Am2904, Am2910
[Mograsim.git] / net.mograsim.logic.model.am2900 / test / net / mograsim / logic / model / am2900 / am2910 / Am2910Testbench.java
1 package net.mograsim.logic.model.am2900.am2910;
2
3 import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
4 import net.mograsim.logic.core.types.Bit;
5 import net.mograsim.logic.core.types.BitVector;
6 import net.mograsim.logic.model.SimpleLogicUIStandalone;
7 import net.mograsim.logic.model.SimpleLogicUIStandalone.VisualisationObjects;
8 import net.mograsim.logic.model.model.ViewModelModifiable;
9 import net.mograsim.logic.model.model.components.GUIComponent;
10 import net.mograsim.logic.model.model.components.Orientation;
11 import net.mograsim.logic.model.model.components.atomic.GUIBitDisplay;
12 import net.mograsim.logic.model.model.components.atomic.GUIClock;
13 import net.mograsim.logic.model.model.components.atomic.GUIClock.GUIClockParams;
14 import net.mograsim.logic.model.model.components.atomic.GUIManualSwitch;
15 import net.mograsim.logic.model.model.wires.GUIWire;
16 import net.mograsim.logic.model.serializing.IndirectGUIComponentCreator;
17
18 public class Am2910Testbench
19 {
20         public static void main(String[] args)
21         {
22                 SimpleLogicUIStandalone.executeVisualisation(Am2910Testbench::create, Am2910Testbench::beforeRun);
23         }
24
25         @SuppressWarnings("unused") // for GUIWires being created
26         public static void create(ViewModelModifiable model)
27         {
28                 GUIComponent am2910 = IndirectGUIComponentCreator.createComponent(model, "file:components/am2910/GUIAm2910.json", "Am2910");
29                 GUIClock C = new GUIClock(model, new GUIClockParams(1000, Orientation.RIGHT));
30                 GUIManualSwitch D = new GUIManualSwitch(model, 12, "D");
31                 GUIManualSwitch _RLD = new GUIManualSwitch(model, 1, "_RLD");
32                 GUIManualSwitch _CC = new GUIManualSwitch(model, 1, "_CC");
33                 GUIManualSwitch _CCEN = new GUIManualSwitch(model, 1, "_CCEN");
34                 GUIManualSwitch I = new GUIManualSwitch(model, 4, "I");
35                 GUIManualSwitch CI = new GUIManualSwitch(model, 1, "CI");
36                 GUIManualSwitch _OE = new GUIManualSwitch(model, 1, "_OE");
37                 GUIBitDisplay _FULL = new GUIBitDisplay(model, 1, "_FULL");
38                 GUIBitDisplay _PL = new GUIBitDisplay(model, 1, "_PL");
39                 GUIBitDisplay _MAP = new GUIBitDisplay(model, 1, "_MAP");
40                 GUIBitDisplay _VECT = new GUIBitDisplay(model, 1, "_VECT");
41                 GUIBitDisplay Y = new GUIBitDisplay(model, 12, "Y");
42
43                 C.moveTo(35, -35);
44                 D.moveTo(10, -20);
45                 _RLD.moveTo(-30, -1.5);
46                 _CC.moveTo(-30, 20);
47                 _CCEN.moveTo(-30, 40);
48                 I.moveTo(-30, 60);
49                 CI.moveTo(75, 45);
50                 _FULL.moveTo(80, 6.5);
51                 _PL.moveTo(30, 85);
52                 _MAP.moveTo(30, 105);
53                 _VECT.moveTo(30, 125);
54                 Y.moveTo(40, 65);
55                 _OE.moveTo(60, 85);
56
57                 new GUIWire(model, C.getOutputPin(), am2910.getPin("C"), new Point(60, -27.5));
58                 new GUIWire(model, D.getOutputPin(), am2910.getPin("D"), new Point(36, -12.5));
59                 new GUIWire(model, _RLD.getOutputPin(), am2910.getPin("_RLD"), new Point[0]);
60                 new GUIWire(model, _CC.getOutputPin(), am2910.getPin("_CC"));
61                 new GUIWire(model, _CCEN.getOutputPin(), am2910.getPin("_CCEN"));
62                 new GUIWire(model, I.getOutputPin(), am2910.getPin("I"));
63                 new GUIWire(model, CI.getOutputPin(), am2910.getPin("CI"), new Point(100, 52.5), new Point(100, 40));
64                 new GUIWire(model, am2910.getPin("_FULL"), _FULL.getInputPin(), new Point[0]);
65                 new GUIWire(model, am2910.getPin("_PL"), _PL.getInputPin(), new Point(13, 92.5));
66                 new GUIWire(model, am2910.getPin("_MAP"), _MAP.getInputPin(), new Point(19, 112.5));
67                 new GUIWire(model, am2910.getPin("_VECT"), _VECT.getInputPin(), new Point(25, 132.5));
68                 new GUIWire(model, am2910.getPin("Y"), Y.getInputPin(), new Point(38, 72.5));
69                 new GUIWire(model, am2910.getPin("_OE"), _OE.getOutputPin());
70         }
71
72         public static void beforeRun(VisualisationObjects vis)
73         {
74                 vis.model.getComponentsByName().values().forEach(c ->
75                 {
76                         if (c instanceof GUIManualSwitch)
77                         {
78                                 GUIManualSwitch cCasted = (GUIManualSwitch) c;
79                                 cCasted.setHighLevelState("out", BitVector.of(Bit.ZERO, cCasted.logicWidth));
80                         }
81                 });
82         }
83 }