Complex Arithmetic Combinator

Post your ideas and suggestions how to improve the game.

Moderator: ickputzdirwech

Viidi
Long Handed Inserter
Long Handed Inserter
Posts: 57
Joined: Thu Jun 16, 2022 8:52 pm
Contact:

Complex Arithmetic Combinator

Post by Viidi »

TL;DR
I propose making the Arithmetic Combinator as complex as the Decider Combinator: so that it can perform multiple operations per tick.

What?
With the ability to perform parallel and sequential operations (similar to AND (PARALLEL WITH) and OR (THEN) for the Decider Combinator):

Code: Select all

   A = A + 1
   PARALLEL WITH
   B = B + 1
THEN
   C = A / B
THEN
   ...
For example, the division problem with rounding up could be solved as follows (divide the Every signal by D):

Code: Select all

   A = D - 1
THEN
   Every = Every + A
   PARALLEL WITH
   A = 0 + 0 # Remove the intermediate value from the combinator output
THEN
   Every = Every / D

Why?
I love logic networks and would like some new updates to the combinators, too, so I can build my circuits in a new way.
User avatar
Onii-ChanFL
Burner Inserter
Burner Inserter
Posts: 16
Joined: Thu Oct 24, 2024 1:54 pm
Contact:

Re: Complex Arithmetic Combinator

Post by Onii-ChanFL »

+1
Post Reply

Return to “Ideas and Suggestions”