Skip to main content

MazeMastery is a Python framework for teaching maze traversal to high school students. It helps students develop abstraction skills by providing a didactic tool. They can test their algorithms against randomized test cases of increasing complexity. The framework facilitates learning analysis and conceptual challenges. MazeMastery is an open-source project for scientists and educators.

Project description

How to run

This is mazemastery, a Python package that allows you to conquer mazes of various shapes using the power of coding!

You can read all about mazemastery in great length in our paper. This short guide covers only the basics and will help you to set up mazemastery on your device as fast as possible.

You can use your favourite IDE (or text editor), but we assume you have set up a Python 3 (and pip) with VS Code.

Installing mazemastery

Open your terminal and type:

python3 -m pip install mazemastery

Done!

Running mazemastery

To run mazemastery, all you need is a Python file with the following content:

from mazemastery.api import *

def my_solution():
    # My code to solve the maze goes here!
    pass

run(level=0, solve=my_solution, delay=100, cell_size=100, rows=11, cols=11)

Let's go over it. The first line imports all functions from the mazemastery API, which allow you to control the protagonist in the maze. If you don't like the *-import, you can also import only the functions you need.

Then you can define a function that mazemastery will use to try and solve the maze. The function does not need to take any arguments.

The last line contains the run command imported from mazemastery.api. It manages the creation and visualization of the maze, and runs your code to see if you managed to reach the Minotaur. Its arguments have the following meaning:

  • level: This is the level number you'd like to attempt, ranging from 1-6 (easiest to hardest).
  • solve: This is the function that will be run on the maze. Remember that in Python, functions can be defined and used like variables. Here, you can just type the name of the function that contains your code (my_solution), which passes this function as an argument.
  • delay: The delay in milliseconds between frames (so delay=1000 means one second). Increase this value to slow down the visualization and vice versa.
  • cell_size: The size of a single cell of the maze in pixels.
  • rows and cols: The number of rows and columns in the maze respectively.

Running the code above will open up the first and simplest level: The first level

All levels

The second level In the second level, the column-position of the minotaur is randomized.

The third level The third level is a corridor with randomized turns.

The fourth level The fourth level includes dead-ends.

The fifth level The fifth level features dead-ends and cycles.

Example solutions and student attempts

Example solutions for all levels can be found in ./src/level<level_nr>.py, where <level_nr> indicates the level number. Student attempts from our user study can be found in ./src/student_solutions.py.

Feedback and Improvements

We would love to hear your feedback. If you find a bug or have an idea for an improvement, please open up a new issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mazemastery-1.0.3.tar.gz (3.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mazemastery-1.0.3-py3-none-any.whl (137.3 kB view details)

Uploaded Python 3

File details

Details for the file mazemastery-1.0.3.tar.gz.

File metadata

  • Download URL: mazemastery-1.0.3.tar.gz
  • Upload date:
  • Size: 3.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for mazemastery-1.0.3.tar.gz
Algorithm Hash digest
SHA256 37e1d0e51473ff2ebf5ad3da6d38d74a2b5a6504a49a99e4ecb45c03eb63823b
MD5 08da235afd66e3e4753353607267d096
BLAKE2b-256 21601bf87d9acfdc28c94f56e5bd35c0bd2162dea63821ea16b76a5c9daebeeb

See more details on using hashes here.

File details

Details for the file mazemastery-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: mazemastery-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 137.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for mazemastery-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f155b570195302a2cf76085e73197b62b02b2e960d0beb53f96023880755f0ac
MD5 94708ff54416e03348f1735228043605
BLAKE2b-256 dca54a8f12eee4621044eb87e80a5f6fb5c39959961459fa76f969672c4d0a8b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page