V0.5.2 commit
not done
This commit is contained in:
parent
515e476657
commit
d20567c80d
@ -31,8 +31,8 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
print(hi)
|
print(hi)
|
||||||
try:
|
try:
|
||||||
from Difficult_Rocket import main
|
|
||||||
from Difficult_Rocket import crash
|
from Difficult_Rocket import crash
|
||||||
|
from Difficult_Rocket import main
|
||||||
|
|
||||||
game = main.Game()
|
game = main.Game()
|
||||||
game.start()
|
game.start()
|
||||||
|
@ -11,6 +11,10 @@ github: @shenjackyuanjie
|
|||||||
gitee: @shenjackyuanjie
|
gitee: @shenjackyuanjie
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
__all__ = ['TexturesError',
|
||||||
|
'LanguageError',
|
||||||
|
'TestError']
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Error(Exception):
|
class Error(Exception):
|
||||||
@ -38,3 +42,8 @@ class LanguageError(Error):
|
|||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return '{}{}'.format(self.info, self.lang)
|
return '{}{}'.format(self.info, self.lang)
|
||||||
|
|
||||||
|
|
||||||
|
class TestError(Error):
|
||||||
|
"""就像名字一样 用于测试的error"""
|
||||||
|
pass
|
||||||
|
@ -19,5 +19,5 @@ from Difficult_Rocket import crash
|
|||||||
class Threads(threading.Thread):
|
class Threads(threading.Thread):
|
||||||
def run(self) -> None:
|
def run(self) -> None:
|
||||||
if crash.record_thread:
|
if crash.record_thread:
|
||||||
crash.all_thread[self.name] = self
|
crash.all_thread.append(self)
|
||||||
super(Threads, self).run()
|
super(Threads, self).run()
|
||||||
|
@ -23,8 +23,10 @@ if __name__ == '__main__': # been start will not run this
|
|||||||
|
|
||||||
import pyglet
|
import pyglet
|
||||||
from pyglet.window import key, mouse
|
from pyglet.window import key, mouse
|
||||||
|
from Difficult_Rocket.api.Exp import *
|
||||||
from Difficult_Rocket.drag_sprite import DragSprite
|
from Difficult_Rocket.drag_sprite import DragSprite
|
||||||
from Difficult_Rocket.api import Exp, tools, config, new_thread
|
from Difficult_Rocket.crash import create_crash_report
|
||||||
|
from Difficult_Rocket.api import tools, config, new_thread
|
||||||
|
|
||||||
|
|
||||||
class Client:
|
class Client:
|
||||||
@ -204,8 +206,5 @@ class ClientWindow(pyglet.window.Window):
|
|||||||
config_file['window']['width'] = str(self.width)
|
config_file['window']['width'] = str(self.width)
|
||||||
config_file['window']['height'] = str(self.height)
|
config_file['window']['height'] = str(self.height)
|
||||||
config_file.write(open('configs/main.config', 'w', encoding='utf-8'))
|
config_file.write(open('configs/main.config', 'w', encoding='utf-8'))
|
||||||
# pyglet source code
|
create_crash_report()
|
||||||
self.has_exit = True
|
super(ClientWindow, self).on_close()
|
||||||
from pyglet import app
|
|
||||||
if app.event_loop.is_running:
|
|
||||||
self.close()
|
|
||||||
|
@ -33,7 +33,7 @@ Thread_message = """## Thread info
|
|||||||
System_message = """## System info
|
System_message = """## System info
|
||||||
"""
|
"""
|
||||||
|
|
||||||
all_thread = {threading.main_thread().name: threading.main_thread()}
|
all_thread = [threading.main_thread()]
|
||||||
record_thread = True
|
record_thread = True
|
||||||
|
|
||||||
|
|
||||||
@ -55,7 +55,10 @@ def markdown_line_handler(string: Optional[str or bool or int or float], code: b
|
|||||||
|
|
||||||
|
|
||||||
def create_crash_report(info: str = None) -> None:
|
def create_crash_report(info: str = None) -> None:
|
||||||
crash_info = crash_info_handler(info)
|
if info:
|
||||||
|
crash_info = crash_info_handler(info)
|
||||||
|
else:
|
||||||
|
crash_info = crash_info_handler(traceback.format_exc())
|
||||||
if 'crash_report' not in os.listdir('./'):
|
if 'crash_report' not in os.listdir('./'):
|
||||||
os.mkdir('./crash_report')
|
os.mkdir('./crash_report')
|
||||||
date_time = time.strftime('%Y-%m-%d %H-%M-%S', time.gmtime(time.time()))
|
date_time = time.strftime('%Y-%m-%d %H-%M-%S', time.gmtime(time.time()))
|
||||||
@ -65,9 +68,12 @@ def create_crash_report(info: str = None) -> None:
|
|||||||
crash_file.write(crash_info)
|
crash_file.write(crash_info)
|
||||||
crash_file.write(Thread_message)
|
crash_file.write(Thread_message)
|
||||||
for thread in all_thread:
|
for thread in all_thread:
|
||||||
crash_file.write(markdown_line_handler(thread.name, code=True))
|
thread: threading.Thread
|
||||||
|
crash_file.write(markdown_line_handler(f'{thread.name}', code=True))
|
||||||
|
crash_file.write(markdown_line_handler(f'order: {all_thread.index(thread)}', level=2))
|
||||||
crash_file.write(markdown_line_handler(f'Ident: {thread.ident}', level=2))
|
crash_file.write(markdown_line_handler(f'Ident: {thread.ident}', level=2))
|
||||||
crash_file.write(markdown_line_handler(f'Daemon: {thread.isDaemon()}', level=2))
|
crash_file.write(markdown_line_handler(f'Daemon: {thread.isDaemon()}', level=2))
|
||||||
|
crash_file.write(markdown_line_handler(f'Running: {thread.is_alive()}', level=2))
|
||||||
crash_file.write(System_message)
|
crash_file.write(System_message)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user