brutalmaze/README.rst

61 lines
2.3 KiB
ReStructuredText
Raw Normal View History

2017-10-12 15:29:55 +02:00
Brutal Maze
===========
2018-02-13 16:17:04 +01:00
Brutal Maze is a hack and slash game with fast-paced action and a minimalist
2017-11-09 09:22:39 +01:00
art style.
2017-10-20 15:51:39 +02:00
.. image:: https://raw.githubusercontent.com/McSinyx/brutalmaze/master/screenshot.png
2017-10-20 15:51:39 +02:00
The game features a trigon trapped in an infinite maze. As our hero tries to
2017-11-21 15:49:35 +01:00
escape, the maze's border turns into aggressive squares trying to stop him.
Your job is to help the trigon fight against those evil squares and find a way
out (if there is any). Be aware that the more get killed, the more will show up
and our hero will get weaker when wounded.
2017-10-20 15:51:39 +02:00
2017-11-21 15:49:35 +01:00
Brutal Maze has a few notable feautures:
2017-10-12 15:29:55 +02:00
2017-11-21 15:49:35 +01:00
* Being highly portable.
2017-10-12 15:29:55 +02:00
* Auto-generated and infinite maze.
2017-11-04 15:43:05 +01:00
* No binary data for drawing.
2017-11-21 15:49:35 +01:00
* Enemies with special abilities: stun, poison, camo, etc.
2017-11-04 15:43:05 +01:00
* Somewhat a realistic physic and logic system.
* Resizable game window in-game.
2017-10-12 15:29:55 +02:00
Installation
------------
2017-10-20 15:51:39 +02:00
Brutal Maze is written in Python and is compatible with both version 2 and 3.
The installation procedure should be as simply as follow:
* Install Python and `pip <https://pip.pypa.io/en/latest/>`_. Make sure the
2017-11-04 15:43:05 +01:00
directory for `Python scripts <https://docs.python.org/2/install/index.html#alternate-installation-the-user-scheme>`_
2017-11-21 15:49:35 +01:00
is in your ``$PATH``.
2017-11-04 15:43:05 +01:00
* Open Terminal or Command Prompt and run ``pip install --user brutalmaze``.
2018-02-13 16:17:04 +01:00
Now you can launch the game by running the command ``brutalmaze``.
2017-10-12 15:29:55 +02:00
2017-11-21 15:49:35 +01:00
For more information, see the `Installation <https://github.com/McSinyx/brutalmaze/wiki/Installation>`_
from Brutal Maze wiki.
2018-02-13 16:17:04 +01:00
Configuration
-------------
Brutal Maze supports both configuration file and command-line options.
Apparently one can change settings for graphics and control in the config file
and set graphics options using in CLI. These settings are read in the following
order:
2018-02-13 16:17:04 +01:00
0. Default configuration [0]_
2018-02-13 16:17:04 +01:00
1. System-wide configuration file [1]_
2. Local configuration file [1]_
3. Manually set configuration file [2]_
4. Command-line arguments
2018-02-13 16:17:04 +01:00
The later-read preferences will overide the previous ones.
.. [0] This can be copied to desired location by ``brutalmaze --write-config
PATH``. ``brutalmaze --write-config`` alone will print the file to stdout.
2018-02-13 16:17:04 +01:00
.. [1] These will be listed as fallback config in the help message
(``brutalmaze --help``). See `wiki <https://github.com/McSinyx/brutalmaze/wiki/Configuration>`_
for more info.
.. [2] If specified by ``brutalmaze --config PATH``.