-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
57 lines (42 loc) · 1.13 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
from sys import exit
import pygame
from game import Game
class Main:
def __init__(self):
pygame.init()
pygame.display.set_caption('Tetris')
self.game = Game()
self.clock = pygame.time.Clock()
self.started = False
def run(self):
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
exit()
if event.type == pygame.KEYDOWN:
# First start
if event.key == pygame.K_F1 and not self.game.game_over:
self.started = True
self.game.resetScreen()
# If game over, goes to start menu
if event.key == pygame.K_F1 and self.game.game_over:
self.game = Game()
self.started = False
# If game over, start a new game
if event.key == pygame.K_F2 and self.game.game_over:
self.game = Game()
self.game.resetScreen()
if self.started:
# display
self.game.display()
# input and timers
if not self.game.game_over:
self.game.timerUpdate()
self.game.keyboardInput()
# updating the game
pygame.display.update()
self.clock.tick(60)
if __name__ == '__main__':
main = Main()
main.run()