Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

There are 300 cell types in each genome. Each cell type has three values for three possible growth directions (forward, left and right). If -2 is written there, then it does not grow. If there is -1, a spore grows there. If a number from 0 to 299 is written there, then it grows and the new grown cell will be of the same type as this number. That's all. This defines the entire pattern.

When a mold dies, some of its spores turn into new little molds. A single number in their genome can be replaced by a random one.

(+1)

im a bit confused, what does the 0-299 number represent, and how is the direction information encoded

(1 edit)

Every mold has its own 300 triplets of numbers, [A,B,C]. A cell with A type is 42 uses a triplet with A number 42. 

The first number in this triplet is the type of a new cell that will appear to its left. The second number is the type of new cell that will appear to its front. The third number is the type of new cell that will appear to its right. If any number is -2, then no new cell will appear and the space next to it is empty.