forked from teodoran/BMUS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.py
56 lines (45 loc) · 1.3 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
from Model import Model
from CursorState import CursorState
from Tkinter import *
root = Tk()
model = Model()
cursorState = CursorState()
canvas = Canvas(width=800, height=600, bg='white')
commandText = Text(root, width=100, height=1)
commandText.insert('1.0', cursorState.modeText)
def doCursorAction(event):
if cursorState.pointState:
model.setPoint(event.x, event.y)
elif cursorState.forceState:
model.setForce(event.x, event.y)
elif cursorState.fixtureState:
model.setFixture()
drawCanvas(canvas, model)
def drawCanvas(canv, model):
canv.delete("all")
model.drawElementList(canv)
def setPoint(event):
cursorState.setPointState()
commandText.insert('1.0', cursorState.modeText)
def setForce(event):
cursorState.setForceState()
commandText.insert('1.0', cursorState.modeText)
def setFixture(event):
canvas.gettags("current")
cursorState.setFixtureState()
commandText.insert('1.0', cursorState.modeText)
def endPoint(event):
model.endPoint()
drawCanvas(canvas, model)
def calculate(event):
endPoint(event)
model.newCalculation()
root.bind("s", setPoint)
root.bind("f", setForce)
root.bind("b", setFixture)
root.bind("c", calculate)
root.bind("e", endPoint)
canvas.bind("<Button-1>", doCursorAction)
canvas.pack(expand=YES, fill=BOTH)
commandText.pack(expand=YES, fill=BOTH)
root.mainloop()