Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/super3/zombie-factory
A simple zombie shooting game made with PyGame and Python.
https://github.com/super3/zombie-factory
Last synced: 3 months ago
JSON representation
A simple zombie shooting game made with PyGame and Python.
- Host: GitHub
- URL: https://github.com/super3/zombie-factory
- Owner: super3
- Created: 2011-09-18T21:26:47.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-06-06T05:42:06.000Z (over 12 years ago)
- Last Synced: 2024-04-14T13:54:37.323Z (9 months ago)
- Language: Python
- Homepage:
- Size: 19.8 MB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Zombie Factory
=============Info
-------
* Project Developer: Super3 (super3.org)
* Project Github: https://github.com/super3/Zombie-Factory
* Project Web Page: http://super3.org/zombie-factoryAbout
-------
Thanks for taking a look at the Zombie Factory Project. The Zombie Factory is a simple
zombie shooter developed with PyGame (http://pygame.org) and Python (http://python.org).
I created it to test the functionatly of PyGame, to play around with Python a bit, and
learn a bit of pixel art in the process.Progress
-------
Currently I am developing some base and flexible classes. These classes are better explained
in their docstrings. These all form a loose game engine on which the game will be built, and
also can be used in the future.While some of these classes might be pretty specific, like the civilian class, others could be
very helpful for general PyGame development. For example, the world class is able to load in a
space with a background image, music, icon, title, and is also scrollable. Just add some of
your sprites, and it is ready to go. So if you are looking for something for your project I
would start there.License and Usage
-------
Creative Commons Attribution 3.0 Unported License (http://creativecommons.org/licenses/by/3.0/)
Feel free to use the code you find in the files, but please give a link back the project webpage
so others can find it as well.Please let me know if you have any problems or suggestions!
Folders
-------
* /assets - Contains art source files, as well as concepts. Most of these are .PSD files.
* /model - Various classes for the game.
* /view - All the art files (.png format) or view based source code.
* /old_code - Previous version of Zombie Factory. Used for reference.