Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nimarb/pyfense
PyFense is a tower defense game built in using Python 3, the cocos2d and pyglet frameworks.
https://github.com/nimarb/pyfense
cocos2d game pyglet python3 tower-defense-game
Last synced: 4 days ago
JSON representation
PyFense is a tower defense game built in using Python 3, the cocos2d and pyglet frameworks.
- Host: GitHub
- URL: https://github.com/nimarb/pyfense
- Owner: nimarb
- License: other
- Created: 2015-10-14T14:12:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-10-14T18:09:23.000Z (about 5 years ago)
- Last Synced: 2024-11-06T12:19:11.597Z (8 days ago)
- Topics: cocos2d, game, pyglet, python3, tower-defense-game
- Language: Python
- Homepage:
- Size: 41.5 MB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pyFense
PyFense is a Tower Defense game written in Python 3 using cocos2d and pyglet.
For the roadmap and further documentation/information on the project, check [documentation/roadmap.md](documentation/roadmap.md).## Playing the Game
If you just want to play and enjoy pyfense, you can simply install it from pypi here: [https://pypi.python.org/pypi/PyFense](https://pypi.python.org/pypi/PyFense]).
Alternatively you can clone this repo and run pyFense locally through virtualenv, for that please see the instructions below on how to setup a development environment.## About
pyFense was written by Daniel Lechner, Jakob Müller, Matthias Lutz, Nimar Blume and Robin Wachsmann as part of an university project at the Technical University of Munich.
The aim of the course was to get familiar with the Python programming language, git, and distributed development.## Contributing
We welcome all contributions: code, ideas, sprites/art, balancing suggestions and other improvements. Please don't hesitate to ask, write an issue or send a pull request!
For code, please try to adhere to the PEP8 guideline to keep the code readable and uniform :).## Dependencies
python 3, pyglet>=1.3.0, cocos2d>=0.6.5, numpy>=1.9.2
earlier versions might work but were not tested against. pyglet 1.2.2 and earlier cause a segfault due to incorrect calling of gdk_pixbuf.## How to Setup the Development Environment
To setup the development environment you can either use `venv` which comes with Python 3.3 or later, or you can use `virtualenv` which has to be explicitly installed but works with a wider variety of versions. `venv` is definitely recommended.
Steps to replicate the development environment:
### Using `venv` (recommended)
1. clone this repo
2. initiate virtualenv in the project dir: `python3 -m venv .`
3. install pyfense in the virtualenv environment: `./bin/python setup.py develop`
4. set execute permission for the executeable: `chmod +x ./bin/pyfense`
5. run pyfense: `./bin/pyfense`
6. to modify pyfense edit the responding file in `./pyfense/`
7. have fun :)### Using `virtualenv`
1. clone this repo
2. initiate virtualenv in the project dir: `virtualenv .`
3. install pyfense in the virtualenv environment: `./bin/python setup.py develop`
4. set execute permission for the executeable: `chmod +x ./bin/pyfense`
5. run pyfense: `./bin/pyfense`
6. to modify pyfense edit the responding file in `./pyfense/`
7. have fun :)## Unit Tests
to be added later
## Program Structure
pyFense is written in an Object oriented structure.
What each file contains:- pyfense.py: entry point into the game, contains the game menus. for some menus a "modmenu" class is used, which is defined in
- enemy.py: subclasses cocos2d sprite to create a class to represent a single enemy.
- entities.py:
- game.py:
- highscore.py:
- hud.py: provides the ingame HUD (announcements, tower build/upgrade menu, coursor selections etc)
- map.py:
- mapBuilder.py:
- mapbuilderhud.py:
- modmenu.py: subclasses cocos2d menuitem to display a non-scaled image as a menuitem.
- particles.py:
- pause.py: a cocos2d scene and layer to provide the ingame pause menu.
- projectile.py: subclasses cocos2d sprite to create a class to represent a single projectile, fired by towers at enemies.
- projectileParticle.py: subclasses the pyglet particle system to provide particles for projectiles.
- resources.py: all assets used by pyFense are loaded into memory in resources.py.
- tower.py: subclasses cocos2d sprite to create a class to represent a single tower.## Possible Improvements
Please look at the GitHub issues and the following list:
- major balancing improvements
- more exciting levels
- online highscores
- multiplayer (lan/internet) -> requires significant client/server rewrite