aboutsummaryrefslogtreecommitdiff
path: root/tools/unpacker/README.md
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2025-02-08 04:11:02 +0300
committerValentin Popov <valentin@popov.link>2025-02-08 04:11:02 +0300
commit8d8653133bf3a12ac58c0e4f34624e9beac11751 (patch)
treeac0831704db9f138a90872b530eabda457db1829 /tools/unpacker/README.md
parent94d2f8a512312b8aff25672760b687e6d90c1ec9 (diff)
downloadfparkan-8d8653133bf3a12ac58c0e4f34624e9beac11751.tar.xz
fparkan-8d8653133bf3a12ac58c0e4f34624e9beac11751.zip
Обновление структуры проекта
Diffstat (limited to 'tools/unpacker/README.md')
-rw-r--r--tools/unpacker/README.md41
1 files changed, 41 insertions, 0 deletions
diff --git a/tools/unpacker/README.md b/tools/unpacker/README.md
new file mode 100644
index 0000000..311e0eb
--- /dev/null
+++ b/tools/unpacker/README.md
@@ -0,0 +1,41 @@
+# NRes Game Resource Unpacker
+
+At the moment, this is a demonstration of the NRes game resource unpacking algorithm in action.
+It unpacks 100% of the NRes game resources for the game "Parkan: Iron Strategy".
+The unpacked resources can be packed again using the [packer](../packer) utility and replace the original game files.
+
+__Attention!__
+This is a test version of the utility.
+It overwrites existing files without asking.
+
+## Building
+
+To build the tools, you need to run the following command in the root directory:
+
+```bash
+cargo build --release
+```
+
+## Running
+
+You can run the utility with the following command:
+
+```bash
+./target/release/unpacker /path/to/file.ex /path/to/output
+```
+
+- `/path/to/file.ex`: This is the file containing the game resources that will be unpacked.
+- `/path/to/output`: This is the directory where the unpacked files will be placed.
+
+## How it Works
+
+The structure describing the packed game resources is not fully understood yet.
+Therefore, the utility saves unpacked files in the format `file_name.file_index` because some files have the same name.
+
+Additionally, an `index.json` file is created, which is important for re-packing the files.
+This file lists all the fields that game resources have in their packed form.
+It is essential to preserve the file index for the game to function correctly, as the game engine looks for the necessary files by index.
+
+Files can be replaced and packed back using the [packer](../packer).
+The newly obtained game resource files are correctly processed by the game engine.
+For example, sounds and 3D models of warbots' weapons were successfully replaced. \ No newline at end of file