maze wall algorithm

2005-11-14 Thread N Cueto
This is a puzzle more than a RunRev topic. Apologies. If given a maze in the form of a grid such as this... _ _ _ |1|2|3| |- - -| |4|5|6| |- - -| |7|8|9| - - - ... and in which the squares are made up of images and the walls of graphics... ... and also in which the walls are removable so as

Re: maze wall algorithm

2005-11-14 Thread Scott Rossi
Recently,N Cueto wrote: If given a maze in the form of a grid ... then, what would be the ideal scripting for limiting movement between only contiguous squares that are not separated by a wall The way I've done something like this in the past is to use physical boundaries, in other

Re: maze wall algorithm

2005-11-14 Thread Malte Brill
Hi Nicolas, If given a maze in the form of a grid such as this... Adding to Scotts suggestions I have a few questions. Will the maze be hard coded or does it change randomly? Do you want to move through the grid cell by cell (to the center of each cell) or do you want to be able to move to