I am trying to understand how to use CellularAutomaton function. For example, I am interested in the Game life and I found a working example here. However I cannot understand or find a detailed explanation about the rule syntax/format.
By the link I mentioned above, this rule is used:
gameOfLife = {224, {2, {{2, 2, 2}, {2, 1, 2}, {2, 2, 2}}}, {1, 1}};
What does it mean and how to understand it? I could not find any explanation except this link about Totalistic Cellular Automaton, but this explanation is still not clear.
I do not need to understand the whole generic rule syntax/format for now. First, I want to understand only game life.