Implemented set/getHighLevelState for most components
[Mograsim.git] / net.mograsim.logic.ui.am2900 / src / net / mograsim / logic / ui / model / components / mi / nandbased / GUI_rsLatch.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.core.types.Bit;
5 import net.mograsim.logic.core.types.BitVector;
6 import net.mograsim.logic.ui.model.ViewModelModifiable;
7 import net.mograsim.logic.ui.model.components.GUINandGate;
8 import net.mograsim.logic.ui.model.components.SimpleRectangularSubmodelComponent;
9 import net.mograsim.logic.ui.model.wires.GUIWire;
10 import net.mograsim.logic.ui.model.wires.Pin;
11 import net.mograsim.logic.ui.model.wires.WireCrossPoint;
12
13 public class GUI_rsLatch extends SimpleRectangularSubmodelComponent
14 {
15         private GUIWire wireQ, wire_Q;
16
17         public GUI_rsLatch(ViewModelModifiable model)
18         {
19                 super(model, 1, "_rsLatch");
20                 setSubmodelScale(.4);
21                 setInputPins("_S", "_R");
22                 setOutputPins("Q", "_Q");
23                 initSubmodelComponents();
24         }
25
26         @SuppressWarnings("unused") // for GUIWires being created
27         private void initSubmodelComponents()
28         {
29                 Pin _S = getSubmodelPin("_S");
30                 Pin _R = getSubmodelPin("_R");
31                 Pin Q = getSubmodelPin("Q");
32                 Pin _Q = getSubmodelPin("_Q");
33
34                 GUINandGate nand1 = new GUINandGate(submodelModifiable, 1);
35                 GUINandGate nand2 = new GUINandGate(submodelModifiable, 1);
36
37                 WireCrossPoint cp1 = new WireCrossPoint(submodelModifiable, 1);
38                 WireCrossPoint cp2 = new WireCrossPoint(submodelModifiable, 1);
39
40                 nand1.moveTo(10, 7.5);
41                 nand2.moveTo(40, 12.5);
42                 cp1.moveCenterTo(35, 17.5);
43                 cp2.moveCenterTo(65, 37.5);
44
45                 new GUIWire(submodelModifiable, _S, nand1.getPin("A"), new Point[0]);
46                 new GUIWire(submodelModifiable, _R, nand2.getPin("B"), new Point(35, 37.5), new Point(35, 27.5));
47                 new GUIWire(submodelModifiable, nand1.getPin("Y"), cp1, new Point[0]);
48                 new GUIWire(submodelModifiable, nand2.getPin("Y"), cp2, new Point(65, 22.5));
49                 new GUIWire(submodelModifiable, cp1, nand2.getPin("A"), new Point[0]);
50                 new GUIWire(submodelModifiable, cp2, nand1.getPin("B"), new Point(65, 42.5), new Point(5, 42.5), new Point(5, 22.5));
51                 wireQ = new GUIWire(submodelModifiable, cp1, Q, new Point(35, 17.5), new Point(35, 7.5), new Point(65, 7.5), new Point(65, 12.5));
52                 wire_Q = new GUIWire(submodelModifiable, cp2, _Q, new Point[0]);
53         }
54
55         @Override
56         public void setHighLevelState(String stateID, Object newState)
57         {
58                 switch (stateID)
59                 {
60                 case "q":
61                         if (wireQ != null)
62                         {
63                                 // TODO force this to happen without any Timeline updates in the meantime.
64                                 // Maybe make it a requirement of setHighLevelState that the Timeline is "halted" during a call?
65                                 Bit newStateCasted = (Bit) newState;
66                                 BitVector newStateVector = BitVector.of(newStateCasted);
67                                 if (wireQ.hasLogicModelBinding())
68                                         wireQ.forceWireValues(newStateVector);
69                                 // We set both wires because then both outputs go to their correct state at the same time, and to avoid problems when not
70                                 // both
71                                 // inputs are 1
72                                 if (wire_Q.hasLogicModelBinding())
73                                         wire_Q.forceWireValues(newStateVector.not());
74                         }
75                         break;
76                 default:
77                         super.setHighLevelState(stateID, newState);
78                         break;
79                 }
80         }
81
82         @Override
83         public Object getHighLevelState(String stateID)
84         {
85                 switch (stateID)
86                 {
87                 case "q":
88                         if (wireQ.hasLogicModelBinding())
89                                 return wireQ.getWireValues().getBit(0);
90                         return null;
91                 default:
92                         return super.getHighLevelState(stateID);
93                 }
94         }
95 }