Skip to content
Advertisement

Pygame window isn’t updating

I’m writing a small python game just to learn how to use python better. I wanted to try to start using multiple scripts, as keeping all of the code in one script can get a little crowded. I made a second script, created a function main(scrn) and everything seems to be working fine. Calling that function in my main script, game.py, it will create the screen and everything in the main(scrn) function will show up. However, nothing will update. My character won’t move at all, with my previously tested gravity controller, or left or right. I tried moving the character controller from the hi.py script (main(scrn)) to the while Running: function, but still no movement. I then tried moving the main(scrn) function back to my original script, but it still won’t work. Nothing seems to be updating. This is the combined script, last one mentioned in description

JavaScript

Advertisement

Answer

Actually, the update of the window works fine. However, the variables are initialized in each frame.

You must initialize the variables before the application loop, but change the variables in the loop. Since you use a function, you have to initialize the variables in global name space. You have to use the global statement to be interpret the variable as global variable and to change them within a function.

JavaScript

Create the pygame.Rect objects after you have changed the variables x and y, but before the collision test:

JavaScript

You can use a init_varaibles function to initialize the variables. Call this function again if you want to reset the variables and restart the game.

JavaScript

Use pygame.time.Clock to control the frames per second and thus the game speed.

The method tick() of a pygame.time.Clock object, delays the game in that way, that every iteration of the loop consumes the same period of time. See pygame.time.Clock.tick():

This method should be called once per frame.

That means that the loop:

JavaScript

runs 100 times per second.


Complete example:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement