-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgramme.py
59 lines (38 loc) · 1.43 KB
/
Programme.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
import pygame
import sys
import Affichage
from pygame.locals import *
pygame.init() #To test functionnalities there is no need to use pygame
affichage = Affichage.Affichage()
clock = pygame.time.Clock()
speed_x = 0
speed_y = 0
index_physique = 0
pygame.display.flip()
while True:
affichage.effacer_fenetre()
clock.tick(60) # limite le nombre de boucles a 60 par seconde
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_LEFT:
affichage.get_serpent().changer_direction("left")
if event.key == pygame.K_RIGHT:
affichage.get_serpent().changer_direction("right")
if event.key == pygame.K_UP:
affichage.get_serpent().changer_direction("up")
if event.key == pygame.K_DOWN:
affichage.get_serpent().changer_direction("down")
if event.key == pygame.K_a:
affichage.get_serpent().agrandir_snake()
if index_physique > affichage.get_serpent().get_speed(): # la vitesse du serpent est independante de la vitesse de rendu
affichage.get_serpent().declencher_deplacement_snake()
index_physique = 0
# call move python
else:
index_physique += 1
# gerer l'affichage
affichage.affichage_jeu()
pygame.display.update()