From 3fbae9ce0bcf1e4b7ca06354d2d719ec782169ff Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Wed, 1 Mar 2023 17:14:00 +0800 Subject: [PATCH] DR_rs 0.2.5.5 --- Difficult_Rocket/__init__.py | 2 +- libs/Difficult_Rocket_rs/src/src/lib.rs | 2 +- libs/Difficult_Rocket_rs/src/src/sr1_data.rs | 19 ++++++++++++++----- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/Difficult_Rocket/__init__.py b/Difficult_Rocket/__init__.py index 9fda9d2..789657e 100644 --- a/Difficult_Rocket/__init__.py +++ b/Difficult_Rocket/__init__.py @@ -24,7 +24,7 @@ from libs.MCDR.version import Version game_version = Version("0.7.1.4") # 游戏版本 build_version = Version("1.1.0.0") # 编译文件版本(与游戏本体无关) -DR_rust_version = Version("0.2.5.4") # DR 的 Rust 编写部分的版本 +DR_rust_version = Version("0.2.5.5") # DR 的 Rust 编写部分的版本 Api_version = Version("0.0.0.1") # API 版本 __version__ = game_version diff --git a/libs/Difficult_Rocket_rs/src/src/lib.rs b/libs/Difficult_Rocket_rs/src/src/lib.rs index 540ad8f..96bc0db 100644 --- a/libs/Difficult_Rocket_rs/src/src/lib.rs +++ b/libs/Difficult_Rocket_rs/src/src/lib.rs @@ -16,7 +16,7 @@ use pyo3::prelude::*; #[pyfunction] fn get_version_str() -> String { - return "0.2.5.4".to_string(); + return "0.2.5.5".to_string(); } #[pyfunction] diff --git a/libs/Difficult_Rocket_rs/src/src/sr1_data.rs b/libs/Difficult_Rocket_rs/src/src/sr1_data.rs index e8334f9..abb87fb 100644 --- a/libs/Difficult_Rocket_rs/src/src/sr1_data.rs +++ b/libs/Difficult_Rocket_rs/src/src/sr1_data.rs @@ -14,7 +14,7 @@ pub mod part_list { // use quick_xml::de::from_str; use serde_xml_rs::{from_str}; - use crate::types::sr1::{SR1PartTypeData, SR1PartType, SR1PartAttr}; + use crate::types::sr1::{SR1PartTypeData, SR1PartType, SR1PartAttr, SR1PartList}; #[derive(Debug, Serialize, Deserialize, Clone)] pub struct RawPartList { @@ -99,8 +99,8 @@ pub mod part_list { } impl AttachPoints { - pub fn new(attachs: Vec) -> Self { - AttachPoints { points: attachs } + pub fn new(attaches: Vec) -> Self { + AttachPoints { points: attaches } } pub fn insert(&mut self, attach: AttachPoint) { @@ -267,7 +267,7 @@ pub mod part_list { }; let damage = self.damage.unwrap_or(Damage {disconnect: 0, explode: 0, explosion_power: Some(0u32), explosion_size: Some(0u32) }); - let attach_points = if let Some(attach_points) = &self.attach_points { + let attach_points: Option> = if let Some(attach_points) = &self.attach_points { Some(attach_points.unzip()) } else { None }; SR1PartType { id: self.id.clone(), @@ -305,6 +305,14 @@ pub mod part_list { println!("{:?}\n", part_data); } } + + pub fn to_sr_part_list(&self, name: Option) -> SR1PartList { + let mut part_list = Vec::new(); + for part_data in self.part_types.iter() { + part_list.push(part_data.to_sr_part_type()); + } + SR1PartList { types: part_list, name: name.unwrap_or("".to_string()) } + } } #[inline] @@ -330,7 +338,8 @@ pub mod part_list { let _parts = read_part_list(file_name); if let Some(parts) = _parts { // println!("{:?}", parts) - parts.list_print() + parts.list_print(); + let part_list = parts.to_sr_part_list(Some("Vanilla".to_string())); } // read_part_list(file_name); Ok(())