-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathsnake_pygame.py
102 lines (80 loc) · 2.7 KB
/
snake_pygame.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import pygame
import random
# Initialize pygame
pygame.init()
# Set the screen dimensions
screen_width = 640
screen_height = 480
# Set the colors
black = pygame.Color(0, 0, 0)
white = pygame.Color(255, 255, 255)
red = pygame.Color(255, 0, 0)
# Create the game window
screen = pygame.display.set_mode((screen_width, screen_height))
pygame.display.set_caption("Snake Game")
# Set the game clock
clock = pygame.time.Clock()
# Set the snake's initial position and speed
snake_position = [100, 50]
snake_body = [[100, 50], [90, 50], [80, 50]]
snake_speed = 10
# Set the initial food position
food_position = [random.randrange(1, screen_width // 10) * 10,
random.randrange(1, screen_height // 10) * 10]
food_spawn = True
# Set the initial game score
score = 0
# Set the game over flag
game_over = False
# Game loop
while not game_over:
# Handle events
for event in pygame.event.get():
if event.type == pygame.QUIT:
game_over = True
# Handle snake movement
keys = pygame.key.get_pressed()
for key in keys:
if keys[pygame.K_LEFT]:
snake_position[0] -= snake_speed
if keys[pygame.K_RIGHT]:
snake_position[0] += snake_speed
if keys[pygame.K_UP]:
snake_position[1] -= snake_speed
if keys[pygame.K_DOWN]:
snake_position[1] += snake_speed
# Check for collision with the food
if pygame.Rect(snake_position[0], snake_position[1], 10, 10).colliderect(
pygame.Rect(food_position[0], food_position[1], 10, 10)):
score += 1
food_spawn = False
# Spawn new food if the previous one was eaten
if not food_spawn:
food_position = [random.randrange(1, screen_width // 10) * 10,
random.randrange(1, screen_height // 10) * 10]
food_spawn = True
# Update the snake's body
snake_body.insert(0, list(snake_position))
if len(snake_body) > score + 1:
snake_body.pop()
# Check for collision with the snake's own body
if snake_position in snake_body[1:]:
game_over = True
# Check for collision with the screen boundaries
if snake_position[0] < 0 or snake_position[0] >= screen_width or \
snake_position[1] < 0 or snake_position[1] >= screen_height:
game_over = True
# Set the screen background
screen.fill(black)
# Draw the snake
for pos in snake_body:
pygame.draw.rect(screen, white, pygame.Rect(pos[0], pos[1], 10, 10))
# Draw food
pygame.draw.rect(screen, red, pygame.Rect(
food_position[0], food_position[1], 10, 10))
# Update the screen
pygame.display.flip()
# Set the game speed
clock.tick(20)
# Quit the game
pygame.quit()