-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeoTkinter.py
71 lines (58 loc) · 1.71 KB
/
GeoTkinter.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
##----- Importation des Modules -----##
from tkinter import *
##-----Définition des Variables globales-----##
G = 9.81
##----- Définition des Classes -----##
class sol:
def __init__(self):
self.y = 550
self.color = 'black'
def draw(self):
dessin.create_line(0, self.y, 1100, self.y, width = 4)
class Solremplis:
def __init__(self):
self.y = 550
self.x = 0
def draw(self):
dessin.create_rectangle(self.x, self.y, self.x + 1080, self.y + 550, fill="grey" )
class player:
def __init__(self):
self.y = 550
self.x = 200
self.vy = 0
self.width = 5
def draw(self):
dessin.create_rectangle(self.x, self.y - self.width, self.x + 50, self.y - 50 - self.width, fill='grey', width=self.width)
def test(self):
if self.x + 50 >= dessin.coords(Kube)[0]:
print('dead')
else:
root.after(60,Cube.test)
##----- Définition des Fonctions -----##
def quitter():
root.destroy()
##----- Création de la fenêtre -----##
root = Tk()
root.title('Géopython')
root.iconbitmap('images.ico')
root.geometry('+0+0')
##----- Création des boutons -----##
bouton_quitter = Button(root, text='quitter',command=quitter, width=10)
bouton_quitter.grid(row=1,column=1)
##----- Création du canevas -----##
dessin=Canvas(root, bg='white', width=1080, height=720)
dessin.grid(row = 0, column = 0, columnspan = 3, padx=5, pady=5)
##----- Programme principal -----##
Cube = player()
Cube.draw()
Sol = sol()
Sol.draw()
Kube = dessin.create_rectangle(400,500,450,550)
def bouger():
dessin.move(Kube,-5,0)
root.after(60,bouger)
Cube.test()
bouger()
Solremplis = Solremplis()
Solremplis.draw()
root.mainloop()