Made GUIMerger and GUISplitter serializable
[Mograsim.git] / net.mograsim.logic.model / src / net / mograsim / logic / model / model / components / atomic / GUIMerger.java
1 package net.mograsim.logic.model.model.components.atomic;
2
3 import com.google.gson.JsonElement;
4 import com.google.gson.JsonPrimitive;
5
6 import net.haspamelodica.swt.helper.gcs.GeneralGC;
7 import net.haspamelodica.swt.helper.swtobjectwrappers.Rectangle;
8 import net.mograsim.logic.core.types.BitVectorFormatter;
9 import net.mograsim.logic.core.wires.Wire.ReadEnd;
10 import net.mograsim.logic.model.model.ViewModelModifiable;
11 import net.mograsim.logic.model.model.components.GUIComponent;
12 import net.mograsim.logic.model.model.wires.Pin;
13 import net.mograsim.logic.model.modeladapter.ViewLogicModelAdapter;
14 import net.mograsim.logic.model.modeladapter.componentadapters.MergerAdapter;
15 import net.mograsim.logic.model.serializing.IdentifierGetter;
16 import net.mograsim.logic.model.serializing.IndirectGUIComponentCreator;
17 import net.mograsim.preferences.ColorDefinition;
18 import net.mograsim.preferences.ColorManager;
19 import net.mograsim.preferences.Preferences;
20
21 public class GUIMerger extends GUIComponent
22 {
23         private static final double width = 20;
24         private static final double heightPerPin = 10;
25
26         public final int logicWidth;
27
28         private ReadEnd[] inputEnds;
29         private ReadEnd outputEnd;
30
31         public GUIMerger(ViewModelModifiable model, int logicWidth, String name)
32         {
33                 super(model, name);
34                 this.logicWidth = logicWidth;
35                 setSize(width, logicWidth * heightPerPin);
36                 double inputHeight = 0;
37                 for (int i = 0; i < logicWidth; i++, inputHeight += 10)
38                         addPin(new Pin(this, "I" + i, 1, 0, inputHeight));
39                 addPin(new Pin(this, "O", logicWidth, width, logicWidth * heightPerPin / 2));
40         }
41
42         @Override
43         public void render(GeneralGC gc, Rectangle visibleRegion)
44         {
45                 double posX = getPosX();
46                 double posY = getPosY();
47
48                 double inputHeight = posY;
49                 for (int i = 0; i < logicWidth; i++, inputHeight += 10)
50                 {
51                         ColorDefinition c = BitVectorFormatter.formatAsColor(inputEnds[i]);
52                         if (c != null)
53                                 gc.setForeground(ColorManager.current().toColor(c));
54                         gc.drawLine(posX, inputHeight, posX + width / 2, inputHeight);
55                 }
56                 gc.setForeground(Preferences.current().getColor("net.mograsim.logic.model.color.foreground"));
57                 gc.drawLine(posX + width / 2, posY, posX + width / 2, posY + heightPerPin * (logicWidth - 1));
58                 ColorDefinition c = BitVectorFormatter.formatAsColor(outputEnd);
59                 if (c != null)
60                         gc.setForeground(ColorManager.current().toColor(c));
61                 gc.drawLine(posX + width / 2, posY + heightPerPin * logicWidth / 2, posX + width, posY + heightPerPin * logicWidth / 2);
62         }
63
64         @Override
65         public JsonElement getParamsForSerializing(IdentifierGetter idGetter)
66         {
67                 return new JsonPrimitive(logicWidth);
68         }
69
70         public void setLogicModelBinding(ReadEnd[] inputEnds, ReadEnd outputEnd)
71         {
72                 this.inputEnds = inputEnds;
73                 this.outputEnd = outputEnd;
74         }
75
76         static
77         {
78                 ViewLogicModelAdapter.addComponentAdapter(new MergerAdapter());
79                 IndirectGUIComponentCreator.setComponentSupplier(GUIMerger.class.getCanonicalName(),
80                                 (m, p, n) -> new GUIMerger(m, p.getAsInt(), n));
81         }
82 }