make obj printable

This commit is contained in:
shenjack-mac 2023-06-08 00:57:03 +08:00
parent a820a1a411
commit e38b75a15e
6 changed files with 19 additions and 4 deletions

View File

@ -92,6 +92,9 @@ class Client:
self.window.start_game() # 游戏启动
# TODO 写一下服务端启动相关,还是需要服务端啊
def __repr__(self):
return f'<Client {self.process_name} {self.process_pid}>'
def pyglet_load_fonts_folder(folder) -> None:
file_folder_list = os.listdir(folder)

View File

@ -43,3 +43,6 @@ class Server:
def run(self):
self.logger.info(tr().server.os.pid_is().format(os.getpid(), os.getppid()))
def __repr__(self):
return f'<Server {self.process_name} {self.process_id}>'

View File

@ -77,6 +77,12 @@ class Options:
traceback.print_exc()
self.flush_option()
def __str__(self):
return f"<{self.__class__.__name__} {self.name}>" if self.name else f"<{self.__class__.__name__}>"
def __repr__(self):
return self.__str__()
if TYPE_CHECKING:
_options: Dict[str, Union[Callable, object]] = {}

View File

@ -7,8 +7,8 @@ fonts_folder = "libs/fonts"
[window]
style = "None"
width = 2542
height = 1489
width = 1021
height = 1078
visible = true
gui_scale = 1
caption = "Difficult Rocket v{DR_version}"

View File

@ -111,6 +111,9 @@ class Version:
version_str += '+' + str(self.build)
return version_str
def __repr__(self):
return self.__str__()
def __getitem__(self, index: int) -> int:
if index < len(self.component):
return self.component[index]

View File

@ -9,10 +9,9 @@ import traceback
from typing import Optional
from libs.MCDR.version import Version
from Difficult_Rocket.main import Game
from Difficult_Rocket.api.mod import ModInfo
from Difficult_Rocket.api.types import Options
from Difficult_Rocket.api.types import Options, Version
from Difficult_Rocket.client import ClientWindow
DR_rust_version = Version("0.2.10.1") # DR_mod 的 Rust 编写部分的兼容版本
@ -76,6 +75,7 @@ class DR_mod(ModInfo):
else:
self.config.flush_option()
print("DR_mod: on_load")
print(self.as_markdown())
return True
def on_client_start(self, game: Game, client: ClientWindow):