Tagged Questions
Pygame is a portable Python package for video games, built on SDL.
27
votes
2answers
734 views
Pygame water ripple effect
I have Googled for it but there are no ready scripts - as opposed to the same effect on Flash. I have checked the algorithm on The Water Effect Explained and also tested an implementation of the ...
21
votes
5answers
7k views
Differences between Python game libraries Pygame and Pyglet?
I've had some experience with Pygame, but there seems to be a lot of buzz around Pyglet these days.
How do these two libraries compare? What would be the advantage of using one over the other, both ...
16
votes
7answers
4k views
What commercial games have been written with pyGame? [closed]
I'm curious to know what commercial games, if any, have been written with pyGame. The scale doesn't matter much, it doesn't have to be a massive success, but it should be significant that more than 2 ...
13
votes
6answers
830 views
Which Python user interface library can I use for 2D games?
I want to create a 2D game on Python with heavy user interface: windows, buttons, text input, etc. So far I've been using PyGame for a few simple games.
The game is a 2D MUD, with the standard ...
12
votes
2answers
225 views
Using the python multiprocessing module for IO with pygame on Mac OS 10.7
I use pygame for running experiments in cognitive science, and often I have heavy I/O demands so I like to fork off these tasks to separate processes (when using a multi-core machine) to improve ...
12
votes
7answers
3k views
SVG rendering in a PyGame application
In a pyGame application, I would like to render resolution-free GUI widgets described in SVG.
What tool and/or library can I use to reach this goal ?
(I like the OCEMP GUI toolkit but it seems to be ...
11
votes
3answers
489 views
In Python, how can I detect whether the computer is on battery power?
I'm playing around with pygame, and one thing I'd like to do is reduce the number of frames per second when the computer is on battery power (to lower the CPU usage and extend battery life).
How can ...
11
votes
7answers
750 views
Best resources for learning PyGame?
Just curious if anyone knows of good sites for learning and understanding PyGame.
I've programmed a bunch in Python, so I'm well-equipped with that. Just curious if anyone knows a good site or more ...
11
votes
2answers
7k views
Start with pyglet or pygame?
I would like to know what is the best to start with, pyglet or pygame? Which one is faster and which one is more active?
I would also like to know if pyglet will get python 3 support, because I have ...
11
votes
2answers
2k views
What can Pygame do in terms of graphics that wxPython can't?
I want to develop a very simple 2D game in Python. Pygame is the most popular library for game development in Python, but I'm already quite familiar with wxPython and feel comfortable using it. I've ...
10
votes
2answers
1k views
Intersection between bezier curve and a line segment
I am writing a game in Python (with pygame) that requires me to generate random but nice-looking "sea" for each new game. After a long search I settled on an algorithm that involves Bezier curves as ...
10
votes
2answers
1k views
Creating a board game simulator (Python?) (Pygame?)
I've decided to start working on programming an old favorite of mine. I've never done a game before and also never done a large project in Python.
The game is the old Avalon Hill game Russian ...
9
votes
3answers
968 views
Does pyGame do 3d?
I can't seem to find the answer to this question anywhere. I realise that you have to use pyOpenGL or something similar to do openGL stuff, but I was wondering if its possible to do very basic 3d ...
8
votes
1answer
211 views
Pygame-like for haskell?
im trying to program a game in Haskell. Ive been looking for Game frameworks for that purpose, but i found a few and i cant make them work :/ . All i need is some image processing as pygames provides ...
8
votes
1answer
412 views
Faster than PyGame for large image display?
I'm using PyGame to display images (photos). For larger image sizes the load and convert process is slow (eg. taking 2-3 seconds for an image of size 6000x4485). The actual code that's slow is:
image ...
8
votes
30answers
5k views
I want to learn game development. Which language should I use?
I have heard that C++ and Python are two of the most used languages.
Which one should I choose?
And in Python - version 2 or 3?
I am looking at basic game development (like a car racing game, for ...
8
votes
8answers
4k views
Is Python and pygame a good way to learn SDL?
If I want to move to C++ and SDL in the future, is Python and pygame a good way to learn SDL?
7
votes
4answers
731 views
What gui toolkit should I use with Pygame?
I'm making a game that needs to be able to pop up gui elements within a pygame surface. This question isn't what I want because wxPython goes around the SDL surface, not inside it. So far I've only ...
7
votes
6answers
2k views
pyGame within a pyGTK application
What is the best way to use PyGame (SDL) within a PyGTK application?
I'm searching for a method that allows me to have a drawing area in the GTK window and at the same time being able to manage both ...
6
votes
2answers
866 views
Modern, Non-trivial, Pygame Tutorials?
What are some 'good', non-trivial Pygame tutorials?
I realize good is relative. As an example, a good one (to me) is the one that describes how to use pygame.camera. It's
recent
uses a modern ...
6
votes
4answers
4k views
Python - Virtualenv , python 3?
Seems everyone recommends virtualenv for multiple python versions (on osx), but does it even work with python 3.0? I downloaded it, and it doesn't seem to.. And I don't really understand how it works, ...
6
votes
6answers
2k views
wxPython or pygame for a simple card game?
I have been playing around with writing some simple card games in Python for fun and I would like to add a graphical user interface (GUI) to the games. Which library would you recommend for writing ...
5
votes
1answer
55 views
Pygame event queue
I would like to know if there is a way of using poll() or get() without removing the events from the queue.
In my game, I check input at different places (not only in the main loop) and sometimes I ...
5
votes
4answers
143 views
Pygame Segmentation error when using the SimpleCV library findBlob function
I have been using SimpleCV for find blobs to be used with a self-driving robot. The problem is when I call the findBlobs command in SimpleCV. When I completely block the lens of the Kinect Camera, ...
5
votes
1answer
91 views
Python - Suppressing creation of __dict__ class variable in a subclass
I'm having a tricky problem in the game I'm working on. I'm using Pygame to develop it. I happen to be one of those developers who never uses the default__dict__ object variable; I always define ...
5
votes
2answers
100 views
Using Python 3.1 and 2.5 together
I'm currently working the final project for my programming class. We're writing it in Python 3.1, and I'm doing the GUI. My team's leader wants to do the whole project in 3.1, but most pyGame addons ...
5
votes
3answers
353 views
How to invert colors of an image in pygame?
I have a pygame Surface and would like to invert the colors. Is there any way quicker & more pythonic than this? It's rather slow.
I'm aware that subtracting the value from 255 isn't the only ...
5
votes
2answers
172 views
How should I deal with latency in game development?
I'm working on a hobby project consisting of a multi-player web browser game.
It is my first and I have just stumbled into the latency issue.
I am trying to make user control as smooth as possible ...
5
votes
2answers
309 views
Is C++ SDL and (Python PyGame) used by people other than hobbyists?
As a hobbyists who has a little experience making 2D games using PyGame, and has ventured into using C++ with the SDL library (in Visual Studio), I'm curious. Is the library used professionally?
5
votes
1answer
6k views
Solving “DLL load failed: %1 is not a valid Win32 application.” for Pygame
I recently installed Python 3.1 and the Pygame module for Python 3.1 When I type import python in the console I get the following error:
Traceback (most recent call last):
File ...
5
votes
2answers
1k views
Help getting frame rate (fps) up in Python + Pygame
I am working on a little card-swapping world-travel game that I sort of envision as a cross between Bejeweled and the 10 Days geography board games. So far the coding has been going okay, but the ...
5
votes
3answers
639 views
Pygame programs hanging on exit
I'm tinkering around with pygame right now, and it seems like all the little programs that I make with it hang when I try to close them.
Take the following code, for example:
from pygame.locals ...
5
votes
1answer
470 views
Why does X choke after I draw to the root window
For background, I'm running
Debian Lenny, and have tried this with both GNOME and Fluxbox.
Anyway, I've been looking at how to draw on the desktop, and I found and tried this code here:
...
5
votes
2answers
477 views
Pygame and blitting: white on white = gray?
I'm using pygame (1.9.0rc3, though this also happens in 1.8.1) to create a heatmap. To build the heatmap, I use a small, 24-bit 11x11px dot PNG image with a white background and a very low-opacity ...
4
votes
2answers
106 views
Where can I find and install the dependencies for pygame?
I am relatively new to linux and am trying to install the pygame dev environment for python. When I run the setup.py it says that I need to install the following dependencies, one of which I found and ...
4
votes
3answers
196 views
Python duck-typing for MVC event handling in pygame
A friend and I have been playing around with pygame some and came across this tutorial for building games using pygame. We really liked how it broke out the game into a model-view-controller system ...
4
votes
1answer
84 views
Pygame; making C extensions
I'm relatively new to python and have made some useful tools and some small games w/ 10 sprites in python; based on performance I think my next logical step is making C extensions to improve ...
4
votes
1answer
222 views
Using pygame on a mac?
I was trying to get pygame on my mac to work. I got it running in terminal. But I run into issues when trying to use it with netbeans or trying to run the file. It gives me the error
from ...
4
votes
2answers
414 views
Any way to speed up Python and Pygame?
I am writing a simple top down rpg in Pygame, and I have found that it is quite slow.... Although I am not expecting python or pygame to match the FPS of games made with compiled languages like C/C++ ...
4
votes
3answers
1k views
Python: Manipulating a 16-bit .tiff image in PIL &/or pygame: convert to 8-bit somehow?
Hello all,
I am working on a program which determines the average colony size of yeast from a photograph, and it is working fine with the .bmp images I tested it on. The program uses pygame, and ...
4
votes
3answers
1k views
Python & Pygame: Ball collision with interior of circle
I'm making a game in which balls bounce around the inside of a much larger circle. The larger circle doesn't move.
Here's the code that I'm currently using for these collisions:
def ...
4
votes
3answers
421 views
Pygame: Tiled Map or Large Image
I am trying to decide if it is better to use a pre-rendered large image for a scrolling map game or to render the tiles individual on screen each frame. I have tried to program the game both ways and ...
4
votes
4answers
424 views
Game programming without a main loop
My professor gave my class an assignment today based on object oriented programming in Pygame. Basically he has said that the game that we are to create will be void of a main game loop. While I ...
4
votes
3answers
1k views
How to suppress console output in Python?
I'm using Pygame/SDL's joystick module to get input from a gamepad. Every time I call its get_hat() method it prints to the console. This is problematic since I use the console to help me debug and ...
4
votes
3answers
229 views
Making a C extension to Python that requires another extension
I have a couple of Python functions that I use to make game development with Pygame easier. I have them in a file called helper.py in my Python-path, so I can import them from any game I make. I ...
4
votes
2answers
4k views
How do I respond to mouse clicks on sprites in PyGame?
What is the canonical way of making your sprites respond to mouse clicks in PyGame ?
Here's something simple, in my event loop:
for event in pygame.event.get():
if event.type == pygame.QUIT:
...
4
votes
2answers
2k views
How to make a surface with a transparent background in pygame
Can someone give me some example code that creates a surface with a transparent background in pygame?
3
votes
4answers
130 views
Python: Change Pitch of Audio File
this is my first post on stack. So far this site has been very helpful, but I am a novice and need a clear explanation to my problem, which is related to pitch-shifting audio in Python. I have the ...
3
votes
1answer
63 views
pygame graphics grid
Hello, I am new to Python and graphics programming in general. At present I am messing around with creating grids as practice, and I am having problems with getting pygame to put objects on top of the ...
3
votes
1answer
145 views
(Python + pygame) collision detection with rects
import pygame
import random
red = [255,0,0]
green = [0,255,0]
blue = [0,0,255]
white = [255,255,255]
black = [0,0,0]
UP = [0,-1]
DOWN = [0,1]
LEFT = [-1,0]
RIGHT = [1,0]
NOTMOVING = [0,0]
#constants ...