-
Notifications
You must be signed in to change notification settings - Fork 0
/
SnakeGame.py
178 lines (142 loc) · 4.54 KB
/
SnakeGame.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
from tkinter import *
from random import randint
from PIL import Image, ImageTk
movement = 20
steps_per_sec = 10
speed = 1500 // steps_per_sec
class Snake(Canvas):
def __init__(self):
super().__init__(
width=700,
height=700,
background='WHITE',
highlightthickness=0
)
self.snake_pos = [(100, 80), (80, 100)]
self.food_pos = self.set_new_food_pos()
self.direction = 'Right'
self.score = 0
self.load_img()
self.create_objects()
self.bind_all('<Key>', self.on_key_press)
self.pack()
self.after(speed, self.perform_actions)
def load_img(self):
try:
self.snake_body = ImageTk.PhotoImage(Image.open('game.png'))
self.food = ImageTk.PhotoImage(Image.open('game.png'))
except IOError as error:
ws.destroy()
raise
def create_objects(self):
self.create_text(
340,
12,
text=f'Score: {self.score}',
tag='score',
fill='black',
font=10
)
for x_position, y_position in self.snake_pos:
self.create_image(
x_position,
y_position,
image=self.snake_body,
tag='snake'
)
self.create_image(
*self.food_pos,
image=self.food,
tag='food'
)
self.create_rectangle(
7,
27,
690,
690,
outline='#d9d8d7'
)
def finish_game(self):
self.delete(ALL)
self.create_text(
self.winfo_width() / 2,
self.winfo_height() / 2,
text=f'Game over! You have scored {self.score}!',
fill='black',
font=20
)
def consume_food(self):
if self.snake_pos[0] == self.food_pos:
self.score += 10
self.snake_pos.append(self.snake_pos[-1])
self.create_image(
*self.snake_pos[-1],
image=self.snake_body,
tag='snake'
)
self.food_pos = self.set_new_food_pos()
self.coords(
self.find_withtag('food'),
*self.food_pos
)
score = self.find_withtag('score')
self.itemconfigure(
score,
text=f'Score: {self.score}',
tag='score'
)
def boundry(self):
head_x_position, head_y_position = self.snake_pos[0]
return (
head_x_position in (0, 700)
or head_y_position in (20, 700)
or (head_x_position, head_y_position) in self.snake_pos[1:]
)
def snake_movement(self):
head_x_position, head_y_position = self.snake_pos[0]
if self.direction == 'Left':
new_head_position = (head_x_position - movement, head_y_position)
elif self.direction == 'Right':
new_head_position = (head_x_position + movement, head_y_position)
elif self.direction == 'Down':
new_head_position = (head_x_position, head_y_position + movement)
elif self.direction == 'Up':
new_head_position = (head_x_position, head_y_position - movement)
self.snake_pos = [new_head_position] + self.snake_pos[:-1]
for segment, position in zip(self.find_withtag('snake'), self.snake_pos):
self.coords(segment, position)
def on_key_press(self, e):
new_direction = e.keysym
all_directions = (
'Up',
'Down',
'Left',
'Right'
)
opposites = (
{'Up', 'Down'},
{'Left', 'Right'}
)
if (
new_direction in all_directions
and {new_direction, self.direction} not in opposites
):
self.direction = new_direction
def perform_actions(self):
if self.boundry():
self.finish_game()
self.consume_food()
self.snake_movement()
self.after(speed, self.perform_actions)
def set_new_food_pos(self):
while True:
x_position = randint(1, 29) * movement
y_position = randint(3, 30) * movement
food_pos = (x_position, y_position)
if food_pos not in self.snake_pos:
return food_pos
ws = Tk()
ws.title('Snake Game')
ws.resizable(False, False)
board = Snake()
ws.mainloop()