Pygame is a set of Python modules designed for writing video games. It is highly portable and is built on top of the SDL library.
-1
votes
0answers
32 views
Opening .py using another .py file? [closed]
I am currently developing a pygame program for my client. It was going all good until my client wants me to separate the pygame program into several ones. I am able to separate them and prompt to open ...
0
votes
0answers
10 views
Pygame works in IDLE, but not in CMD\PowerShell [2.7.3][Win7]
I have installed Python 2.7.3 and installed the Pygame module appropriate for 2.7.3 on my computer.
I have been able to successfully run pygame and scripts importing pygame in IDLE. The problem comes ...
0
votes
1answer
23 views
Open a file save dialogue box in Pygame with TK
How do I make it so that when I click an image, it will open a save dialogue box? I already have made a function for it and imported tk and pygame.
EDIT: the image was in a pygame window.
EDIT: Code I ...
1
vote
2answers
62 views
My pygame tetris game keeps getting stuck
I am a beginner python programmer and I am trying to make a tetris game. When I run the game, the block moves down 10 pixels every second. The problem is that randomly the block just stops, the print ...
-3
votes
0answers
24 views
How do you make a pygame code run on IDLE.? [closed]
I tried to copy paste a code from a python game and run it on Python 3.3 but I got an error
0
votes
1answer
20 views
Making Sprite Jump in Pygame
Making a basic game and im trying to get my character to jump when space is pressed
I have a simulated gravity that pulls it down when space is released
but when i push space down it goes up and ...
0
votes
1answer
18 views
Mouse Movement in Pygame when selecting objects does not seem to work
I am making a small game using pygame, and at the moment I have five balls falling from the top of the screen and landing on a pile of boxes to destroy knock them down. At the moment everything seems ...
0
votes
1answer
22 views
Making Player Jump in Pygame
I'm making a very simple game using pygame to practice. Im trying to make my "player" jump when spacebar is pressed. Here is the loop code I'm trying:
x,y=10,300
movex,movey=0,0
if ...
0
votes
1answer
39 views
Pygame, importing modules
I'm making some kind of game, but I only managed to complete the start screen. Now I am trying to make the intro of the first level (so a screen with some explanation and a button to continue). This ...
0
votes
1answer
24 views
Why am I getting this AttributeError ? (python3 , pygame)
Below is the error I am receiving and the code I have written. I know similar questions have been asked , but the solutions they are given do not relate to this case. And I can't seem to figure out ...
0
votes
1answer
27 views
Pygame drawing doesn't work correctly
I have a problem with drawing a simple rectangle on the screen. I've no clue why it fails to draw, I've tried several things: drawing it on the background surface, changing the order of the function ...
-1
votes
0answers
28 views
I can't find a bug in my game, getting no errors in IDLE
I'm sorry this might not be appropriate question, but I haven't found any software to debug my code, I'm still new to Python. Anyway this is a little game made after this tutorial I found on the ...
0
votes
1answer
62 views
How can I make a ball move in pygame when dragged by mouse?
I am making a small game in python where balls are fired by a catapult, and then the balls destroy a structure of boxes and a snake. At the moment I have made the boxes and the snakes however, I am ...
0
votes
2answers
42 views
PYTHON- PYGAME: How do I know if a mouse clicked on an image?
I'm making a basic level game where if i click a card, a picture will show. The pictures are randomly chosen. and so far, I have assigned random pictures to a card and the cards are shown face down. ...
1
vote
1answer
31 views
Pygame mouse movement failing
I am working through pygame tutorials and at the moment I am trying to figure out how to select a circle which is firing a ball where a ball hits another ball which in turn knocks a box down. The ...
0
votes
1answer
32 views
How can I install Pygame on a 64-bit win7?
I have searched the forum and found some related questions, but seems no easy-to-understand answers to me.
I have come to https://bitbucket.org/pygame/pygame/downloads but it only provides 32-bit ...
0
votes
2answers
18 views
drawing a line moves like a clock pointer in pygame
I am trying to draw a line moving in the same way as a clock pointer , but when i run the program the line move like 20 degrees then the program got frozen , and i can read that :"ValueError: math ...
0
votes
1answer
13 views
Is there a way in pygame to detect if a rect is fully inside a mask?
Is there a way in pygame to detect if a rect is fully inside a mask?
I know that there is rect in rect collision and collidepoint (point in rect collision) but is there any way to detect if a rect is ...
0
votes
2answers
32 views
How to make a character move while key is held down
I'm trying to create a "player" - black square - which moves when you hold down WASD. I tried looking around here, on google and on youtube on how to make this work, but every solution I've tried has ...
1
vote
1answer
36 views
cant get the sound to play with pygame
I am working on a simple timer program. When the time is up, I have an alert window appear, and I would also would like to have a song play with it. From what i have gathered on using pygame.mixer, it ...
0
votes
2answers
51 views
Extract value from a list in another function in Python
I am programming a robot and I want to use an Xbox Controller using pygame. So far this is what I got (original code credits to Daniel J. Gonzalez):
"""
Gamepad Module
Daniel J. Gonzalez
...
0
votes
1answer
36 views
Tiled Map in Pygame
I'm working on my first game in Pygame and I want to make a Tiled Map. How would one properly go about do this?
What I'm thinking of is just loading a tile and keep blitting it next to one another ...
0
votes
0answers
22 views
How to open an url on android through pygame
I want to open an url from my application running on android.
I am using pygame subset for my application.
There is one button on my app which, if clicked, will open an url in an android browser.
...
0
votes
0answers
32 views
pygame.error: File is not a Windows BMP file
Running:
Mac OSX mountain Lion 10.8.3
Python 2.7
Pygame 1.9.2
I have a simple python pygame program that displays an image on the screen, this works great when I run it in my IDE. The problem comes ...
0
votes
2answers
20 views
image changing to another image changing in pygame
i made a program in pygame ware a mine turtle runs in a sqare but when you click in the box he explodes but when i change the image to an explodtion it shows th mineturtle first
here's my code:
...
0
votes
1answer
17 views
pygame 1.9 doesn't seem to load png
I am toying around with pygame and WX for some self study projects i am doing to improve my skills. i am trying to send a png over a socket server in python 2.7.3 and load the png into pygame.
I have ...
1
vote
2answers
38 views
Button Release Tkinter
Here's my situation. I have two tkinter buttons:
Play Button: plays a sound
Stop Button: to stop the sound during play
Code is as follows:
def Play(self):
//plays a file with pygame module
...
0
votes
0answers
31 views
Sphinx Import Submodule Error
I'm using sphinx to try and document an API for a simulator I made, but it's having a problem importing a submodule of pygame. I orignally had a problem importing pygame but then realized it wasn't on ...
1
vote
1answer
50 views
Python 2.7 - Pygame - intersecting two moving sprites
I've got 2 sprites (well... 3). One sprite is traveling in a straight line at a steady speed at a random angle (in radians). The other sprite is shooting at the moving sprite. Currently the projectile ...
0
votes
1answer
38 views
Gravity in pygame [closed]
I'm making a platform game with pygame, and I would like to add gravity to it.
Right now I only have a picture which moves when I press the arrow keys, and my next step would be gravity. Here's my ...
0
votes
0answers
49 views
I would like to shuffle these variables then combine them in another function to print images to the screen
I'm following this tutorial and my own code is different, but I thought it would be easier for you if I'd show the original code as that is in English. So original code uses 7 colors and 5 shapes, I ...
-1
votes
0answers
21 views
How to add pygame objects using a timer
I`m creating a dodging game using a pygame.draw command that bounces around. To increase difficulty I decided to add another one of those squares as time progresses (5 second increments):
import ...
0
votes
1answer
17 views
Difficulty with movement in game close to Pong (pygame)
Note: I am really new in programming.
At first, I am just going to post the code I have written:
import pygame
import random
pygame.init()
screen = pygame.display.set_mode([640, 480])
paddle = ...
1
vote
2answers
41 views
My Pygame game doesn't open, but no error is given
So I wrote a simple matching the pictures for school, but it doesn't open up and no error is given in IDLE. All I get is:
>>> ================================ RESTART ...
0
votes
2answers
35 views
Need help creating game close to “Pong” (Pygame)
As you read from the description (or not), I need help creating a game close to Pong.
I am really new in programming, and I am learning all by myself. The game you help me create will be my first ...
0
votes
0answers
19 views
python pygame py2app application does not open
I am using py2app to convert a simple python pygame file into an app
I have two files, the setup file and a python window file
and I enter "python /path py2app" and get no errors, but when
I open ...
0
votes
0answers
30 views
Error while tring using pygame [duplicate]
I've tried re-installing pygame several times. I also got all the versions of python that i can use with pygame, but I always get this error:
Traceback (most recent call last):
File ...
0
votes
1answer
25 views
Pygame Play Sounds Blocking
i am trying to play sounds with pygame sound. My code is this:
from tkinter import *
import pygame
root= Tk()
pygame.init()
bass = pygame.mixer.Sound('sounds\\bass.wav')
snare = ...
0
votes
0answers
46 views
Diagonal lines of squares in grids
I have a python grid class in which I am trying to create a method to get the diagonal line of tiles that a certain tile belongs to. I have succeeded in doing this for going down from left to right in ...
0
votes
1answer
31 views
How do I get a sprites position in pygame python (python wrapper for sdl)
I'm new to pygame and programming but I have a lot of networking expieriance (sorry I'm 9) because I've been researching how minecraft servers work and made one (when I was 8) so I've made it connect ...
0
votes
1answer
46 views
Python 2.7 - Pygame - move_ip() too granular
I'm practicing making an android app in pygame, and decided to do your classic bubble shooter. I have run into a problem though where the projectile launched by the player isn't accurate enough.
def ...
0
votes
1answer
26 views
pygame.mixer.music; music crackles when playing ogg files
I can get the music to play but when it loops, if it's an .ogg file there's always a noticeable crackle noise. The crackling or clicking noise doesn't occur when an .mp3 or a .wav is looped, only .ogg ...
1
vote
0answers
42 views
Trying to create Mac OS X app from pygame hello world
I am trying to get the following "Hello world" pygame app to generate a Mac OS X (10.8) app using pyinstaller:
import pygame, sys
import pygame._view
from pygame.locals import *
pygame.init()
# set ...
-1
votes
0answers
25 views
Directory issue installing pygame on windows [closed]
When I run the windows pygame-3.2.msi file I am asked where I would like to install pygame. This has me completely stuck. I tried downloading it to C/ but my python installation doesn't have that path ...
-2
votes
1answer
71 views
Convert pygame app to kivy [closed]
I have written an application in pygame. It is a great framework but I want to have an easier process for bundling it for different platforms, including mobile. I have recently found kivy. Here is my ...
-3
votes
1answer
62 views
Making Asteroids Game in Python-Whats wrong with it? [closed]
here is the source code for asteroids game.
i used this tutorial http://comp4431.wordpress.com/2010/08/11/tut-wk-3-asteroids/
followed everything as closely as i could.
besides some of the missing ...
1
vote
0answers
28 views
Check for window dimensions in PyGame / SDL
Is there another way to get the window's dimensions other than pygame.display.Info() or the surface pygame.display.set_mode() returns?
I'm developing a piece of software with resizable window. While ...
1
vote
0answers
32 views
Issues with pygame keypresses
I'm having some issues with the Pygame function to read keypresses. I've used them in a game, and it works fine on Ubuntu, and when run from the Rapsbian GUI with no issues (including keypresses).
...
0
votes
0answers
31 views
Use pygame to open popup game without closing everything? - Python
I am an amateur programmer. I have a small (and urgent) problem. I am working on a text (console) based adventure game for fun. At a certain point, I want a pygame window to open. The player has to ...
-2
votes
1answer
20 views
Get a sprite to follow/chase another in Livewires python?
I am trying to make a top down shooter style game and am having a hard time getting a sprite to "chase" the player's sprite.




