Giter VIP home page Giter VIP logo

mazemastery's Introduction

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.

mazemastery's People

Contributors

rabaur avatar donnerdistel avatar jppellet avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.