Difference between revisions of "Pygame"

From ArmadeusWiki
Jump to: navigation, search
m (Tested pygame applications/examples)
(Tested pygame applications/examples)
Line 47: Line 47:
 
# wget http://www.scriptedfun.com/wp-content/uploads/2006/06/1945.zip
 
# wget http://www.scriptedfun.com/wp-content/uploads/2006/06/1945.zip
 
# unzip 1945.zip  
 
# unzip 1945.zip  
# python 1945.py  
+
# python 1945.py
 +
</pre>
 +
* [http://www.scriptedfun.com/particle-effects-for-games/ particleinvaders (simple Space Invaders clone)], to install it (assuming you have internet access on your APF):
 +
<pre class="apf">
 +
# mkdir invaders && cd invaders/
 +
# wget http://www.scriptedfun.com/wp-content/uploads/2007/03/particleinvaders.zip
 +
# unzip particleinvaders.zip
 +
# python particleinvaders.py  
 
</pre>
 
</pre>
  

Revision as of 10:26, 13 January 2012

On this page, you will find usefull informations to setup and develop pygame based applications for your Armadeus board.

Introduction

Pygame is a set of Python modules designed for writing games. Pygame adds functionality on top of the excellent SDL library. This allows you to create fully featured games and multimedia programs in the python language.

For more informations -> http://www.pygame.org/

Installation

  • Launch Buildroot configuration
 $ make menuconfig

and choose pygame package in:

Package Selection for the target  --->
    Graphic libraries and applications (graphic/text)  --->
        ...
        [*] pygame
        ...
  • you can choose pygame options too; then save your configuration
  • Regenerate your rootfs
 $ make

and reflash it on your board

Usage

  • to test your pygame installation (requires a LCD with at least 640x480 pixels):
# cd /usr/lib/python2.7/site-packages/pygame/examples
# python testsprite.pyc

Tested pygame applications/examples

# wget http://www.scriptedfun.com/wp-content/uploads/2006/06/arinoid.zip
# unzip arinoid.zip 
# cd arinoid/
# python arinoid.py 
# mkdir 1945 && cd 1945/
# wget http://www.scriptedfun.com/wp-content/uploads/2006/06/1945.zip
# unzip 1945.zip 
# python 1945.py
# mkdir invaders && cd invaders/
# wget http://www.scriptedfun.com/wp-content/uploads/2007/03/particleinvaders.zip
# unzip particleinvaders.zip 
# python particleinvaders.py 

Adding Tslib (Touchscreen library) support to pygame

You just have to make SDL knows the presence of Tslib when launching your application (assuming you have correct Tslib envt variables set):

 export SDL_MOUSEDRV=TSLIB
 export SDL_MOUSEDEV=$TSLIB_TSDEVICE

Troubleshots

 # export SDL_NOMOUSE=1


Links