1 package net.mograsim.logic.model.model.components.atomic;
3 import static net.mograsim.logic.model.preferences.RenderPreferences.DEFAULT_LINE_WIDTH;
4 import static net.mograsim.logic.model.preferences.RenderPreferences.FOREGROUND_COLOR;
5 import static net.mograsim.logic.model.preferences.RenderPreferences.WIRE_WIDTH_MULTIBIT;
6 import static net.mograsim.logic.model.preferences.RenderPreferences.WIRE_WIDTH_SINGLEBIT;
8 import org.eclipse.swt.SWT;
10 import net.haspamelodica.swt.helper.gcs.GeneralGC;
11 import net.haspamelodica.swt.helper.swtobjectwrappers.Rectangle;
12 import net.mograsim.logic.core.wires.CoreWire.ReadEnd;
13 import net.mograsim.logic.model.BitVectorFormatter;
14 import net.mograsim.logic.model.model.LogicModelModifiable;
15 import net.mograsim.logic.model.model.components.ModelComponent;
16 import net.mograsim.logic.model.model.components.Orientation;
17 import net.mograsim.logic.model.model.components.OrientationCalculator;
18 import net.mograsim.logic.model.model.wires.Pin;
19 import net.mograsim.logic.model.model.wires.PinUsage;
20 import net.mograsim.logic.model.modeladapter.LogicCoreAdapter;
21 import net.mograsim.logic.model.modeladapter.componentadapters.SplitterAdapter;
22 import net.mograsim.logic.model.preferences.RenderPreferences;
23 import net.mograsim.logic.model.serializing.IdentifyParams;
24 import net.mograsim.logic.model.serializing.IndirectModelComponentCreator;
25 import net.mograsim.logic.model.util.JsonHandler;
26 import net.mograsim.preferences.ColorDefinition;
27 import net.mograsim.preferences.ColorManager;
29 //TODO introduce a direction
30 public class ModelSplitter extends ModelComponent
32 private static final double width = 10;
33 private static final double heightPerPin = 10;
35 private final double heightWithoutOC;
36 public final int logicWidth;
37 private final OrientationCalculator oc;
38 private final Pin inputPin;
40 private ReadEnd inputEnd;
41 private final ReadEnd[] outputEnds;
43 public ModelSplitter(LogicModelModifiable model, SplitterParams params)
45 this(model, params, null);
48 public ModelSplitter(LogicModelModifiable model, SplitterParams params, String name)
50 super(model, name, false);
51 this.logicWidth = params.logicWidth;
52 this.oc = new OrientationCalculator(toggleLeftDownAlt(params.orientation), width,
53 this.heightWithoutOC = (logicWidth - 1) * heightPerPin);
54 setSize(oc.width(), oc.height());
55 double inLineY = (logicWidth - 1) * heightPerPin / 2;
56 addPin(this.inputPin = new Pin(model, this, "I", logicWidth, PinUsage.TRISTATE, oc.newX(0, inLineY), oc.newY(0, inLineY)));
57 double outputHeight = (logicWidth - 1) * heightPerPin;
58 for (int i = 0; i < logicWidth; i++, outputHeight -= 10)
59 addPin(new Pin(model, this, "O" + i, 1, PinUsage.TRISTATE, oc.newX(width, outputHeight), oc.newY(width, outputHeight)));
60 outputEnds = new ReadEnd[logicWidth];
66 public void render(GeneralGC gc, RenderPreferences renderPrefs, Rectangle visibleRegion)
68 double posX = getPosX();
69 double posY = getPosY();
71 ColorDefinition c = BitVectorFormatter.formatAsColor(renderPrefs, inputEnd);
73 gc.setForeground(ColorManager.current().toColor(c));
74 gc.setLineWidth(renderPrefs.getDouble(logicWidth == 1 ? WIRE_WIDTH_SINGLEBIT : WIRE_WIDTH_MULTIBIT));
75 double inLineY = heightWithoutOC / 2;
76 gc.drawLine(posX + oc.newX(0, inLineY), posY + oc.newY(0, inLineY), posX + oc.newX(width / 2, inLineY),
77 posY + oc.newY(width / 2, inLineY));
78 gc.setLineWidth(renderPrefs.getDouble(WIRE_WIDTH_SINGLEBIT));
79 double outputHeight = 0;
80 for (int i = 0; i < logicWidth; i++, outputHeight += 10)
82 c = BitVectorFormatter.formatAsColor(renderPrefs, outputEnds[i]);
84 gc.setForeground(ColorManager.current().toColor(c));
85 gc.drawLine(posX + oc.newX(width / 2, outputHeight), posY + oc.newY(width / 2, outputHeight),
86 posX + oc.newX(width, outputHeight), posY + oc.newY(width, outputHeight));
88 gc.setForeground(renderPrefs.getColor(FOREGROUND_COLOR));
89 int oldLineCap = gc.getLineCap();
90 int lineJoin = gc.getLineJoin();
91 // TODO find better "replacement" for JOIN_BEVEL
92 // TODO it looks weird that the vertical line is thinner than the single multibit wire.
93 gc.setLineCap(lineJoin == SWT.JOIN_MITER ? SWT.CAP_SQUARE : lineJoin == SWT.JOIN_ROUND ? SWT.CAP_ROUND : SWT.CAP_SQUARE);
94 gc.drawLine(posX + oc.newX(width / 2, 0), posY + oc.newY(width / 2, 0), posX + oc.newX(width / 2, heightWithoutOC),
95 posY + oc.newY(width / 2, heightWithoutOC));
96 gc.setLineWidth(renderPrefs.getDouble(DEFAULT_LINE_WIDTH));
97 gc.setLineCap(oldLineCap);
101 public String getIDForSerializing(IdentifyParams idParams)
107 public SplitterParams getParamsForSerializing(IdentifyParams idParams)
109 SplitterParams splitterParams = new SplitterParams();
110 splitterParams.logicWidth = logicWidth;
111 splitterParams.orientation = toggleLeftDownAlt(oc.getOrientation());
112 return splitterParams;
115 public void setCoreModelBinding(ReadEnd inputEnd, ReadEnd[] outputEnds)
117 this.inputEnd = inputEnd;
118 System.arraycopy(outputEnds, 0, this.outputEnds, 0, logicWidth);
121 public Pin getInputPin()
127 * Used to leave bit order intuitive (MSB left or on top)
129 private static Orientation toggleLeftDownAlt(Orientation orientation)
131 // TODO if we upgrade to Java 12, replace with switch-expression
135 return Orientation.LEFT_ALT;
137 return Orientation.LEFT;
139 return Orientation.DOWN_ALT;
141 return Orientation.DOWN;
147 public static class SplitterParams
149 public int logicWidth;
150 public Orientation orientation;
155 LogicCoreAdapter.addComponentAdapter(new SplitterAdapter());
156 IndirectModelComponentCreator.setComponentSupplier(ModelSplitter.class.getCanonicalName(),
157 (m, p, n) -> new ModelSplitter(m, JsonHandler.fromJsonTree(p, SplitterParams.class), n));