% Comments are given with % at the start of a line name=Walk around description=Simple 8x8 2D maze author=Maarten Pennings date=2010-11-14 % White lines are also allowed type=Wall1_AB_2D % type ~ version of input file % The wall1 in plain.AB.2D means each cell is 3x3 % +-+ % | | % +-+ % sharing wall with next (so no trap doors can be specified) % The AB in plain.AB.2D means start is given with A % and end is given with B in the diagram % The 2D means the maze is 2 dimensional (no bridges) sx=8 sy=8 % After the header with some properties % follows the maze diagram, matching type (sx and sy) % It can not have whitelines, nor comments +-+-+-+-+-+-+-+-+ | | +-+-+-+ + +-+-+ + | | | B| | + +-+-+ + +-+-+ + | | | | | + + +-+-+ + +-+ + | | | | | | | | + +-+ +-+-+ + + + | | | | + +-+-+-+-+-+ +-+ | | | | + +-+-+ + + + +-+ | |A | | | | + +-+-+ +-+ +-+ + | | +-+-+-+-+-+-+-+-+