Metadata-Version: 1.1
Name: mazingame
Version: 1.2
Summary: A game of maze.
Home-page: https://github.com/samisalkosuo/mazingame
Author: Sami Salkosuo
Author-email: dev@rnd-dev.com
License: MIT
Description: MazinGame
        =========
        A game of maze.
        
        Idea of the game is to find a path through the maze to a location marked by 'X'.
        
        Snapshot from an actual game::
        
        	+   +   +   +   +   +   +   +   +---+   +---+---+---+   +   +   +   +---+   +---+
        	|   |   |   |   |   |   |   |       |                       |           |   |
        	+   +   +---+   +   +   +   +---+   +---+---+   +---+---+   +---+   +   +   +   +
        	|   |     X |   |   |   |       |   |       |       |       |       |   |
        	+---+---+   +   +   +   +---+   +   +---+   +---+   +   +---+   +---+   +   +---+
        	| .   .   @ |       |       |   |       |   |       |       |   |       |       |
        	+   +---+---+---+   +   +   +   +---+   +   +   +---+   +---+   +   +   +---+   +
        	| .             |       |   |       |   |       |               |           |   |
        	+   +---+   +   +---+---+   +   +   +   +---+---+   +---+---+   +---+---+   +   +
        	| .   . |   |               |   |       |       |           |   |           |
        	+---+   +   +---+---+---+---+   +---+---+   +   +---+---+   +   +   +---+---+---+
        	| .   . |           |       |   |       |   |   |           |       |
        	+   +---+---+   +   +   +   +   +   +---+   +   +   +---+---+   +---+   +   +---+
        	| . |           |       |   |   |   |       |   |   |       |           |
        	+   +   +---+---+---+   +   +   +   +   +---+   +   +---+   +---+---+   +---+   +
        	| . |       |       |   |   |   |   |   |       |               |       |       |
        	+   +---+   +   +   +   +   +   +   +   +   +---+---+---+---+---+   +---+   +---+
        	| .   .   . |   |   |       |       |   |           |       |       |           |
        	+---+---+   +   +   +---+   +   +---+   +---+---+   +   +   +   +---+   +   +   +
        	| .   . | . |   |       |   |           |   |       |   |       |   |       |
        	+   +   +   +---+---+   +   +---+---+   +   +   +   +   +---+---+   +---+---+---+
        	| . | . | .   .   . |       |           |           |           |   |           |
        	+   +   +---+---+   +---+---+   +---+---+   +---+---+   +---+   +   +   +---+   +
        	P: (9,2) X: (8,2) Moves: 35/36 Elapsed: 12.670secs Score: 8288
        
        Requirements
        ------------
        
        Python 3.5 with curses and mazepy. Developed and tested with Cygwin and Mac OS X. 
        Does not work with Python2 or Windows without Cygwin.
        
        Install
        -------
        
        Install latest version: **pip install mazingame**.
        
        Instructions
        ------------
        
        You will start at some location in the bottom of the maze. 'X' is somewhere
        nearer the top of the maze.
        Move using cursor keys or 'w','a','s','d'.
        Quit pressing 'q' or Ctrl-C.
        
        When, or if, you reach 'X', the ending score is saved to SQLite database.
        The default highscore file location is $HOME/.mazingame_highscores.sqlite.
        Use environment variable MAZINGAME_HIGHSCORE_FILE to set another file.
        
        Command line options include:
        	-f, --fullscreen      Use terminal to show entire maze. But only if terminal size is larger than the maze.
        	--showpath            Show shortest path. Remember: this is cheating.
        	--showmaze            Show entire maze. Remember: this is cheating.
        	-hs, --highscores     Show high scores.
        
        And a few more.
        
        Note: database in high score file may change from version to version, if you
        get SQLite error when saving high scores, delete your high score file.
        
        About
        -----
        
        This hobby project was inspired by the book "Mazes for Programmers" by Jamis Buck
        (https://pragprog.com/book/jbmaze/mazes-for-programmers).
        
        Python translations of the maze code is in mazepy-project (https://github.com/samisalkosuo/mazepy).
        
        See http://sami.salkosuo.net/mazingame/ for some background about MazinGame.
        
Platform: UNKNOWN
Classifier: Environment :: Console :: Curses
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Topic :: Games/Entertainment
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3 :: Only
