What about higher level manipulation. Are these made by hand? What does the tooling look like? Can you modify the "maps" using editors, or code? I remember even early on there were Python libraries for manipulating Minecraft chunks.
You usually have items in an inventory. If you have what's needed, you can craft plenty of things by hand (but not complicated things like engines or anything to do with oil or uranium). Otherwise, you build belts to assembly machines, they take things from the belt, and make whatever you tell them.
Mid to late game you also get construction and logistics bots. The former allows you to copy/paste groups of machines (bots will make them), and the latter of which just makes sure you have things that you need in your inventory. Bots speed the game up quite a bit.
It's closer to redstone, but it's a more complicated system. It's like ladder logic in industrial control but with a couple hundred integer-valued registers per circuit network that the "combinators" update every game tick. The combinators include arithmetic and boolean operations, and you can set them to be performed on two or all of the registers.
It was fun figuring out how to make an automated system that feeds nuclear reactors with fuel to supply my base with just the right amount of steam for the generators, signaling an alarm in case of over utilization.
I've not played around with command blocks, but it's a bit more than redstone components.
When Factorio items are wired together with signal cable they have a few different operating modes. You can specify what objects are requested from a delivery network and what items are taken from a chest, or if any are to be taken at all. So this solution involved chests being filled with various items that have a specific color on belts, and then staggering pulls from the chests to place on belts in such a manner as to make pixels.
Those commands were issued by combinations of the constant signal block, the comparison/decider block, and the arithmetic block. I would say those entities are between NAND gates and pre fabricated if/else or for loop constructs.
To make a Minecraft analogy that more people might understand, is it closer to redstone or command blocks?