A collection of arcade style audio games for MazeDay 2017.
To play these games, you have to have Python3 on your computer. If you don't have it installed, the easiest place to get it is from the Anaconda distribution.
To install dependencies navigate to the repository and run:
pip install -r requirements.txt
Each mini-game is currently run independently. To run Binball, for example, do
cd src
python binball.py
Please refer to the README
of the game you're interested in for specific instructions on how to play each game.
Below is a list of games currently available:
- Speedy Typer - A type racing games where you must reach a certain Words-Per-Minute to make it to the next level.
- Minesweeper - Modeled after the classic Windows puzzle game, see if you can clear the board of mines to win the game.
- Escape from Tycho Crater - a running game where you flee from a UFO. Can you get away?
- Binball - A pinball arcade game where flippers have been replaced by bins. How many points can you score?!
Feel free to submit a pull request if you have a feature you would like added!
Each game should be given it's own directory. For example, if you're interested in contributing a "Call of Duty" clone, the directory structure should be:
└── src/
└── call_of_duty_game/
├── tests/
├── __init__.py
├── README.md
└── call_of_duty.py
Pygame may not run correctly on Mac OS.