Pygame
From Wikipedia, the free encyclopedia
Pygame is a cross-platform set of Python modules designed for writing games. It includes computer graphics and sound libraries designed to be used with the Python programming language. It is built over the Simple DirectMedia Layer (SDL) library, with the intention of allowing real-time computer game development without the restraints and low-level mechanics of the C programming language and its derivatives. This is based on the assumption that the most consuming functions inside games (mainly the graphics part) can be completely abstracted from the game logic in itself, making it possible to use a high-level programming language like Python to structure the game. Pygame was written by Pete Shinners.
[edit] See also
- Soya 3D - a 3D engine for Python.
- pydance (formerly pyDDR) - A Pygame-based version of the popular Dance Dance Revolution
- Panda3D - an open source 3D engine scriptable in python
- Psyco - a specializing compiler (a kind of just-in-time compiler) used to speed the execution of Python code.
- PyOgre - a Python binding for OGRE
- ika - an rpg engine scriptable in python
[edit] External links
- Pygame homepage - pygame documentation, wiki, news, download and more.
- Pyweek homepage - regular contest to write a game during one week using Python (most entries use pygame).
- pygame newsgroup - the "official" pygame newsgroup. You will need to register an account on news.gmane.org to be able to post in this newsgroup.
- Line by Line chimp Tutorial - For beginners to read and give a kickstart by Pete Shinners.
- Amit's Homepage - More about game programming.
- Creating Games with Python - A Tutorial explaining how to use pygame for game development and improved execution.
- CD Player A pdf file providing the source code for how to make a CD player using pygame - by Deitel.
- Sprite Tutorial - A Sprite Tutorial by Piman's.
- Pygame Sample - Drawing a map and moving around it by Richard Jones.
- Demo - A Demo Program by Simon Wittber.
- An introduction to python game programming.
- A Pygame intro framework - a simple game state machine framework.
- Pygame Video Tutorials
- http://www.libsdl.org/ - the SDL library which Pygame was built on.