-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
130 lines (117 loc) · 3.78 KB
/
main.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
import pygame
import sys
from menu import draw_menu, pause, BACKGROUND_COLOR
from leaderboard import get_leaderboard
from apple import Apple
from player import Player
from board import Board
from snake import Snake, SNAKE_COLOR
# SIZE OF SCREEN =
WIDTH, HEIGHT = 1100, 750
WIN = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption("SNAKE")
APPLE_COLOR = (240, 112, 161)
def main(player):
board = Board(20, 20, 30, WIDTH, HEIGHT)
apple = Apple(APPLE_COLOR)
apple.place_apple(board, apple.generate_location(board, SNAKE_COLOR))
snake = Snake(SNAKE_COLOR)
clock = pygame.time.Clock()
time = 0
run = True
while run:
WIN.fill(BACKGROUND_COLOR)
board.draw_title("SNAKE", WIN)
board.create_squares(WIN)
board.draw_grid(WIN)
time += clock.tick(8 + player.speed * 1)
if time / 1000 > 1:
time = 0
if player.mode == 3:
player.speed += 0.1
player.timer += 1
snake.place_snake(WIN, board, apple, snake.collision_check, player, main)
snake.loc_x += snake.move_x
snake.loc_y += snake.move_y
if snake.loc_x == 20:
snake.loc_x = 0
elif snake.loc_x < 0:
snake.loc_x = 19
elif snake.loc_y == 20:
snake.loc_y = 0
elif snake.loc_y < 0:
snake.loc_y = 19
snake.move(
WIN,
board.active,
player,
WIDTH,
HEIGHT,
main,
main_menu,
get_leaderboard,
pause,
)
board.draw_sides_text(WIN, player, player.format_timer, player.get_max_score)
pygame.display.update()
pygame.display.quit()
def main_menu(surface):
active = 1
player = Player()
run = True
speeds = ["LOW", "MEDIUM", "HIGH"]
modes = [
"ENDLESS (CONSTANT SPEED)",
"SURVIVAL (INCREASING SPEED AFTER EATING APPLE)",
"HARDCORE (INCREASING SPEED OVER TIME)",
]
while run:
surface.fill(BACKGROUND_COLOR)
buttons = [
"NEW GAME",
f"SPEED: {speeds[(player.speed // 5)]}",
f"MODE: {modes[player.mode - 1]}",
"LEADERBOARD",
"EXIT",
]
draw_menu(surface, "MAIN MENU", buttons, WIDTH, HEIGHT, active)
pygame.display.update()
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_DOWN:
if active == 5:
active = 1
else:
active += 1
elif event.key == pygame.K_UP:
if active == 1:
active = 5
else:
active -= 1
elif event.key == pygame.K_RETURN:
if active == 1:
main(player)
elif active == 2:
if player.speed == 11:
player.speed = 1
player.start_speed = 1
else:
player.speed += 5
player.start_speed += 5
elif active == 3:
if player.mode == 3:
player.mode = 1
else:
player.mode += 1
elif active == 4:
get_leaderboard(surface, WIDTH, HEIGHT)
elif active == 5:
pygame.quit()
sys.exit()
pygame.quit()
sys.exit()
if __name__ == "__main__":
main_menu(WIN)