forked from LeoEkky/OpenAI-Codex-Code-Generation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnake.py
More file actions
178 lines (146 loc) · 5.17 KB
/
Copy pathsnake.py
File metadata and controls
178 lines (146 loc) · 5.17 KB
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
# Create a Snake game
import pygame
import sys
import random
import time
check_errors = pygame.init()
if check_errors[1] > 0:
print("(!) Had {0} initializing errors, exiting...".format(check_errors[1]))
sys.exit(-1)
else:
print("(+) PyGame successfully initialized!")
# Play Surface
playSurface = pygame.display.set_mode((720, 460))
pygame.display.set_caption('Snake game!')
# Colors
red = pygame.Color(255, 0, 0) # gameover
green = pygame.Color(0, 255, 0) # snake
black = pygame.Color(0, 0, 0) # score
white = pygame.Color(255, 255, 255) # background
brown = pygame.Color(165, 42, 42) # food
# FPS controller
fpsController = pygame.time.Clock()
# Important variables
snakePos = [100, 50]
snakeBody = [[100, 50], [90, 50], [80, 50]]
foodPos = [random.randrange(1, 72) * 10, random.randrange(1, 46) * 10]
foodSpawn = True
direction = 'RIGHT'
changeto = direction
score = 0
# Menu
def gameMenu():
intro = True
while intro:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_RETURN:
intro = False
if event.key == pygame.K_ESCAPE:
pygame.quit()
sys.exit()
playSurface.fill(white)
myFont = pygame.font.SysFont('monaco', 72)
titleSurf = myFont.render('Snake!', True, black)
titleRect = titleSurf.get_rect()
titleRect.midtop = (360, 15)
playSurface.blit(titleSurf, titleRect)
pygame.display.flip()
# pygame.display.update()
fpsController.tick(5)
# optioins
myFont = pygame.font.SysFont('monaco', 24)
optionSurf1 = myFont.render('Press Enter to play', True, black)
optionRect1 = optionSurf1.get_rect()
optionRect1.midtop = (360, 120)
playSurface.blit(optionSurf1, optionRect1)
optionSurf2 = myFont.render('Press Esc to quit', True, black)
optionRect2 = optionSurf2.get_rect()
optionRect2.midtop = (360, 150)
playSurface.blit(optionSurf2, optionRect2)
pygame.display.flip()
fpsController.tick(5)
# Initiate Menu
gameMenu()
# Game Over function
def gameOver():
myFont = pygame.font.SysFont('monaco', 72)
GOsurf = myFont.render('Game over!', True, red)
GOrect = GOsurf.get_rect()
GOrect.midtop = (360, 15)
playSurface.blit(GOsurf, GOrect)
showScore(0)
pygame.display.flip()
time.sleep(4)
pygame.quit() # pygame exit
sys.exit() # console exit
def showScore(choice=1):
sFont = pygame.font.SysFont('monaco', 24)
Ssurf = sFont.render('Score : {0}'.format(score), True, black)
Srect = Ssurf.get_rect()
if choice == 1:
Srect.midtop = (80, 10)
else:
Srect.midtop = (360, 120)
playSurface.blit(Ssurf, Srect)
# Main Logic of the game
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
elif event.type == pygame.KEYDOWN:
if event.key == pygame.K_RIGHT or event.key == ord('d'):
changeto = 'RIGHT'
if event.key == pygame.K_LEFT or event.key == ord('a'):
changeto = 'LEFT'
if event.key == pygame.K_UP or event.key == ord('w'):
changeto = 'UP'
if event.key == pygame.K_DOWN or event.key == ord('s'):
changeto = 'DOWN'
if event.key == pygame.K_ESCAPE:
pygame.event.post(pygame.event.Event(pygame.QUIT))
# validation of direction
if changeto == 'RIGHT' and not direction == 'LEFT':
direction = 'RIGHT'
if changeto == 'LEFT' and not direction == 'RIGHT':
direction = 'LEFT'
if changeto == 'UP' and not direction == 'DOWN':
direction = 'UP'
if changeto == 'DOWN' and not direction == 'UP':
direction = 'DOWN'
if direction == 'RIGHT':
snakePos[0] += 10
if direction == 'LEFT':
snakePos[0] -= 10
if direction == 'UP':
snakePos[1] -= 10
if direction == 'DOWN':
snakePos[1] += 10
# snake body mechanism
snakeBody.insert(0, list(snakePos))
if snakePos[0] == foodPos[0] and snakePos[1] == foodPos[1]:
score += 1
foodSpawn = False
else:
snakeBody.pop()
if foodSpawn == False:
foodPos = [random.randrange(1, 72) * 10, random.randrange(1, 46) * 10]
foodSpawn = True
playSurface.fill(white)
for pos in snakeBody:
pygame.draw.rect(playSurface, green, pygame.Rect(pos[0], pos[1], 10, 10))
pygame.draw.rect(playSurface, brown, pygame.Rect(foodPos[0], foodPos[1], 10, 10))
if snakePos[0] > 710 or snakePos[0] < 0:
gameOver()
if snakePos[1] > 450 or snakePos[1] < 0:
gameOver()
for block in snakeBody[1:]:
if snakePos[0] == block[0] and snakePos[1] == block[1]:
gameOver()
showScore()
pygame.display.flip()
fpsController.tick(23)