Merge remote-tracking branch 'origin/development' into development
[Mograsim.git] / net.mograsim.logic.model / src / net / mograsim / logic / model / model / components / atomic / GUISplitter.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.SplitterAdapter;
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 GUISplitter 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 inputEnd;
29         private ReadEnd[] outputEnds;
30
31         public GUISplitter(ViewModelModifiable model, int logicWidth, String name)
32         {
33                 super(model, name);
34                 this.logicWidth = logicWidth;
35                 setSize(width, logicWidth * heightPerPin);
36                 addPin(new Pin(this, "I", logicWidth, 0, logicWidth * heightPerPin / 2));
37                 double outputHeight = 0;
38                 for (int i = 0; i < logicWidth; i++, outputHeight += 10)
39                         addPin(new Pin(this, "O" + i, 1, width, outputHeight));
40         }
41
42         @Override
43         public void render(GeneralGC gc, Rectangle visibleRegion)
44         {
45                 double posX = getPosX();
46                 double posY = getPosY();
47
48                 ColorDefinition c = BitVectorFormatter.formatAsColor(inputEnd);
49                 if (c != null)
50                         gc.setForeground(ColorManager.current().toColor(c));
51                 gc.drawLine(posX, posY + heightPerPin * logicWidth / 2, posX + width / 2, posY + heightPerPin * logicWidth / 2);
52                 gc.setForeground(Preferences.current().getColor("net.mograsim.logic.model.color.foreground"));
53                 gc.drawLine(posX + width / 2, posY, posX + width / 2, posY + heightPerPin * (logicWidth - 1));
54                 double outputHeight = posY;
55                 for (int i = 0; i < logicWidth; i++, outputHeight += 10)
56                 {
57                         c = BitVectorFormatter.formatAsColor(outputEnds[i]);
58                         if (c != null)
59                                 gc.setForeground(ColorManager.current().toColor(c));
60                         gc.drawLine(posX + width / 2, outputHeight, posX + width, outputHeight);
61                 }
62         }
63
64         @Override
65         public JsonElement getParamsForSerializing(IdentifierGetter idGetter)
66         {
67                 return new JsonPrimitive(logicWidth);
68         }
69
70         public void setLogicModelBinding(ReadEnd inputEnd, ReadEnd[] outputEnds)
71         {
72                 this.inputEnd = inputEnd;
73                 this.outputEnds = outputEnds;
74         }
75
76         static
77         {
78                 ViewLogicModelAdapter.addComponentAdapter(new SplitterAdapter());
79                 IndirectGUIComponentCreator.setComponentSupplier(GUISplitter.class.getCanonicalName(),
80                                 (m, p, n) -> new GUISplitter(m, p.getAsInt(), n));
81         }
82 }