-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5_snake_grow.py
109 lines (93 loc) · 3.38 KB
/
5_snake_grow.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
103
104
105
106
107
108
109
import pygame
import random
from collections import namedtuple
SCHWARZ = (0, 0, 0)
BLAU = (50, 153, 213)
GRUEN = (0, 255, 0)
Block = namedtuple("Block", ("x", "y"))
BLOCK_GROESSE = 40
# Breite & Höhe muss durch doppelte Blockgröße teilbar sein
BREITE = 400
HOEHE = 400
pygame.init()
fenster = pygame.display.set_mode((BREITE, HOEHE)) # fenster mit größe initialisieren
def draw_snake(snake: list[tuple]) -> None:
for b in snake:
draw_square(b, SCHWARZ)
def draw_square(block: tuple[int], color: tuple[int]):
pygame.draw.rect(fenster, color, [block.x, block.y, BLOCK_GROESSE, BLOCK_GROESSE])
def update_snake_and_draw(snake: list[tuple], snake_head: tuple, apple: tuple):
fenster.fill(BLAU)
snake.append(snake_head)
snake_collision(snake)
draw_snake(snake)
draw_square(apple, GRUEN)
pygame.display.update()
def snake_collision(snake: list[tuple]):
global spiel_laeuft
snake_set = set(snake)
if len(snake_set) != len(snake):
spiel_laeuft = False
if snake[-1].x >= BREITE or snake[-1].x < 0 or snake[-1].y >= HOEHE or snake[-1].y < 0:
spiel_laeuft = False
def game_loop():
# Starten in (fast) der Mitte
snake_head = Block(x=BREITE / 2, y=HOEHE / 2)
snake_middle = Block(x=BREITE / 2 - BLOCK_GROESSE, y=HOEHE / 2)
snake_end = Block(x=BREITE / 2 - (BLOCK_GROESSE * 2), y=HOEHE / 2)
apple = Block(
x=random.randrange(0, BREITE, BLOCK_GROESSE),
y=random.randrange(0, HOEHE, BLOCK_GROESSE),
)
snake = [snake_end, snake_middle, snake_head]
fenster.fill(BLAU)
draw_snake(snake)
draw_square(apple, GRUEN)
pygame.display.update()
global spiel_laeuft
spiel_laeuft = True
x_change = 0
y_change = 0
while spiel_laeuft:
for event in pygame.event.get():
if (
event.type == pygame.QUIT
or event.type == pygame.KEYDOWN
and event.key == pygame.K_q
):
spiel_laeuft = False
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_LEFT and x_change == 0:
print("leftkey")
x_change = -BLOCK_GROESSE
y_change = 0
elif event.key == pygame.K_RIGHT and x_change == 0:
print("rightkey")
x_change = +BLOCK_GROESSE
y_change = 0
elif event.key == pygame.K_UP and y_change == 0:
print("upkey")
x_change = 0
y_change = -BLOCK_GROESSE
elif event.key == pygame.K_DOWN and y_change == 0:
print("downkey")
x_change = 0
y_change = +BLOCK_GROESSE
snake_head = Block(snake_head.x + x_change, snake_head.y + y_change)
print(apple)
if snake_head == apple:
print(apple)
apple = Block(
x=random.randrange(0, BREITE, BLOCK_GROESSE),
y=random.randrange(0, HOEHE, BLOCK_GROESSE),
)
draw_square(apple, GRUEN)
pygame.display.update()
else:
if x_change != 0 or y_change != 0:
snake.pop(0)
if x_change != 0 or y_change != 0:
update_snake_and_draw(snake, snake_head, apple)
pygame.time.Clock().tick(5)
if __name__ == "__main__":
game_loop()