Tagged Questions
0
votes
1answer
114 views
Pygame - surface fade in/out
I'm writing an application that shows a list of messages coming up on a PyGame window; to make things prettier, I decided to add a nice fade in/out effect to the text.
Problem is: SDL only allows ...
0
votes
2answers
264 views
can not import pygame.font
My OS is OSX 10.8(mountain lion), and I am using python 2.7.3. I thought I had installed pygame successfully. Unfortunately, I was wrong. I am able to import pygame, but there is something wrong when ...
0
votes
1answer
101 views
All rectangles in one iteration of a game loop drawing the same colour despite explicit colour arguments
I'm writing a simple toy in Pygame. When you press a key on the home row, it does a little burst of particles.
class Particle():
x = 0
y = 0
size = 0
colour = (255, 255, 255)
rect ...
1
vote
1answer
133 views
Byte order when using Cairo in PyGame (SDL)
I currently have some code that draws using pycairo and renders to an SDL surface by way of PyGame. This works nicely on Linux and Windows but the Mac is giving me headaches. Everything just comes ...
1
vote
0answers
560 views
How to wrap C structs in Cython for use in Python?
For a bit of learning experience, I'm trying to wrap a few parts of SDL (1.2.14) in Cython in an extension for Python 3.2.
I am having a problem figuring out how to wrap C structs straight into ...
0
votes
1answer
271 views
Text in Rect - Pygame [closed]
Do you know if I can insert text in Rect and how ?
I've created a Surface Objet and I add Text on it, I think It's not the best method.
2
votes
1answer
144 views
Make pygame/SDL installer for mac
I have a customized version of SDL 1.2 and pygame 1.9.1 that implement SDL2's high precision timer and event time-stamping. I can build everything fine on my mac, but I'd like to be able to distribute ...
0
votes
0answers
63 views
Error building modified pygame
I have a modified version of SDL 1.2.15 that includes high-precision event timestamps (borrowing code from http://hg.libsdl.org/SDL/rev/6bd701987ba9 and http://hg.libsdl.org/SDL/rev/d166819bf2b3) and ...
1
vote
2answers
580 views
pygame running in cygwin - no available video device?
I am using Windows 7 Professional 64-bit with Cygwin version:
CYGWIN_NT-6.1-WOW64 1.7.9(0.237/5/3) 2011-03-29 10:10 i686 Cygwin
I installed pygame version 1.9.1-3 using cygwinports. So the cygwin ...
1
vote
1answer
671 views
Disable the Pygame console Output [duplicate]
Possible Duplicate:
How to suppress console output in Python?
Currently I am using pygame to read joystick input and I have the following issue that I need to solve.
When calling functions ...
5
votes
2answers
457 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?
2
votes
2answers
509 views
pygame OpenGL windows not refreshing on Mac OS X 10.6, Python 2.7
I posted this on the pygame mailing list but maybe someone here will have an answer. I can't be sure whether it's a pygame problem or an SDL problem, really.
Essentially, I have some code that uses ...
1
vote
1answer
80 views
How can I change the cursor image in python soya?
Soya is a 3D game framework for python.
How can I change the cursor image to/from a different image?
4
votes
2answers
1k views
SDL/Pygame failing to load PNG images with cx_Freeze
I'm running Python 3.1 on Windows and I'm trying to distribute my Pygame script as an executable via cx_Freeze. Right now it seems to be working except that the exe build can't load any of my images:
...
2
votes
1answer
784 views
How to turn a SVG image to a SDL surface or an array of RGBA pixels with python?
I'm guessing it has to be done with the aid of some sort of framework. Google gives libCairo as the most common result, but that is way too many dependencies.
I mean something that would work on ...
6
votes
4answers
3k 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 ...
1
vote
1answer
556 views
Pygame integrated text editor [closed]
I am looking for an integrated pygame text editor, that is, something that can run in a pygame window without hijacking the event loop. I don't need anything fancy, just a basic editor. I have looked ...
0
votes
1answer
117 views
C lib with Python bindings where both want to render
I'm sketching on some fluid dynamics in Python. After a while, I'm looking for a bit more speed, so I rewrote the actual logic in C and put up some Python bindings (using SWIG).
My problem now is ...
1
vote
2answers
2k views
Pygame cannot find include file “sdl.h”
I am trying to build a downloaded Python app on Windows that uses Pygame. I have installed Python 2.5 and Pygame 1.7.1. I am new to Python, but I just tried typing the name of the top level .py file ...
3
votes
1answer
1k views
Fully transparent windows in Pygame?
Is it possible to get a fully transparent window in Pygame (see the desktop through it)? I've found how to create a window without a frame, but there doesn't seem to be any obvious way to make it ...
5
votes
3answers
577 views
SDL or PyGame international input
So basically, how is non-western input handled in SDL or OpenGL games or applications? Googling for it reveals http://sdl-im.csie.net/ but that doesn't seem to be maintained or available anymore. ...
11
votes
8answers
7k 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
6answers
3k 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 ...