Add artemis txt script support

This commit is contained in:
2025-08-17 17:19:13 +08:00
parent 1df6f0e414
commit 5898d8f94e
7 changed files with 1252 additions and 0 deletions

View File

@@ -3,3 +3,4 @@
pub mod archive;
pub mod asb;
pub mod ast;
pub mod txt;

1216
src/scripts/artemis/txt.rs Normal file
View File

File diff suppressed because it is too large Load Diff

View File

@@ -112,6 +112,8 @@ lazy_static::lazy_static! {
Box::new(entis_gls::srcxml::SrcXmlScriptBuilder::new()),
#[cfg(feature = "softpal")]
Box::new(softpal::scr::SoftpalScriptBuilder::new()),
#[cfg(feature = "artemis")]
Box::new(artemis::txt::TxtBuilder::new()),
];
/// A list of all script extensions.
pub static ref ALL_EXTS: Vec<String> =