Today I started to learn pygame and python to eventually remake the simple game “Graphwar”. As my first project I chose to make a really simple 2d car game while following a tutorial, now I want to try something on my own. That is to make my cars to visually change direction by using pygame.transform.flip() when pressing A or D.
I’ve read multiple different tutorials on different sites but I can’t get nothing to work.
This is my code:
JavaScript
x
91
91
1
#Imports
2
from turtle import pos
3
from xml.dom.pulldom import CHARACTERS
4
import pygame
5
import os
6
7
pygame.init()
8
9
#Colors
10
WHITE = (255,255,255)
11
BLACK = (0,0,0)
12
GREEN = (54, 236, 189)
13
GRAY = (64, 64, 64)
14
15
#Images
16
ICON = pygame.image.load(os.path.join("Assets", "icon.png"))
17
COOL = pygame.image.load(os.path.join("Assets", "cool.jpg"))
18
CAR1_IMG = pygame.image.load(os.path.join("Assets", "car1_sprite.png"))
19
CAR2_IMG = pygame.image.load(os.path.join("Assets", "car2_sprite.png"))
20
21
#Characters
22
CHARACTER_WIDTH = 252
23
CHARACTER_HEIGHT = 86
24
CAR1 = pygame.transform.scale(CAR1_IMG, (CHARACTER_WIDTH, CHARACTER_HEIGHT))
25
CAR2 = pygame.transform.scale(CAR2_IMG, (CHARACTER_WIDTH, CHARACTER_HEIGHT))
26
27
#Window
28
WIDTH, HEIGHT = 1280, 720
29
WIN=pygame.display.set_mode((WIDTH, HEIGHT))
30
pygame.display.set_caption("USSPCS: Ultimate Super Supercar Policecar Chase Simulator Game of The Year Deluxe Edition")
31
pygame.display.set_icon(ICON)
32
33
FPS = 60
34
VEL = 3
35
36
#Render
37
def draw_window(CAR1_RECT, CAR2_RECT):
38
WIN.fill(GRAY)
39
WIN.blit(CAR1, (CAR1_RECT.x, CAR1_RECT.y)) #Draw CAR1
40
WIN.blit(CAR2, (CAR2_RECT.x, CAR2_RECT.y)) #Draw CAR2
41
pygame.display.update()
42
43
#Game
44
def main():
45
CAR1_RECT = pygame.Rect(300, 100, CHARACTER_WIDTH, CHARACTER_HEIGHT) #CAR1 Hitbox
46
CAR2_RECT = pygame.Rect(300, 300, CHARACTER_WIDTH, CHARACTER_HEIGHT) #CAR2 Hitbox
47
48
clock = pygame.time.Clock()
49
running = True
50
while running:
51
clock.tick(FPS)
52
for event in pygame.event.get(): #Shutdown when clicking the X
53
if event.type == pygame.QUIT:
54
running = False
55
56
if event.type == pygame.KEYDOWN: #Shutdown with ESC
57
if event.key == pygame.K_ESCAPE:
58
running = False
59
60
key_pressed = pygame.key.get_pressed()
61
if key_pressed[pygame.K_a]: #CAR1 Go left
62
CAR1_RECT.x -= VEL
63
key_pressed = pygame.key.get_pressed()
64
if key_pressed[pygame.K_d]: #CAR1 Go right
65
CAR1_RECT.x += VEL
66
key_pressed = pygame.key.get_pressed()
67
if key_pressed[pygame.K_w]: #CAR1 Go up
68
CAR1_RECT.y -= VEL
69
key_pressed = pygame.key.get_pressed()
70
if key_pressed[pygame.K_s]: #CAR1 Go down
71
CAR1_RECT.y += VEL
72
73
key_pressed = pygame.key.get_pressed()
74
if key_pressed[pygame.K_LEFT]: #CAR2 Go left
75
CAR2_RECT.x -= VEL
76
key_pressed = pygame.key.get_pressed()
77
if key_pressed[pygame.K_RIGHT]: #CAR2 Go right
78
CAR2_RECT.x += VEL
79
key_pressed = pygame.key.get_pressed()
80
if key_pressed[pygame.K_UP]: #CAR2 Go up
81
CAR2_RECT.y -= VEL
82
key_pressed = pygame.key.get_pressed()
83
if key_pressed[pygame.K_DOWN]: #CAR2 Go down
84
CAR2_RECT.y += VEL
85
draw_window(CAR1_RECT, CAR2_RECT)
86
87
pygame.quit()
88
89
if __name__ == "__main__":
90
main()
91
Advertisement
Answer
Create 2 images for each care (e.g.: CAR_LEFT
and CAR_RGIHT
) and assign the image for the first direction to the variable `CAR1:
JavaScript
1
4
1
CAR1_RIGHT = pygame.transform.scale(CAR1_IMG, (CHARACTER_WIDTH, CHARACTER_HEIGHT))
2
CAR1_LEFT = pygame.transform.flip(CAR1_RIGHT, True, False)
3
CAR1 = CAR1_RIGHT
4
Change the image when the button is pressed (Note that it is sufficient to call pygame.key.get_pressed()
once in the application loop):
JavaScript
1
8
1
key_pressed = pygame.key.get_pressed()
2
if key_pressed[pygame.K_a]: #CAR1 Go left
3
CAR1_RECT.x -= VEL
4
CAR1 = CAR1_LEFT
5
if key_pressed[pygame.K_d]: #CAR1 Go right
6
CAR1_RECT.x += VEL
7
CAR1 = CAR1_RIGHT
8