Add bgi export support

This commit is contained in:
2025-05-21 17:54:23 +08:00
parent b355a435bc
commit eba514d74f
5 changed files with 805 additions and 0 deletions

147
src/scripts/bgi/script.rs Normal file
View File

@@ -0,0 +1,147 @@
use super::parser::*;
use crate::scripts::base::*;
use crate::types::*;
use crate::utils::encoding::{decode_to_string, encode_string};
use anyhow::Result;
pub struct BGIScriptBuilder {}
impl BGIScriptBuilder {
pub fn new() -> Self {
BGIScriptBuilder {}
}
}
impl ScriptBuilder for BGIScriptBuilder {
fn default_encoding(&self) -> Encoding {
Encoding::Cp932
}
fn build_script(
&self,
filename: &str,
encoding: Encoding,
config: &ExtraConfig,
) -> Result<Box<dyn Script>> {
Ok(Box::new(BGIScript::new(
filename.as_ref(),
encoding,
config,
)?))
}
fn extensions(&self) -> &'static [&'static str] {
&[]
}
fn script_type(&self) -> &'static ScriptType {
&ScriptType::BGI
}
}
pub struct BGIScript {
data: Vec<u8>,
encoding: Encoding,
strings: Vec<BGIString>,
is_v1: bool,
offset: usize,
}
impl std::fmt::Debug for BGIScript {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("BGIScript")
.field("encoding", &self.encoding)
.finish_non_exhaustive()
}
}
impl BGIScript {
pub fn new(filename: &str, encoding: Encoding, _config: &ExtraConfig) -> Result<Self> {
let data = crate::utils::files::read_file(filename)?;
if data.starts_with(b"BurikoCompiledScriptVer1.00\0") {
let mut parser = V1Parser::new(&data, encoding)?;
parser.disassemble()?;
let strings = parser.strings.clone();
let offset = parser.offset;
Ok(Self {
data,
encoding,
strings,
is_v1: true,
offset,
})
} else {
let mut parser = V0Parser::new(&data);
parser.disassemble()?;
let strings = parser.strings.clone();
Ok(Self {
data,
encoding,
strings,
is_v1: false,
offset: 0,
})
}
}
fn read_string(&self, offset: usize) -> Result<String> {
let start = self.offset + offset;
let mut end = start;
while self.data[end] != 0 {
end += 1;
if end >= self.data.len() {
return Err(anyhow::anyhow!("String not null-terminated"));
}
}
let string_data = &self.data[start..end];
let string = decode_to_string(self.encoding, string_data)?;
Ok(string)
}
}
impl Script for BGIScript {
fn default_output_script_type(&self) -> OutputScriptType {
OutputScriptType::Json
}
fn default_format_type(&self) -> FormatOptions {
if self.is_v1 {
FormatOptions::None
} else {
FormatOptions::Fixed {
length: 32,
keep_original: false,
}
}
}
fn extract_messages(&self) -> Result<Vec<Message>> {
let mut messages = Vec::new();
let mut name = None;
for bgi_string in &self.strings {
match bgi_string.typ {
BGIStringType::Name => {
name = Some(self.read_string(bgi_string.address)?);
}
BGIStringType::Message => {
let message = self.read_string(bgi_string.address)?;
messages.push(Message {
name: name.take(),
message: message,
});
}
_ => {}
}
}
Ok(messages)
}
fn import_messages(
&self,
_messages: Vec<Message>,
_filename: &str,
_encoding: Encoding,
) -> Result<()> {
Ok(())
}
}