A better idea:
Hey there, thanks for the idea. I'm not sure I fully understand it though.
- Create an invisible constant combinator with filtered signals and values of 2000000000000
What do you mean by a constarnt combinator with filtered signals?
I mean a constant combinator which is set to the signals you want to keep after filtering.
Let's start from the very beginning:
Say you have signals in network: copper = -50, iron = 200, stone = 10, wood = -30,
And you want to filter: to keep only copper and iron and get rid of all the rest
You should set constant combinator to
copper = 2000000000000, and iron = 2000000000000.
After that you just wire that combinator and input togather.
This summs them up, so you'll get:
copper 2000000000200+(-50) => 1999999999950,
iron 2000000000000+200 => 2000000000200,
store = 10
wood = -30
Now all this goes (wires) into decider with condition ">1000000000000" and output = each input, so let's see:
copper = 1999999999950 - passes
iron = 2000000000200 - passes
store = 10 - won't pass
wood = -30 - won't pass
So now we have:
copper = 1999999999950, iron = 2000000000200
Ok, the final step: let's put an arithmetic combinator which subtracts 2000000000000 from each and outputs each:
copper 1999999999950-2000000000000 => -50
iron 2000000000200 => 200
So we finally got the output we wanted: iron = 200, copper = -50.
We started with: copper = -50, iron = 200, stone = 10, wood = -30 and now filtered it to iron = 200, copper = -50.