I am trying to come up with an algorithm for random walking in a scene tile based game. The walker needs to be able to randomly navigate until all tiles are explored or until it finds the next level.
So far I have the tile as explored if the actor steps on it.
Then it finds the path to the center of the next tile.
But where its failing is it often thinks its finished exploring, or that there is no more tiles left.
Is there anywhere to look for some examples, as if I were to paste source it would be way long.
Hmm... if you mean truly random walking, then get a list of all the tiles, randomize it, then add the randomized items to a stack (or queue). Pop each tile off the stack as you walk to it.
If you mean pseudo-random "wandering around", then you could modify this approach by using a
List<Tile>
. Use your own custom solution for picking the next tile (rather than popping it from a stack) and simultaneously remove theTile
from theList
. Keep looping as long as theList
is not empty.If you have a more advanced scenario (where you may not know the tiles beforehand, or where tiles may be inaccessible), then you may find this CodeProject article (and demo code) helpful:
A* algorithm implementation in C#
Further Info
Randomize a List in C#
Stack class (MSDN)