Merge branch 'master' of github.com:lvl2/avocados

master
Raphaël Vinot 2014-08-31 10:45:10 +02:00
commit 3c5172f08c
1 changed files with 11 additions and 0 deletions

11
game.py
View File

@ -27,6 +27,8 @@ class TheGame:
self.screen = pygame.display.set_mode((self.WIDTH, self.HEIGHT))
self.colors = [BLUE, GREEN, RED, YELLOW]
self.bg = pygame.image.load(os.path.join('img', 'lawyerCrystalBall.png'))
self.bg.set_colorkey((255,255,255))
self.bg.set_alpha(75)
# fonts
self.bigFont = pygame.font.Font(None, 90)
@ -268,12 +270,21 @@ class TheGame:
else:
score -= 50
# Had enough of this?
if event.type == pygame.QUIT:
running = False
game.gameOver()
pygame.quit()
sys.exit()
elif event.type == pygame.KEYDOWN:
if pygame.key.get_pressed()[pygame.K_f] != 0:
print("Toggling full screen, in the Future")
elif (pygame.key.get_pressed()[pygame.K_q] != 0) or (pygame.key.get_pressed()[pygame.K_ESCAPE] != 0):
running = False
game.gameOver()
pygame.quit()
sys.exit()
pygame.display.flip()