Some tools for interacting with the enfusion engine.
A command line tool + library for dumping information from pak files. The data format was reverse engineered by me. Some pre-existing parsers were used to validate whether or not my own parsing logic was correct. For example, PakExplorer was referenced to see if my own understanding of the format matched what others had reverse engineered.
I believe that my description of the format may be the most accurate description at this time.
See crates/enfusion_pak/README.md for more info.
A UI for interacting with Reforger PAK files. Supports search, file filtering, and tabs with docking. The UI can run either in web as a WASM single-page application or as a native desktop application on Windows, Linux, or macOS.
Prebuilt binaries can be found on the Releases page.
Demo of the application running in web: https://www.youtube.com/watch?v=Ps1BfcD3Hcs
After cloning the repo, you can run the native UI with the following command from the repo root:
cargo run --release --bin ui
Or to run the web UI, first install Trunk:
cd crates/ui
trunk serve
