2023-07-13 23:04:20 +08:00
|
|
|
|
# -------------------------------
|
|
|
|
|
# Difficult Rocket
|
|
|
|
|
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
|
|
|
|
|
# All rights reserved
|
|
|
|
|
# -------------------------------
|
|
|
|
|
|
2021-05-24 22:28:42 +08:00
|
|
|
|
import os
|
|
|
|
|
import sys
|
2022-06-18 17:53:35 +08:00
|
|
|
|
import time
|
2021-08-13 12:25:29 +08:00
|
|
|
|
import traceback
|
2023-05-02 15:31:28 +08:00
|
|
|
|
import threading
|
2021-05-24 22:28:42 +08:00
|
|
|
|
|
2023-07-13 23:04:20 +08:00
|
|
|
|
from pathlib import Path
|
2021-05-24 22:28:42 +08:00
|
|
|
|
|
2021-08-24 22:31:52 +08:00
|
|
|
|
hi = """Difficult Rocket is writen by shenjackyuanjie
|
2023-01-02 19:46:25 +08:00
|
|
|
|
email: 3695888@qq.com or shyj3695888@163.com
|
2021-08-24 22:31:52 +08:00
|
|
|
|
QQ: 3695888"""
|
2021-09-27 23:22:07 +08:00
|
|
|
|
|
2023-02-06 13:16:35 +08:00
|
|
|
|
|
2023-02-26 08:46:04 +08:00
|
|
|
|
def print_path() -> None:
|
2021-10-01 23:12:01 +08:00
|
|
|
|
print(f'{__file__=}')
|
2023-02-26 08:46:04 +08:00
|
|
|
|
print(f'{sys.path=}')
|
2021-10-01 23:12:01 +08:00
|
|
|
|
print(f'{sys.path[0]=}')
|
|
|
|
|
print(f'{sys.argv[0]=}')
|
2023-07-13 23:04:20 +08:00
|
|
|
|
print(f'{Path.cwd()=}')
|
|
|
|
|
print(f'{Path(__file__).absolute()=}')
|
2023-02-26 08:46:04 +08:00
|
|
|
|
|
|
|
|
|
|
2023-07-13 23:04:20 +08:00
|
|
|
|
def modify_path() -> None:
|
|
|
|
|
os.chdir(Path(__file__).parent) # 将运行路径切换到文件位置 防止bug
|
|
|
|
|
sys.path.append('./Difficult_Rocket') # 添加local path
|
|
|
|
|
sys.path.append('./libs') # 添加 libs path
|
2021-09-16 19:18:06 +08:00
|
|
|
|
|
2023-07-13 23:04:20 +08:00
|
|
|
|
|
|
|
|
|
def start(start_time_ns: int) -> None:
|
|
|
|
|
from Difficult_Rocket import crash, DR_status
|
|
|
|
|
from Difficult_Rocket.runtime import DR_runtime
|
2022-06-29 13:45:25 +08:00
|
|
|
|
from Difficult_Rocket.exception import TestError
|
2023-07-13 23:04:20 +08:00
|
|
|
|
DR_runtime.start_time_ns = start_time_ns
|
2021-08-13 12:25:29 +08:00
|
|
|
|
try:
|
2023-06-17 00:47:00 +08:00
|
|
|
|
from Difficult_Rocket import main
|
2023-07-13 23:04:20 +08:00
|
|
|
|
main_game = main.Game()
|
|
|
|
|
main_game.start()
|
2023-06-16 23:36:24 +08:00
|
|
|
|
if DR_status.crash_report_test:
|
2023-07-13 23:04:20 +08:00
|
|
|
|
raise TestError('debug crash test')
|
|
|
|
|
except:
|
|
|
|
|
trace = traceback.format_exc()
|
|
|
|
|
crash.create_crash_report(trace)
|
2023-07-21 08:31:09 +08:00
|
|
|
|
print(trace)
|
2023-07-13 23:04:20 +08:00
|
|
|
|
crash.write_info_to_cache(sys.stdout)
|
|
|
|
|
print(crash.all_thread)
|
|
|
|
|
print(crash.all_process)
|
|
|
|
|
for a_thread in threading.enumerate():
|
|
|
|
|
print(a_thread)
|
|
|
|
|
if a_thread.is_alive() and a_thread != threading.current_thread() and a_thread != threading.main_thread():
|
|
|
|
|
a_thread.join(2) # wait for 2 sec
|
2023-05-02 15:31:28 +08:00
|
|
|
|
import pyglet
|
2023-07-13 23:04:20 +08:00
|
|
|
|
pyglet.app.exit() # make sure that pyglet has stopped
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main() -> int:
|
|
|
|
|
print(hi, f"\n{time.ctime()}") # hi!
|
|
|
|
|
# 记录启动信息
|
|
|
|
|
start_time_ns = time.time_ns()
|
|
|
|
|
print_path()
|
|
|
|
|
modify_path()
|
|
|
|
|
start(start_time_ns)
|
2023-05-02 15:31:28 +08:00
|
|
|
|
return 0
|
2023-02-06 13:16:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2023-05-02 15:31:28 +08:00
|
|
|
|
sys.exit(main())
|