Integrated new types, tests still work, not used yet
[Mograsim.git] / era.mi / src / era / mi / logic / components / Splitter.java
index 48db52d..09321f1 100644 (file)
@@ -1,32 +1,34 @@
 package era.mi.logic.components;
 
-import era.mi.logic.Bit;
-import era.mi.logic.WireArray;
-import era.mi.logic.WireArrayObserver;
+import era.mi.logic.types.Bit;
+import era.mi.logic.wires.Wire;
+import era.mi.logic.wires.Wire.WireEnd;
+import era.mi.logic.wires.WireObserver;
 
-public class Splitter implements WireArrayObserver
+public class Splitter implements WireObserver
 {
-       private WireArray input;
-       private WireArray[] outputs;
-       
-       public Splitter(WireArray input, WireArray... outputs)
+       private WireEnd input;
+       private WireEnd[] outputs;
+
+       public Splitter(WireEnd input, WireEnd... outputs)
        {
                this.input = input;
                this.outputs = outputs;
                input.addObserver(this);
                int length = 0;
-               for(WireArray out : outputs)
+               for (WireEnd out : outputs)
                        length += out.length();
-               
-               if(input.length() != length)
-                       throw new IllegalArgumentException("The input of splitting one into n WireArrays must have length = a1.length() + a2.length() + ... + an.length().");
+
+               if (input.length() != length)
+                       throw new IllegalArgumentException(
+                                       "The input of splitting one into n WireArrays must have length = a1.length() + a2.length() + ... + an.length().");
        }
 
        protected void compute()
        {
                int startIndex = 0;
                Bit[] inputBits = input.getValues();
-               for(int i = 0; i < outputs.length; i++)
+               for (int i = 0; i < outputs.length; i++)
                {
                        Bit[] outputBits = new Bit[outputs[i].length()];
                        System.arraycopy(inputBits, startIndex, outputBits, 0, outputs[i].length());
@@ -35,18 +37,8 @@ public class Splitter implements WireArrayObserver
                }
        }
 
-       public WireArray getInput()
-       {
-               return input;
-       }
-       
-       public WireArray[] getOutputs()
-       {
-               return outputs.clone();
-       }
-       
        @Override
-       public void update(WireArray initiator)
+       public void update(Wire initiator, Bit[] oldValues)
        {
                compute();
        }