Difficult-Rocket/mods/dr_game/sr1_ship.py

766 lines
26 KiB
Python
Raw Permalink Normal View History

2022-12-11 10:39:05 +08:00
# -------------------------------
# Difficult Rocket
2023-01-20 14:08:12 +08:00
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
2022-12-11 10:39:05 +08:00
# All rights reserved
# -------------------------------
from __future__ import annotations
2023-01-30 11:59:34 +08:00
import time
2023-04-20 23:51:28 +08:00
import random
2023-05-25 00:40:20 +08:00
import traceback
2023-06-22 01:41:11 +08:00
from pathlib import Path
from typing import Generator
2022-12-25 23:15:49 +08:00
2023-08-12 23:32:43 +08:00
from pyglet.gl import gl
2023-08-13 00:21:22 +08:00
from pyglet.math import Mat4
2023-01-19 22:29:43 +08:00
from pyglet.text import Label
2022-12-29 10:13:20 +08:00
from pyglet.sprite import Sprite
2023-01-19 22:29:43 +08:00
from pyglet.graphics import Batch, Group
2024-08-06 13:12:24 +08:00
from pyglet.shapes import Line, Box, Rectangle
2024-06-19 00:58:30 +08:00
2024-06-09 17:14:10 +08:00
# from pyglet.window import mouse
2022-12-11 10:39:05 +08:00
2023-04-30 00:48:42 +08:00
from . import DR_mod_runtime
2024-08-01 01:51:45 +08:00
from .types import SR1Textures
2023-04-30 00:48:42 +08:00
2022-12-11 10:39:05 +08:00
# Difficult Rocket
2023-06-16 23:36:24 +08:00
from Difficult_Rocket import DR_status
2023-06-22 01:41:11 +08:00
from Difficult_Rocket.utils.translate import Tr
2023-08-20 21:42:38 +08:00
from Difficult_Rocket.client import ClientWindow
2023-01-21 14:50:30 +08:00
from Difficult_Rocket.api.types import Fonts, Options
2023-01-21 11:48:07 +08:00
from Difficult_Rocket.command.line import CommandText
2022-12-26 11:46:05 +08:00
from Difficult_Rocket.client.screen import BaseScreen
2024-06-19 00:58:30 +08:00
from Difficult_Rocket.api.camera import CenterGroupCamera, GroupCamera
2024-08-04 13:35:43 +08:00
from Difficult_Rocket.gui.widget.button import OreuiButton
2022-12-25 23:15:49 +08:00
2024-05-30 22:23:24 +08:00
2023-12-24 15:51:44 +08:00
from lib_not_dr import loggers
2023-04-30 00:48:42 +08:00
if DR_mod_runtime.use_DR_rust:
2023-12-03 16:54:07 +08:00
from .Difficult_Rocket_rs import (
SR1PartList_rs,
SR1Ship_rs,
SR1PartData_rs,
SR1PartType_rs,
assert_ship,
2024-05-22 23:58:14 +08:00
# SR1Connection_rs
2023-12-03 16:54:07 +08:00
)
2023-12-24 15:51:44 +08:00
logger = loggers.get_logger("client.dr_game_sr1_ship")
2023-12-03 16:54:07 +08:00
sr_tr = Tr(lang_path=Path(__file__).parent / "lang")
2023-01-23 00:01:01 +08:00
2022-12-25 23:15:49 +08:00
2023-07-24 09:46:19 +08:00
class SR1ShipRenderStatus(Options): # NOQA
name = "SR1ShipRenderStatus"
# main status
draw_done: bool = False
draw_call: bool = False
update_call: bool = False
focus: bool = True
moving: bool = False
# button status
show_moving: bool = False
show_focus: bool = False
show_scale: bool = False
2023-07-24 09:46:19 +08:00
# debug status
draw_d_pos: bool = False
draw_mouse_pos: bool = False
draw_mouse_d_pos: bool = False
2023-01-21 14:50:30 +08:00
2024-06-09 17:14:10 +08:00
class SR1ShipSelecter(BaseScreen):
"""
SR1 飞船选择器
考虑到 sss 写的那一大堆东西实在有点离谱
所以单独拿出来写个screen
我估计以后还得有一堆类似重构(瘫倒)
"""
2024-08-03 23:25:47 +08:00
2024-06-09 17:14:10 +08:00
name = "DR_game_sr1_ship_selecter"
2022-12-25 23:15:49 +08:00
2024-06-10 19:39:14 +08:00
def __init__(self, main_window: ClientWindow):
super().__init__(main_window)
self.main_batch = Batch()
2024-06-19 00:58:30 +08:00
self.main_group = GroupCamera(window=main_window)
2024-08-06 13:12:24 +08:00
self.width = 178
self.height = main_window.height - 150
2024-08-04 14:23:11 +08:00
self.dx = 10
2024-08-06 13:12:24 +08:00
self.dy = 70
self.folder_path: Path = Path("assets/ships")
2024-08-04 13:35:43 +08:00
self.buttons: dict[Path, OreuiButton] = {}
2024-08-06 13:12:24 +08:00
self.background = Rectangle(
x=0,
y=0,
color=(174, 129, 255, 100),
width=self.width,
height=self.height,
batch=self.main_batch,
group=Group(10, parent=main_window.main_group),
)
self.set_folder(self.folder_path)
2024-06-18 20:18:55 +08:00
2024-06-19 00:58:30 +08:00
def set_folder(self, path: Path):
if not path.is_dir():
2024-08-03 23:25:47 +08:00
logger.warn(
sr_tr().sr1.ship.ship.folder.invalid().format(path), tag="ship explorer"
2024-08-03 23:25:47 +08:00
)
2024-06-19 00:58:30 +08:00
return
self.folder_path = path
2024-08-04 13:35:43 +08:00
self.buttons.clear()
2024-08-06 13:12:24 +08:00
group = Group(20, parent=self.main_group)
2024-08-04 14:23:11 +08:00
2024-06-19 00:58:30 +08:00
for file in path.iterdir():
if not file.is_file:
continue
# 尝试加载一下
if assert_ship(str(file)):
logger.info(
sr_tr().sr1.ship.ship.valid().format(file), tag="ship explorer"
)
2024-08-04 13:35:43 +08:00
button = OreuiButton(
2024-08-06 13:12:24 +08:00
x=4,
2024-08-04 13:35:43 +08:00
y=len(self.buttons) * -(30 + 5) + self.height,
2024-08-06 13:12:24 +08:00
width=170,
2024-08-04 13:35:43 +08:00
height=30,
text=file.stem,
toggle_mode=False,
auto_release=True,
batch=self.main_batch,
2024-08-06 13:12:24 +08:00
group=group,
2024-08-04 13:35:43 +08:00
)
self.buttons[file] = button
else:
logger.warn(
sr_tr().sr1.ship.ship.invaild().format(file), tag="ship explorer"
)
2024-06-10 19:39:14 +08:00
2024-08-04 13:35:43 +08:00
def on_mouse_motion(self, x: int, y: int, dx: int, dy: int, window: ClientWindow):
for btn in self.buttons.values():
2024-08-04 14:23:11 +08:00
btn.on_mouse_motion(x - self.dx, y - self.dy - self.main_group.view_y, dx, dy)
2024-08-04 13:35:43 +08:00
def on_mouse_press(
self, x: int, y: int, button: int, modifiers: int, window: ClientWindow
):
2024-08-04 14:23:11 +08:00
return any(
btn.on_mouse_press(
x - self.dx, y - self.dy - self.main_group.view_y, button, modifiers
)
for btn in self.buttons.values()
)
2024-08-04 13:35:43 +08:00
def on_mouse_release(
self, x: int, y: int, button: int, modifiers: int, window: ClientWindow
):
2024-08-04 14:23:11 +08:00
for file_path, btn in self.buttons.items():
if btn.on_mouse_release(
x - self.dx, y - self.dy - self.main_group.view_y, button, modifiers
):
logger.info(f"选到了 {file_path}", tag="ship explorer")
self.dispatch_event("select_ship", self, file_path)
def on_mouse_scroll(
self, x: int, y: int, scroll_x: float, scroll_y: float, window: ClientWindow
):
if self.dx < x < self.dx + self.width and self.dy < y < self.dy + self.height:
self.main_group.view_y -= int(scroll_y * 50)
if self.main_group.view_y < 0:
self.main_group.view_y = 0
if self.main_group.view_y > len(self.buttons) * (30 + 5) - self.height:
self.main_group.view_y = len(self.buttons) * (30 + 5) - self.height
return True
2024-08-04 13:35:43 +08:00
def on_mouse_drag(
self,
x: int,
y: int,
dx: int,
dy: int,
buttons: int,
modifiers: int,
window: ClientWindow,
):
if self.dx < x < self.dx + self.width and self.dy < y < self.dy + self.height:
self.main_group.view_y += dy
if self.main_group.view_y < 0:
self.main_group.view_y = 0
if self.main_group.view_y > len(self.buttons) * (30 + 5) - self.height:
self.main_group.view_y = len(self.buttons) * (30 + 5) - self.height
2024-08-04 14:23:11 +08:00
return True
2024-08-04 13:35:43 +08:00
2024-08-06 13:12:24 +08:00
def draw_batch_(self, window: ClientWindow):
2024-08-04 13:35:43 +08:00
gl.glEnable(gl.GL_SCISSOR_TEST)
gl.glScissor(int(self.dx), int(self.dy), int(self.width), int(self.height))
gl.glViewport(
int(self.dx),
int(self.dy),
window.width,
window.height,
)
self.main_batch.draw()
gl.glViewport(0, 0, window.width, window.height)
gl.glScissor(0, 0, window.width, window.height)
gl.glDisable(gl.GL_SCISSOR_TEST)
def on_resize(self, width: int, height: int, window: ClientWindow):
self.height = height - 100
self.width = min(200, width)
def on_cleanup(self, window: ClientWindow):
del self.buttons
2024-06-09 17:14:10 +08:00
2024-08-04 14:23:11 +08:00
SR1ShipSelecter.register_event_type("select_ship")
2024-06-09 17:14:10 +08:00
class SR1ShipEditor(BaseScreen):
"""SR1 飞船编辑器"""
name = "DR_game_sr1_ship_editor"
2024-05-30 22:23:24 +08:00
2023-12-03 16:54:07 +08:00
def __init__(self, main_window: ClientWindow):
2022-12-25 23:15:49 +08:00
super().__init__(main_window)
2023-07-12 16:46:32 +08:00
self.logger = logger
2024-05-16 00:33:25 +08:00
logger.info(sr_tr().mod.info.setup.start(), tag="setup")
2023-04-05 10:34:58 +08:00
load_start_time = time.time_ns()
2023-07-24 09:46:19 +08:00
# status
self.status = SR1ShipRenderStatus()
2023-07-28 14:34:31 +08:00
2024-08-04 14:23:11 +08:00
selecter = main_window.get_sub_screen(SR1ShipSelecter.name)
if selecter is None:
self.logger.error("selecter not found")
else:
def select(explorer: SR1ShipSelecter, file_path: Path):
self.load_xml(file_path)
self.render_ship()
selecter.set_handler("select_ship", select)
2023-01-19 22:29:43 +08:00
self.dx = 0
self.dy = 0
2023-08-12 20:20:18 +08:00
self.width = main_window.width
self.height = main_window.height
2023-07-21 13:10:21 +08:00
2023-07-02 15:54:50 +08:00
self.main_batch = Batch()
2024-06-06 19:46:51 +08:00
self.buttons_batch = Batch()
self.ships_buttons_batch = Batch()
2023-12-03 16:54:07 +08:00
self.group_camera = CenterGroupCamera(
window=main_window,
order=10,
parent=main_window.main_group,
min_zoom=(1 / 2) ** 10,
max_zoom=10,
)
2023-08-12 00:49:46 +08:00
self.part_group = Group(0, parent=self.group_camera)
2023-07-21 13:10:21 +08:00
2023-12-03 16:54:07 +08:00
self.debug_label = Label(
x=20,
y=main_window.height - 100,
font_size=DR_status.std_font_size,
text="SR1 render!",
font_name=Fonts.微软等宽无线,
width=main_window.width - 20,
height=20,
anchor_x="left",
anchor_y="top",
batch=self.main_batch,
group=Group(5, parent=self.part_group),
)
self.render_d_line = Line(
0,
0,
0,
0,
width=5,
color=(200, 200, 10, 255),
batch=self.main_batch,
group=Group(5, parent=self.part_group),
)
2023-07-24 09:46:19 +08:00
self.render_d_line.visible = self.status.draw_d_pos
2023-12-03 16:54:07 +08:00
self.render_d_label = Label(
"debug label NODATA",
font_name=Fonts.微软等宽无线,
2024-05-26 11:25:33 +08:00
x=main_window.width // 2,
y=main_window.height // 2,
2023-12-03 16:54:07 +08:00
)
2023-07-24 09:46:19 +08:00
self.render_d_label.visible = self.status.draw_d_pos
2023-07-12 16:46:32 +08:00
# Optional data
2023-07-21 18:33:15 +08:00
self.textures: SR1Textures = SR1Textures()
self.gen_draw: Generator | None = None
self.rust_ship: SR1Ship_rs | None = None
self.ship_name: str | None = None
2023-07-12 16:46:32 +08:00
# List/Dict data
self.part_sprites: dict[int, tuple[Sprite, Box]] = {}
self.part_outlines: dict[int, list[Line]] = {}
self.connection_lines: list[Line] = []
2023-07-12 16:46:32 +08:00
2023-04-30 00:48:42 +08:00
if DR_mod_runtime.use_DR_rust:
2023-01-24 12:25:23 +08:00
self.rust_parts = None
2023-12-03 16:54:07 +08:00
self.part_list_rs = SR1PartList_rs(
"assets/builtin/PartList.xml", "builtin_part_list"
)
2023-07-21 13:10:21 +08:00
2024-08-04 14:23:11 +08:00
# self.load_xml("assets/builtin/dock1.xml")
2022-12-25 23:15:49 +08:00
2023-07-21 16:00:03 +08:00
load_end_time = time.time_ns()
2023-12-03 16:54:07 +08:00
logger.info(
sr_tr()
.mod.info.setup.use_time()
2024-05-16 00:33:25 +08:00
.format((load_end_time - load_start_time) / 1000000000),
tag="setup",
2023-12-03 16:54:07 +08:00
)
2023-07-21 16:00:03 +08:00
# Buttons
self.buttons_group = Group(100, parent=main_window.main_group)
2024-05-30 20:19:29 +08:00
self.ships_buttons_group = Group(100, parent=main_window.main_group)
2024-05-30 22:23:24 +08:00
2023-07-24 09:46:19 +08:00
@property
def size(self) -> tuple[int, int]:
2023-12-03 16:54:07 +08:00
"""渲染器的渲染大小"""
2023-07-24 09:46:19 +08:00
return self.width, self.height
@size.setter
def size(self, value: tuple[int, int]):
2023-07-24 09:46:19 +08:00
if not self.width == value[0] or not self.height == value[1]:
self.width, self.height = value
2024-08-04 14:23:11 +08:00
def load_xml(self, file_path: Path) -> bool:
2023-07-21 13:10:21 +08:00
"""
加载 xml 文件
:param file_path:
:return:
"""
2023-01-19 22:29:43 +08:00
try:
2023-04-05 12:13:02 +08:00
start_time = time.time_ns()
2024-05-16 00:33:25 +08:00
logger.info(sr_tr().sr1.ship.xml.loading().format(file_path), tag="load_xml")
2024-08-04 14:23:11 +08:00
self.ship_name = file_path.stem
2023-05-25 00:40:20 +08:00
if DR_mod_runtime.use_DR_rust:
2024-08-04 14:23:11 +08:00
self.rust_ship = SR1Ship_rs(
str(file_path), self.part_list_rs, "a_new_ship"
)
2024-05-16 00:33:25 +08:00
logger.info(sr_tr().sr1.ship.xml.load_done(), tag="load_xml")
2023-12-03 16:54:07 +08:00
logger.info(
sr_tr()
.sr1.ship.xml.load_time()
2024-05-16 00:33:25 +08:00
.format((time.time_ns() - start_time) / 1000000000),
tag="load_xml",
2023-12-03 16:54:07 +08:00
)
2023-01-19 22:29:43 +08:00
return True
2023-07-24 09:46:19 +08:00
except Exception:
traceback.print_exc()
2024-05-16 00:33:25 +08:00
self.logger.error(traceback.format_exc(), tag="load_xml")
2023-01-19 22:29:43 +08:00
return False
2024-05-23 21:24:19 +08:00
def part_render_init(
2024-05-23 21:24:19 +08:00
self,
part_data: SR1PartData_rs,
part_type: SR1PartType_rs,
part_group: Group,
line_group: Group,
batch: Batch,
) -> tuple[Sprite, Box]:
"""
还是重写一下渲染逻辑
把渲染单个部件的逻辑提取出来放到这里
"""
2024-05-30 22:51:37 +08:00
randomer = random.Random(part_data.id)
texture = self.textures.get_texture(part_type.sprite)
part_sprite = Sprite(
img=texture,
2024-06-09 17:14:10 +08:00
x=int(part_data.x * 60),
y=int(part_data.y * 60),
z=randomer.randint(-100, 100),
batch=batch,
group=part_group,
)
part_sprite.rotation = part_data.angle_r
part_sprite.scale_x = -1 if part_data.flip_x else 1
part_sprite.scale_y = -1 if part_data.flip_y else 1
line_colors = (
2024-05-30 22:51:37 +08:00
randomer.randrange(0, 255),
randomer.randrange(0, 255),
randomer.randrange(0, 255),
200,
)
width = 4
(x, y), (x2, y2) = part_data.get_part_box_by_type(part_type)
2024-05-26 11:25:33 +08:00
box = Box(
x=x * 30,
y=y * 30,
width=part_type.width * 30,
height=part_type.height * 30,
thickness=width,
color=line_colors,
batch=batch,
group=line_group,
)
2024-05-26 11:25:33 +08:00
box.rotation = part_data.angle_r
return part_sprite, box
2024-08-04 14:23:11 +08:00
def sprite_batch(self, draw_batch: int = 500) -> Generator:
2023-07-21 13:10:21 +08:00
"""
生成 sprite
通过生成器减少一次性渲染的压力
:param each_count: 每次生成的数量 (默认 100) (过大会导致卡顿)
:return: 生成器
"""
2023-02-07 12:02:37 +08:00
count = 0
2023-07-24 09:46:19 +08:00
self.status.draw_done = False
2023-07-21 16:00:03 +08:00
# rust 渲染
2023-07-21 18:33:15 +08:00
if DR_mod_runtime.use_DR_rust:
2024-05-26 11:25:33 +08:00
self.rust_ship: SR1Ship_rs
# 2 先渲染
# 6 后渲染
# 保证部件不会遮盖住连接线
part_group = Group(2, parent=self.part_group)
line_group = Group(6, parent=self.part_group)
# 渲染连接的部件
for part_type, part_data in self.rust_ship.as_list():
# 渲染部件
2024-05-26 11:25:33 +08:00
part_sprite, part_box = self.part_render_init(
part_data, part_type, part_group, line_group, self.main_batch
)
2024-05-26 11:25:33 +08:00
part_box.opacity = 100
self.part_sprites[part_data.id] = (part_sprite, part_box)
# TODO: 连接线渲染
count += 2
if count >= draw_batch:
yield count
count = 0
# 渲染未连接的部件
2024-06-09 17:14:10 +08:00
for part_groups, part_connections in self.rust_ship.disconnected_parts():
for part_type, part_data in part_groups:
# 出于一些魔法原因, 这玩意居然能跑, part_groups 不需要加 [0]
# 未连接的需要同时把连接线也给渲染了
# TODO: 连接线渲染
2024-05-26 11:25:33 +08:00
part_sprite, part_box = self.part_render_init(
part_data, part_type, part_group, line_group, self.main_batch
)
2024-05-26 11:25:33 +08:00
part_box.opacity = 100
2024-06-09 17:14:10 +08:00
part_box._thickness = 2
part_box._update_vertices()
# ignore, pyglet 没写这个的 @property, 等我 issue + pr
# 未连接的部件透明度降低
part_sprite.opacity = 100
2024-05-26 11:25:33 +08:00
self.part_sprites[part_data.id] = (part_sprite, part_box)
count += 2
if count >= draw_batch:
2023-07-02 20:16:21 +08:00
yield count
count = 0
# for connect in self.rust_ship.connections().get_raw_data():
# # 连接线
# # parent_part_data = cache[connect[2]][0][1]
# # child_part_data = cache[connect[3]][0][1]
# # color = (
# # random.randrange(100, 255),
# # random.randrange(0, 255),
# # random.randrange(0, 255),
# # 255,
# # )
# # self.part_line_list.append(
# # Line(
# # x=parent_part_data.x * 60,
# # y=parent_part_data.y * 60,
# # x2=child_part_data.x * 60,
# # y2=child_part_data.y * 60,
# # batch=self.main_batch,
# # group=connect_line_group,
# # width=1,
# # color=color,
# # )
# # )
# count += 1
# if count >= draw_batch * 3:
# count = 0
# yield count
2023-07-21 23:10:57 +08:00
2023-07-24 09:46:19 +08:00
self.status.draw_done = True
2023-02-07 12:02:37 +08:00
raise GeneratorExit
def render_ship(self):
2023-07-21 13:10:21 +08:00
"""
渲染船
"""
2023-07-24 09:46:19 +08:00
self.status.draw_done = False
2024-05-16 00:33:25 +08:00
logger.info(sr_tr().sr1.ship.ship.load().format(self.ship_name), tag="ship")
2023-02-07 12:02:37 +08:00
start_time = time.perf_counter_ns()
2024-05-26 11:25:33 +08:00
self.part_sprites = {}
self.connection_lines: list[Line] = []
2023-08-12 01:20:24 +08:00
self.group_camera.reset()
2023-02-07 12:02:37 +08:00
# 调用生成器 减少卡顿
2023-02-19 11:47:15 +08:00
try:
self.gen_draw = self.sprite_batch()
2023-07-24 09:46:19 +08:00
if not self.status.draw_done:
next(self.gen_draw)
2023-07-21 23:10:57 +08:00
except (GeneratorExit, StopIteration):
2023-07-24 09:46:19 +08:00
self.status.draw_done = True
self.status.draw_call = False
full_mass = 0
2023-04-30 00:48:42 +08:00
if DR_mod_runtime.use_DR_rust:
2023-07-21 23:10:57 +08:00
full_mass = self.rust_ship.mass
2023-12-03 16:54:07 +08:00
logger.info(
sr_tr()
.sr1.ship.ship.load_time()
2024-05-16 00:33:25 +08:00
.format((time.perf_counter_ns() - start_time) / 1000000000),
2024-05-22 23:58:14 +08:00
tag="ship",
2023-12-03 16:54:07 +08:00
)
logger.info(
sr_tr()
.sr1.ship.ship.info()
.format(
len(self.rust_ship.as_list()),
f"{full_mass}kg"
if DR_mod_runtime.use_DR_rust
else sr_tr().game.require_DR_rs(),
2024-05-16 00:33:25 +08:00
),
tag="ship",
2023-12-03 16:54:07 +08:00
)
2023-01-19 16:32:36 +08:00
2023-08-20 21:42:38 +08:00
def draw_batch(self, window: ClientWindow):
2023-07-24 09:46:19 +08:00
if self.status.draw_done:
2023-12-03 16:54:07 +08:00
self.render_d_label.text = (
f"x: {self.group_camera.view_x} y: {self.group_camera.view_y}"
)
self.render_d_label.position = (
self.group_camera.view_x + (self.window_pointer.width / 2),
self.group_camera.view_y + (self.window_pointer.height / 2) + 10,
0,
) # 0 for z
2023-08-12 01:20:24 +08:00
self.render_d_line.x2 = self.group_camera.view_x
self.render_d_line.y2 = self.group_camera.view_y
2023-08-12 23:32:43 +08:00
2024-05-23 21:31:47 +08:00
# 外面这一层 gl 是用来实现子窗口的
2023-08-12 23:32:43 +08:00
gl.glEnable(gl.GL_SCISSOR_TEST)
gl.glScissor(int(self.dx), int(self.dy), int(self.width), int(self.height))
2023-12-03 16:54:07 +08:00
gl.glViewport(
int(self.dx),
int(self.dy),
self.window_pointer.width,
self.window_pointer.height,
)
2023-08-12 00:49:46 +08:00
self.main_batch.draw() # use group camera, no need to with
self.buttons_batch.draw() # use group camera, no need to with
2023-08-12 23:32:43 +08:00
gl.glViewport(0, 0, self.window_pointer.width, self.window_pointer.height)
gl.glScissor(0, 0, self.window_pointer.width, self.window_pointer.height)
gl.glDisable(gl.GL_SCISSOR_TEST)
2023-07-02 15:54:50 +08:00
2024-08-06 13:12:24 +08:00
explorer = window.get_sub_screen(SR1ShipSelecter.name)
if explorer is not None:
explorer.draw_batch_(window)
2024-08-04 14:23:11 +08:00
def on_draw(self, window: ClientWindow):
if self.status.draw_call:
self.render_ship()
if not self.status.draw_done:
try:
if not isinstance(self.gen_draw, Generator):
return
next(self.gen_draw)
except (GeneratorExit, StopIteration):
self.status.draw_done = True
self.logger.info(sr_tr().sr1.ship.ship.render.done())
except TypeError:
pass
# self.debug_label.draw()
2023-02-07 12:02:37 +08:00
2023-08-20 21:42:38 +08:00
def on_resize(self, width: int, height: int, window: ClientWindow):
2023-06-22 02:05:12 +08:00
self.debug_label.y = height - 100
2023-07-24 09:46:19 +08:00
if not self.status.draw_done:
2023-01-19 22:29:43 +08:00
return
2023-07-12 16:46:32 +08:00
self.render_d_line.x2 = width // 2
self.render_d_line.y2 = height // 2
2024-05-16 00:33:25 +08:00
self.width = width
self.height = height
2023-01-19 22:29:43 +08:00
2023-12-03 16:54:07 +08:00
def on_mouse_scroll(
self, x: int, y: int, scroll_x: int, scroll_y: int, window: ClientWindow
):
2024-06-09 17:14:10 +08:00
if self.status.focus:
2023-08-12 20:20:18 +08:00
mouse_dx = x - (self.width / 2) + self.dx
mouse_dy = y - (self.height / 2) + self.dy
2023-07-25 19:54:51 +08:00
# 鼠标缩放位置相对于屏幕中心的位置
2023-08-12 00:49:46 +08:00
mouse_dx_d = mouse_dx - self.group_camera.view_x
mouse_dy_d = mouse_dy - self.group_camera.view_y
2023-07-25 19:54:51 +08:00
# 鼠标相对偏移量的偏移量
if scroll_y == 0:
zoom_d = 1
else:
2023-12-03 16:54:07 +08:00
zoom_d = ((2**scroll_y) - 1) * 0.5 + 1
2023-07-25 19:54:51 +08:00
# 缩放的变换量
2023-08-12 00:49:46 +08:00
if not (self.group_camera.zoom == 10 and scroll_y > 0):
if self.group_camera.zoom * zoom_d >= 10:
zoom_d = 10 / self.group_camera.zoom
self.group_camera.zoom = 10
2023-07-25 19:54:51 +08:00
else:
2023-08-12 00:49:46 +08:00
self.group_camera.zoom *= zoom_d
2023-12-03 16:54:07 +08:00
mouse_dx_d *= 1 - zoom_d
mouse_dy_d *= 1 - zoom_d
2024-06-09 20:06:08 +08:00
self.group_camera.view_x += int(mouse_dx_d)
self.group_camera.view_y += int(mouse_dy_d)
2023-07-25 19:54:51 +08:00
elif self.status.moving:
# 如果是在移动整体渲染位置
size_x, size_y = self.size
size_x += round(scroll_y) * 10
size_y += round(scroll_y) * 10
if size_x < 10:
size_x = 10
if size_y < 10:
size_y = 10
self.size = size_x, size_y
2023-08-20 21:42:38 +08:00
def on_command(self, command: CommandText, window: ClientWindow):
2023-12-03 16:54:07 +08:00
"""解析命令"""
self.logger.info(f"command: {command}")
if command.find("render"):
if command.find("reset"):
2023-08-12 00:49:46 +08:00
self.group_camera.reset()
2023-01-25 11:11:45 +08:00
else:
2023-07-24 09:46:19 +08:00
self.status.draw_call = True
2023-12-03 16:54:07 +08:00
print("应该渲染飞船的")
2023-07-24 09:46:19 +08:00
2023-12-03 16:54:07 +08:00
elif command.find("debug"):
if command.find("delta"):
2023-07-12 16:46:32 +08:00
self.render_d_line.visible = not self.render_d_line.visible
2023-07-24 09:46:19 +08:00
self.status.draw_mouse_d_pos = self.render_d_line.visible
2023-12-03 16:54:07 +08:00
self.logger.info(f"sr1 mouse {self.status.draw_mouse_d_pos}")
elif command.find("ship"):
2023-07-24 09:46:19 +08:00
if self.status.draw_done:
2024-06-09 17:14:10 +08:00
for index, sprite in self.part_sprites.values():
2023-06-18 01:45:00 +08:00
sprite.visible = not sprite.visible
2023-12-03 16:54:07 +08:00
elif command.find("get_buf"):
2023-02-07 18:42:41 +08:00
def screenshot(window):
2023-07-21 13:10:21 +08:00
"""
从窗口截图
:param window:
:return:
"""
2023-07-24 09:46:19 +08:00
from pyglet.gl import GLubyte, GL_RGBA, GL_UNSIGNED_BYTE, glReadPixels
2023-02-08 21:39:06 +08:00
import pyglet
2023-12-03 16:54:07 +08:00
2023-02-07 18:42:41 +08:00
format_str = "RGBA"
2023-06-27 01:06:09 +08:00
buf = (GLubyte * (len(format_str) * window.width * window.height))()
2023-12-03 16:54:07 +08:00
glReadPixels(
0, 0, window.width, window.height, GL_RGBA, GL_UNSIGNED_BYTE, buf
)
return pyglet.image.ImageData(
window.width, window.height, format_str, buf
)
2023-02-07 18:42:41 +08:00
image_data = screenshot(self.window_pointer)
2023-12-03 16:54:07 +08:00
image_data.save("test.png")
2024-06-09 17:14:10 +08:00
# elif command.find("gen_img"):
# if not self.status.draw_done:
# return
# if not DR_mod_runtime.use_DR_rust:
# # 这个功能依赖于 DR rs (简称,我懒得在Python端实现)
# return
# img_box = self.rust_ship.img_pos
# img_size = (img_box[2] - img_box[0], img_box[3] - img_box[1])
# # 中心点是左上角坐标
# img_center = (abs(img_box[0]), abs(img_box[3]))
# try:
# from PIL import Image
# except ImportError:
# traceback.print_exc()
# print("PIL not found")
# return
# img = Image.new("RGBA", img_size)
# part_data = self.rust_ship.as_dict()
# for sprites, box in self.part_sprites.values():
# for index, sprite in enumerate(sprites):
# sprite_img = sprite.image
# print(
# f"sprite_img: {sprite_img} {part_data[part][index][1].x * 60} "
# f"{part_data[part][index][1].y * 60}"
# )
# img_data = sprite_img.get_image_data()
# fmt = img_data.format
# if fmt != "RGB":
# fmt = "RGBA"
# pitch = -(img_data.width * len(fmt))
# pil_image = Image.frombytes(
# fmt,
# (img_data.width, img_data.height),
# img_data.get_data(fmt, pitch),
# )
# pil_image = pil_image.rotate(
# -SR1Rotation.get_rotation(part_data[part][index][1].angle),
# expand=True,
# )
# if part_data[part][index][1].flip_y:
# pil_image.transpose(Image.Transpose.FLIP_TOP_BOTTOM)
# if part_data[part][index][1].flip_x:
# pil_image.transpose(Image.Transpose.FLIP_LEFT_RIGHT)
# img.paste(
# pil_image,
# (
# int(part_data[part][index][1].x * 60 + img_center[0]),
# int(-part_data[part][index][1].y * 60 + img_center[1]),
# ),
# )
# img.save(f"test{time.time()}.png", "PNG")
2023-01-21 11:48:07 +08:00
2023-12-24 15:51:44 +08:00
elif command.find("save"):
print("应该保存飞船的")
# if command.find("save"):
if not self.status.draw_done:
2023-12-30 22:07:01 +08:00
logger.warn("not draw done", tag="save ship")
2023-12-24 15:51:44 +08:00
return
if not DR_mod_runtime.use_DR_rust:
return
2023-12-30 22:07:01 +08:00
print("saving")
2023-12-24 15:51:44 +08:00
logger.info(sr_tr().sr1.ship.save.start().format(self.rust_ship))
self.rust_ship.save("./test-save.xml")
2023-12-03 16:54:07 +08:00
def on_mouse_drag(
self,
x: int,
y: int,
dx: int,
dy: int,
buttons: int,
modifiers: int,
window: ClientWindow,
):
2023-07-25 19:54:51 +08:00
if self.status.focus:
2023-08-12 00:28:31 +08:00
self.group_camera.view_x += dx
self.group_camera.view_y += dy
2023-07-25 19:54:51 +08:00
self.status.update_call = True
elif self.status.moving:
# 如果是在移动整体渲染位置
self.dx += dx
self.dy += dy
2024-05-30 22:23:24 +08:00
def on_file_drop(self, x: int, y: int, paths: list[str], window: ClientWindow):
2024-06-09 17:14:10 +08:00
if len(paths) == 1:
# only file/path
2024-08-04 14:23:11 +08:00
self.load_xml(Path(paths[0]))
2024-08-04 14:34:17 +08:00
self.render_ship()
2023-07-24 09:46:19 +08:00
else:
2024-06-09 17:14:10 +08:00
...
2023-01-23 13:54:05 +08:00
2023-08-12 20:20:18 +08:00
@property
def view(self):
return self.window_pointer.view
@view.setter
def view(self, value: Mat4):
self.window_pointer.view = value