X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=era.mi%2Fsrc%2Fera%2Fmi%2Flogic%2Fcomponents%2Fgates%2FMultiInputGate.java;h=7d0e485368ec856c4823a51d1a9d1836225bfc20;hb=2427bceeaf96fefbd92ea04d7ebbb52606a7b2ff;hp=d67e8eac0aa902a179097ff7e4d4340d22af9fcd;hpb=72b00816f86e5d34d871c87fea76a94ffca25246;p=Mograsim.git diff --git a/era.mi/src/era/mi/logic/components/gates/MultiInputGate.java b/era.mi/src/era/mi/logic/components/gates/MultiInputGate.java index d67e8eac..7d0e4853 100644 --- a/era.mi/src/era/mi/logic/components/gates/MultiInputGate.java +++ b/era.mi/src/era/mi/logic/components/gates/MultiInputGate.java @@ -1,55 +1,58 @@ package era.mi.logic.components.gates; -import java.util.Arrays; -import java.util.Collections; import java.util.List; -import era.mi.logic.Bit; import era.mi.logic.components.BasicComponent; -import era.mi.logic.wires.WireArray; -import era.mi.logic.wires.WireArray.WireArrayInput; +import era.mi.logic.types.Bit; +import era.mi.logic.wires.Wire.WireEnd; -public abstract class MultiInputGate extends BasicComponent { - protected WireArray[] in; - protected WireArray out; - protected WireArrayInput outI; +public abstract class MultiInputGate extends BasicComponent +{ + protected WireEnd[] in; + protected WireEnd out; protected final int length; protected Operation op; - protected MultiInputGate(int processTime, Operation op, WireArray out, WireArray... in) { + protected MultiInputGate(int processTime, Operation op, WireEnd out, WireEnd... in) + { super(processTime); this.op = op; - length = out.length; + length = out.length(); this.in = in.clone(); if (in.length < 1) throw new IllegalArgumentException(String.format("Cannot create gate with %d wires.", in.length)); - for (WireArray w : in) { - if (w.length != length) + for (WireEnd w : in) + { + if (w.length() != length) throw new IllegalArgumentException("All wires connected to the gate must be of uniform length."); w.addObserver(this); } this.out = out; - outI = out.createInput(); } @Override - public List getAllInputs() { - return Collections.unmodifiableList(Arrays.asList(in)); + public List getAllInputs() + { + return List.of(in); } @Override - public List getAllOutputs() { - return Collections.unmodifiableList(Arrays.asList(out)); + public List getAllOutputs() + { + return List.of(out); } - protected void compute() { + @Override + protected void compute() + { Bit[] result = in[0].getValues(); for (int i = 1; i < in.length; i++) result = op.execute(result, in[i].getValues()); - outI.feedSignals(result); + out.feedSignals(result); } - protected interface Operation { + protected interface Operation + { public Bit[] execute(Bit[] a, Bit[] b); } }