-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnake.py
337 lines (278 loc) · 12.5 KB
/
snake.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#To check what 79 chars wide looks like as per PEP8
#234567890123456789012345678901234567890123456789012345678901234567890123456789
# 1 2 3 4 5 6 7 7
# 0 0 0 0 0 0 0 9
#Known Issues and TODOs
#1 - if a fruit appears in the body of a snake another is generated straight
# away but the yellow square stays there until the snake moves on
#2 - when players are one block long at the start they can pass through each
# other if they don't land on the same square
#3 - The way I created the rectangles for the start and end screens could
# do with refactoring. There's some repitition between update_score(),
# create_text() and game_over(). And I pass a lot of the same info when
# calling create_text().
import pygame
from random import randint
from math import floor
class Snake1(object):
def __init__(self, snake_col, player_name, x_adjust=0, y_adjust=0):
self.length = 1
self.dir = 1 #dirs are 1, 2, 3, 4 clockwise from top
self.new_dir = 1 #used for checking change of dir against current
self.score = 0
self.player_name = player_name
self.pos_head = [(x_adjust + buff_side_unit + floor(board_sqs_across/2)) * sq_size,
(y_adjust + buff_top_unit + floor(board_sqs_tall/2)) * sq_size]
self.pos_body = []
self.pos_body.append([self.pos_head[0], self.pos_head[1]])
self.snake_col = snake_col
draw_block(self.pos_body[0], self.snake_col) #draw first square
pygame.display.update()
def check_dir_change(self):
#check if dir changed but don't allow turning back on yourself
#in it's own func as snake2 will use different keys to snake1
for event in event_list:
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_UP:
self.new_dir = 1
elif event.key == pygame.K_RIGHT:
self.new_dir = 2
elif event.key == pygame.K_DOWN:
self.new_dir = 3
elif event.key == pygame.K_LEFT:
self.new_dir = 4
def move_head(self):
self.check_dir_change()
if self.new_dir == 1 and self.dir != 3:
self.dir = 1
elif self.new_dir == 2 and self.dir != 4:
self.dir = 2
elif self.new_dir == 3 and self.dir != 1:
self.dir = 3
elif self.new_dir == 4 and self.dir != 2:
self.dir = 4
#create new head position
#not done at same time as checking keypresses above as no keys might have been pressed.
if self.dir == 1:
self.pos_head[1] -= sq_size
elif self.dir == 2:
self.pos_head[0] += sq_size
elif self.dir == 3:
self.pos_head[1] += sq_size
elif self.dir == 4:
self.pos_head[0] -= sq_size
#check if move in dir will cause crash
if ((self.pos_head in self.pos_body)
or (self.pos_head[0] < buff_side)
or (self.pos_head[0] > (buff_side + board_w - sq_size))
or (self.pos_head[1] < buff_top)
or (self.pos_head[1] > (buff_top + board_h - sq_size))
):
global crashed
crashed = True
game_over_rect()
end_cause_text = self.player_name + ' loses. You crashed!'
end_cause_rect = create_text(end_cause_text, (disp_w/2), (disp_h/2))
return
#if no crash add new head to body and draw it
self.pos_body.append([self.pos_head[0], self.pos_head[1]])
draw_block(self.pos_head, self.snake_col)
def move_tail(self):
#cover over tail square in background color then get rid of it from the body.
draw_block(self.pos_body[0], board_col)
self.pos_body.pop(0)
class Snake2(Snake1):
def __init__(self, snake_col, x_adjust=-1, y_adjust=0):
Snake1.__init__(self, snake_col, x_adjust, y_adjust)
def check_dir_change(self):
#check if dir changed but don't allow turning back on yourself
#need to overwrite Snake1 func as looking at wasd keys instead of arrows.
for event in event_list:
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_w:
self.new_dir = 1
elif event.key == pygame.K_d:
self.new_dir = 2
elif event.key == pygame.K_s:
self.new_dir = 3
elif event.key == pygame.K_a:
self.new_dir = 4
class Fruit(object):
def __init__(self):
self.color = yellow
self.pos = []
def create(self):
#draw a square in a random position within the board
self.pos = [randint(buff_side_unit, board_sqs_across)*sq_size,
randint(buff_top_unit, board_sqs_tall)*sq_size]
draw_block(self.pos, self.color)
def draw_block(rect_xy, col):
pygame.draw.rect(disp_window, col,
[rect_xy[0], rect_xy[1], sq_size, sq_size]) #last two args are rect width and height
def wait():
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
if event.type == pygame.KEYDOWN and event.key == pygame.K_UP:
return
def update_score(score, players):
score_font = pygame.font.SysFont(None, 30)
title = 'Score:{:4d}'.format(score) #have space for at least 4 characters in the score (it still display more if needed)
if players == 1:
title = 'P1 ' + title
else:
title = 'P2 ' + title
score_text = score_font.render(title, True, scores_col, bg_col)
score_rect = score_text.get_rect()
if players == 1:
score_rect.right = buff_side + board_w
else:
score_rect.left = buff_side
score_rect.centery = buff_top / 2
disp_window.blit(score_text, score_rect)
def create_text(text, centerx, centery):
text_font= pygame.font.SysFont(None, 30) #could put in a font name instead of none if wanted to
#font size of 30 is about height of a 20 pixel block.
text_ren = text_font.render(text, True, scores_col, bg_col)
text_rect = text_ren.get_rect()
text_rect.centerx = centerx
text_rect.centery = centery
disp_window.blit(text_ren, text_rect)
return text_rect #need to return the rect so it can be used later to check for where the mouse is clicking.
def game_over_rect():
create_text('Game Over!', (disp_w/2), (disp_h/2)-100)
###########
# Set up basics
###########
pygame.init() #you just have to do this with pygame as you essentially create an instance of it
clock = pygame.time.Clock() #will be used for frames per second setting
#python has no predefined colors
black = (0, 0, 0)
white = (255, 255, 255)
red = (255, 0, 0)
green = (0, 255, 0)
blue = (0, 0, 255)
yellow = (255, 255, 0)
bg_col = blue #bg for background
board_col = black
scores_col = white
disp_w = 500
disp_h = 500
disp_window = pygame.display.set_mode((disp_w, disp_h)) #function only accepts one argument so height and width passed as a tuple
pygame.display.set_caption('darragh snake') #window name
#set up board and block sizes
sq_size = 20 #size of the square blocks
buff_top_unit = 2
buff_bottom_unit = 1
buff_side_unit = 1
buff_top = buff_top_unit * sq_size #there'll be a two block space above the board for the scores
buff_bottom = buff_bottom_unit * sq_size
buff_side = buff_side_unit * sq_size
board_w = disp_w - 2*buff_side
board_h = disp_h - (buff_top + buff_bottom)
board_sqs_across = board_w / sq_size
board_sqs_tall = board_h / sq_size
###########
# Main loop
###########
play_again = True
while play_again:
#set up basic screen
disp_window.fill(bg_col)
pygame.draw.rect(disp_window, board_col, [buff_side, buff_top, board_w, board_h])
pygame.display.update()
#set up start screen
title_rect = create_text('Welcome to Darragh Snake', disp_w/2, disp_h/2)
p1_rect = create_text('One Player', (disp_w/2)-100, (disp_h/2)+100)
p2_rect = create_text('Two Player', (disp_w/2)+100, (disp_h/2)+100)
pygame.display.update()
#check if one player or two player button clicked
loop_again = True
while loop_again:
events = pygame.event.get()
for event in events:
if event.type == pygame.MOUSEBUTTONUP and loop_again:
pos = pygame.mouse.get_pos()
if p1_rect.collidepoint(pos):
players = 1
loop_again = False
if p2_rect.collidepoint(pos):
players = 2
loop_again = False
if event.type == pygame.QUIT:
pygame.quit()
#cover over start screen
pygame.draw.rect(disp_window, board_col, [buff_side, buff_top, board_w, board_h])
if players == 1:
snake1 = Snake1(red, 'P1') #will start at default position of center
update_score(0, 1)
else:
snake1 = Snake1(red, 'P1', 2) #change p1's position a bit to the right of center
update_score(0, 1)
snake2 = Snake2(green, 'P2', -2) #start P2 a bit to the left of center
update_score(0, 2)
fruit = Fruit()
pygame.display.update()
#############
# Game playing loop
#############
wait() #wait for button press to start
fruit.create()
crashed = False #will break out of game loop if crashed
while not crashed:
event_list = [] #when events.get() is looped through the values are deleted after reading so need to make a copy.
for event in pygame.event.get(): #pygame creates a list of all events that have happened every frame
if event.type == pygame.QUIT: #react to user X-ing the window.
crashed = True
event_list.append(event)
snake1.move_head()
if fruit.pos in snake1.pos_body:
snake1.score += 10
update_score(snake1.score, 1)
fruit.create()
elif not crashed:
snake1.move_tail() #delete block from tail unless a fruit was eaten or crashed
if players == 2:
snake2.move_head()
if fruit.pos in snake2.pos_body:
snake2.score += 10
update_score(snake2.score, 2)
fruit.create()
elif not crashed:
snake2.move_tail()
#check if the snakes have crashed into each other
if any(i in snake1.pos_body for i in snake2.pos_body): #generator expression to check if any elements match
crashed = True
#if there has been a crash check who crashed into who or if both crashed into each other
if snake1.pos_head == snake2.pos_head:
game_over_rect()
end_cause_rect = create_text('You hit each other at the same time', (disp_w/2), (disp_h/2))
elif snake1.pos_head in snake2.pos_body:
game_over_rect()
end_cause_rect = create_text('P1 loses. You crashed into P2!', (disp_w/2), (disp_h/2))
elif snake2.pos_head in snake1.pos_body:
game_over_rect()
end_cause_rect = create_text('P2 loses. You crashed into P1!', (disp_w/2), (disp_h/2))
pygame.display.update() #update what's displayed on window.
#giving it an argument would update just that thing.
clock.tick(10) #argument is frames per second speed wanted
#check if they want to play again
pagain_rect = create_text('Play Again', (disp_w/2)-100, (disp_h/2)+100)
exit_rect = create_text('Exit', (disp_w/2)+100, (disp_h/2)+100)
pygame.display.update()
play_again = False
loop_again = True
while loop_again:
events = pygame.event.get()
for event in events:
if event.type == pygame.QUIT:
pygame.quit()
if event.type == pygame.MOUSEBUTTONUP and loop_again:
pos = pygame.mouse.get_pos()
if pagain_rect.collidepoint(pos):
play_again = True
loop_again = False
if exit_rect.collidepoint(pos):
loop_again = False
pygame.quit() #you have to quit pygame like the corresponding part to the pygame.init() function at the start