.drs is the resource archive file format for the Genie Engine, used by Age of Empires 1/2 and Star Wars: Galactic Battlegrounds. .drs files contain tables, each of which contain resources of a single type. Resources are identified by a numeric identifier.
This crate only supports reading files right now.
Add to Cargo.toml:
toml
[dependencies]
genie-drs = { git = "https://github.com/goto-bus-stop/genie-drs-rs.git", branch = "default" }
```rust extern crate geniedrs; use std::fs::File; use geniedrs::DRSReader;
let mut file = File::open("test.drs").unwrap(); let drs = DRSReader::new(&mut file).unwrap();
for table in drs.tables() { for resource in table.resources() { let content = drs.readresource(&mut file, table.resourcetype, resource.id).unwrap(); println!("{}: {:?}", resource.id, std::str::from_utf8(&content).unwrap()); } } ```
read_resource
API, using memmap probably.