Page 1 of 1

New output option for Decider combinator

Posted: Thu Apr 07, 2016 9:44 am
by Neotix
Right now we have 2 options in decider combinator:

- output selected signal with value = 1
Input signals:
A = 100
B = 20
Conditions
A = 100
B -> 1
Output signals:
B = 1

- output selected signal with value = input signal selected in condition
Input signals:
A = 100
B = 20
Conditions
A = 100
B -> input count
Output signals:
B = 100

In both situations, even if we have signal B on input, it's ignored.

My proposal is to add "pass through" option.
Input signals:
A = 100
B = 20
Conditions
A = 100
B -> pass through
Output signals:
B = 20

It could also work with EACH signal:
Input signals:
A = 100
B = 20
Conditions
A = 100
EACH -> pass through
Output signals:
A = 100
B = 20

I know that we can achieve that now with some combinators but we lose ticks on additional calculations, in more complex designs it take more space, generate bigger wires spaghetti and it's harder to debug, show and explain.