Skip to content
foolswood edited this page May 4, 2012 · 6 revisions

#Maze Design

Getting Started

Tools

To make maps you will need a text editor.

Where Are The Mazes

In the gh-pages branch in the mazes directory.

Maze Files

The maze files are JSON. The files contain a list of mazes, each maze is an object whose entries are detailed below.

Mandatory Entries

  • maze - The Maze Description.
  • start - Start Co-ordinate.
  • end - End Co-ordinate.

Maze Description

The maze is a list of strings.

Optional Entries

  • startColour - The colour the player starts the maze as.

#An Example Maze {"maze" : [ "RyGrBgY", "gbygybb", "YgBgRyY"], "start" : "0,0", "end" : "3,0", "startColour" : "w" }