-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
52 lines (45 loc) · 1.32 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
# imports
from interface import Interface
from settings import *
import pygame,sys
from pygameUI import pygameUI
# Main class
class DGraph:
def __init__(self):
pygame.init()
self.screen = pygame.display.set_mode(SIZES)
self.clock = pygame.time.Clock()
self.manager = pygameUI.UIManager(SIZES)
self.interface = Interface(self.manager,self.quit)
@internal
def events(self):
for e in pygame.event.get():
if e.type == pygame.QUIT:
self.quit()
self.manager.handle_events(e)
self.interface.event(e)
self.interface.graph.event(e)
@internal
def update(self):
self.interface.FPS_label.set_text(str(round(self.clock.get_fps(),2))+" FPS")
self.manager.update_ui(0.016)
@internal
def draw(self):
self.interface.graph.draw(self.screen)
self.manager.draw_ui(self.screen)
pygame.display.update()
def quit(self):
self.interface.save_to_files()
pygame.quit()
sys.exit()
@external
def run(self):
while True:
self.events()
self.update()
self.draw()
self.clock.tick(60)
if __name__ == "__main__":
# Create a new app and run it
dgraph = DGraph()
dgraph.run()