Im struggling to solve an open problem, namely, when building a cellular automata like Conways GOL, how would one go about implementing teams? Instead of just one Automata, I want two or three competing over the cells that are available.
The real problem is how do you let the Automata decide which team wins a 'battle' when blue cells for example meet red cells, how do we determine which colored cells will eventually overcome the other. Using a coin flip to randomly determine the winner will result in a equilibrium where both colors keep switching cells but it is extremely unlikely one will completely replace the other as every turn they both have a 50/50 chance.
So thats not a solution. How would one go about getting a 'winner' out of 2 contestants who ar basically the same? I was thinking about giving every cell a "power (int)" of 1, and adding up all those power variables (basically counting all same colored cells and comparing that with the other team, whichever team/color has more cells in the game at that point will continue to dominate and eventually win the game, but thats not a solution either.
Can someone point me in the right direction here?
Basically how do you determine a winner when both parties are exactly equal, and it cannot be 50/50 random either, it has to be able to evolve like in Conways Game of Life.
EDIT: This Automaton wont take into account overpopulation (cells dying from too many adjacent neighbours). It is a Cellular Automaton but it will have different rulles than CGOL. For now only expansion from 2 or more neighbours, essentially the cells will try to fill the entire grid with their color.
Thanks for your insight !
-Erik