Falling Sand simulation

Posted by Erik Forbes on Stack Overflow See other posts from Stack Overflow or by Erik Forbes
Published on 2011-01-10T21:46:26Z Indexed on 2011/01/10 21:53 UTC
Read the original article Hit count: 285

Filed under:
|

I'm trying to re-create a 'falling sand' simulation, similar to those various web toys that are out there doing the same thing - and I'm failing pretty hard. I'm not really sure where to begin. I'm trying to use cellular automata to model the behavior of the sand particles, but I'm having trouble figuring out how to make the direction in which I update the 'world' not matter...

For example, one of the particle types I'd like to have is Plant. When Plant comes in contact with Water, Plant turns that Water particle into another Plant particle. The problem here though is that if I'm updating the game world from top to bottom and left to right, then a Plant particle placed in the middle of a sea of Water particles will immediately cause all of the Water particles to the right and below that new Plant particle to turn into Plants. This is not the behavior I am expecting. =(

I'm having difficulty explaining exactly my difficulty, so I'll try to add more information as best I can as I go along. Suffice it to say that this is very much outside my box, as it were, and I don't even know what to search for.

© Stack Overflow or respective owner

Related posts about physics

Related posts about cellular-automata