X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.model%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fmodel%2Fmodel%2Fwires%2FPin.java;h=11a69082ec717aa5c4f658fec8a30c3243778465;hb=b32414f8406634aca730d724a011023c0da8bf22;hp=38ba2045f94e01e6504b1161911b83f10717e33c;hpb=93b398d6271a538a2a4c9f4de07a3b4a8a2a7fd4;p=Mograsim.git diff --git a/net.mograsim.logic.model/src/net/mograsim/logic/model/model/wires/Pin.java b/net.mograsim.logic.model/src/net/mograsim/logic/model/model/wires/Pin.java index 38ba2045..11a69082 100644 --- a/net.mograsim.logic.model/src/net/mograsim/logic/model/model/wires/Pin.java +++ b/net.mograsim.logic.model/src/net/mograsim/logic/model/model/wires/Pin.java @@ -1,15 +1,18 @@ package net.mograsim.logic.model.model.wires; import java.util.ArrayList; +import java.util.HashSet; import java.util.List; import java.util.Objects; +import java.util.Set; import java.util.function.Consumer; import net.haspamelodica.swt.helper.swtobjectwrappers.Point; +import net.mograsim.logic.model.model.LogicModelModifiable; import net.mograsim.logic.model.model.components.ModelComponent; /** - * A connection interface between a ModelComponent and the rest of a ViewModel. Pins usually are created by {@link ModelComponent}s + * A connection interface between a ModelComponent and the rest of a LogicModel. Pins usually are created by {@link ModelComponent}s * themselves.
* A pin has a name identifying it. Pin names are unique for a {@link ModelComponent}: Every pin of a {@link ModelComponent} has a different * name, but different {@link ModelComponent}s can have pins with the same name. @@ -18,6 +21,10 @@ import net.mograsim.logic.model.model.components.ModelComponent; */ public class Pin { + /** + * The {@link LogicModel} the component this pin belongs to is a part of. + */ + private final LogicModelModifiable model; /** * The {@link ModelComponent} this pin belongs to. */ @@ -56,8 +63,9 @@ public class Pin * * @author Daniel Kirschten */ - public Pin(ModelComponent component, String name, int logicWidth, PinUsage usage, double relX, double relY) + public Pin(LogicModelModifiable model, ModelComponent component, String name, int logicWidth, PinUsage usage, double relX, double relY) { + this.model = model; this.component = component; this.name = name; this.logicWidth = logicWidth; @@ -71,6 +79,19 @@ public class Pin component.addComponentMovedListener(c -> callPinMovedListeners()); } + /** + * Destroys this pin by removing all wires connected to it from the model the component is a part of.
+ * Don't call this method from application code as it is automatically called in {@link ModelComponent#removePin(String)}. + */ + public void destroyed() + { + Set connectedWires = new HashSet<>(); + for (ModelWire w : model.getWiresByName().values()) + if (w.getPin1() == this || w.getPin2() == this) + connectedWires.add(w); + connectedWires.forEach(model::destroyWire); + } + // "graphical" operations /**