-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprototype.py
91 lines (74 loc) · 2.69 KB
/
prototype.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
__author__ = 'Tanguy,Romain,William'
""" Importation des packages """
from Tkinter import *
""" Définition des fonctions """
def init():
FenetrePrincipale.title("Simulation déplacement d'un robot")
Graphique.config(width=800, height=600, bg='white')
Graphique.pack()
CaseSelector.config(width=80, height=80, bg='white')
CaseSelector.create_rectangle(2, 2, 40, 40, fill='black', outline='blue', tags='mur')
CaseSelector.create_rectangle(41, 2, 81, 40, fill='white', outline='blue', tags='vide')
CaseSelector.create_rectangle(0, 42, 40, 80, fill='grey', outline='blue', tags='robot')
CaseSelector.itemconfig(ALL, activeoutline='red')
CaseSelector.pack(side='right')
Start.pack(side='right')
""" Fonction permettant de simplifier la création d'un tableau
"""
def creation_tableau(x, y):
tab = []
for i in range(x):
tab.append([])
for j in range(y):
tab[i].append(0)
return tab
""" Fonctin permettant d'afficher les valeur de chaque case de la grille
l'une à la suite de l'autre
"""
def afficher_grille():
for i in range(len(Grille)):
for j in range(len(Grille[i])):
print(Grille[i][j])
""" Fonction permettant d'afficher les valeurs de la grilles via la console
"""
def afficher_grille_console():
for i in range(len(Grille)):
print(Grille[i])
""" Fonction permettant de dessiner la grille du labyrinthe
dans le canevas donné
"""
def dessiner_grille(canevas):
width = 40 # Largeur du carré
height = 40 # hauteur du carré
""" Coordonnées du coin haut gauche de la grille
"""
orig_x = 2
orig_y = 2
# create_line(x, y, vx, vy, fill='color')
# create_rectangle(x, y, width, height, fill='blue')
# On supprime tout le dessin
canevas.delete(ALL)
# On redessine tout
for i in range(len(Grille)):
for j in range(len(Grille)):
pos_x = i * width + orig_x
pos_y = j * height + orig_y
width_bis = (i + 1) * width + orig_x
height_bis = (j + 1) * height + orig_y
r_tag = ("{}".format(i), "{}".format(j))
canevas.create_rectangle(pos_x, pos_y, width_bis, height_bis, fill='green', outline='blue', tags=r_tag)
def start_simulation():
print('simulation lancée')
""" Définition des variables """
FenetrePrincipale = Tk()
Graphique = Canvas(FenetrePrincipale)
CaseSelector = Canvas(FenetrePrincipale)
Start = Button(FenetrePrincipale, text='Lancer la simulation', command='start_simulation')
Grille = creation_tableau(10, 20)
dessiner_grille(Graphique)
# Initialisation
init()
# Lancement du programme
FenetrePrincipale.mainloop()