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 (sodelay=1000means 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.rowsandcols: The number of rows and columns in the maze respectively.
Running the code above will open up the first and simplest level:
All levels
In the second level, the column-position of the minotaur is randomized.
The third level is a corridor with randomized turns.
The fourth level includes dead-ends.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mazemastery-1.0.4.tar.gz.
File metadata
- Download URL: mazemastery-1.0.4.tar.gz
- Upload date:
- Size: 3.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23804595f1e33f896e87734a98b4b336c71fcfa76944234cf3a1e5a3c4774c77
|
|
| MD5 |
b20bd62c28bd8d41b7867764bcc4622d
|
|
| BLAKE2b-256 |
c572737fc8ec5f04f7dd57683027227f7048d8edc5ce1511d09a84a681d7c5ac
|
File details
Details for the file mazemastery-1.0.4-py3-none-any.whl.
File metadata
- Download URL: mazemastery-1.0.4-py3-none-any.whl
- Upload date:
- Size: 137.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dd1793898ec19031e08749c6a73102e3dbbef219fb4e9f80c9b858fae286559
|
|
| MD5 |
6246f85299c5fa347a82b6ddbeb8d627
|
|
| BLAKE2b-256 |
a1b0fd8f40c706b78bf5dce7e7246fad818c219ef57a7ef703168f892ef77639
|