Metadata-Version: 2.4
Name: pyroids
Version: 0.10.2
Summary: Asteroids game
Author: Marcus Read
Author-email: marcusaread.prog@proton.me
License-Expression: MIT
Project-URL: homepage, https://github.com/maread99/pyroids
Project-URL: documentation, https://github.com/maread99/pyroids/blob/master/README.md
Project-URL: Issue Tracker, https://github.com/maread99/pyroids/issues
Project-URL: Source Code, https://github.com/maread99/pyroids
Keywords: game,arcade,asteroids,multiplayer,pyglet
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Games/Entertainment :: Arcade
Requires-Python: >3.9.0
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pyglet~=1.5
Dynamic: license-file

# pyroids

![screenshot.png](https://github.com/maread99/pyroids/blob/master/screenshot.png)

Asteroids game with features including:
* 1 or 2 player
* Multiple weapons
* Expendable ammunition
* Supply drops
* Radiation exposure
* Highly customisable - you make the game!

## Installation

The simplest way to install pyroids is directly from PyPI:

	$ pip install --upgrade pyroids --user

#### Alternatively

Install from the source distribution on github:

	$ pip install git+https//github.com/maread99/pyroids.git#egg=pyroids

## Requirements

pyroids requires Python 3.9+.

The only dependency is pyglet v1 which, if not already installed, will be installed as part of the pyroids installation process.

## Play me!

If pyroids was installed via pip then the application \*should launch with from the command line with a simple:

	$ pyroids

...and to launch with settings defined by a configuration file (see [Game Customisation](https://github.com/maread99/pyroids#game-customisation) section), for example 'novice.py':

    $ pyroids novice

\* the above requires that the *Scripts* directory, of the python environment to which pyroids was installed, is included to the PATH environmental variable.

Alternatively pyroids can be launched directly from the play module. Either **from the command line** as a script:

    $ python -m pyroids.play

...or with a configuration file, for example 'expert.py':

    $ python -m pyroids.play expert

Or from **within a python environment** to which pyroids is installed:

    >>> from pyroids import play
    >>> play.launch()

...with a configuration file:

    >>> play.launch('expert')

## Game Customisation

Settings that can be defined for each level include:
* Number of Asteroids
* Number of times each original asteroid will break up into smaller asteroids
* Number of smaller asteroids each asteroid breaks up into
* Asteroid speed
* Ship Speed
* Radiation field
* Radiation exposure limits
* Number of supply drops

Settings that can be defined for the duration of an application instance include:
* Ship Controls	
* Asteroid behaviour on reaching window border	
* Initial ammunition stocks per weapon
* Frequency and number of supply drops
* Min and Max ammunition stocks in each supply drop (per weapon)
* Cannon reload rate
* High Velocity Bullet speed
* Shield duration
* Number of Levels
* Number of Lives
* Window dimensions

Settings can be customised by creating a configuration file and passing the configuration file's name when the application is run (see [Play me!](https://github.com/maread99/pyroids#play-me) section). If no configuration file is passed then the game will use default settings. See [pyroids\config\template.py](https://github.com/maread99/pyroids/blob/master/pyroids/config/template.py) documentation for instructions to set up configuration files.

The following example configuration files are included as part of the pyroids'
distribution:
* [novice.py](https://github.com/maread99/pyroids/blob/master/pyroids/config/novice.py)
* [expert.py](https://github.com/maread99/pyroids/blob/master/pyroids/config/expert.py)

Aside from the configuration files, the ship and asteroid images can be changed with a little investigation of the source code and some minimal hacks.

## Not feeling the love

	$ pip uninstall pyroids

## Licensing

#### Code
See [LICENSE.txt](https://github.com/maread99/pyroids/blob/master/LICENSE.txt).

#### Media
See [pyroids\resources\README.md](https://github.com/maread99/pyroids/blob/master/pyroids/resources/README.md).

## Code Documentation

Function and method documentation:
* does not by default list all optional and keyword arguments, for which signatures should be inspected.
* does not state argument types or return values, for which signatures' annotation should be inspected.


Names referenced in documentation are surrounded by symbols that identify the nature of the assigned object:

Name | Nature of assigned object
---- | -------------------------
+parameter_name+ | Parameter of documented function or method.
++parameter_name++ | Parameter of class constructor method.
-variable_name- | Variable local to code being documented.
--attribute_name-- | Instance attribute.
--method_name(args, kwargs)-- | Instance method. Only args / kwargs referred to in the 		subseqeunt documentation are noted. Signature should be inspected for full parameters.
---classmethod_name()--- | Class method or static method.
----global_constant_name---- | Global constant.

## Issues

Please use the project's [issue page](https://github.com/maread99/pyroids/issues) to report any issues.

## Contact

[Marcus Read](mailto:marcusaread@gmail.com)
