forked from google/project-gameface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_app.py
69 lines (54 loc) · 1.97 KB
/
run_app.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
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import sys
import customtkinter
import src.gui as gui
from src.task_killer import TaskKiller
from src.pipeline import Pipeline
FORMAT = "%(asctime)s %(levelname)s %(name)s: %(funcName)s: %(message)s"
logging.basicConfig(format=FORMAT,
level=logging.INFO,
handlers=[
logging.FileHandler("log.txt", mode='w'),
logging.StreamHandler(sys.stdout)
])
class MainApp(gui.MainGui, Pipeline):
def __init__(self, tk_root):
super().__init__(tk_root)
# Wait for window drawing.
self.tk_root.wm_protocol("WM_DELETE_WINDOW", self.close_all)
self.is_active = True
# Enter loop
self.tk_root.after(1, self.anim_loop)
def anim_loop(self):
try:
if self.is_active:
# Run detectors and controllers.
self.pipeline_tick()
self.tk_root.after(1, self.anim_loop)
except Exception as e:
logging.critical(e, exc_info=e)
def close_all(self):
logging.info("Close all")
self.is_active = False
# Completely clost this process
TaskKiller().exit()
if __name__ == "__main__":
tk_root = customtkinter.CTk()
logging.info("Starting main app.")
TaskKiller().start()
main_app = MainApp(tk_root)
main_app.tk_root.mainloop()
main_app = None