7 个版本 (1 个稳定版本)
1.0.0 | 2021年12月11日 |
---|---|
0.3.1 | 2021年11月25日 |
0.3.0 | 2020年7月25日 |
0.2.1 | 2020年7月24日 |
0.1.1 | 2020年7月23日 |
#334 in 压缩
46 每月下载量
用于 gmadrs
40KB
975 行
GMA
一个用于读取和写入 .gma 文件的 crate。
支持读取/写入 lzma 压缩文件。Garry's mod 无法读取压缩的 gma 文件,但有时直接从 Steam 工作室下载的文件是 lzma 压缩的。
读取 .gma 文件
let archive = gma::open("myfile.gma").unwrap();
println!("Version : {}", archive.version());
println!("Author steam id : {}", archive.author_steamid());
println!("Timestamp : {}", archive.timestamp());
println!("Name : {}", archive.name());
println!("Description : {}", archive.description());
println!("Addon Type : {:?}", archive.addon_type());
println!("Addon Tags : {:?}", archive.addon_tags());
println!("Author name : {}", archive.author());
println!("Compressed : {}", archive.compressed());
println!();
for entry in archive.entries() {
println!("{} :", entry.filename());
println!("\tSize : {} bytes", entry.size());
println!("\tCRC32 : {:x}", entry.crc());
//Only print the contents of lua files
if entry.filename().ends_with(".lua") {
archive
.read_entry(entry, |_, reader| {
let mut file_contents = String::new();
reader.read_to_string(&mut file_contents).unwrap();
println!("\tContents : '{}'", file_contents);
})
.expect("Error when reading the file");
}
}
创建 .gma 文件
const VERSION: u8 = 3;
const STEAMID: u64 = 123456;
const TIMESTAMP: u64 = 987654;
const NAME: &str = "ADDON_NAME";
const DESC: &str = "ADDON_DESC";
const AUTHOR: &str = "AUTHOR_NAME";
const TYPE: AddonType = AddonType::Model;
const TAG1: AddonTag = AddonTag::Build;
const TAG2: AddonTag = AddonTag::Fun;
let file = File::create("myaddon.gma").unwrap();
let mut writer = BufWriter::new(file);
let mut builder = GMABuilder::new();
builder
.version(VERSION)
.steamid(STEAMID)
.timestamp(TIMESTAMP)
.name(NAME)
.description(DESC)
.addon_type(TYPE)
.addon_tag(TAG1)
.addon_tag(TAG2)
.author(AUTHOR)
.file_from_bytes("file1", b"hello")
.compression(true);
builder.write_to(&mut writer).unwrap();
依赖项
~465KB
~11K SLoC